﻿# O-RIM (Ontological RIM_) definitions
# This is work in progress, and may change rapidly 
# GDG 13/04/2015 base ontological rim down. Patterns may change, additional content may be added

@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rim: <http://hl7.org/orim/class/> .
@prefix dt: <http://hl7.org/orim/datatype/> .
@prefix vs: <http://hl7.org/orim/valueset/> .
@prefix cs: <http://hl7.org/orim/codesystem/> .
@prefix xs: <http://www.w3.org/2001/XMLSchema/> .
@prefix fhir: <http://hl7.org/fhir/> .
@prefix os: <http://open-services.net/ns/core#> .

# - ANY --------------------------------------------------------------------

dt:ANY a rdfs:Class;
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:ANY.nullFlavor;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   dc:terms "An abstract type that defines the basic properties common to all data values defined in this specification. Data Value is an abstract type, meaning that no proper value can be just a data value without belonging to any concrete type. Every concrete type is a specialization of this general abstract DataValue type";
   rdfs:comment "An abstract type that defines the basic properties common to all data values defined in this specification. Data Value is an abstract type, meaning that no proper value can be just a data value without belonging to any concrete type. Every concrete type is a specialization of this general abstract DataValue type";
   dc:title "Base Data type";
   rdfs:label "Base Data type".

dt:ANY.nullFlavor a rdf:Property;
   dc:terms "An indicator of a data value's exceptional status, sometimes also denoting the manner and rationale for that status.";
   rdfs:comment "An indicator of a data value's exceptional status, sometimes also denoting the manner and rationale for that status.";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:ANY;
   rdfs:range cs:NullFlavor;
   fhir:binding vs:NullFlavor;
   fhir:bindingStrength fhir:BindingStrength\#required.

# - CS ------------------------------------------------------------------

dt:CS rdfs:subClassOf dt:ANY;
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:CS.code;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   dcterms:description "Coded data in its simplest form, where only the code is not predetermined. The code system and code system version are fixed by the context in which CS value occurs. CS is used for coded attributes that have a single HL7-defined value set";
   rdfs:comment "Coded data in its simplest form, where only the code is not predetermined. The code system and code system version are fixed by the context in which CS value occurs. CS is used for coded attributes that have a single HL7-defined value set";
   dc:title "CodedSimpleValue";
   rdfs:label "CodedSimpleValue".

dt:CS.code a rdf:Property;
   os:occurs os:Zero-or-one;
   rdfs:domain dt:CS;
   rdfs:range xs:string.

# - BL ------------------------------------------------------------------

dt:BL rdfs:subClassOf dt:ANY;
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:BL.value;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   dcterms:description "A binary value for use in boolean logic. A BL value can be either true or false, or, as any other value, MAY be NULL";
   rdfs:comment "A binary value for use in boolean logic. A BL value can be either true or false, or, as any other value, MAY be NULL";
   dc:title "Boolean";
   rdfs:label "Boolean".

dt:BL.value a rdf:Property;
   os:occurs os:Zero-or-one;
   rdfs:domain dt:BL;
   rdfs:range xs:boolean.
   
# - INT ------------------------------------------------------------------

dt:INT rdfs:subClassOf dt:ANY;
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:INT.value;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   dcterms:description "Integer numbers (-1,0,1,2, 100, 3398129, etc.) are precise numbers that are results of counting and enumerating. Integer numbers are discrete, the set of integers is infinite but countable. No arbitrary limit is imposed on the range of integer numbers. Two NULL flavors are defined for the positive and negative infinity";
   rdfs:comment "Integer numbers (-1,0,1,2, 100, 3398129, etc.) are precise numbers that are results of counting and enumerating. Integer numbers are discrete, the set of integers is infinite but countable. No arbitrary limit is imposed on the range of integer numbers. Two NULL flavors are defined for the positive and negative infinity";
   dc:title "IntegerNumber";
   rdfs:label "IntegerNumber".

dt:INT.value a rdf:Property;
   os:occurs os:Zero-or-one;
   rdfs:domain dt:INT;
   rdfs:range xs:integer.

# - REAL ------------------------------------------------------------------

dt:REAL rdfs:subClassOf dt:ANY;
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:REAL.value;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   dcterms:description "A scalar magnitude. Typically used whenever quantities are measured, estimated, or computed from other real numbers. The typical representation is decimal, where the number of significant decimal digits is known as the precision.";
   rdfs:comment "A scalar magnitude. Typically used whenever quantities are measured, estimated, or computed from other real numbers. The typical representation is decimal, where the number of significant decimal digits is known as the precision.";
   dc:title "RealNumber";
   rdfs:label "RealNumber".

dt:REAL.value a rdf:Property;
   os:occurs os:Zero-or-one;
   rdfs:domain dt:REAL;
   rdfs:range xs:decimal.
      
   
# - CD ------------------------------------------------------------------

#CD has been restructured in the oRIM to make reasoning easy, and to align with FHIR better - principally, codeSystem is a URI instead of a OID/UUID.

dt:CD rdfs:subClassOf dt:ANY;
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.originalText;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   dc:title "ConceptDescriptor";
   dcterms:description "A concept defined by text and/or references to concepts defined in a code system";
   rdfs:comment "A concept defined by text and/or references to concepts defined in a code system";
   rdfs:label "ConceptDescriptor".

dt:CD.coding a rdf:Property;
   dcterms:description "A reference to a concept defined in a code system";
   rdfs:comment "A reference to a concept defined in a code system";
   os:occurs os:Zero-to-many;
   rdfs:domain dt:CD;
   rdfs:range xs:string.

dt:CD.originalText a rdf:Property;
   dcterms:description "The text as seen and/or selected by the user who entered the data which represents the intended meaning of the user";
   rdfs:comment "The text as seen and/or selected by the user who entered the data which represents the intended meaning of the user";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:CD;
   rdfs:range xs:string. 
 
dt:CDCoding rdfs:subClassOf dt:ANY;
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.code;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.codeSystem;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.codeSystemName;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.codeSystemVersion;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.valueSet;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.valueSetVersion;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.displayName;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.originalText;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.source;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   dc:title "ConceptDescriptorCoding";
   dcterms:description "A reference to a concept defined in a code system";
   rdfs:comment "A reference to a concept defined in a code system";
   rdfs:label "ConceptDescriptorCoding".

dt:CDCoding.code a rdf:Property;
   dcterms:description "The plain code symbol defined by the code system, or an expression in a syntax defined by the code system which describes the concept";
   rdfs:comment "The plain code symbol defined by the code system, or an expression in a syntax defined by the code system which describes the concept";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:CDCoding;
   rdfs:range xs:string.

dt:CDCoding.codeSystem a rdf:Property;
   dcterms:description "The code system that defines the code";
   rdfs:comment "The code system that defines the code";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:CDCoding;
   rdfs:range xs:anyURI. # in the RIM proper this must be an OID or a UUID. But for the o-RIM, we are primarily interested in statements or meaning, so we allow URL as well
   
dt:CDCoding.codeSystemName a rdf:Property;
   dcterms:description "The common name of the coding system";
   rdfs:comment "The common name of the coding system";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:CDCoding;
   rdfs:range xs:string.
 
dt:CDCoding.codeSystemVersion a rdf:Property;
   dcterms:description "If applicable, a version descriptor defined specifically for the given code system";
   rdfs:comment "If applicable, a version descriptor defined specifically for the given code system";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:CDCoding;
   rdfs:range xs:string.
 
dt:CDCoding.valueSet a rdf:Property;
   dcterms:description "The value set that applied when this CD was created";
   rdfs:comment "The value set that applied when this CD was created";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:CDCoding;
   rdfs:range xs:string.
 
dt:CDCoding.valueSetVersion a rdf:Property;
   dcterms:description "The version of the value set that applied when this CD was created";
   rdfs:comment "The version of the value set that applied when this CD was created";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:CDCoding;
   rdfs:range xs:string.
 
dt:CDCoding.displayName a rdf:Property;
   dcterms:description "A name, title, or representation for the code or expression as it exists in the code system identified by the value of codeSystem";
   rdfs:comment "A name, title, or representation for the code or expression as it exists in the code system identified by the value of codeSystem.";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:CDCoding;
   rdfs:range xs:string.
 
dt:CDCoding.codingRationale a rdf:Property;
   dcterms:description "The reason a particular CD has been provided";
   rdfs:comment "The reason a particular CD has been provided";
   os:occurs os:Zero-or-one;
   rim:collectionType rim:CollectionType\#DSET;
   rdfs:domain dt:CDCoding;
   rdfs:range cs:CodingRationale;
   fhir:binding vs:CodingRationale;
   fhir:bindingStrength fhir:BindingStrength\#required.
      
dt:CDCoding.source a rdf:Property;
   dcterms:description "The CD from which this CD was translated, if it was translated from another CD";
   rdfs:comment "The CD from which this CD was translated, if it was translated from another CD";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:CDCoding;
   rdfs:range dt:CDCoding.
   
   
# - II ------------------------------------------------------------------

dt:II rdfs:subClassOf dt:ANY;
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.root;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.extension;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.identifierName;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.scope;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.reliability;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty dt:II.display;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   dc:title "InstanceIdentifier";
   dcterms:description "An identifier that uniquely identifies a thing or object. Examples are object identifier for HL7 RIM objects, medical record number, order id, service catalog item id, Vehicle Identification Number (VIN), etc.";
   rdfs:comment "An identifier that uniquely identifies a thing or object. Examples are object identifier for HL7 RIM objects, medical record number, order id, service catalog item id, Vehicle Identification Number (VIN), etc.";
   rdfs:label "InstanceIdentifier".

dt:II.root a rdf:Property;
   dcterms:description "A unique identifier that guarantees the global uniqueness of the instance identifier. The root alone may be the entire instance identifier";
   rdfs:comment "A unique identifier that guarantees the global uniqueness of the instance identifier. The root alone may be the entire instance identifier";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:II;
   rdfs:range xs:anyURI. # in the RIM proper this must be an OID or a UUID. But for the o-RIM, we are primarily interested in statements or meaning, so we make it URI instead
   
dt:II.extension a rdf:Property;
   dcterms:description "A character string as a unique identifier within the scope of the identifier root.";
   rdfs:comment "A character string as a unique identifier within the scope of the identifier root.";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:II;
   rdfs:range xs:string.

dt:II.identifierName a rdf:Property;
   dcterms:description "This is a human-readable name for the namespace represented in the root. It is a descriptive name for the actual namespace; e.g. 'California, U.S. Driver's License Number, 1970-'.";
   rdfs:comment "This is a human-readable name for the namespace represented in the root. It is a descriptive name for the actual namespace; e.g. 'California, U.S. Driver's License Number, 1970-'.";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:II;
   rdfs:range xs:string.
 
dt:II.scope a rdf:Property;
   dcterms:description "Specifies the scope in which the identifier applies to the object with which it is associated";
   rdfs:comment "Specifies the scope in which the identifier applies to the object with which it is associated";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:II;
   rdfs:range cs:IdentifierScope;
   fhir:binding vs:IdentifierScope;
   fhir:bindingStrength fhir:BindingStrength\#required.

dt:II.reliability a rdf:Property;
   dcterms:description "Specifies the reliability with which the identifier is known. This attribute MAY be used to assist with identifier matching algorithms";
   rdfs:comment "Specifies the reliability with which the identifier is known. This attribute MAY be used to assist with identifier matching algorithms";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:II;
   rdfs:range cs:IdentifierReliability;
   fhir:binding vs:IdentifierReliability;
   fhir:bindingStrength fhir:BindingStrength\#required.
   
dt:II.display a rdf:Property;
   dcterms:description "Specifies if the identifier is intended for human display and data entry (displayable = true) as opposed to pure machine interoperation (displayable = false)";
   rdfs:comment "Specifies if the identifier is intended for human display and data entry (displayable = true) as opposed to pure machine interoperation (displayable = false)";
   os:occurs os:Zero-or-one;
   rdfs:domain dt:II;
   rdfs:range xs:boolean.
   
      
# - InfrastructureRoot --------------------------------------------------------------------

rim:InfrastructureRoot a rdfs:Class;
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:InfrastructureRoot.nullFlavor;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   dcterms:description "An abstract super-type for all RIM classes, either directly or through inheritance";
   rdfs:comment "An abstract super-type for all RIM classes, either directly or through inheritance";
   dc:title "Base RIM Class";
   rdfs:label "Base RIM Class".

rim:InfrastructureRoot.nullFlavor a rdf:Property;
   dcterms:description "An indicator that the class instance is null, including the flavor of null that is intended";
   rdfs:comment "An indicator that the class instance is null, including the flavor of null that is intended";
   os:occurs os:Zero-or-one;
   rdfs:domain rim:InfrastructureRoot;
   rdfs:range dt:CS;
   fhir:binding vs:NullFlavor;
   fhir:bindingStrength fhir:BindingStrength\#required.
   
# - Entity --------------------------------------------------------------------
# Entity: classCode, determinerCode, id, code, statusCode

rim:Entity rdfs:subClassOf rim:InfrastructureRoot;
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Entity.classCode;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Entity.id;
     owl:minCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Entity.determinerCode;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Entity.determinerCode;
     owl:minCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Entity.statusCode;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Entity.code;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   dcterms:description "A physical thing, group of physical things or an organization capable of participating in Acts while in a role";
   rdfs:comment "A physical thing, group of physical things or an organization capable of participating in Acts while in a role";
   dc:title "Entity";
   rdfs:label "Entity".
 
rim:Entity.classCode a rdf:Property;
   dcterms:description "The major class of Entities to which an Entity-instance belongs";
   rdfs:comment "The major class of Entities to which an Entity-instance belongs";
   os:occurs os:Exactly-one;
   rdfs:domain rim:Entity;
   rdfs:range cs:EntityClass;
   fhir:binding vs:EntityClass;
   fhir:bindingStrength fhir:BindingStrength\#required.
   
rim:Entity.determinerCode a rdf:Property;
   dcterms:description "A code specifying whether the Entity object represents a universal (KIND) vs. a particular (INSTANCE)";
   rdfs:comment "A code specifying whether the Entity object represents a universal (KIND) vs. a particular (INSTANCE)";
   os:occurs os:Exactly-one;
   rdfs:domain rim:Entity;
   rdfs:range cs:EntityDeterminer;
   fhir:binding vs:EntityDeterminer;
   fhir:bindingStrength fhir:BindingStrength\#required.
   
rim:Entity.statusCode a rdf:Property;
   dcterms:description "A value representing whether the information associated with an Entity is currently active or inactive for the purpose of participation in acts";
   rdfs:comment "A value representing whether the information associated with an Entity is currently active or inactive for the purpose of participation in acts";
   os:occurs os:Zero-or-one;
   rdfs:domain rim:Entity;
   rdfs:range cs:EntityStatus;
   fhir:binding vs:EntityStatus;
   fhir:bindingStrength fhir:BindingStrength\#required.

rim:Entity.id a rdf:Property;
   dcterms:description "A unique identifier for the Entity";
   rdfs:comment "A unique identifier for the Entity";
   os:occurs os:Zero-to-many;
   rim:collectionType rim:CollectionType\#DSET;
   rdfs:domain rim:Entity;
   rdfs:range dt:II.
   
rim:Entity.code a rdf:Property;
   dcterms:description "The specific kind of Entity to which an Entity-instance belongs";
   rdfs:comment "The specific kind of Entity to which an Entity-instance belongs";
   os:occurs os:Zero-or-one;
   rdfs:domain rim:Entity;
   rdfs:range dt:CD;
   fhir:binding vs:EntityCode;
   fhir:bindingStrength fhir:BindingStrength\#extensible.
   
# - Role --------------------------------------------------------------------
# Role: classCode, code, id, negationInd, statusCode, priorityNumber

rim:Role rdfs:subClassOf rim:InfrastructureRoot;
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Role.classCode;
     owl:minCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Role.classCode;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Role.code;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Role.negationInd;
     owl:minCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Role.negationInd;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Role.statusCode;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Role.priorityNumber;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   dcterms:description "A competency of the Entity that plays the Role as identified, defined, guaranteed, or acknowledged by the Entity that scopes the Role";
   rdfs:comment "A competency of the Entity that plays the Role as identified, defined, guaranteed, or acknowledged by the Entity that scopes the Role";
   dc:title "Role";
   rdfs:label "Role".
 
rim:Role.classCode a rdf:Property;
   dcterms:description "The major class of Role to which a Role-instance belongs";
   rdfs:comment "The major class of Role to which a Role-instance belongs";
   os:occurs os:Exactly-one;
   rdfs:domain rim:Role;
   rdfs:range cs:RoleClass;
   fhir:binding vs:RoleClass;
   fhir:bindingStrength fhir:BindingStrength\#required.
   
rim:Role.code a rdf:Property;
   dcterms:description "The specific kind of Role to which an Role-instance belongs";
   rdfs:comment "The specific kind of Role to which an Role-instance belongs";
   os:occurs os:Zero-or-one;
   rdfs:domain rim:Role;
   rdfs:range dt:CD;
   fhir:binding vs:RoleCode;
   fhir:bindingStrength fhir:BindingStrength\#extensible.
   
rim:Role.id a rdf:Property;
   dcterms:description "A unique identifier for the player Entity in this Role";
   rdfs:comment "A unique identifier for the player Entity in this Role";
   os:occurs os:Zero-to-many;
   rim:collectionType rim:CollectionType\#DSET;
   rdfs:domain rim:Role;
   rdfs:range dt:II.
   
rim:Role.negationInd a rdf:Property;
   dcterms:description "An indicator specifying that the Role is a competency that is specifically not attributed to the Entity playing the Role.";
   rdfs:comment "An indicator specifying that the Role is a competency that is specifically not attributed to the Entity playing the Role.";
   os:occurs os:Exactly-one; # it has a default value, so instead of introducing this complexity, we simply make it mandatory
   rdfs:domain rim:Role;
   rdfs:range xs:boolean. # no nullFlavor
   
rim:Role.statusCode a rdf:Property;
   dcterms:description "The state of this Role as defined in the state-transition mode";
   rdfs:comment "The state of this Role as defined in the state-transition mode";
   os:occurs os:Zero-or-one;
   rdfs:domain rim:Role;
   rdfs:range cs:RoleStatus;
   fhir:binding vs:RoleStatus;
   fhir:bindingStrength fhir:BindingStrength\#required.

rim:Role.priorityNumber a rdf:Property;
   dcterms:description "An integer specifying the relative preference for considering this role instance before other like-typed Roles (same classCode and code) having the same scoper. Roles with lower priorityNumber values are considered before and above those with higher values.";
   rdfs:comment "An integer specifying the relative preference for considering this role instance before other like-typed Roles (same classCode and code) having the same scoper. Roles with lower priorityNumber values are considered before and above those with higher values.";
   os:occurs os:Zero-or-one;
   rdfs:domain rim:Role;
   rdfs:range dt:INT.
   
 
# - Participation --------------------------------------------------------------------
# Participation: typeCode, functionCode, sequenceNumber, negationInd

rim:Participation rdfs:subClassOf rim:InfrastructureRoot;
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Participation.typeCode;
     owl:minCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Participation.typeCode;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Participation.functionCode;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Participation.negationInd;
     owl:minCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Participation.negationInd;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Participation.sequenceNumber;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   dcterms:description "An association between an Act and a Role. The Entity playing the Role is the actor";
   rdfs:comment "An association between an Act and a Role. The Entity playing the Role is the actor";
   dc:title "Participation";
   rdfs:label "Participation".
 
rim:Participation.typeCode a rdf:Property;
   dcterms:description "The kind of Participation or involvement the Entity playing the Role associated with the Participation has with regard to the associated Act";
   rdfs:comment "The kind of Participation or involvement the Entity playing the Role associated with the Participation has with regard to the associated Act";
   os:occurs os:Exactly-one;
   rdfs:domain rim:Participation;
   rdfs:range cs:ParticipationType;
   fhir:binding vs:ParticipationType;
   fhir:bindingStrength fhir:BindingStrength\#required.
   
rim:Participation.functionCode a rdf:Property;
   dcterms:description "Additional detail about the function that the Participation has in the Act, if such detail is not implied by the Participation.typeCode";
   rdfs:comment "Additional detail about the function that the Participation has in the Act, if such detail is not implied by the Participation.typeCode";
   os:occurs os:Exactly-one;
   rdfs:domain rim:Participation;
   rdfs:range dt:CD;
   fhir:binding vs:ParticipationFunction;
   fhir:bindingStrength fhir:BindingStrength\#extensible.
   
rim:Participation.negationInd a rdf:Property;
   dcterms:description "An indicator stipulating that the specified participation did not, does not, or should not occur, depending on mood.";
   rdfs:comment "An indicator stipulating that the specified participation did not, does not, or should not occur, depending on mood.";
   os:occurs os:Exactly-one; # it has a default value, so instead of introducing this complexity, we simply make it mandatory
   rdfs:domain rim:Participation;
   rdfs:range xs:boolean. # no nullFlavor
   
rim:Participation.sequenceNumber a rdf:Property;
   dcterms:description "An integer specifying the relative order of occurrence of the Participation in relation to other Participations of the same Act of the same type (same typeCode)";
   rdfs:comment "An integer specifying the relative order of occurrence of the Participation in relation to other Participations of the same Act of the same type (same typeCode)";
   os:occurs os:Zero-or-one;
   rdfs:domain rim:Participation;
   rdfs:range dt:INT.
   
# - Act --------------------------------------------------------------------
# Act: classCode, moodCode, id, code, actionNegationInd, statusCode, priorityCode

rim:Act rdfs:subClassOf rim:InfrastructureRoot;
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Act.classCode;
     owl:minCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Act.classCode;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Act.moodCode;
     owl:minCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Act.moodCode;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Act.code;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Act.actionNegationInd;
     owl:minCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Act.actionNegationInd;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Act.statusCode;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   dcterms:description "A record of something that is being done, has been done, can be done, or is intended or requested to be done";
   rdfs:comment "A record of something that is being done, has been done, can be done, or is intended or requested to be done";
   dc:title "Act";
   rdfs:label "Act".
 
rim:Act.classCode a rdf:Property;
   dcterms:description "The major class of Acts to which an Act-instance belongs.";
   rdfs:comment "The major class of Acts to which an Act-instance belongs.";
   os:occurs os:Exactly-one;
   rdfs:domain rim:Act;
   rdfs:range cs:ActClass;
   fhir:binding vs:ActClass;
   fhir:bindingStrength fhir:BindingStrength\#required.
   
rim:Act.moodCode a rdf:Property;
   dcterms:description "The intended use of the Act statement: as a report of fact, a command, a possibility, a goal, etc";
   rdfs:comment "The intended use of the Act statement: as a report of fact, a command, a possibility, a goal, etc";
   os:occurs os:Exactly-one;
   rdfs:domain rim:Act;
   rdfs:range cs:ActMood;
   fhir:binding vs:ActMood;
   fhir:bindingStrength fhir:BindingStrength\#required.
   
rim:Act.code a rdf:Property;
   dcterms:description "The particular kind of Act that the Act-instance represents within its class";
   rdfs:comment "The particular kind of Act that the Act-instance represents within its class";
   os:occurs os:Exactly-one;
   rdfs:domain rim:Act;
   rdfs:range dt:CD;
   fhir:binding vs:ActCode;
   fhir:bindingStrength fhir:BindingStrength\#preferred.
   
rim:Act.actionNegationInd a rdf:Property;
   dcterms:description "An indicator specifying that the Act statement is a negation of the Act in Event mood as described by the descriptive attributes";
   rdfs:comment "An indicator specifying that the Act statement is a negation of the Act in Event mood as described by the descriptive attributes";
   os:occurs os:Exactly-one; # it has a default value, so instead of introducing this complexity, we simply make it mandatory
   rdfs:domain rim:Act;
   rdfs:range xs:boolean. # no nullFlavor
   
rim:Act.statusCode a rdf:Property;
   dcterms:description "The state of the Act";
   rdfs:comment "The state of the Act";
   os:occurs os:Zero-or-one;
   rdfs:domain rim:Act;
   rdfs:range cs:ActStatus;
   fhir:binding vs:ActStatus;
   fhir:bindingStrength fhir:BindingStrength\#required.

rim:Act.priorityCode a rdf:Property;
   dcterms:description "The urgency under which the Act happened, can happen, is happening, is intended to happen, or is requested/demanded to happen.";
   rdfs:comment "The urgency under which the Act happened, can happen, is happening, is intended to happen, or is requested/demanded to happen.";
   os:occurs os:Zero-to-many;
   rdfs:domain rim:Act;
   rdfs:range dt:CD;
   fhir:binding vs:ActPriority;
   fhir:bindingStrength fhir:BindingStrength\#preferred.

# - Observation --------------------------------------------------------------------
# Observation is special because of valueNegationInd
# Observation: valueNegationInd

rim:Observation rdfs:subClassOf rim:Act;
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Act.valueNegationInd;
     owl:minCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:Act.valueNegationInd;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   dcterms:description "An act that is intended to result in new information about a subject";
   rdfs:comment "An act that is intended to result in new information about a subject";
   dc:title "Observation";
   rdfs:label "Observation".
 
rim:Act.valueNegationInd a rdf:Property;
   dcterms:description "Indicates that when the observation event occurred, the finding communicated by the value attribute was NOT found. This attribute should only be used when the terminology used for Observation.value is not itself capable of expressing negated findings. (E.g. ICD9).";
   rdfs:comment "Indicates that when the observation event occurred, the finding communicated by the value attribute was NOT found. This attribute should only be used when the terminology used for Observation.value is not itself capable of expressing negated findings. (E.g. ICD9).";
   os:occurs os:Exactly-one; # it has a default value, so instead of introducing this complexity, we simply make it mandatory
   rdfs:domain rim:Act;
   rdfs:range xs:boolean. # no nullFlavor
   
# - ActRelationship --------------------------------------------------------------------
# ActRelationship: typeCode, inversionInd, priorityNumber, negationInd

rim:ActRelationship rdfs:subClassOf rim:InfrastructureRoot;
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:ActRelationship.typeCode;
     owl:minCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:ActRelationship.typeCode;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:ActRelationship.inversionInd;
     owl:minCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:ActRelationship.inversionInd;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:ActRelationship.negationInd;
     owl:minCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:ActRelationship.negationInd;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   rdfs:subClassOf [
     a owl:Restriction;
     owl:onProperty rim:ActRelationship.priorityNumber;
     owl:maxCardinality "1^^xs:nonNegativeInteger"
   ];
   dcterms:description "A directed association between a source Act and a target Act";
   rdfs:comment "A directed association between a source Act and a target Act";
   dc:title "ActRelationship";
   rdfs:label "ActRelationship".
 
rim:ActRelationship.typeCode a rdf:Property;
   dcterms:description "The meaning and purpose of the ActRelationship instance";
   rdfs:comment "The meaning and purpose of the ActRelationship instance";
   os:occurs os:Exactly-one;
   rdfs:domain rim:ActRelationship;
   rdfs:range cs:ActRelationshipType;
   fhir:binding vs:ActRelationshipType;
   fhir:bindingStrength fhir:BindingStrength\#required.
   
rim:ActRelationship.inversionInd a rdf:Property;
   dcterms:description "An indicator specifying that the ActRelationship.typeCode should be interpreted as if the roles of the source and target Acts were reversed";
   rdfs:comment "An indicator specifying that the ActRelationship.typeCode should be interpreted as if the roles of the source and target Acts were reversed";
   os:occurs os:Exactly-one; # it has a default value, so instead of introducing this complexity, we simply make it mandatory
   rdfs:domain rim:ActRelationship;
   rdfs:range xs:boolean. # no nullFlavor
   
rim:ActRelationship.negationInd a rdf:Property;
   dcterms:description "An indicator that asserts that the meaning of the link is negated";
   rdfs:comment "An indicator that asserts that the meaning of the link is negated";
   os:occurs os:Exactly-one; # it has a default value, so instead of introducing this complexity, we simply make it mandatory
   rdfs:domain rim:ActRelationship;
   rdfs:range xs:boolean. # no nullFlavor
   
rim:ActRelationship.priorityNumber a rdf:Property;
   dcterms:description "An integer specifying the relative preference for considering this relationship before other like-typed relationships having the same source Act. Relationships with lower priorityNumber values are considered before and above those with higher values";
   rdfs:comment "An integer specifying the relative preference for considering this relationship before other like-typed relationships having the same source Act. Relationships with lower priorityNumber values are considered before and above those with higher values";
   os:occurs os:Zero-or-one;
   rdfs:domain rim:ActRelationship;
   rdfs:range dt:REAL.

# vocab... pasted here at the end by the build tool
# - vs:v3-AcknowledgementCondition ---------------------------------------------

vs:v3-AcknowledgementCondition a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System AcknowledgementCondition";
  dc:title "v3 Code System AcknowledgementCondition";
  rdfs:comment " The codes identify the conditions under which accept acknowledgements are required to be returned in response to this message. Note that accept acknowledgement address two different issues at the same time: reliable transport as well as syntactical correctness";
  dcterms:description " The codes identify the conditions under which accept acknowledgements are required to be returned in response to this message. Note that accept acknowledgement address two different issues at the same time: reliable transport as well as syntactical correctness";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:AcknowledgementCondition.

cs:AcknowledgementCondition.system a fhir:CodeSystem;
  rdfs:label "v3 Code System AcknowledgementCondition";
  dc:title "v3 Code System AcknowledgementCondition";
  rdfs:comment " The codes identify the conditions under which accept acknowledgements are required to be returned in response to this message. Note that accept acknowledgement address two different issues at the same time: reliable transport as well as syntactical correctness";
  dcterms:description " The codes identify the conditions under which accept acknowledgements are required to be returned in response to this message. Note that accept acknowledgement address two different issues at the same time: reliable transport as well as syntactical correctness";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:AcknowledgementCondition a fhir:Concept.

cs:AcknowledgementCondition\#AL rdfs:subClassOf cs:AcknowledgementCondition;
  rdfs:label "Always";
  dc:title "Always";
  rdfs:comment "Always send an acknowledgement.";
  dcterms:description "Always send an acknowledgement.".

cs:AcknowledgementCondition\#ER rdfs:subClassOf cs:AcknowledgementCondition;
  rdfs:label "Error/reject only";
  dc:title "Error/reject only";
  rdfs:comment "Send an acknowledgement for error/reject conditions only.";
  dcterms:description "Send an acknowledgement for error/reject conditions only.".

cs:AcknowledgementCondition\#NE rdfs:subClassOf cs:AcknowledgementCondition;
  rdfs:label "Never";
  dc:title "Never";
  rdfs:comment "Never send an acknowledgement.";
  dcterms:description "Never send an acknowledgement.".

cs:AcknowledgementCondition\#SU rdfs:subClassOf cs:AcknowledgementCondition;
  rdfs:label "Successful only";
  dc:title "Successful only";
  rdfs:comment "Send an acknowledgement for successful completions only.";
  dcterms:description "Send an acknowledgement for successful completions only.".

# - vs:v3-AcknowledgementDetailCode --------------------------------------------

vs:v3-AcknowledgementDetailCode a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System AcknowledgementDetailCode";
  dc:title "v3 Code System AcknowledgementDetailCode";
  rdfs:comment "  OpenIssue:\r\nMissing description.";
  dcterms:description "  OpenIssue:\r\nMissing description.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:AcknowledgementDetailCode.

cs:AcknowledgementDetailCode.system a fhir:CodeSystem;
  rdfs:label "v3 Code System AcknowledgementDetailCode";
  dc:title "v3 Code System AcknowledgementDetailCode";
  rdfs:comment "  OpenIssue:\r\nMissing description.";
  dcterms:description "  OpenIssue:\r\nMissing description.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:AcknowledgementDetailCode a fhir:Concept.

cs:AcknowledgementDetailCode\#%5fAcknowledgementDetailNotSupportedCode rdfs:subClassOf cs:AcknowledgementDetailCode;
  rdfs:label "AcknowledgementDetailNotSupportedCode";
  dc:title "AcknowledgementDetailNotSupportedCode";
  rdfs:comment "Refelects rejections because elements of the communication are not supported in the current context.";
  dcterms:description "Refelects rejections because elements of the communication are not supported in the current context.".

cs:AcknowledgementDetailCode\#NS200 rdfs:subClassOf cs:AcknowledgementDetailCode\#%5fAcknowledgementDetailNotSupportedCode;
  rdfs:label "Unsupported interaction";
  dc:title "Unsupported interaction";
  rdfs:comment "The interaction (or: this version of the interaction) is not supported.";
  dcterms:description "The interaction (or: this version of the interaction) is not supported.".

cs:AcknowledgementDetailCode\#NS202 rdfs:subClassOf cs:AcknowledgementDetailCode\#%5fAcknowledgementDetailNotSupportedCode;
  rdfs:label "Unsupported processing id";
  dc:title "Unsupported processing id";
  rdfs:comment "The Processing ID is not supported.";
  dcterms:description "The Processing ID is not supported.".

cs:AcknowledgementDetailCode\#NS203 rdfs:subClassOf cs:AcknowledgementDetailCode\#%5fAcknowledgementDetailNotSupportedCode;
  rdfs:label "Unsupported version id";
  dc:title "Unsupported version id";
  rdfs:comment "The Version ID is not supported.";
  dcterms:description "The Version ID is not supported.".

cs:AcknowledgementDetailCode\#NS250 rdfs:subClassOf cs:AcknowledgementDetailCode\#%5fAcknowledgementDetailNotSupportedCode;
  rdfs:label "Unsupported processing Mode";
  dc:title "Unsupported processing Mode";
  rdfs:comment "The processing mode is not supported.";
  dcterms:description "The processing mode is not supported.".

cs:AcknowledgementDetailCode\#NS260 rdfs:subClassOf cs:AcknowledgementDetailCode\#%5fAcknowledgementDetailNotSupportedCode;
  rdfs:label "Unknown sender";
  dc:title "Unknown sender";
  rdfs:comment "The Device.id of the sender is unknown.";
  dcterms:description "The Device.id of the sender is unknown.".

cs:AcknowledgementDetailCode\#NS261 rdfs:subClassOf cs:AcknowledgementDetailCode\#%5fAcknowledgementDetailNotSupportedCode;
  rdfs:label "Unrecognized attentionline";
  dc:title "Unrecognized attentionline";
  rdfs:comment "The receiver requires information in the attentionLine classes for routing purposes.";
  dcterms:description "The receiver requires information in the attentionLine classes for routing purposes.".

cs:AcknowledgementDetailCode\#INTERR rdfs:subClassOf cs:AcknowledgementDetailCode;
  rdfs:label "Internal system error";
  dc:title "Internal system error";
  rdfs:comment "An internal software component (database, application, queue mechanism, etc.) has failed, leading to inability to process the message.";
  dcterms:description "An internal software component (database, application, queue mechanism, etc.) has failed, leading to inability to process the message.".

cs:AcknowledgementDetailCode\#NOSTORE rdfs:subClassOf cs:AcknowledgementDetailCode;
  rdfs:label "No storage space for message.";
  dc:title "No storage space for message.";
  rdfs:comment "Rejection: The message can't be stored by the receiver due to an unspecified internal application issue. The message was neither processed nor stored by the receiving application.";
  dcterms:description "Rejection: The message can't be stored by the receiver due to an unspecified internal application issue. The message was neither processed nor stored by the receiving application.".

cs:AcknowledgementDetailCode\#RTEDEST rdfs:subClassOf cs:AcknowledgementDetailCode;
  rdfs:label "Message routing error, destination unreachable.";
  dc:title "Message routing error, destination unreachable.";
  rdfs:comment "Error: The destination of this message is known to the receiving application. Messages have been successfully routed to that destination in the past. The link to the destination application or an intermediate application is unavailable.";
  dcterms:description "Error: The destination of this message is known to the receiving application. Messages have been successfully routed to that destination in the past. The link to the destination application or an intermediate application is unavailable.".

cs:AcknowledgementDetailCode\#RTUDEST rdfs:subClassOf cs:AcknowledgementDetailCode;
  rdfs:label "Error: Message routing error, unknown destination.";
  dc:title "Error: Message routing error, unknown destination.";
  rdfs:comment "The destination of this message is unknown to the receiving application. The receiving application in the message does not match the application which received the message. The message was neither routed, processed nor stored by the receiving application.";
  dcterms:description "The destination of this message is unknown to the receiving application. The receiving application in the message does not match the application which received the message. The message was neither routed, processed nor stored by the receiving application.".

cs:AcknowledgementDetailCode\#RTWDEST rdfs:subClassOf cs:AcknowledgementDetailCode;
  rdfs:label "Message routing warning, destination unreachable.";
  dc:title "Message routing warning, destination unreachable.";
  rdfs:comment "Warning: The destination of this message is known to the receiving application. Messages have been successfully routed to that destination in the past. The link to the destination application or an intermediate application is (temporarily) unavailable. The receiving application will forward the message as soon as the destination can be reached again.";
  dcterms:description "Warning: The destination of this message is known to the receiving application. Messages have been successfully routed to that destination in the past. The link to the destination application or an intermediate application is (temporarily) unavailable. The receiving application will forward the message as soon as the destination can be reached again.".

cs:AcknowledgementDetailCode\#SYN rdfs:subClassOf cs:AcknowledgementDetailCode;
  rdfs:label "Syntax error";
  dc:title "Syntax error";
  rdfs:comment "Reflects errors in the syntax or structure of the communication.";
  dcterms:description "Reflects errors in the syntax or structure of the communication.".

cs:AcknowledgementDetailCode\#SYN102 rdfs:subClassOf cs:AcknowledgementDetailCode\#SYN;
  rdfs:label "Data type error";
  dc:title "Data type error";
  rdfs:comment "The attribute contained data of the wrong data type, e.g. a numeric attribute contained \"FOO\".";
  dcterms:description "The attribute contained data of the wrong data type, e.g. a numeric attribute contained \"FOO\".".

cs:AcknowledgementDetailCode\#SYN105 rdfs:subClassOf cs:AcknowledgementDetailCode\#SYN;
  rdfs:label "Required element missing";
  dc:title "Required element missing";
  rdfs:comment "Description: Required association or attribute missing in message; or the sequence of the classes is different than required by the standard or one of the conformance profiles identified in the message.";
  dcterms:description "Description: Required association or attribute missing in message; or the sequence of the classes is different than required by the standard or one of the conformance profiles identified in the message.".

cs:AcknowledgementDetailCode\#SYN100 rdfs:subClassOf cs:AcknowledgementDetailCode\#SYN105;
  rdfs:label "Required association missing";
  dc:title "Required association missing";
  rdfs:comment "Required association missing in message; or the sequence of the classes is different than required by the standard or one of the conformance profiles identified in the message.";
  dcterms:description "Required association missing in message; or the sequence of the classes is different than required by the standard or one of the conformance profiles identified in the message.".

cs:AcknowledgementDetailCode\#SYN101 rdfs:subClassOf cs:AcknowledgementDetailCode\#SYN105;
  rdfs:label "Required attribute missing";
  dc:title "Required attribute missing";
  rdfs:comment "A required attribute is missing in a class.";
  dcterms:description "A required attribute is missing in a class.".

cs:AcknowledgementDetailCode\#SYN114 rdfs:subClassOf cs:AcknowledgementDetailCode\#SYN105;
  rdfs:label "Insufficient repetitions";
  dc:title "Insufficient repetitions";
  rdfs:comment "Description: The number of repetitions of a group of association or attributes is less than the required minimum for the standard or of one of the conformance profiles or templates identified in the message.";
  dcterms:description "Description: The number of repetitions of a group of association or attributes is less than the required minimum for the standard or of one of the conformance profiles or templates identified in the message.".

cs:AcknowledgementDetailCode\#SYN106 rdfs:subClassOf cs:AcknowledgementDetailCode\#SYN;
  rdfs:label "Terminology error";
  dc:title "Terminology error";
  rdfs:comment "Description: A coded attribute or datatype property violates one of the terminology constraints specified in the standard or one of the conformance profiles or templates declared by the instance.";
  dcterms:description "Description: A coded attribute or datatype property violates one of the terminology constraints specified in the standard or one of the conformance profiles or templates declared by the instance.".

cs:AcknowledgementDetailCode\#SYN103 rdfs:subClassOf cs:AcknowledgementDetailCode\#SYN106;
  rdfs:label "Value not found in code system";
  dc:title "Value not found in code system";
  rdfs:comment "An attribute value was compared against the corresponding code system, and no match was found.";
  dcterms:description "An attribute value was compared against the corresponding code system, and no match was found.".

cs:AcknowledgementDetailCode\#SYN104 rdfs:subClassOf cs:AcknowledgementDetailCode\#SYN106;
  rdfs:label "Invalid code system in CNE";
  dc:title "Invalid code system in CNE";
  rdfs:comment "An attribute value referenced a code system that is not valid for an attribute constrained to CNE.";
  dcterms:description "An attribute value referenced a code system that is not valid for an attribute constrained to CNE.".

cs:AcknowledgementDetailCode\#SYN107 rdfs:subClassOf cs:AcknowledgementDetailCode\#SYN106;
  rdfs:label "Deprecated code";
  dc:title "Deprecated code";
  rdfs:comment "Description: A coded attribute is referencing a code that has been deprecated by the owning code system.";
  dcterms:description "Description: A coded attribute is referencing a code that has been deprecated by the owning code system.".

cs:AcknowledgementDetailCode\#SYN108 rdfs:subClassOf cs:AcknowledgementDetailCode\#SYN;
  rdfs:label "Number of repetitions exceeds limit";
  dc:title "Number of repetitions exceeds limit";
  rdfs:comment "Description: The number of repetitions of a (group of) association(s) or attribute(s) exceeds the limits of the standard or of one of the conformance profiles or templates identified in the message.";
  dcterms:description "Description: The number of repetitions of a (group of) association(s) or attribute(s) exceeds the limits of the standard or of one of the conformance profiles or templates identified in the message.".

cs:AcknowledgementDetailCode\#SYN110 rdfs:subClassOf cs:AcknowledgementDetailCode\#SYN108;
  rdfs:label "Number of association repetitions exceeds limit";
  dc:title "Number of association repetitions exceeds limit";
  rdfs:comment "The number of repetitions of a (group of) association(s) exceeds the limits of the standard or of one of the conformance profiles identified in the message.";
  dcterms:description "The number of repetitions of a (group of) association(s) exceeds the limits of the standard or of one of the conformance profiles identified in the message.".

cs:AcknowledgementDetailCode\#SYN112 rdfs:subClassOf cs:AcknowledgementDetailCode\#SYN108;
  rdfs:label "Number of attribute repetitions exceeds limit";
  dc:title "Number of attribute repetitions exceeds limit";
  rdfs:comment "The number of repetitions of an attribute exceeds the limits of the standard or of one of the conformance profiles identified in the message.";
  dcterms:description "The number of repetitions of an attribute exceeds the limits of the standard or of one of the conformance profiles identified in the message.".

cs:AcknowledgementDetailCode\#SYN109 rdfs:subClassOf cs:AcknowledgementDetailCode\#SYN;
  rdfs:label "Mandatory element with null value";
  dc:title "Mandatory element with null value";
  rdfs:comment "Description: An attribute or association identified as mandatory in a specification or declared conformance profile or template has been specified with a null flavor.";
  dcterms:description "Description: An attribute or association identified as mandatory in a specification or declared conformance profile or template has been specified with a null flavor.".

cs:AcknowledgementDetailCode\#SYN111 rdfs:subClassOf cs:AcknowledgementDetailCode\#SYN;
  rdfs:label "Value does not match fixed value";
  dc:title "Value does not match fixed value";
  rdfs:comment "Description: The value of an attribute or property differs from the fixed value asserted in the standard or one of the conformance profiles or templates declared in the message.";
  dcterms:description "Description: The value of an attribute or property differs from the fixed value asserted in the standard or one of the conformance profiles or templates declared in the message.".

cs:AcknowledgementDetailCode\#SYN113 rdfs:subClassOf cs:AcknowledgementDetailCode\#SYN;
  rdfs:label "Formal constraint violation";
  dc:title "Formal constraint violation";
  rdfs:comment "Description: A formal constraint asserted in the standard or one of the conformance profiles or templates declared in the message has been violated.";
  dcterms:description "Description: A formal constraint asserted in the standard or one of the conformance profiles or templates declared in the message has been violated.".

# - vs:v3-AcknowledgementDetailType --------------------------------------------

vs:v3-AcknowledgementDetailType a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System AcknowledgementDetailType";
  dc:title "v3 Code System AcknowledgementDetailType";
  rdfs:comment " A code identifying the specific message to be provided.  Discussion:\r\nA textual value may be specified as the print name, or for non-coded messages, as the original text.  Examples:\r\n'Required attribute xxx is missing', 'System will be unavailable March 19 from 0100 to 0300'";
  dcterms:description " A code identifying the specific message to be provided.  Discussion:\r\nA textual value may be specified as the print name, or for non-coded messages, as the original text.  Examples:\r\n'Required attribute xxx is missing', 'System will be unavailable March 19 from 0100 to 0300'";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:AcknowledgementDetailType.

cs:AcknowledgementDetailType.system a fhir:CodeSystem;
  rdfs:label "v3 Code System AcknowledgementDetailType";
  dc:title "v3 Code System AcknowledgementDetailType";
  rdfs:comment " A code identifying the specific message to be provided.  Discussion:\r\nA textual value may be specified as the print name, or for non-coded messages, as the original text.  Examples:\r\n'Required attribute xxx is missing', 'System will be unavailable March 19 from 0100 to 0300'";
  dcterms:description " A code identifying the specific message to be provided.  Discussion:\r\nA textual value may be specified as the print name, or for non-coded messages, as the original text.  Examples:\r\n'Required attribute xxx is missing', 'System will be unavailable March 19 from 0100 to 0300'";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:AcknowledgementDetailType a fhir:Concept.

cs:AcknowledgementDetailType\#E rdfs:subClassOf cs:AcknowledgementDetailType;
  rdfs:label "Error";
  dc:title "Error";
  rdfs:comment "Definition:An issue which has prevented, or will prevent (unless a management is provided for the issue by the sender), the successful processing of an interaction.  Response interactions which include an issue which is an Error are a 'rejection', indicating that the request was not successfully processed. \r\n\n                        \n                           Example:Unable to find specified patient.";
  dcterms:description "Definition:An issue which has prevented, or will prevent (unless a management is provided for the issue by the sender), the successful processing of an interaction.  Response interactions which include an issue which is an Error are a 'rejection', indicating that the request was not successfully processed. \r\n\n                        \n                           Example:Unable to find specified patient.".

cs:AcknowledgementDetailType\#I rdfs:subClassOf cs:AcknowledgementDetailType;
  rdfs:label "Information";
  dc:title "Information";
  rdfs:comment "Definition: The message relates to an issue which has no bearing on the successful processing of the request.  Information issues cannot be overridden by specifying a management.\r\n\n                        \n                           Example: A Patient's coverage will expire in 5 days.";
  dcterms:description "Definition: The message relates to an issue which has no bearing on the successful processing of the request.  Information issues cannot be overridden by specifying a management.\r\n\n                        \n                           Example: A Patient's coverage will expire in 5 days.".

cs:AcknowledgementDetailType\#W rdfs:subClassOf cs:AcknowledgementDetailType;
  rdfs:label "Warning";
  dc:title "Warning";
  rdfs:comment "Definition: The message relates to an issue which cannot prevent the successful processing of a request, but which could result in the processing not having the ideal or intended effect.  Managing a warning issue is not required for successful processing, but will suppress the warning from being raised. \r\n\n                        \n                           Example:\n                        \r\n\n                        Unexpected additional repetitions of phone number have been ignored.";
  dcterms:description "Definition: The message relates to an issue which cannot prevent the successful processing of a request, but which could result in the processing not having the ideal or intended effect.  Managing a warning issue is not required for successful processing, but will suppress the warning from being raised. \r\n\n                        \n                           Example:\n                        \r\n\n                        Unexpected additional repetitions of phone number have been ignored.".

cs:AcknowledgementDetailType\#ERR rdfs:subClassOf cs:AcknowledgementDetailType.

cs:AcknowledgementDetailType\#INFO rdfs:subClassOf cs:AcknowledgementDetailType.

cs:AcknowledgementDetailType\#WARN rdfs:subClassOf cs:AcknowledgementDetailType.

# - vs:v3-AcknowledgementType --------------------------------------------------

vs:v3-AcknowledgementType a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System AcknowledgementType";
  dc:title "v3 Code System AcknowledgementType";
  rdfs:comment " This attribute contains an acknowledgement code as described in the HL7 message processing rules.  OpenIssue:\r\nDescription was copied from attribute and needs to be improved to be appropriate for a value set.";
  dcterms:description " This attribute contains an acknowledgement code as described in the HL7 message processing rules.  OpenIssue:\r\nDescription was copied from attribute and needs to be improved to be appropriate for a value set.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:AcknowledgementType.

cs:AcknowledgementType.system a fhir:CodeSystem;
  rdfs:label "v3 Code System AcknowledgementType";
  dc:title "v3 Code System AcknowledgementType";
  rdfs:comment " This attribute contains an acknowledgement code as described in the HL7 message processing rules.  OpenIssue:\r\nDescription was copied from attribute and needs to be improved to be appropriate for a code system.";
  dcterms:description " This attribute contains an acknowledgement code as described in the HL7 message processing rules.  OpenIssue:\r\nDescription was copied from attribute and needs to be improved to be appropriate for a code system.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:AcknowledgementType a fhir:Concept.

cs:AcknowledgementType\#AA rdfs:subClassOf cs:AcknowledgementType;
  rdfs:label "Application Acknowledgement Accept";
  dc:title "Application Acknowledgement Accept";
  rdfs:comment "Receiving application successfully processed message.";
  dcterms:description "Receiving application successfully processed message.".

cs:AcknowledgementType\#AE rdfs:subClassOf cs:AcknowledgementType;
  rdfs:label "Application Acknowledgement Error";
  dc:title "Application Acknowledgement Error";
  rdfs:comment "Receiving application found error in processing message.  Sending error response with additional error detail information.";
  dcterms:description "Receiving application found error in processing message.  Sending error response with additional error detail information.".

cs:AcknowledgementType\#AR rdfs:subClassOf cs:AcknowledgementType;
  rdfs:label "Application Acknowledgement Reject";
  dc:title "Application Acknowledgement Reject";
  rdfs:comment "Receiving application failed to process message for reason unrelated to content or format.  Original message sender must decide on whether to automatically send message again.";
  dcterms:description "Receiving application failed to process message for reason unrelated to content or format.  Original message sender must decide on whether to automatically send message again.".

cs:AcknowledgementType\#CA rdfs:subClassOf cs:AcknowledgementType;
  rdfs:label "Accept Acknowledgement Commit Accept";
  dc:title "Accept Acknowledgement Commit Accept";
  rdfs:comment "Receiving message handling service accepts responsibility for passing message onto receiving application.";
  dcterms:description "Receiving message handling service accepts responsibility for passing message onto receiving application.".

cs:AcknowledgementType\#CE rdfs:subClassOf cs:AcknowledgementType;
  rdfs:label "Accept Acknowledgement Commit Error";
  dc:title "Accept Acknowledgement Commit Error";
  rdfs:comment "Receiving message handling service cannot accept message for any other reason (e.g. message sequence number, etc.).";
  dcterms:description "Receiving message handling service cannot accept message for any other reason (e.g. message sequence number, etc.).".

cs:AcknowledgementType\#CR rdfs:subClassOf cs:AcknowledgementType;
  rdfs:label "Accept Acknowledgement Commit Reject";
  dc:title "Accept Acknowledgement Commit Reject";
  rdfs:comment "Receiving message handling service rejects message if interaction identifier, version or processing mode is incompatible with known receiving application role information.";
  dcterms:description "Receiving message handling service rejects message if interaction identifier, version or processing mode is incompatible with known receiving application role information.".

# - vs:v3-ActClass -------------------------------------------------------------

vs:v3-ActClass a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActClass";
  dc:title "v3 Code System ActClass";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActClass.

cs:ActClass.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActClass";
  dc:title "v3 Code System ActClass";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActClass a fhir:Concept.

cs:ActClass\#ACT rdfs:subClassOf cs:ActClass;
  rdfs:label "act";
  dc:title "act";
  rdfs:comment "A record of something that is being done, has been done, can be done, or is intended or requested to be done.\r\n\n                        \n                           Examples:The kinds of acts that are common in health care are (1) a clinical observation, (2) an assessment of health condition (such as problems and diagnoses), (3) healthcare goals, (4) treatment services (such as medication, surgery, physical and psychological therapy), (5) assisting, monitoring or attending, (6) training and education services to patients and their next of kin, (7) and notary services (such as advanced directives or living will), (8)  editing and maintaining documents, and many others.\r\n\n                        \n                           Discussion and Rationale: Acts are the pivot of the RIM; all domain information and processes are represented primarily in Acts. Any profession or business, including healthcare, is primarily constituted of intentional and occasionally non-intentional actions, performed and recorded by responsible actors. An Act-instance is a record of such an action.\r\n\n                        Acts connect to Entities in their Roles through Participations and connect to other Acts through ActRelationships. Participations are the authors, performers and other responsible parties as well as subjects and beneficiaries (which includes tools and material used in the performance of the act, which are also subjects). The moodCode distinguishes between Acts that are meant as factual records, vs. records of intended or ordered services, and the other modalities in which act can appear.\r\n\n                        One of the Participations that all acts have (at least implicitly) is a primary author, who is responsible of the Act and who \"owns\" the act. Responsibility for the act means responsibility for what is being stated in the Act and as what it is stated. Ownership of the act is assumed in the sense of who may operationally modify the same act. Ownership and responsibility of the Act is not the same as ownership or responsibility of what the Act-object refers to in the real world. The same real world activity can be described by two people, each being the author of their Act, describing the same real world activity. Yet one can be a witness while the other can be a principal performer. The performer has responsibilities for the physical actions; the witness only has responsibility for making a true statement to the best of his or her ability. The two Act-instances may even disagree, but because each is properly attributed to its author, such disagreements can exist side by side and left to arbitration by a recipient of these Act-instances.\r\n\n                        In this sense, an Act-instance represents a \"statement\" according to Rector and Nowlan (1991) [Foundations for an electronic medical record. Methods Inf Med. 30.]  Rector and Nowlan have emphasized the importance of understanding the medical record not as a collection of facts, but \"a faithful record of what clinicians have heard, seen, thought, and done.\" Rector and Nowlan go on saying that \"the other requirements for a medical record, e.g., that it be attributable and permanent, follow naturally from this view.\" Indeed the Act class is this attributable statement, and the rules of updating acts (discussed in the state-transition model, see Act.statusCode) versus generating new Act-instances are designed according to this principle of permanent attributable statements.\r\n\n                        Rector and Nolan focus on the electronic medical record as a collection of statements, while attributed statements, these are still mostly factual statements. However, the Act class goes beyond this limitation to attributed factual statements, representing what is known as \"speech-acts\" in linguistics and philosophy.  The notion of speech-act includes that there is pragmatic meaning in language utterances, aside from just factual statements; and that these utterances interact with the real world to change the state of affairs, even directly cause physical activities to happen. For example, an order is a speech act that (provided it is issued adequately) will cause the ordered action to be physically performed. The speech act theory has culminated in the seminal work by Austin (1962) [How to do things with words. Oxford University Press].\r\n\n                        An activity in the real world may progress from defined, through planned and ordered to executed, which is represented as the mood of the Act. Even though one might think of a single activity as progressing from planned to executed, this progression is reflected by multiple Act-instances, each having one and only one mood that will not change along the Act-instance life cycle.  This is because the attribution and content of speech acts along this progression of an activity may be different, and it is often critical that a permanent and faithful record be maintained of this progression. The specification of orders or promises or plans must not be overwritten by the specification of what was actually done, so as to allow comparing actions with their earlier specifications. Act-instances that describe this progression of the same real world activity are linked through the ActRelationships (of the relationship category \"sequel\").\r\n\n                        Act as statements or speech-acts are the only representation of real world facts or processes in the HL7 RIM. The truth about the real world is constructed through a combination (and arbitration) of such attributed statements only, and there is no class in the RIM whose objects represent \"objective state of affairs\" or \"real processes\" independent from attributed statements. As such, there is no distinction between an activity and its documentation. Every Act includes both to varying degrees. For example, a factual statement made about recent (but past) activities, authored (and signed) by the performer of such activities, is commonly known as a procedure report or original documentation (e.g., surgical procedure report, clinic note etc.). Conversely, a status update on an activity that is presently in progress, authored by the performer (or a close observer) is considered to capture that activity (and is later superceded by a full procedure report). However, both status update and procedure report are acts of the same kind, only distinguished by mood and state (see statusCode) and completeness of the information.";
  dcterms:description "A record of something that is being done, has been done, can be done, or is intended or requested to be done.\r\n\n                        \n                           Examples:The kinds of acts that are common in health care are (1) a clinical observation, (2) an assessment of health condition (such as problems and diagnoses), (3) healthcare goals, (4) treatment services (such as medication, surgery, physical and psychological therapy), (5) assisting, monitoring or attending, (6) training and education services to patients and their next of kin, (7) and notary services (such as advanced directives or living will), (8)  editing and maintaining documents, and many others.\r\n\n                        \n                           Discussion and Rationale: Acts are the pivot of the RIM; all domain information and processes are represented primarily in Acts. Any profession or business, including healthcare, is primarily constituted of intentional and occasionally non-intentional actions, performed and recorded by responsible actors. An Act-instance is a record of such an action.\r\n\n                        Acts connect to Entities in their Roles through Participations and connect to other Acts through ActRelationships. Participations are the authors, performers and other responsible parties as well as subjects and beneficiaries (which includes tools and material used in the performance of the act, which are also subjects). The moodCode distinguishes between Acts that are meant as factual records, vs. records of intended or ordered services, and the other modalities in which act can appear.\r\n\n                        One of the Participations that all acts have (at least implicitly) is a primary author, who is responsible of the Act and who \"owns\" the act. Responsibility for the act means responsibility for what is being stated in the Act and as what it is stated. Ownership of the act is assumed in the sense of who may operationally modify the same act. Ownership and responsibility of the Act is not the same as ownership or responsibility of what the Act-object refers to in the real world. The same real world activity can be described by two people, each being the author of their Act, describing the same real world activity. Yet one can be a witness while the other can be a principal performer. The performer has responsibilities for the physical actions; the witness only has responsibility for making a true statement to the best of his or her ability. The two Act-instances may even disagree, but because each is properly attributed to its author, such disagreements can exist side by side and left to arbitration by a recipient of these Act-instances.\r\n\n                        In this sense, an Act-instance represents a \"statement\" according to Rector and Nowlan (1991) [Foundations for an electronic medical record. Methods Inf Med. 30.]  Rector and Nowlan have emphasized the importance of understanding the medical record not as a collection of facts, but \"a faithful record of what clinicians have heard, seen, thought, and done.\" Rector and Nowlan go on saying that \"the other requirements for a medical record, e.g., that it be attributable and permanent, follow naturally from this view.\" Indeed the Act class is this attributable statement, and the rules of updating acts (discussed in the state-transition model, see Act.statusCode) versus generating new Act-instances are designed according to this principle of permanent attributable statements.\r\n\n                        Rector and Nolan focus on the electronic medical record as a collection of statements, while attributed statements, these are still mostly factual statements. However, the Act class goes beyond this limitation to attributed factual statements, representing what is known as \"speech-acts\" in linguistics and philosophy.  The notion of speech-act includes that there is pragmatic meaning in language utterances, aside from just factual statements; and that these utterances interact with the real world to change the state of affairs, even directly cause physical activities to happen. For example, an order is a speech act that (provided it is issued adequately) will cause the ordered action to be physically performed. The speech act theory has culminated in the seminal work by Austin (1962) [How to do things with words. Oxford University Press].\r\n\n                        An activity in the real world may progress from defined, through planned and ordered to executed, which is represented as the mood of the Act. Even though one might think of a single activity as progressing from planned to executed, this progression is reflected by multiple Act-instances, each having one and only one mood that will not change along the Act-instance life cycle.  This is because the attribution and content of speech acts along this progression of an activity may be different, and it is often critical that a permanent and faithful record be maintained of this progression. The specification of orders or promises or plans must not be overwritten by the specification of what was actually done, so as to allow comparing actions with their earlier specifications. Act-instances that describe this progression of the same real world activity are linked through the ActRelationships (of the relationship category \"sequel\").\r\n\n                        Act as statements or speech-acts are the only representation of real world facts or processes in the HL7 RIM. The truth about the real world is constructed through a combination (and arbitration) of such attributed statements only, and there is no class in the RIM whose objects represent \"objective state of affairs\" or \"real processes\" independent from attributed statements. As such, there is no distinction between an activity and its documentation. Every Act includes both to varying degrees. For example, a factual statement made about recent (but past) activities, authored (and signed) by the performer of such activities, is commonly known as a procedure report or original documentation (e.g., surgical procedure report, clinic note etc.). Conversely, a status update on an activity that is presently in progress, authored by the performer (or a close observer) is considered to capture that activity (and is later superceded by a full procedure report). However, both status update and procedure report are acts of the same kind, only distinguished by mood and state (see statusCode) and completeness of the information.".

cs:ActClass\#%5fActClassRecordOrganizer rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "record organizer";
  dc:title "record organizer";
  rdfs:comment "Used to group a set of acts sharing a common context. Organizer structures can nest within other context structures - such as where a document is contained within a folder, or a folder is contained within an EHR extract.";
  dcterms:description "Used to group a set of acts sharing a common context. Organizer structures can nest within other context structures - such as where a document is contained within a folder, or a folder is contained within an EHR extract.".

cs:ActClass\#COMPOSITION rdfs:subClassOf cs:ActClass\#%5fActClassRecordOrganizer;
  rdfs:label "composition";
  dc:title "composition";
  rdfs:comment "A context representing a grouped commitment of information to the EHR. It is considered the unit of modification of the record, the unit of transmission in record extracts, and the unit of attestation by authorizing clinicians.\r\n\n                        A composition represents part of a patient record originating from a single interaction between an authenticator and the record.\r\n\n                        Unless otherwise stated all statements within a composition have the same authenticator, apply to the same patient and were recorded in a single session of use of a single application.\r\n\n                        A composition contains organizers and entries.";
  dcterms:description "A context representing a grouped commitment of information to the EHR. It is considered the unit of modification of the record, the unit of transmission in record extracts, and the unit of attestation by authorizing clinicians.\r\n\n                        A composition represents part of a patient record originating from a single interaction between an authenticator and the record.\r\n\n                        Unless otherwise stated all statements within a composition have the same authenticator, apply to the same patient and were recorded in a single session of use of a single application.\r\n\n                        A composition contains organizers and entries.".

cs:ActClass\#DOC rdfs:subClassOf cs:ActClass\#COMPOSITION;
  rdfs:label "document";
  dc:title "document";
  rdfs:comment "The notion of a document comes particularly from the paper world, where it corresponds to the contents recorded on discrete pieces of paper. In the electronic world, a document is a kind of composition that bears resemblance to their paper world counter-parts. Documents typically are meant to be human-readable.\r\n\n                        HL7's notion of document differs from that described in the W3C XML Recommendation, in which a document refers specifically to the contents that fall between the root element's start-tag and end-tag. Not all XML documents are HL7 documents.";
  dcterms:description "The notion of a document comes particularly from the paper world, where it corresponds to the contents recorded on discrete pieces of paper. In the electronic world, a document is a kind of composition that bears resemblance to their paper world counter-parts. Documents typically are meant to be human-readable.\r\n\n                        HL7's notion of document differs from that described in the W3C XML Recommendation, in which a document refers specifically to the contents that fall between the root element's start-tag and end-tag. Not all XML documents are HL7 documents.".

cs:ActClass\#DOCCLIN rdfs:subClassOf cs:ActClass\#DOC;
  rdfs:label "clinical document";
  dc:title "clinical document";
  rdfs:comment "A clinical document is a documentation of clinical observations and services, with the following characteristics:\r\n\n                        \n                           \n                              Persistence - A clinical document continues to exist in an unaltered state, for a time period defined by local and regulatory requirements; \r\n\n                           \n                           \n                              Stewardship - A clinical document is maintained by a person or organization entrusted with its care; \r\n\n                           \n                           \n                              Potential for authentication - A clinical document is an assemblage of information that is intended to be legally authenticated; \r\n\n                           \n                           \n                              Wholeness - Authentication of a clinical document applies to the whole and does not apply to portions of the document without the full context of the document;\r\n\n                           \n                           \n                              Human readability - A clinical document is human readable.";
  dcterms:description "A clinical document is a documentation of clinical observations and services, with the following characteristics:\r\n\n                        \n                           \n                              Persistence - A clinical document continues to exist in an unaltered state, for a time period defined by local and regulatory requirements; \r\n\n                           \n                           \n                              Stewardship - A clinical document is maintained by a person or organization entrusted with its care; \r\n\n                           \n                           \n                              Potential for authentication - A clinical document is an assemblage of information that is intended to be legally authenticated; \r\n\n                           \n                           \n                              Wholeness - Authentication of a clinical document applies to the whole and does not apply to portions of the document without the full context of the document;\r\n\n                           \n                           \n                              Human readability - A clinical document is human readable.".

cs:ActClass\#CDALVLONE rdfs:subClassOf cs:ActClass\#DOCCLIN;
  rdfs:label "CDA Level One clinical document";
  dc:title "CDA Level One clinical document";
  rdfs:comment "A clinical document that conforms to Level One of the HL7 Clinical Document Architecture (CDA)";
  dcterms:description "A clinical document that conforms to Level One of the HL7 Clinical Document Architecture (CDA)".

cs:ActClass\#CONTAINER rdfs:subClassOf cs:ActClass\#%5fActClassRecordOrganizer;
  rdfs:label "record container";
  dc:title "record container";
  rdfs:comment "Description: Container of clinical statements. Navigational. No semantic content. Knowledge of the section code is not required to interpret contained observations. Represents a heading in a heading structure, or \"container tree\".\r\n\n                        The record entries relating to a single clinical session are usually grouped under headings that represent phases of the encounter, or assist with layout and navigation. Clinical headings usually reflect the clinical workflow during a care session, and might also reflect the main author's reasoning processes. Much research has demonstrated that headings are used differently by different professional groups and specialties, and that headings are not used consistently enough to support safe automatic processing of the E H R.";
  dcterms:description "Description: Container of clinical statements. Navigational. No semantic content. Knowledge of the section code is not required to interpret contained observations. Represents a heading in a heading structure, or \"container tree\".\r\n\n                        The record entries relating to a single clinical session are usually grouped under headings that represent phases of the encounter, or assist with layout and navigation. Clinical headings usually reflect the clinical workflow during a care session, and might also reflect the main author's reasoning processes. Much research has demonstrated that headings are used differently by different professional groups and specialties, and that headings are not used consistently enough to support safe automatic processing of the E H R.".

cs:ActClass\#CATEGORY rdfs:subClassOf cs:ActClass\#CONTAINER;
  rdfs:label "category";
  dc:title "category";
  rdfs:comment "A group of entries within a composition or topic that have a common characteristic - for example, Examination, Diagnosis, Management OR Subjective, Objective, Analysis, Plan.\r\n\n                        The distinction from Topic relates to value sets. For Category there is a bounded list of things like \"Examination\", \"Diagnosis\" or SOAP categories. For Topic the list is wide open to any clinical condition or reason for a part of an encounter.\r\n\n                        A CATEGORY MAY CONTAIN ENTRIES.";
  dcterms:description "A group of entries within a composition or topic that have a common characteristic - for example, Examination, Diagnosis, Management OR Subjective, Objective, Analysis, Plan.\r\n\n                        The distinction from Topic relates to value sets. For Category there is a bounded list of things like \"Examination\", \"Diagnosis\" or SOAP categories. For Topic the list is wide open to any clinical condition or reason for a part of an encounter.\r\n\n                        A CATEGORY MAY CONTAIN ENTRIES.".

cs:ActClass\#DOCBODY rdfs:subClassOf cs:ActClass\#CONTAINER;
  rdfs:label "document body";
  dc:title "document body";
  rdfs:comment "A context that distinguishes the body of a document from the document header. This is seen, for instance, in HTML documents, which have discrete <head> and <body> elements.";
  dcterms:description "A context that distinguishes the body of a document from the document header. This is seen, for instance, in HTML documents, which have discrete <head> and <body> elements.".

cs:ActClass\#DOCSECT rdfs:subClassOf cs:ActClass\#CONTAINER;
  rdfs:label "document section";
  dc:title "document section";
  rdfs:comment "A context that subdivides the body of a document. Document sections are typically used for human navigation, to give a reader a clue as to the expected content. Document sections are used to organize and provide consistency to the contents of a document body. Document sections can contain document sections and can contain entries.";
  dcterms:description "A context that subdivides the body of a document. Document sections are typically used for human navigation, to give a reader a clue as to the expected content. Document sections are used to organize and provide consistency to the contents of a document body. Document sections can contain document sections and can contain entries.".

cs:ActClass\#TOPIC rdfs:subClassOf cs:ActClass\#CONTAINER;
  rdfs:label "topic";
  dc:title "topic";
  rdfs:comment "A group of entries within a composition that are related to a common clinical theme - such as a specific disorder or problem, prevention, screening and provision of contraceptive services.\r\n\n                        A topic may contain categories and entries.";
  dcterms:description "A group of entries within a composition that are related to a common clinical theme - such as a specific disorder or problem, prevention, screening and provision of contraceptive services.\r\n\n                        A topic may contain categories and entries.".

cs:ActClass\#EXTRACT rdfs:subClassOf cs:ActClass\#%5fActClassRecordOrganizer;
  rdfs:label "extract";
  dc:title "extract";
  rdfs:comment "This context represents the part of a patient record conveyed in a single communication. It is drawn from a providing system for the purposes of communication to a requesting process (which might be another repository, a client application or a middleware service such as an electronic guideline engine), and supporting the faithful inclusion of the communicated data in the receiving system.\r\n\n                        An extract may be the entirety of the patient record as held by the sender or it may be a part of that record (e.g. changes since a specified date).\r\n\n                        An extract contains folders or compositions.\r\n\n                        An extract cannot contain another extract.";
  dcterms:description "This context represents the part of a patient record conveyed in a single communication. It is drawn from a providing system for the purposes of communication to a requesting process (which might be another repository, a client application or a middleware service such as an electronic guideline engine), and supporting the faithful inclusion of the communicated data in the receiving system.\r\n\n                        An extract may be the entirety of the patient record as held by the sender or it may be a part of that record (e.g. changes since a specified date).\r\n\n                        An extract contains folders or compositions.\r\n\n                        An extract cannot contain another extract.".

cs:ActClass\#EHR rdfs:subClassOf cs:ActClass\#EXTRACT;
  rdfs:label "electronic health record";
  dc:title "electronic health record";
  rdfs:comment "A context that comprises all compositions. The EHR is an extract that includes the entire chart.\r\n\n                        \n                           NOTE: In an exchange scenario, an EHR is a specialization of an extract.";
  dcterms:description "A context that comprises all compositions. The EHR is an extract that includes the entire chart.\r\n\n                        \n                           NOTE: In an exchange scenario, an EHR is a specialization of an extract.".

cs:ActClass\#FOLDER rdfs:subClassOf cs:ActClass\#%5fActClassRecordOrganizer;
  rdfs:label "folder";
  dc:title "folder";
  rdfs:comment "A context representing the high-level organization of an extract e.g. to group parts of the record by episode, care team, clinical specialty, clinical condition, or source application. Internationally, this kind of organizing structure is used variably: in some centers and systems the folder is treated as an informal compartmentalization of the overall health record; in others it might represent a significant legal portion of the EHR relating to the originating enterprise or team.\r\n\n                        A folder contains compositions.\r\n\n                        Folders may be nested within folders.";
  dcterms:description "A context representing the high-level organization of an extract e.g. to group parts of the record by episode, care team, clinical specialty, clinical condition, or source application. Internationally, this kind of organizing structure is used variably: in some centers and systems the folder is treated as an informal compartmentalization of the overall health record; in others it might represent a significant legal portion of the EHR relating to the originating enterprise or team.\r\n\n                        A folder contains compositions.\r\n\n                        Folders may be nested within folders.".

cs:ActClass\#GROUPER rdfs:subClassOf cs:ActClass\#%5fActClassRecordOrganizer;
  rdfs:label "grouper";
  dc:title "grouper";
  rdfs:comment "Definition: An ACT that organizes a set of component acts into a semantic grouping that share a particular context such as timeframe, patient, etc.\r\n\n                        \n                           UsageNotes: The focus in a GROUPER act is the grouping of the contained acts.  For example \"a request to group\" (RQO), \"a type of grouping that is allowed to occur\" (DEF), etc.\r\n\n                        Unlike WorkingList, which represents a dynamic, shared, continuously updated collection to provide a \"view\" of a set of objects, GROUPER collections tend to be static and simply indicate a shared set of semantics.  Note that sharing of semantics can be achieved using ACT as well.  However, with GROUPER, the sole semantic is of grouping.";
  dcterms:description "Definition: An ACT that organizes a set of component acts into a semantic grouping that share a particular context such as timeframe, patient, etc.\r\n\n                        \n                           UsageNotes: The focus in a GROUPER act is the grouping of the contained acts.  For example \"a request to group\" (RQO), \"a type of grouping that is allowed to occur\" (DEF), etc.\r\n\n                        Unlike WorkingList, which represents a dynamic, shared, continuously updated collection to provide a \"view\" of a set of objects, GROUPER collections tend to be static and simply indicate a shared set of semantics.  Note that sharing of semantics can be achieved using ACT as well.  However, with GROUPER, the sole semantic is of grouping.".

cs:ActClass\#CLUSTER rdfs:subClassOf cs:ActClass\#GROUPER;
  rdfs:label "Cluster";
  dc:title "Cluster";
  rdfs:comment "Description:An ACT that organizes a set of component acts into a semantic grouping that have a shared subject. The subject may be either a subject participation (SBJ), subject act relationship (SUBJ), or child participation/act relationship types.\r\n\n                        \n                           Discussion: The focus in a CLUSTER act is the grouping of the contained acts.  For example \"a request to cluster\" (RQO), \"a type of cluster that is allowed to occur\" (DEF), etc.\r\n\n                        \n                           Examples: \n                        \r\n\n                        \n                           \n                              Radiologic investigations that might include administration of a dye, followed by radiographic observations;\r\n\n                           \n                           \n                              \"Isolate cluster\" which includes all testing and specimen processing performed on a specific isolate;\r\n\n                           \n                           \n                              a set of actions to perform at a particular stage in a clinical trial.";
  dcterms:description "Description:An ACT that organizes a set of component acts into a semantic grouping that have a shared subject. The subject may be either a subject participation (SBJ), subject act relationship (SUBJ), or child participation/act relationship types.\r\n\n                        \n                           Discussion: The focus in a CLUSTER act is the grouping of the contained acts.  For example \"a request to cluster\" (RQO), \"a type of cluster that is allowed to occur\" (DEF), etc.\r\n\n                        \n                           Examples: \n                        \r\n\n                        \n                           \n                              Radiologic investigations that might include administration of a dye, followed by radiographic observations;\r\n\n                           \n                           \n                              \"Isolate cluster\" which includes all testing and specimen processing performed on a specific isolate;\r\n\n                           \n                           \n                              a set of actions to perform at a particular stage in a clinical trial.".

cs:ActClass\#ACCM rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "accommodation";
  dc:title "accommodation";
  rdfs:comment "An accommodation is a service provided for a Person or other LivingSubject in which a place is provided for the subject to reside for a period of time.  Commonly used to track the provision of ward, private and semi-private accommodations for a patient.";
  dcterms:description "An accommodation is a service provided for a Person or other LivingSubject in which a place is provided for the subject to reside for a period of time.  Commonly used to track the provision of ward, private and semi-private accommodations for a patient.".

cs:ActClass\#ACCT rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "account";
  dc:title "account";
  rdfs:comment "A financial account established to track the net result of financial acts.";
  dcterms:description "A financial account established to track the net result of financial acts.".

cs:ActClass\#ACSN rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "accession";
  dc:title "accession";
  rdfs:comment "A unit of work, a grouper of work items as defined by the system performing that work. Typically some laboratory order fulfillers communicate references to accessions in their communications regarding laboratory orders. Often one or more specimens are related to an accession such that in some environments the accession number is taken as an identifier for a specimen (group).";
  dcterms:description "A unit of work, a grouper of work items as defined by the system performing that work. Typically some laboratory order fulfillers communicate references to accessions in their communications regarding laboratory orders. Often one or more specimens are related to an accession such that in some environments the accession number is taken as an identifier for a specimen (group).".

cs:ActClass\#ADJUD rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "financial adjudication";
  dc:title "financial adjudication";
  rdfs:comment "A transformation process where a requested invoice is transformed into an agreed invoice.  Represents the adjudication processing of an invoice (claim).  Adjudication results can be adjudicated as submitted, with adjustments or refused.\r\n\n                        Adjudication results comprise 2 components: the adjudication processing results and a restated (or adjudicated) invoice or claim";
  dcterms:description "A transformation process where a requested invoice is transformed into an agreed invoice.  Represents the adjudication processing of an invoice (claim).  Adjudication results can be adjudicated as submitted, with adjustments or refused.\r\n\n                        Adjudication results comprise 2 components: the adjudication processing results and a restated (or adjudicated) invoice or claim".

cs:ActClass\#CACT rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "control act";
  dc:title "control act";
  rdfs:comment "An act representing a system action such as the change of state of another act or the initiation of a query.  All control acts represent trigger events in the HL7 context.  ControlActs may occur in different moods.";
  dcterms:description "An act representing a system action such as the change of state of another act or the initiation of a query.  All control acts represent trigger events in the HL7 context.  ControlActs may occur in different moods.".

cs:ActClass\#ACTN rdfs:subClassOf cs:ActClass\#CACT;
  rdfs:label "action";
  dc:title "action";
  rdfs:comment "Sender asks addressee to do something depending on the focal Act of the payload.  An example is \"fulfill this order\".  Addressee has responsibilities to either reject the message or to act on it in an appropriate way (specified by the specific receiver responsibilities for the interaction).";
  dcterms:description "Sender asks addressee to do something depending on the focal Act of the payload.  An example is \"fulfill this order\".  Addressee has responsibilities to either reject the message or to act on it in an appropriate way (specified by the specific receiver responsibilities for the interaction).".

cs:ActClass\#INFO rdfs:subClassOf cs:ActClass\#CACT;
  rdfs:label "information";
  dc:title "information";
  rdfs:comment "Sender sends payload to addressee as information.  Addressee does not have responsibilities beyond serving addressee's own interest (i.e., read and memorize if you see fit).  This is equivalent to an FYI on a memo.";
  dcterms:description "Sender sends payload to addressee as information.  Addressee does not have responsibilities beyond serving addressee's own interest (i.e., read and memorize if you see fit).  This is equivalent to an FYI on a memo.".

cs:ActClass\#STC rdfs:subClassOf cs:ActClass\#CACT;
  rdfs:label "state transition control";
  dc:title "state transition control";
  rdfs:comment "Description: Sender transmits a status change pertaining to the focal act of the payload. This status of the focal act is the final state of the state transition. This can be either a request or an event, according to the mood of the control act.";
  dcterms:description "Description: Sender transmits a status change pertaining to the focal act of the payload. This status of the focal act is the final state of the state transition. This can be either a request or an event, according to the mood of the control act.".

cs:ActClass\#CNTRCT rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "contract";
  dc:title "contract";
  rdfs:comment "An agreement of obligation between two or more parties that is subject to contractual law and enforcement.";
  dcterms:description "An agreement of obligation between two or more parties that is subject to contractual law and enforcement.".

cs:ActClass\#FCNTRCT rdfs:subClassOf cs:ActClass\#CNTRCT;
  rdfs:label "financial contract";
  dc:title "financial contract";
  rdfs:comment "A contract whose value is measured in monetary terms.";
  dcterms:description "A contract whose value is measured in monetary terms.".

cs:ActClass\#COV rdfs:subClassOf cs:ActClass\#FCNTRCT;
  rdfs:label "coverage";
  dc:title "coverage";
  rdfs:comment "When used in the EVN mood, this concept means with respect to a covered party:\r\n\n                        \n                           \n                              A health care insurance policy or plan that is contractually binding between two or more parties; or \r\n\n                           \n                           \n                              A health care program, usually administered by government entities, that provides coverage to persons determined eligible under the terms of the program.\r\n\n                           \n                        \n                        \n                           \n                              When used in the definition (DEF) mood, COV means potential coverage for a patient who may or may not be a covered party.\r\n\n                           \n                           \n                              The concept's meaning is fully specified by the choice of ActCoverageTypeCode (abstract) ActProgramCode or ActInsurancePolicyCode.";
  dcterms:description "When used in the EVN mood, this concept means with respect to a covered party:\r\n\n                        \n                           \n                              A health care insurance policy or plan that is contractually binding between two or more parties; or \r\n\n                           \n                           \n                              A health care program, usually administered by government entities, that provides coverage to persons determined eligible under the terms of the program.\r\n\n                           \n                        \n                        \n                           \n                              When used in the definition (DEF) mood, COV means potential coverage for a patient who may or may not be a covered party.\r\n\n                           \n                           \n                              The concept's meaning is fully specified by the choice of ActCoverageTypeCode (abstract) ActProgramCode or ActInsurancePolicyCode.".

cs:ActClass\#CONC rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "concern";
  dc:title "concern";
  rdfs:comment "Definition: A worry that tends to persist over time and has as its subject a state or process. The subject of the worry has the potential to require intervention or management.\r\n\n                        \n                           Examples: an observation result, procedure, substance administration, equipment repair status, device recall status, a health risk, a financial risk, public health risk, pregnancy, health maintenance, allergy, and acute or chronic illness.";
  dcterms:description "Definition: A worry that tends to persist over time and has as its subject a state or process. The subject of the worry has the potential to require intervention or management.\r\n\n                        \n                           Examples: an observation result, procedure, substance administration, equipment repair status, device recall status, a health risk, a financial risk, public health risk, pregnancy, health maintenance, allergy, and acute or chronic illness.".

cs:ActClass\#HCASE rdfs:subClassOf cs:ActClass\#CONC;
  rdfs:label "public health case";
  dc:title "public health case";
  rdfs:comment "A public health case is a Concern about an observation or event that has a specific significance for public health. The creation of a PublicHealthCase initiates the tracking of the object of concern.  The decision to track is related to but somewhat independent of the underlying event or observation.\r\n\n                        \n                           UsageNotes: Typically a Public Health Case involves an instance or instances of a reportable infectious disease or other condition. The public health case can include a health-related event concerning a single individual or it may refer to multiple health-related events that are occurrences of the same disease or condition of interest to public health.\r\n\n                        A public health case definition (Act.moodCode = \"definition\") includes the description of the clinical, laboratory, and epidemiologic indicators associated with a disease or condition of interest to public health. There are case definitions for conditions that are reportable, as well as for those that are not. A public health case definition is a construct used by public health for the purpose of counting cases, and should not be used as clinical indications for treatment. Examples include AIDS, toxic-shock syndrome, and salmonellosis and their associated indicators that are used to define a case.";
  dcterms:description "A public health case is a Concern about an observation or event that has a specific significance for public health. The creation of a PublicHealthCase initiates the tracking of the object of concern.  The decision to track is related to but somewhat independent of the underlying event or observation.\r\n\n                        \n                           UsageNotes: Typically a Public Health Case involves an instance or instances of a reportable infectious disease or other condition. The public health case can include a health-related event concerning a single individual or it may refer to multiple health-related events that are occurrences of the same disease or condition of interest to public health.\r\n\n                        A public health case definition (Act.moodCode = \"definition\") includes the description of the clinical, laboratory, and epidemiologic indicators associated with a disease or condition of interest to public health. There are case definitions for conditions that are reportable, as well as for those that are not. A public health case definition is a construct used by public health for the purpose of counting cases, and should not be used as clinical indications for treatment. Examples include AIDS, toxic-shock syndrome, and salmonellosis and their associated indicators that are used to define a case.".

cs:ActClass\#OUTBR rdfs:subClassOf cs:ActClass\#CONC;
  rdfs:label "outbreak";
  dc:title "outbreak";
  rdfs:comment "An Outbreak is a concern resulting from a series of public health cases.\r\n\n                        \n                           UsageNotes: The date on which an outbreak starts is the earliest date of onset among the cases assigned to the outbreak and its ending date is the last date of onset among the cases assigned to the outbreak. The effectiveTime attribute is used to convey the relevant dates for the case. An outbreak definition (Act.moodCode = \"definition\" includes the criteria for the number, types and occurrence pattern of cases necessary to declare an outbreak and to judge the severity of an outbreak.";
  dcterms:description "An Outbreak is a concern resulting from a series of public health cases.\r\n\n                        \n                           UsageNotes: The date on which an outbreak starts is the earliest date of onset among the cases assigned to the outbreak and its ending date is the last date of onset among the cases assigned to the outbreak. The effectiveTime attribute is used to convey the relevant dates for the case. An outbreak definition (Act.moodCode = \"definition\" includes the criteria for the number, types and occurrence pattern of cases necessary to declare an outbreak and to judge the severity of an outbreak.".

cs:ActClass\#CONS rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "consent";
  dc:title "consent";
  rdfs:comment "The Consent class represents informed consents and all similar medico-legal transactions between the patient (or his legal guardian) and the provider. Examples are informed consent for surgical procedures, informed consent for clinical trials, advanced beneficiary notice, against medical advice decline from service, release of information agreement, etc.\r\n\n                        The details of consents vary. Often an institution has a number of different consent forms for various purposes, including reminding the physician about the topics to mention. Such forms also include patient education material. In electronic medical record communication, consents thus are information-generating acts on their own and need to be managed similar to medical activities. Thus, Consent is modeled as a special class of Act.\r\n\n                        The \"signatures\" to the consent document are represented electronically through Participation instances to the consent object. Typically an informed consent has Participation.typeCode of \"performer\", the healthcare provider informing the patient, and \"consenter\", the patient or legal guardian. Some consent may associate a witness or a notary public (e.g., living wills, advanced directives). In consents where a healthcare provider is not required (e.g. living will), the performer may be the patient himself or a notary public.\r\n\n                        Some consent has a minimum required delay between the consent and the service, so as to allow the patient to rethink his decisions. This minimum delay can be expressed in the act definition by the ActRelationship.pauseQuantity attribute that delays the service until the pause time has elapsed after the consent has been completed.";
  dcterms:description "The Consent class represents informed consents and all similar medico-legal transactions between the patient (or his legal guardian) and the provider. Examples are informed consent for surgical procedures, informed consent for clinical trials, advanced beneficiary notice, against medical advice decline from service, release of information agreement, etc.\r\n\n                        The details of consents vary. Often an institution has a number of different consent forms for various purposes, including reminding the physician about the topics to mention. Such forms also include patient education material. In electronic medical record communication, consents thus are information-generating acts on their own and need to be managed similar to medical activities. Thus, Consent is modeled as a special class of Act.\r\n\n                        The \"signatures\" to the consent document are represented electronically through Participation instances to the consent object. Typically an informed consent has Participation.typeCode of \"performer\", the healthcare provider informing the patient, and \"consenter\", the patient or legal guardian. Some consent may associate a witness or a notary public (e.g., living wills, advanced directives). In consents where a healthcare provider is not required (e.g. living will), the performer may be the patient himself or a notary public.\r\n\n                        Some consent has a minimum required delay between the consent and the service, so as to allow the patient to rethink his decisions. This minimum delay can be expressed in the act definition by the ActRelationship.pauseQuantity attribute that delays the service until the pause time has elapsed after the consent has been completed.".

cs:ActClass\#CONTREG rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "container registration";
  dc:title "container registration";
  rdfs:comment "An Act where a container is registered either via an automated sensor, such as a barcode reader,  or by manual receipt";
  dcterms:description "An Act where a container is registered either via an automated sensor, such as a barcode reader,  or by manual receipt".

cs:ActClass\#CTTEVENT rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "clinical trial timepoint event";
  dc:title "clinical trial timepoint event";
  rdfs:comment "An identified point during a clinical trial at which one or more actions are scheduled to be performed (definition mood), or are actually performed (event mood).  The actions may or may not involve an encounter between the subject and a healthcare professional.";
  dcterms:description "An identified point during a clinical trial at which one or more actions are scheduled to be performed (definition mood), or are actually performed (event mood).  The actions may or may not involve an encounter between the subject and a healthcare professional.".

cs:ActClass\#DISPACT rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "disciplinary action";
  dc:title "disciplinary action";
  rdfs:comment "An action taken with respect to a subject Entity by a regulatory or authoritative body with supervisory capacity over that entity. The action is taken in response to behavior by the subject Entity that body finds to be 							undesirable.\r\n\n                        Suspension, license restrictions, monetary fine, letter of reprimand, mandated training, mandated supervision, etc.Examples:";
  dcterms:description "An action taken with respect to a subject Entity by a regulatory or authoritative body with supervisory capacity over that entity. The action is taken in response to behavior by the subject Entity that body finds to be 							undesirable.\r\n\n                        Suspension, license restrictions, monetary fine, letter of reprimand, mandated training, mandated supervision, etc.Examples:".

cs:ActClass\#EXPOS rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "exposure";
  dc:title "exposure";
  rdfs:comment "An interaction between entities that provides opportunity for transmission of a physical, chemical, or biological agent from an exposure source entity to an exposure target entity.\r\n\n                        \n                           Examples:  The following examples are provided to indicate what interactions are considered exposures rather than other types of Acts:\r\n\n                        \n                           \n                              A patient accidentally receives three times the recommended dose of their medication due to a dosing error. \r\n\n                              \n                                 \n                                    This is a substance administration.  Public health and/or safety authorities may also be interested in documenting this with an associated exposure.\r\n\n                                 \n                              \n                           \n                           \n                              A patient accidentally is dispensed an incorrect medicine (e.g., clomiphene instead of clomipramine).  They have taken several doses before the mistake is detected.  They are therefore \"exposed\" to a medicine that there was no therapeutic indication for them to receive. \r\n\n                              \n                                 \n                                    There are several substance administrations in this example.  Public health and/or safety authorities may also be interested in documenting this with associated exposures.\r\n\n                                 \n                              \n                           \n                           \n                              In a busy medical ward, a patient is receiving chemotherapy for a lymphoma.  Unfortunately, the IV infusion bag containing the medicine splits, spraying cytotoxic medication over the patient being treated and the patient in the adjacent bed. \r\n\n                              \n                                 \n                                    There are three substance administrations in this example.  The first is the intended one (IV infusion) with its associated (implicit) exposure.  There is an incident with an associated substance administration to the same patient involving the medication sprayed over the patient as well as an associated exposure.  Additionally, the incident includes a substance administration involving the spraying of medication on the adjacent patient, also with an associated exposure.\r\n\n                                 \n                              \n                           \n                           \n                              A patient who is a refugee from a war-torn African nation arrives in a busy inner city A&E department suffering from a cough with bloody sputum.  Not understanding the registration and triage process, they sit in the waiting room for several hours before it is noticed that they have not booked in.  As soon as they are being processed, it is suspected that they are suffering from TB.  Vulnerable (immunosuppressed) patients who were sharing the waiting room with this patient may have been exposed to the tubercule bacillus, and must be traced for investigation. \r\n\n                              \n                                 \n                                    This is an exposure (or possibly multiple exposures) in the waiting room involving the refugee and everyone else in the waiting room during the period.  There might also be a number of known or presumed substance administrations (coughing) via several possible routes.  The substance administrations are only hypotheses until confirmed by further testing.\r\n\n                                 \n                              \n                           \n                           \n                              A patient who has received an elective total hip replacement procedure suffers a prolonged stay in hospital, due to contracting an MRSA infection in the surgical wound site after the surgery. \r\n\n                              \n                                 \n                                    This is an exposure to MRSA.  Although there was some sort of substance administration, it's possible the exact mechanism for introduction of the MRSA into the wound will not be identified.\r\n\n                                 \n                              \n                           \n                           \n                              Routine maintenance of the X-ray machines at a local hospital reveals a serious breach of the shielding on one of the machines.  Patients who have undergone investigations using that machine in the last month are likely to have been exposed to significantly higher doses of X-rays than was intended, and must be tracked for possible adverse effects. \r\n\n                              \n                                 \n                                    There has been an exposure of each patient who used the machine in the past 30 days. Some patients may have had substance administrations.\r\n\n                                 \n                              \n                           \n                           \n                              A new member of staff is employed in the laundry processing room of a small cottage hospital, and a misreading of the instructions for adding detergents results in fifty times the usual concentration of cleaning materials being added to a batch of hospital bedding.  As a result, several patients have been exposed to very high levels of detergents still present in the \"clean\" bedding, and have experienced dermatological reactions to this. \r\n\n                              \n                                 \n                                    There has been an incident with multiple exposures to several patients.  Although there are substance administrations involving the application of the detergent to the skin of the patients, it is expected that the substance administrations would not be directly documented.\r\n\n                                 \n                              \n                           \n                           \n                              Seven patients who are residents in a health care facility for the elderly mentally ill have developed respiratory problems. After several months of various tests having been performed and various medications prescribed to these patients, the problem is traced to their being \"sensitive\" to a new fungicide used in the wall plaster of the ward where these patients reside.\r\n\n                              \n                                 \n                                    The patients have been continuously exposed to the fungicide.  Although there have been continuous substance administrations (via breathing) this would not normally be documented as a substance administration.\r\n\n                                 \n                              \n                           \n                           \n                              A patient with osteoarthritis of the knees is treated symptomatically using analgesia, paracetamol (acetaminophen) 1g up to four times a day for pain relief.  His GP does not realize that the patient has, 20 years previously (while at college) had severe alcohol addiction problems, and now, although this is completely under control, his liver has suffered significantly, leaving him more sensitive to hepatic toxicity from paracetamol use.  Later that year, the patient returns with a noticeable level of jaundice.  Paracetamol is immediately withdrawn and alternative solutions for the knee pain are sought.  The jaundice gradually subsides with conservative management, but referral to the gastroenterologist is required for advice and monitoring. \r\n\n                              \n                                 \n                                    There is a substance administration with an associated exposure.  The exposure component is based on the relative toxic level of the substance to a patient with a compromised liver function.\r\n\n                                 \n                              \n                           \n                           \n                              A patient goes to their GP complaining of abdominal pain, having been discharged from the local hospital ten days' previously after an emergency appendectomy.  The GP can find nothing particularly amiss, and presumes it is post operative surgical pain that will resolve.  The patient returns a fortnight later, when the GP prescribes further analgesia, but does decide to request an outpatient surgical follow-up appointment.  At this post-surgical outpatient review, the registrar decides to order an ultrasound, which, when performed three weeks later, shows a small faint inexplicable mass.  A laparoscopy is then performed, as a day case procedure, and a piece of a surgical swab is removed from the patient's abdominal cavity.  Thankfully, a full recovery then takes place. \r\n\n                              \n                                 \n                                    This is a procedural sequelae.  There may be an Incident recorded for this also.\r\n\n                                 \n                              \n                           \n                           \n                              A patient is slightly late for a regular pacemaker battery check in the Cardiology department of the local hospital.  They are hurrying down the second floor corridor.  A sudden summer squall has recently passed over the area, and rain has come in through an open corridor window leaving a small puddle on the corridor floor.  In their haste, the patient slips in the puddle and falls so badly that they have to be taken to the A&E department, where it is discovered on investigation they have slightly torn the cruciate ligament in their left knee. \r\n\n                              \n                                 \n                                    This is not an exposure.  There has been an incident.  \r\n\n                                 \n                              \n                           \n                        \n                        \n                           Usage Notes: This class deals only with opportunity and not the outcome of the exposure; i.e. not all exposed parties will necessarily experience actual harm or benefit.\r\n\n                        Exposure differs from Substance Administration by the absence of the participation of a performer in the act. \r\n\n                        The following participations SHOULD be used with the following participations to distinguish the specific entities:\r\n\n                        \n                           \n                              The exposed entity participates via the \"exposure target\" (EXPTRGT) participation.\r\n\n                           \n                           \n                              An entity that has carried the agent transmitted in the exposure participates via the \"exposure source\" (EXSRC) participation.  For example: \r\n\n                              \n                                 \n                                    a person or animal who carried an infectious disease and interacts (EXSRC) with another person or animal (EXPTRGT) transmitting the disease agent;\r\n\n                                 \n                                 \n                                    a place or other environment (EXSRC) and a person or animal (EXPTRGT) who is exposed in the presence of this environment.\r\n\n                                 \n                              \n                           \n                           \n                              When it is unknown whether a participating entity is the source of the agent (EXSRC) or the target of the transmission (EXPTRGT), the \"exposure participant\" (EXPART) is used.\r\n\n                           \n                           \n                              The physical (including energy), chemical or biological substance which is participating in the exposure uses the \"exposure agent\" (EXPAGNT) participation.  There are at least three scenarios:\r\n\n                              \n                                 \n                                    the player of the Role that participates as EXPAGNT is the chemical or biological substance mixed or carried by the scoper-entity of the Role (e.g., ingredient role); or \r\n\n                                 \n                                 \n                                    the player of the Role that participates as EXPAGNT is a mixture known to contain the chemical, radiological or biological substance of interest; or \r\n\n                                 \n                                 \n                                    the player of the Role that participates as a EXPAGNT is known to carry the agent (i.e., the player is a fomite, vector, etc.).\r\n\n                                 \n                              \n                           \n                        \n                        The Exposure.statusCode attribute should be interpreted as the state of the Exposure business object (e.g., active, aborted, completed) and not the clinical status of the exposure (e.g., probable, confirmed).  The clinical status of the exposure should be associated with the exposure via a subject observation.\r\n\n                        \n                           Design Comment: The usage notes require a clear criterion for determining whether an act is an exposure or substance administration-deleterious potential, uncertainty of actual transmission, or otherwise. SBADM states that the criterion is the presence of a performer-but there are examples above that call this criterion into question (e.g., the first one, concerning a dosing error).";
  dcterms:description "An interaction between entities that provides opportunity for transmission of a physical, chemical, or biological agent from an exposure source entity to an exposure target entity.\r\n\n                        \n                           Examples:  The following examples are provided to indicate what interactions are considered exposures rather than other types of Acts:\r\n\n                        \n                           \n                              A patient accidentally receives three times the recommended dose of their medication due to a dosing error. \r\n\n                              \n                                 \n                                    This is a substance administration.  Public health and/or safety authorities may also be interested in documenting this with an associated exposure.\r\n\n                                 \n                              \n                           \n                           \n                              A patient accidentally is dispensed an incorrect medicine (e.g., clomiphene instead of clomipramine).  They have taken several doses before the mistake is detected.  They are therefore \"exposed\" to a medicine that there was no therapeutic indication for them to receive. \r\n\n                              \n                                 \n                                    There are several substance administrations in this example.  Public health and/or safety authorities may also be interested in documenting this with associated exposures.\r\n\n                                 \n                              \n                           \n                           \n                              In a busy medical ward, a patient is receiving chemotherapy for a lymphoma.  Unfortunately, the IV infusion bag containing the medicine splits, spraying cytotoxic medication over the patient being treated and the patient in the adjacent bed. \r\n\n                              \n                                 \n                                    There are three substance administrations in this example.  The first is the intended one (IV infusion) with its associated (implicit) exposure.  There is an incident with an associated substance administration to the same patient involving the medication sprayed over the patient as well as an associated exposure.  Additionally, the incident includes a substance administration involving the spraying of medication on the adjacent patient, also with an associated exposure.\r\n\n                                 \n                              \n                           \n                           \n                              A patient who is a refugee from a war-torn African nation arrives in a busy inner city A&E department suffering from a cough with bloody sputum.  Not understanding the registration and triage process, they sit in the waiting room for several hours before it is noticed that they have not booked in.  As soon as they are being processed, it is suspected that they are suffering from TB.  Vulnerable (immunosuppressed) patients who were sharing the waiting room with this patient may have been exposed to the tubercule bacillus, and must be traced for investigation. \r\n\n                              \n                                 \n                                    This is an exposure (or possibly multiple exposures) in the waiting room involving the refugee and everyone else in the waiting room during the period.  There might also be a number of known or presumed substance administrations (coughing) via several possible routes.  The substance administrations are only hypotheses until confirmed by further testing.\r\n\n                                 \n                              \n                           \n                           \n                              A patient who has received an elective total hip replacement procedure suffers a prolonged stay in hospital, due to contracting an MRSA infection in the surgical wound site after the surgery. \r\n\n                              \n                                 \n                                    This is an exposure to MRSA.  Although there was some sort of substance administration, it's possible the exact mechanism for introduction of the MRSA into the wound will not be identified.\r\n\n                                 \n                              \n                           \n                           \n                              Routine maintenance of the X-ray machines at a local hospital reveals a serious breach of the shielding on one of the machines.  Patients who have undergone investigations using that machine in the last month are likely to have been exposed to significantly higher doses of X-rays than was intended, and must be tracked for possible adverse effects. \r\n\n                              \n                                 \n                                    There has been an exposure of each patient who used the machine in the past 30 days. Some patients may have had substance administrations.\r\n\n                                 \n                              \n                           \n                           \n                              A new member of staff is employed in the laundry processing room of a small cottage hospital, and a misreading of the instructions for adding detergents results in fifty times the usual concentration of cleaning materials being added to a batch of hospital bedding.  As a result, several patients have been exposed to very high levels of detergents still present in the \"clean\" bedding, and have experienced dermatological reactions to this. \r\n\n                              \n                                 \n                                    There has been an incident with multiple exposures to several patients.  Although there are substance administrations involving the application of the detergent to the skin of the patients, it is expected that the substance administrations would not be directly documented.\r\n\n                                 \n                              \n                           \n                           \n                              Seven patients who are residents in a health care facility for the elderly mentally ill have developed respiratory problems. After several months of various tests having been performed and various medications prescribed to these patients, the problem is traced to their being \"sensitive\" to a new fungicide used in the wall plaster of the ward where these patients reside.\r\n\n                              \n                                 \n                                    The patients have been continuously exposed to the fungicide.  Although there have been continuous substance administrations (via breathing) this would not normally be documented as a substance administration.\r\n\n                                 \n                              \n                           \n                           \n                              A patient with osteoarthritis of the knees is treated symptomatically using analgesia, paracetamol (acetaminophen) 1g up to four times a day for pain relief.  His GP does not realize that the patient has, 20 years previously (while at college) had severe alcohol addiction problems, and now, although this is completely under control, his liver has suffered significantly, leaving him more sensitive to hepatic toxicity from paracetamol use.  Later that year, the patient returns with a noticeable level of jaundice.  Paracetamol is immediately withdrawn and alternative solutions for the knee pain are sought.  The jaundice gradually subsides with conservative management, but referral to the gastroenterologist is required for advice and monitoring. \r\n\n                              \n                                 \n                                    There is a substance administration with an associated exposure.  The exposure component is based on the relative toxic level of the substance to a patient with a compromised liver function.\r\n\n                                 \n                              \n                           \n                           \n                              A patient goes to their GP complaining of abdominal pain, having been discharged from the local hospital ten days' previously after an emergency appendectomy.  The GP can find nothing particularly amiss, and presumes it is post operative surgical pain that will resolve.  The patient returns a fortnight later, when the GP prescribes further analgesia, but does decide to request an outpatient surgical follow-up appointment.  At this post-surgical outpatient review, the registrar decides to order an ultrasound, which, when performed three weeks later, shows a small faint inexplicable mass.  A laparoscopy is then performed, as a day case procedure, and a piece of a surgical swab is removed from the patient's abdominal cavity.  Thankfully, a full recovery then takes place. \r\n\n                              \n                                 \n                                    This is a procedural sequelae.  There may be an Incident recorded for this also.\r\n\n                                 \n                              \n                           \n                           \n                              A patient is slightly late for a regular pacemaker battery check in the Cardiology department of the local hospital.  They are hurrying down the second floor corridor.  A sudden summer squall has recently passed over the area, and rain has come in through an open corridor window leaving a small puddle on the corridor floor.  In their haste, the patient slips in the puddle and falls so badly that they have to be taken to the A&E department, where it is discovered on investigation they have slightly torn the cruciate ligament in their left knee. \r\n\n                              \n                                 \n                                    This is not an exposure.  There has been an incident.  \r\n\n                                 \n                              \n                           \n                        \n                        \n                           Usage Notes: This class deals only with opportunity and not the outcome of the exposure; i.e. not all exposed parties will necessarily experience actual harm or benefit.\r\n\n                        Exposure differs from Substance Administration by the absence of the participation of a performer in the act. \r\n\n                        The following participations SHOULD be used with the following participations to distinguish the specific entities:\r\n\n                        \n                           \n                              The exposed entity participates via the \"exposure target\" (EXPTRGT) participation.\r\n\n                           \n                           \n                              An entity that has carried the agent transmitted in the exposure participates via the \"exposure source\" (EXSRC) participation.  For example: \r\n\n                              \n                                 \n                                    a person or animal who carried an infectious disease and interacts (EXSRC) with another person or animal (EXPTRGT) transmitting the disease agent;\r\n\n                                 \n                                 \n                                    a place or other environment (EXSRC) and a person or animal (EXPTRGT) who is exposed in the presence of this environment.\r\n\n                                 \n                              \n                           \n                           \n                              When it is unknown whether a participating entity is the source of the agent (EXSRC) or the target of the transmission (EXPTRGT), the \"exposure participant\" (EXPART) is used.\r\n\n                           \n                           \n                              The physical (including energy), chemical or biological substance which is participating in the exposure uses the \"exposure agent\" (EXPAGNT) participation.  There are at least three scenarios:\r\n\n                              \n                                 \n                                    the player of the Role that participates as EXPAGNT is the chemical or biological substance mixed or carried by the scoper-entity of the Role (e.g., ingredient role); or \r\n\n                                 \n                                 \n                                    the player of the Role that participates as EXPAGNT is a mixture known to contain the chemical, radiological or biological substance of interest; or \r\n\n                                 \n                                 \n                                    the player of the Role that participates as a EXPAGNT is known to carry the agent (i.e., the player is a fomite, vector, etc.).\r\n\n                                 \n                              \n                           \n                        \n                        The Exposure.statusCode attribute should be interpreted as the state of the Exposure business object (e.g., active, aborted, completed) and not the clinical status of the exposure (e.g., probable, confirmed).  The clinical status of the exposure should be associated with the exposure via a subject observation.\r\n\n                        \n                           Design Comment: The usage notes require a clear criterion for determining whether an act is an exposure or substance administration-deleterious potential, uncertainty of actual transmission, or otherwise. SBADM states that the criterion is the presence of a performer-but there are examples above that call this criterion into question (e.g., the first one, concerning a dosing error).".

cs:ActClass\#AEXPOS rdfs:subClassOf cs:ActClass\#EXPOS;
  rdfs:label "acquisition exposure";
  dc:title "acquisition exposure";
  rdfs:comment "Description: \n                        \r\n\n                        An acquisition exposure act describes the proximity (location and time) through which the participating entity was potentially exposed to a physical (including energy), chemical or biological agent from another entity.  The acquisition exposure act is used in conjunction with transmission exposure acts as part of an analysis technique for contact tracing.  Although an exposure can be decomposed into transmission and acquisition exposures, there is no requirement that all exposures be treated in this fashion.\r\n\n                        \n                           Constraints:  The Acquisition Exposure inherits the participation constraints that apply to Exposure with the following exception.  The EXPSRC (exposure source) participation must never be associated with the Transmission Exposure either directly or via context conduction.";
  dcterms:description "Description: \n                        \r\n\n                        An acquisition exposure act describes the proximity (location and time) through which the participating entity was potentially exposed to a physical (including energy), chemical or biological agent from another entity.  The acquisition exposure act is used in conjunction with transmission exposure acts as part of an analysis technique for contact tracing.  Although an exposure can be decomposed into transmission and acquisition exposures, there is no requirement that all exposures be treated in this fashion.\r\n\n                        \n                           Constraints:  The Acquisition Exposure inherits the participation constraints that apply to Exposure with the following exception.  The EXPSRC (exposure source) participation must never be associated with the Transmission Exposure either directly or via context conduction.".

cs:ActClass\#TEXPOS rdfs:subClassOf cs:ActClass\#EXPOS;
  rdfs:label "transmission exposure";
  dc:title "transmission exposure";
  rdfs:comment "Description: \n                        \r\n\n                        A transmission exposure act describes the proximity (time and location) over which the participating source entity was capable of transmitting a physical (including energy), chemical or biological substance agent to another entity.  The transmission exposure act is used in conjunction with acquisition exposure acts as part of an analysis technique for contact tracing.  Although an exposure can be decomposed into transmission and acquisition exposures, there is no requirement that all exposures be treated in this fashion.\r\n\n                        \n                           Constraints:  The Transmission Exposure inherits the participation constraints that apply to Exposure with the following exception.  The EXPTRGT (exposure target) participation must never be associated with the Transmission Exposure either directly or via context conduction.";
  dcterms:description "Description: \n                        \r\n\n                        A transmission exposure act describes the proximity (time and location) over which the participating source entity was capable of transmitting a physical (including energy), chemical or biological substance agent to another entity.  The transmission exposure act is used in conjunction with acquisition exposure acts as part of an analysis technique for contact tracing.  Although an exposure can be decomposed into transmission and acquisition exposures, there is no requirement that all exposures be treated in this fashion.\r\n\n                        \n                           Constraints:  The Transmission Exposure inherits the participation constraints that apply to Exposure with the following exception.  The EXPTRGT (exposure target) participation must never be associated with the Transmission Exposure either directly or via context conduction.".

cs:ActClass\#INC rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "incident";
  dc:title "incident";
  rdfs:comment "An event that occurred outside of the control of one or more of the parties involved.  Includes the concept of an accident.";
  dcterms:description "An event that occurred outside of the control of one or more of the parties involved.  Includes the concept of an accident.".

cs:ActClass\#INFRM rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "inform";
  dc:title "inform";
  rdfs:comment "The act  of transmitting information and understanding about a topic to a subject where the participation association must be SBJ.\r\n\n                        \n                           Discussion: This act may be used to request that a patient or provider be informed about an Act, or to indicate that a person was informed about a particular act.";
  dcterms:description "The act  of transmitting information and understanding about a topic to a subject where the participation association must be SBJ.\r\n\n                        \n                           Discussion: This act may be used to request that a patient or provider be informed about an Act, or to indicate that a person was informed about a particular act.".

cs:ActClass\#INVE rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "invoice element";
  dc:title "invoice element";
  rdfs:comment "Represents concepts related to invoice processing in health care";
  dcterms:description "Represents concepts related to invoice processing in health care".

cs:ActClass\#LIST rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "working list";
  dc:title "working list";
  rdfs:comment "Working list collects a dynamic list of individual instances of Act via ActRelationship which reflects the need of an individual worker, team of workers, or an organization to manage lists of acts for many different clinical and administrative reasons. Examples of working lists include problem lists, goal lists, allergy lists, and to-do lists.";
  dcterms:description "Working list collects a dynamic list of individual instances of Act via ActRelationship which reflects the need of an individual worker, team of workers, or an organization to manage lists of acts for many different clinical and administrative reasons. Examples of working lists include problem lists, goal lists, allergy lists, and to-do lists.".

cs:ActClass\#MPROT rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "monitoring program";
  dc:title "monitoring program";
  rdfs:comment "An officially or unofficially instituted program to track acts of a particular type or categorization.";
  dcterms:description "An officially or unofficially instituted program to track acts of a particular type or categorization.".

cs:ActClass\#OBS rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "observation";
  dc:title "observation";
  rdfs:comment "Description:An act that is intended to result in new information about a subject. The main difference between Observations and other Acts is that Observations have a value attribute. The code attribute of Observation and the value attribute of Observation must be considered in combination to determine the semantics of the observation.\r\n\n                        \n                           Discussion:\n                        \r\n\n                        Structurally, many observations are name-value-pairs, where the Observation.code (inherited from Act) is the name and the Observation.value is the value of the property. Such a construct is also known as a  variable (a named feature that can assume a value) hence, the Observation class is always used to hold generic name-value-pairs or variables, even though the variable valuation may not be the result of an elaborate observation method. It may be a simple answer to a question or it may be an assertion or setting of a parameter.\r\n\n                        As with all Act statements, Observation statements describe what was done, and in the case of Observations, this includes a description of what was actually observed (results or answers); and those results or answers are part of the observation and not split off into other objects. \r\n\n                        The method of action is asserted by the Observation classCode or its subclasses at the least granular level, by the Observation.code attribute value at the medium level of granularity, and by the attribute value of observation.methodCode when a finer level of granularity is required. The method in whole or in part may also appear in the attribute value of Observation.value when using coded data types to express the value of the attribute. Relevant aspects of methodology may also be restated in value when the results themselves imply or state a methodology.\r\n\n                        An observation may consist of component observations each having their own Observation.code and Observation.value. In this case, the composite observation may not have an Observation.value for itself. For instance, a white blood cell count consists of the sub-observations for the counts of the various granulocytes, lymphocytes and other normal or abnormal blood cells (e.g., blasts). The overall white blood cell count Observation itself may therefore not have a value by itself (even though it could have one, e.g., the sum total of white blood cells). Thus, as long as an Act is essentially an Act of recognizing and noting information about a subject, it is an Observation, regardless of whether it has a simple value by itself or whether it has sub-observations.\r\n\n                        Even though observations are professional acts (see Act) and as such are intentional actions, this does not require that every possible outcome of an observation be pondered in advance of it being actually made. For instance, differential white blood cell counts (WBC) rarely show blasts, but if they do, this is part of the WBC observation even though blasts might not be predefined in the structure of a normal WBC. \r\n\n                        Clinical documents commonly have Subjective and Objective findings, both of which are kinds of Observations. In addition, clinical documents commonly contain Assessments, which are also kinds of Observations. Thus, the establishment of a diagnosis is an Observation. \r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           \n                              Recording the results of a Family History Assessment\r\n\n                           \n                           \n                              Laboratory test and associated result\r\n\n                           \n                           \n                              Physical exam test and associated result\r\n\n                           \n                           \n                              Device temperature\r\n\n                           \n                           \n                              Soil lead level";
  dcterms:description "Description:An act that is intended to result in new information about a subject. The main difference between Observations and other Acts is that Observations have a value attribute. The code attribute of Observation and the value attribute of Observation must be considered in combination to determine the semantics of the observation.\r\n\n                        \n                           Discussion:\n                        \r\n\n                        Structurally, many observations are name-value-pairs, where the Observation.code (inherited from Act) is the name and the Observation.value is the value of the property. Such a construct is also known as a  variable (a named feature that can assume a value) hence, the Observation class is always used to hold generic name-value-pairs or variables, even though the variable valuation may not be the result of an elaborate observation method. It may be a simple answer to a question or it may be an assertion or setting of a parameter.\r\n\n                        As with all Act statements, Observation statements describe what was done, and in the case of Observations, this includes a description of what was actually observed (results or answers); and those results or answers are part of the observation and not split off into other objects. \r\n\n                        The method of action is asserted by the Observation classCode or its subclasses at the least granular level, by the Observation.code attribute value at the medium level of granularity, and by the attribute value of observation.methodCode when a finer level of granularity is required. The method in whole or in part may also appear in the attribute value of Observation.value when using coded data types to express the value of the attribute. Relevant aspects of methodology may also be restated in value when the results themselves imply or state a methodology.\r\n\n                        An observation may consist of component observations each having their own Observation.code and Observation.value. In this case, the composite observation may not have an Observation.value for itself. For instance, a white blood cell count consists of the sub-observations for the counts of the various granulocytes, lymphocytes and other normal or abnormal blood cells (e.g., blasts). The overall white blood cell count Observation itself may therefore not have a value by itself (even though it could have one, e.g., the sum total of white blood cells). Thus, as long as an Act is essentially an Act of recognizing and noting information about a subject, it is an Observation, regardless of whether it has a simple value by itself or whether it has sub-observations.\r\n\n                        Even though observations are professional acts (see Act) and as such are intentional actions, this does not require that every possible outcome of an observation be pondered in advance of it being actually made. For instance, differential white blood cell counts (WBC) rarely show blasts, but if they do, this is part of the WBC observation even though blasts might not be predefined in the structure of a normal WBC. \r\n\n                        Clinical documents commonly have Subjective and Objective findings, both of which are kinds of Observations. In addition, clinical documents commonly contain Assessments, which are also kinds of Observations. Thus, the establishment of a diagnosis is an Observation. \r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           \n                              Recording the results of a Family History Assessment\r\n\n                           \n                           \n                              Laboratory test and associated result\r\n\n                           \n                           \n                              Physical exam test and associated result\r\n\n                           \n                           \n                              Device temperature\r\n\n                           \n                           \n                              Soil lead level".

cs:ActClass\#%5fActClassROI rdfs:subClassOf cs:ActClass\#OBS;
  rdfs:label "ActClassROI";
  dc:title "ActClassROI";
  rdfs:comment "Regions of Interest (ROI) within a subject Act. Primarily used for making secondary observations on a subset of a subject observation. The relationship between a ROI and its referenced Act is specified through an ActRelationship of type \"subject\" (SUBJ), which must always be present.";
  dcterms:description "Regions of Interest (ROI) within a subject Act. Primarily used for making secondary observations on a subset of a subject observation. The relationship between a ROI and its referenced Act is specified through an ActRelationship of type \"subject\" (SUBJ), which must always be present.".

cs:ActClass\#ROIBND rdfs:subClassOf cs:ActClass\#%5fActClassROI;
  rdfs:label "bounded ROI";
  dc:title "bounded ROI";
  rdfs:comment "A Region of Interest (ROI) specified for a multidimensional observation, such as an Observation Series (OBSSER). The ROI is specified using a set of observation criteria, each delineating the boundary of the region in one of the dimensions in the multidimensional observation. The relationship between a ROI and its referenced Act is specified through an ActRelationship of type subject (SUBJ), which must always be present. Each of the boundary criteria observations is connected with the ROI using ActRelationships of type \"has component\" (COMP). In each boundary criterion, the Act.code names the dimension and the Observation.value specifies the range of values inside the region. Typically the bounded dimension is continuous, and so the Observation.value will be an interval (IVL) data type. The Observation.value need not be specified if the respective dimension is only named but not constrained. For example, an ROI for the QT interval of a certain beat in ECG Lead II would contain 2 boundary criteria, one naming the interval in time (constrained), and the other naming the interval in ECG Lead II (only named, but not constrained).";
  dcterms:description "A Region of Interest (ROI) specified for a multidimensional observation, such as an Observation Series (OBSSER). The ROI is specified using a set of observation criteria, each delineating the boundary of the region in one of the dimensions in the multidimensional observation. The relationship between a ROI and its referenced Act is specified through an ActRelationship of type subject (SUBJ), which must always be present. Each of the boundary criteria observations is connected with the ROI using ActRelationships of type \"has component\" (COMP). In each boundary criterion, the Act.code names the dimension and the Observation.value specifies the range of values inside the region. Typically the bounded dimension is continuous, and so the Observation.value will be an interval (IVL) data type. The Observation.value need not be specified if the respective dimension is only named but not constrained. For example, an ROI for the QT interval of a certain beat in ECG Lead II would contain 2 boundary criteria, one naming the interval in time (constrained), and the other naming the interval in ECG Lead II (only named, but not constrained).".

cs:ActClass\#ROIOVL rdfs:subClassOf cs:ActClass\#%5fActClassROI;
  rdfs:label "overlay ROI";
  dc:title "overlay ROI";
  rdfs:comment "A Region of Interest (ROI) specified for an image using an overlay shape. Typically used to make reference to specific regions in images, e.g., to specify the location of a radiologic finding in an image or to specify the site of a physical finding by \"circling\" a region in a schematic picture of a human body. The units of the coordinate values are in pixels.  The origin is in the upper left hand corner, with positive X values going to the right and positive Y values going down. The relationship between a ROI and its referenced Act is specified through an ActRelationship of type \"subject\" (SUBJ), which must always be present.";
  dcterms:description "A Region of Interest (ROI) specified for an image using an overlay shape. Typically used to make reference to specific regions in images, e.g., to specify the location of a radiologic finding in an image or to specify the site of a physical finding by \"circling\" a region in a schematic picture of a human body. The units of the coordinate values are in pixels.  The origin is in the upper left hand corner, with positive X values going to the right and positive Y values going down. The relationship between a ROI and its referenced Act is specified through an ActRelationship of type \"subject\" (SUBJ), which must always be present.".

cs:ActClass\#%5fSubjectPhysicalPosition rdfs:subClassOf cs:ActClass\#OBS;
  rdfs:label "subject physical position";
  dc:title "subject physical position";
  rdfs:comment "The spatial relationship of a subject whether human, other animal, or plant, to a frame of reference such as gravity or a collection device.";
  dcterms:description "The spatial relationship of a subject whether human, other animal, or plant, to a frame of reference such as gravity or a collection device.".

cs:ActClass\#%5fSubjectBodyPosition rdfs:subClassOf cs:ActClass\#%5fSubjectPhysicalPosition;
  rdfs:label "subject body position";
  dc:title "subject body position";
  rdfs:comment "Contains codes for defining the observed, physical position of a subject, such as during an observation, assessment, collection of a specimen, etc.  ECG waveforms and vital signs, such as blood pressure, are two examples where a general, observed position typically needs to be noted.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.";
  dcterms:description "Contains codes for defining the observed, physical position of a subject, such as during an observation, assessment, collection of a specimen, etc.  ECG waveforms and vital signs, such as blood pressure, are two examples where a general, observed position typically needs to be noted.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.".

cs:ActClass\#LLD rdfs:subClassOf cs:ActClass\#%5fSubjectBodyPosition;
  rdfs:label "left lateral decubitus";
  dc:title "left lateral decubitus";
  rdfs:comment "Lying on the left side.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.";
  dcterms:description "Lying on the left side.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.".

cs:ActClass\#PRN rdfs:subClassOf cs:ActClass\#%5fSubjectBodyPosition;
  rdfs:label "prone";
  dc:title "prone";
  rdfs:comment "Lying with the front or ventral surface downward; lying face down.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.";
  dcterms:description "Lying with the front or ventral surface downward; lying face down.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.".

cs:ActClass\#RLD rdfs:subClassOf cs:ActClass\#%5fSubjectBodyPosition;
  rdfs:label "right lateral decubitus";
  dc:title "right lateral decubitus";
  rdfs:comment "Lying on the right side.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.";
  dcterms:description "Lying on the right side.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.".

cs:ActClass\#SFWL rdfs:subClassOf cs:ActClass\#%5fSubjectBodyPosition;
  rdfs:label "Semi-Fowler's";
  dc:title "Semi-Fowler's";
  rdfs:comment "A semi-sitting position in bed with the head of the bed elevated approximately 45 degrees.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.";
  dcterms:description "A semi-sitting position in bed with the head of the bed elevated approximately 45 degrees.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.".

cs:ActClass\#SIT rdfs:subClassOf cs:ActClass\#%5fSubjectBodyPosition;
  rdfs:label "sitting";
  dc:title "sitting";
  rdfs:comment "Resting the body on the buttocks, typically with upper torso erect or semi erect.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.";
  dcterms:description "Resting the body on the buttocks, typically with upper torso erect or semi erect.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.".

cs:ActClass\#STN rdfs:subClassOf cs:ActClass\#%5fSubjectBodyPosition;
  rdfs:label "standing";
  dc:title "standing";
  rdfs:comment "To be stationary, upright, vertical, on one's legs.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.";
  dcterms:description "To be stationary, upright, vertical, on one's legs.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.".

cs:ActClass\#SUP rdfs:subClassOf cs:ActClass\#%5fSubjectBodyPosition;
  rdfs:label "supine";
  dc:title "supine";
  rdfs:comment "Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.";
  dcterms:description "Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.".

cs:ActClass\#RTRD rdfs:subClassOf cs:ActClass\#SUP;
  rdfs:label "reverse trendelenburg";
  dc:title "reverse trendelenburg";
  rdfs:comment "Lying on the back, on an inclined plane, typically about 30-45 degrees with head raised and feet lowered.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.";
  dcterms:description "Lying on the back, on an inclined plane, typically about 30-45 degrees with head raised and feet lowered.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.".

cs:ActClass\#TRD rdfs:subClassOf cs:ActClass\#SUP;
  rdfs:label "trendelenburg";
  dc:title "trendelenburg";
  rdfs:comment "Lying on the back, on an inclined plane, typically about 30-45 degrees, with  head lowered and feet raised.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.";
  dcterms:description "Lying on the back, on an inclined plane, typically about 30-45 degrees, with  head lowered and feet raised.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because it does not describe a type of Act (as it should in the ActClass code system), but rather encodes the result or value of an observation.  The same code has been added to the ObservationValue code system.".

cs:ActClass\#ALRT rdfs:subClassOf cs:ActClass\#OBS;
  rdfs:label "detected issue";
  dc:title "detected issue";
  rdfs:comment "An observation identifying a potential adverse outcome as a result of an Act or combination of Acts.\r\n\n                        \n                           Examples: Detection of a drug-drug interaction; Identification of a late-submission for an invoice; Requesting discharge for a patient who does not meet hospital-defined discharge criteria.\r\n\n                        \n                           Discussion: This class is commonly used for identifying 'business rule' or 'process' problems that may result in a refusal to carry out a particular request. In some circumstances it may be possible to 'bypass' a problem by modifying the request to acknowledge the issue and/or by providing some form of mitigation.\r\n\n                        \n                           Constraints: the Act or Acts that may cause the the adverse outcome are the target of a subject ActRelationship. The subbtypes of this concept indicate the type of problem being detected (e.g. drug-drug interaction) while the Observation.value is used to repesent a specific problem code (e.g. specific drug-drug interaction id).";
  dcterms:description "An observation identifying a potential adverse outcome as a result of an Act or combination of Acts.\r\n\n                        \n                           Examples: Detection of a drug-drug interaction; Identification of a late-submission for an invoice; Requesting discharge for a patient who does not meet hospital-defined discharge criteria.\r\n\n                        \n                           Discussion: This class is commonly used for identifying 'business rule' or 'process' problems that may result in a refusal to carry out a particular request. In some circumstances it may be possible to 'bypass' a problem by modifying the request to acknowledge the issue and/or by providing some form of mitigation.\r\n\n                        \n                           Constraints: the Act or Acts that may cause the the adverse outcome are the target of a subject ActRelationship. The subbtypes of this concept indicate the type of problem being detected (e.g. drug-drug interaction) while the Observation.value is used to repesent a specific problem code (e.g. specific drug-drug interaction id).".

cs:ActClass\#BATTERY rdfs:subClassOf cs:ActClass\#OBS;
  rdfs:label "battery";
  dc:title "battery";
  rdfs:comment "Definition: An observation that is composed of a set of observations. These observations typically have a logical or practical grouping for generally accepted clinical or functional purposes, such as observations that are run together because of automation. A battery can define required and optional component observations and, in some cases, will define complex rules that determine whether or not a particular observation is made. BATTERY is a constraint on the Observation class in that it is understood to always be composed of component observations.\r\n\n                        \n                           UsageNotes: The focus in a BATTERY is that it is composed of individual observations. In request (RQO) mood, a battery is a request to perform the component observations. In event (EVN) mood a battery is a reporting of associated set of observation events. In definition mood a battery is the definition of the associated set of observations.\r\n\n                        \n                           Examples: Vital signs, Full blood count, Chemistry panel.";
  dcterms:description "Definition: An observation that is composed of a set of observations. These observations typically have a logical or practical grouping for generally accepted clinical or functional purposes, such as observations that are run together because of automation. A battery can define required and optional component observations and, in some cases, will define complex rules that determine whether or not a particular observation is made. BATTERY is a constraint on the Observation class in that it is understood to always be composed of component observations.\r\n\n                        \n                           UsageNotes: The focus in a BATTERY is that it is composed of individual observations. In request (RQO) mood, a battery is a request to perform the component observations. In event (EVN) mood a battery is a reporting of associated set of observation events. In definition mood a battery is the definition of the associated set of observations.\r\n\n                        \n                           Examples: Vital signs, Full blood count, Chemistry panel.".

cs:ActClass\#CLNTRL rdfs:subClassOf cs:ActClass\#OBS;
  rdfs:label "clinical trial";
  dc:title "clinical trial";
  rdfs:comment "The set of actions that define an experiment to assess the effectiveness and/or safety of a biopharmaceutical product (food, drug, device, etc.).  In definition mood, this set of actions is often embodied in a clinical trial protocol; in event mood, this designates the aggregate act of applying the actions to one or more subjects.";
  dcterms:description "The set of actions that define an experiment to assess the effectiveness and/or safety of a biopharmaceutical product (food, drug, device, etc.).  In definition mood, this set of actions is often embodied in a clinical trial protocol; in event mood, this designates the aggregate act of applying the actions to one or more subjects.".

cs:ActClass\#CNOD rdfs:subClassOf cs:ActClass\#OBS;
  rdfs:label "Condition Node";
  dc:title "Condition Node";
  rdfs:comment "An instance of Observation of a Condition at a point in time that includes any Observations or Procedures associated with that Condition as well as links to previous instances of Condition Node for the same Condition\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because an alternative structure for tracking the evolution of a problem has been presented and adopted by the Care Provision Work Group.";
  dcterms:description "An instance of Observation of a Condition at a point in time that includes any Observations or Procedures associated with that Condition as well as links to previous instances of Condition Node for the same Condition\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This concept has been deprecated because an alternative structure for tracking the evolution of a problem has been presented and adopted by the Care Provision Work Group.".

cs:ActClass\#COND rdfs:subClassOf cs:ActClass\#OBS;
  rdfs:label "Condition";
  dc:title "Condition";
  rdfs:comment "An observable finding or state that persists over time and tends to require intervention or management, and, therefore, distinguished from an Observation made at a point in time; may exist before an Observation of the Condition is made or after interventions to manage the Condition are undertaken. Examples: equipment repair status, device recall status, a health risk, a financial risk, public health risk, pregnancy, health maintenance, chronic illness";
  dcterms:description "An observable finding or state that persists over time and tends to require intervention or management, and, therefore, distinguished from an Observation made at a point in time; may exist before an Observation of the Condition is made or after interventions to manage the Condition are undertaken. Examples: equipment repair status, device recall status, a health risk, a financial risk, public health risk, pregnancy, health maintenance, chronic illness".

cs:ActClass\#CASE rdfs:subClassOf cs:ActClass\#COND;
  rdfs:label "public health case";
  dc:title "public health case";
  rdfs:comment "A public health case is an Observation representing a condition or event that has a specific significance for public health. Typically it involves an instance or instances of a reportable infectious disease or other condition. The public health case can include a health-related event concerning a single individual or it may refer to multiple health-related events that are occurrences of the same disease or condition of interest to public health. An outbreak involving multiple individuals may be considered as a type of public health case. A public health case definition (Act.moodCode = \"definition\") includes the description of the clinical, laboratory, and epidemiologic indicators associated with a disease or condition of interest to public health. There are case definitions for conditions that are reportable, as well as for those that are not. There are also case definitions for outbreaks. A public health case definition is a construct used by public health for the purpose of counting cases, and should not be used as clinical indications for treatment. Examples include AIDS, toxic-shock syndrome, and salmonellosis and their associated indicators that are used to define a case.";
  dcterms:description "A public health case is an Observation representing a condition or event that has a specific significance for public health. Typically it involves an instance or instances of a reportable infectious disease or other condition. The public health case can include a health-related event concerning a single individual or it may refer to multiple health-related events that are occurrences of the same disease or condition of interest to public health. An outbreak involving multiple individuals may be considered as a type of public health case. A public health case definition (Act.moodCode = \"definition\") includes the description of the clinical, laboratory, and epidemiologic indicators associated with a disease or condition of interest to public health. There are case definitions for conditions that are reportable, as well as for those that are not. There are also case definitions for outbreaks. A public health case definition is a construct used by public health for the purpose of counting cases, and should not be used as clinical indications for treatment. Examples include AIDS, toxic-shock syndrome, and salmonellosis and their associated indicators that are used to define a case.".

cs:ActClass\#OUTB rdfs:subClassOf cs:ActClass\#CASE;
  rdfs:label "outbreak";
  dc:title "outbreak";
  rdfs:comment "An outbreak represents a series of public health cases. The date on which an outbreak starts is the earliest date of onset among the cases assigned to the outbreak, and its ending date is the last date of onset among the cases assigned to the outbreak.";
  dcterms:description "An outbreak represents a series of public health cases. The date on which an outbreak starts is the earliest date of onset among the cases assigned to the outbreak, and its ending date is the last date of onset among the cases assigned to the outbreak.".

cs:ActClass\#DGIMG rdfs:subClassOf cs:ActClass\#OBS;
  rdfs:label "diagnostic image";
  dc:title "diagnostic image";
  rdfs:comment "Class for holding attributes unique to diagnostic images.";
  dcterms:description "Class for holding attributes unique to diagnostic images.".

cs:ActClass\#GEN rdfs:subClassOf cs:ActClass\#OBS;
  rdfs:label "genomic observation";
  dc:title "genomic observation";
  rdfs:comment "Description:An observation of genomic phenomena.";
  dcterms:description "Description:An observation of genomic phenomena.".

cs:ActClass\#DETPOL rdfs:subClassOf cs:ActClass\#GEN;
  rdfs:label "determinant peptide";
  dc:title "determinant peptide";
  rdfs:comment "Description:A determinant peptide in a polypeptide as described by polypeptide.";
  dcterms:description "Description:A determinant peptide in a polypeptide as described by polypeptide.".

cs:ActClass\#EXP rdfs:subClassOf cs:ActClass\#GEN;
  rdfs:label "expression level";
  dc:title "expression level";
  rdfs:comment "Description:An expression level of genes/proteins or other expressed genomic entities.";
  dcterms:description "Description:An expression level of genes/proteins or other expressed genomic entities.".

cs:ActClass\#LOC rdfs:subClassOf cs:ActClass\#GEN;
  rdfs:label "locus";
  dc:title "locus";
  rdfs:comment "Description:The position of a gene (or other significant sequence) on the genome.";
  dcterms:description "Description:The position of a gene (or other significant sequence) on the genome.".

cs:ActClass\#PHN rdfs:subClassOf cs:ActClass\#GEN;
  rdfs:label "phenotype";
  dc:title "phenotype";
  rdfs:comment "Description:A genomic phenomenon that is expressed externally in the organism.";
  dcterms:description "Description:A genomic phenomenon that is expressed externally in the organism.".

cs:ActClass\#POL rdfs:subClassOf cs:ActClass\#GEN;
  rdfs:label "polypeptide";
  dc:title "polypeptide";
  rdfs:comment "Description:A polypeptide resulting from the translation of a gene.";
  dcterms:description "Description:A polypeptide resulting from the translation of a gene.".

cs:ActClass\#SEQ rdfs:subClassOf cs:ActClass\#GEN;
  rdfs:label "bio sequence";
  dc:title "bio sequence";
  rdfs:comment "Description:A sequence of biomolecule like the DNA, RNA, protein and the like.";
  dcterms:description "Description:A sequence of biomolecule like the DNA, RNA, protein and the like.".

cs:ActClass\#SEQVAR rdfs:subClassOf cs:ActClass\#GEN;
  rdfs:label "bio sequence variation";
  dc:title "bio sequence variation";
  rdfs:comment "Description:A variation in a sequence as described by BioSequence.";
  dcterms:description "Description:A variation in a sequence as described by BioSequence.".

cs:ActClass\#INVSTG rdfs:subClassOf cs:ActClass\#OBS;
  rdfs:label "investigation";
  dc:title "investigation";
  rdfs:comment "An formalized inquiry into the circumstances surrounding a particular unplanned event or potential event for the purposes of identifying possible causes and contributing factors for the event. This investigation could be conducted at a local institutional level or at the level of a local or national government.";
  dcterms:description "An formalized inquiry into the circumstances surrounding a particular unplanned event or potential event for the purposes of identifying possible causes and contributing factors for the event. This investigation could be conducted at a local institutional level or at the level of a local or national government.".

cs:ActClass\#OBSSER rdfs:subClassOf cs:ActClass\#OBS;
  rdfs:label "observation series";
  dc:title "observation series";
  rdfs:comment "Container for Correlated Observation Sequences sharing a common frame of reference.  All Observations of the same cd must be comparable and relative to the common frame of reference.  For example, a 3-channel ECG device records a 12-lead ECG in 4 steps (3 leads at a time).  Each of the separate 3-channel recordings would be in their own \"OBSCOR\".  And, all 4 OBSCOR would be contained in one OBSSER because all the times are relative to the same origin (beginning of the recording) and all the ECG signals were from a fixed set of electrodes.";
  dcterms:description "Container for Correlated Observation Sequences sharing a common frame of reference.  All Observations of the same cd must be comparable and relative to the common frame of reference.  For example, a 3-channel ECG device records a 12-lead ECG in 4 steps (3 leads at a time).  Each of the separate 3-channel recordings would be in their own \"OBSCOR\".  And, all 4 OBSCOR would be contained in one OBSSER because all the times are relative to the same origin (beginning of the recording) and all the ECG signals were from a fixed set of electrodes.".

cs:ActClass\#OBSCOR rdfs:subClassOf cs:ActClass\#OBSSER;
  rdfs:label "correlated observation sequences";
  dc:title "correlated observation sequences";
  rdfs:comment "Container for Observation Sequences (Observations whose values are contained in LIST<>'s) having values correlated with each other.  Each contained Observation Sequence LIST<> must be the same length.  Values in the LIST<>'s are correlated based on index.  E.g. the values in position 2 in all the LIST<>'s are correlated.  This is analogous to a table where each column is an Observation Sequence with a LIST<> of values, and each row in the table is a correlation between the columns.  For example, a 12-lead ECG would contain 13 sequences: one sequence for time, and a sequence for each of the 12 leads.";
  dcterms:description "Container for Observation Sequences (Observations whose values are contained in LIST<>'s) having values correlated with each other.  Each contained Observation Sequence LIST<> must be the same length.  Values in the LIST<>'s are correlated based on index.  E.g. the values in position 2 in all the LIST<>'s are correlated.  This is analogous to a table where each column is an Observation Sequence with a LIST<> of values, and each row in the table is a correlation between the columns.  For example, a 12-lead ECG would contain 13 sequences: one sequence for time, and a sequence for each of the 12 leads.".

cs:ActClass\#POS rdfs:subClassOf cs:ActClass\#OBS;
  rdfs:label "position";
  dc:title "position";
  rdfs:comment "An observation denoting the physical location of a person or thing based on a reference coordinate system.";
  dcterms:description "An observation denoting the physical location of a person or thing based on a reference coordinate system.".

cs:ActClass\#POSACC rdfs:subClassOf cs:ActClass\#POS;
  rdfs:label "position accuracy";
  dc:title "position accuracy";
  rdfs:comment "Description:An observation representing the degree to which the assignment of the spatial coordinates, based on a matching algorithm by a geocoding engine against a reference spatial database, matches true or accepted values.";
  dcterms:description "Description:An observation representing the degree to which the assignment of the spatial coordinates, based on a matching algorithm by a geocoding engine against a reference spatial database, matches true or accepted values.".

cs:ActClass\#POSCOORD rdfs:subClassOf cs:ActClass\#POS;
  rdfs:label "position coordinate";
  dc:title "position coordinate";
  rdfs:comment "Description:An observation representing one of a set of numerical values used to determine the position of a place.  The name of the coordinate value is determined by the reference coordinate system.";
  dcterms:description "Description:An observation representing one of a set of numerical values used to determine the position of a place.  The name of the coordinate value is determined by the reference coordinate system.".

cs:ActClass\#SPCOBS rdfs:subClassOf cs:ActClass\#OBS;
  rdfs:label "specimen observation";
  dc:title "specimen observation";
  rdfs:comment "An observation on a specimen in a laboratory environment that may affect processing, analysis or result interpretation";
  dcterms:description "An observation on a specimen in a laboratory environment that may affect processing, analysis or result interpretation".

cs:ActClass\#VERIF rdfs:subClassOf cs:ActClass\#OBS;
  rdfs:label "Verification";
  dc:title "Verification";
  rdfs:comment "An act which describes the process whereby a 'verifying party' validates either the existence of the Role attested to by some Credential or the actual Vetting act and its details.";
  dcterms:description "An act which describes the process whereby a 'verifying party' validates either the existence of the Role attested to by some Credential or the actual Vetting act and its details.".

cs:ActClass\#PCPR rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "care provision";
  dc:title "care provision";
  rdfs:comment "An Act that of taking on whole or partial responsibility for, or attention to, safety and well-being of a subject of care. \r\n\n                        \n                           Discussion: A care provision event may exist without any other care actions taking place. For example, when a patient is assigned to the care of a particular health professional.\r\n\n                        In request (RQO) mood care provision communicates a referral, which is a request:\r\n\n                        \n                           \n                              from one party (linked as a participant of type author (AUT)),\r\n\n                           \n                           \n                              to another party (linked as a participant of type performer (PRF),\r\n\n                           \n                           \n                              to take responsibility for a scope specified by the code attribute, \r\n\n                           \n                           \n                              for an entity (linked as a participant of type subject (SBJ)).\r\n\n                           \n                        \n                        The scope of the care for which responsibility is taken is identified by code attribute.\r\n\n                        In event (EVN) mood care provision indicates the effective time interval of a specified scope of responsibility by a performer (PRF) or set of performers (PRF) for a subject (SBJ).\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           \n                              Referral from GP to a specialist.\r\n\n                           \n                           \n                              Assignment of a patient or group of patients to the case list of a health professional.\r\n\n                           \n                           \n                              Assignment of inpatients to the care of particular nurses for a working shift.";
  dcterms:description "An Act that of taking on whole or partial responsibility for, or attention to, safety and well-being of a subject of care. \r\n\n                        \n                           Discussion: A care provision event may exist without any other care actions taking place. For example, when a patient is assigned to the care of a particular health professional.\r\n\n                        In request (RQO) mood care provision communicates a referral, which is a request:\r\n\n                        \n                           \n                              from one party (linked as a participant of type author (AUT)),\r\n\n                           \n                           \n                              to another party (linked as a participant of type performer (PRF),\r\n\n                           \n                           \n                              to take responsibility for a scope specified by the code attribute, \r\n\n                           \n                           \n                              for an entity (linked as a participant of type subject (SBJ)).\r\n\n                           \n                        \n                        The scope of the care for which responsibility is taken is identified by code attribute.\r\n\n                        In event (EVN) mood care provision indicates the effective time interval of a specified scope of responsibility by a performer (PRF) or set of performers (PRF) for a subject (SBJ).\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           \n                              Referral from GP to a specialist.\r\n\n                           \n                           \n                              Assignment of a patient or group of patients to the case list of a health professional.\r\n\n                           \n                           \n                              Assignment of inpatients to the care of particular nurses for a working shift.".

cs:ActClass\#ENC rdfs:subClassOf cs:ActClass\#PCPR;
  rdfs:label "encounter";
  dc:title "encounter";
  rdfs:comment "An interaction between a patient and healthcare participant(s) for the purpose of providing patient service(s) or assessing the health status of a patient.  For example, outpatient visit to multiple departments, home health support (including physical therapy), inpatient hospital stay, emergency room visit, field visit (e.g., traffic accident), office visit, occupational therapy, telephone call.";
  dcterms:description "An interaction between a patient and healthcare participant(s) for the purpose of providing patient service(s) or assessing the health status of a patient.  For example, outpatient visit to multiple departments, home health support (including physical therapy), inpatient hospital stay, emergency room visit, field visit (e.g., traffic accident), office visit, occupational therapy, telephone call.".

cs:ActClass\#POLICY rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "policy";
  dc:title "policy";
  rdfs:comment "Description:A mandate, regulation, obligation, requirement, rule, or expectation unilaterally imposed by one party on:\r\n\n                        \n                           \n                              The activity of another party\r\n\n                           \n                           \n                              The behavior of another party\r\n\n                           \n                           \n                              The manner in which an act is executed";
  dcterms:description "Description:A mandate, regulation, obligation, requirement, rule, or expectation unilaterally imposed by one party on:\r\n\n                        \n                           \n                              The activity of another party\r\n\n                           \n                           \n                              The behavior of another party\r\n\n                           \n                           \n                              The manner in which an act is executed".

cs:ActClass\#JURISPOL rdfs:subClassOf cs:ActClass\#POLICY;
  rdfs:label "jurisdictional policy";
  dc:title "jurisdictional policy";
  rdfs:comment "Description:A mandate, regulation, obligation, requirement, rule, or expectation unilaterally imposed by a jurisdiction on:\r\n\n                        \n                           \n                              The activity of another party\r\n\n                           \n                           \n                              The behavior of another party\r\n\n                           \n                           \n                              The manner in which an act is executed\r\n\n                           \n                        \n                        \n                           Examples:A jurisdictional mandate regarding the prescribing and dispensing of a particular medication.  A jurisdictional privacy or security regulation dictating the manner in which personal health information is disclosed.  A jurisdictional requirement that certain services or health conditions are reported to a monitoring program, e.g., immunizations, methadone treatment, or cancer registries.";
  dcterms:description "Description:A mandate, regulation, obligation, requirement, rule, or expectation unilaterally imposed by a jurisdiction on:\r\n\n                        \n                           \n                              The activity of another party\r\n\n                           \n                           \n                              The behavior of another party\r\n\n                           \n                           \n                              The manner in which an act is executed\r\n\n                           \n                        \n                        \n                           Examples:A jurisdictional mandate regarding the prescribing and dispensing of a particular medication.  A jurisdictional privacy or security regulation dictating the manner in which personal health information is disclosed.  A jurisdictional requirement that certain services or health conditions are reported to a monitoring program, e.g., immunizations, methadone treatment, or cancer registries.".

cs:ActClass\#ORGPOL rdfs:subClassOf cs:ActClass\#POLICY;
  rdfs:label "organizational policy";
  dc:title "organizational policy";
  rdfs:comment "Description:A mandate, obligation, requirement, rule, or expectation unilaterally imposed by an organization on:\r\n\n                        \n                           \n                              The activity of another party\r\n\n                           \n                           \n                              The behavior of another party\r\n\n                           \n                           \n                              The manner in which an act is executed\r\n\n                           \n                        \n                        \n                           Examples:A clinical or research protocols imposed by a payer, a malpractice insurer, or an institution to which a provider must adhere.  A mandate imposed by a denominational institution for a provider to provide or withhold certain information from the patient about treatment options.";
  dcterms:description "Description:A mandate, obligation, requirement, rule, or expectation unilaterally imposed by an organization on:\r\n\n                        \n                           \n                              The activity of another party\r\n\n                           \n                           \n                              The behavior of another party\r\n\n                           \n                           \n                              The manner in which an act is executed\r\n\n                           \n                        \n                        \n                           Examples:A clinical or research protocols imposed by a payer, a malpractice insurer, or an institution to which a provider must adhere.  A mandate imposed by a denominational institution for a provider to provide or withhold certain information from the patient about treatment options.".

cs:ActClass\#SCOPOL rdfs:subClassOf cs:ActClass\#POLICY;
  rdfs:label "scope of practice policy";
  dc:title "scope of practice policy";
  rdfs:comment "Description:An ethical or clinical obligation, requirement, rule, or expectation imposed or strongly encouraged by organizations that oversee particular clinical domains or provider certification which define the boundaries within which a provider may practice and which may have legal basis or ramifications on:\r\n\n                        \n                           \n                              The activity of another party\r\n\n                           \n                           \n                              The behavior of another party\r\n\n                           \n                           \n                              The manner in which an act is executed\r\n\n                           \n                        \n                        \n                           Examples:An ethical obligation for a provider to fully inform a patient about all treatment options.  An ethical obligation for a provider not to disclose personal health information that meets certain criteria, e.g., where disclosure might result in harm to the patient or another person.  The set of health care services which a provider is credentialed or privileged to provide.";
  dcterms:description "Description:An ethical or clinical obligation, requirement, rule, or expectation imposed or strongly encouraged by organizations that oversee particular clinical domains or provider certification which define the boundaries within which a provider may practice and which may have legal basis or ramifications on:\r\n\n                        \n                           \n                              The activity of another party\r\n\n                           \n                           \n                              The behavior of another party\r\n\n                           \n                           \n                              The manner in which an act is executed\r\n\n                           \n                        \n                        \n                           Examples:An ethical obligation for a provider to fully inform a patient about all treatment options.  An ethical obligation for a provider not to disclose personal health information that meets certain criteria, e.g., where disclosure might result in harm to the patient or another person.  The set of health care services which a provider is credentialed or privileged to provide.".

cs:ActClass\#STDPOL rdfs:subClassOf cs:ActClass\#POLICY;
  rdfs:label "standard of practice policy";
  dc:title "standard of practice policy";
  rdfs:comment "Description:A requirement, rule, or expectation typically documented as guidelines, protocols, or formularies imposed or strongly encouraged by an organization that oversees or has authority over the practices within a domain, and which may have legal basis or ramifications on:\r\n\n                        \n                           \n                              The activity of another party\r\n\n                           \n                           \n                              The behavior of another party\r\n\n                           \n                           \n                              The manner in which an act is executed\r\n\n                           \n                        \n                        \n                           Examples:A payer may require a prescribing provider to adhere to formulary guidelines.  An institution may adopt clinical guidelines and protocols and implement these within its electronic health record and decision support systems.";
  dcterms:description "Description:A requirement, rule, or expectation typically documented as guidelines, protocols, or formularies imposed or strongly encouraged by an organization that oversees or has authority over the practices within a domain, and which may have legal basis or ramifications on:\r\n\n                        \n                           \n                              The activity of another party\r\n\n                           \n                           \n                              The behavior of another party\r\n\n                           \n                           \n                              The manner in which an act is executed\r\n\n                           \n                        \n                        \n                           Examples:A payer may require a prescribing provider to adhere to formulary guidelines.  An institution may adopt clinical guidelines and protocols and implement these within its electronic health record and decision support systems.".

cs:ActClass\#PROC rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "procedure";
  dc:title "procedure";
  rdfs:comment "An Act whose immediate and primary outcome (post-condition) is the alteration of the physical condition of the subject.\r\n\n                        \n                           Examples: : Procedures may involve the disruption of some body surface (e.g. an incision in a surgical procedure), but they also include conservative procedures such as reduction of a luxated join, chiropractic treatment, massage, balneotherapy, acupuncture, shiatsu, etc. Outside of clinical medicine, procedures may be such things as alteration of environments (e.g. straightening rivers, draining swamps, building dams) or the repair or change of machinery etc.";
  dcterms:description "An Act whose immediate and primary outcome (post-condition) is the alteration of the physical condition of the subject.\r\n\n                        \n                           Examples: : Procedures may involve the disruption of some body surface (e.g. an incision in a surgical procedure), but they also include conservative procedures such as reduction of a luxated join, chiropractic treatment, massage, balneotherapy, acupuncture, shiatsu, etc. Outside of clinical medicine, procedures may be such things as alteration of environments (e.g. straightening rivers, draining swamps, building dams) or the repair or change of machinery etc.".

cs:ActClass\#SBADM rdfs:subClassOf cs:ActClass\#PROC;
  rdfs:label "substance administration";
  dc:title "substance administration";
  rdfs:comment "The act of introducing or otherwise applying a substance to the subject.\r\n\n                        \n                           Discussion: The effect of the substance is typically established on a biochemical basis, however, that is not a requirement. For example, radiotherapy can largely be described in the same way, especially if it is a systemic therapy such as radio-iodine.  This class also includes the application of chemical treatments to an area.\r\n\n                        \n                           Examples: Chemotherapy protocol; Drug prescription; Vaccination record";
  dcterms:description "The act of introducing or otherwise applying a substance to the subject.\r\n\n                        \n                           Discussion: The effect of the substance is typically established on a biochemical basis, however, that is not a requirement. For example, radiotherapy can largely be described in the same way, especially if it is a systemic therapy such as radio-iodine.  This class also includes the application of chemical treatments to an area.\r\n\n                        \n                           Examples: Chemotherapy protocol; Drug prescription; Vaccination record".

cs:ActClass\#SBEXT rdfs:subClassOf cs:ActClass\#PROC;
  rdfs:label "Substance Extraction";
  dc:title "Substance Extraction";
  rdfs:comment "Description: The act of removing a substance from the subject.";
  dcterms:description "Description: The act of removing a substance from the subject.".

cs:ActClass\#SPECCOLLECT rdfs:subClassOf cs:ActClass\#SBEXT;
  rdfs:label "Specimen Collection";
  dc:title "Specimen Collection";
  rdfs:comment "A procedure for obtaining a specimen from a source entity.";
  dcterms:description "A procedure for obtaining a specimen from a source entity.".

cs:ActClass\#REG rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "registration";
  dc:title "registration";
  rdfs:comment "Represents the act of maintaining information about the registration of its associated registered subject. The subject can be either an Act or a Role, and includes subjects such as lab exam definitions, drug protocol definitions, prescriptions, persons, patients, practitioners, and equipment.\r\n\n                        The registration may have a unique identifier - separate from the unique identification of the subject - as well as a core set of related participations and act relationships that characterize the registration event and aid in the disposition of the subject information by a receiving system.";
  dcterms:description "Represents the act of maintaining information about the registration of its associated registered subject. The subject can be either an Act or a Role, and includes subjects such as lab exam definitions, drug protocol definitions, prescriptions, persons, patients, practitioners, and equipment.\r\n\n                        The registration may have a unique identifier - separate from the unique identification of the subject - as well as a core set of related participations and act relationships that characterize the registration event and aid in the disposition of the subject information by a receiving system.".

cs:ActClass\#REV rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "review";
  dc:title "review";
  rdfs:comment "The act of examining and evaluating the subject, usually another act. For example, \"This prescription needs to be reviewed in 2 months.\"";
  dcterms:description "The act of examining and evaluating the subject, usually another act. For example, \"This prescription needs to be reviewed in 2 months.\"".

cs:ActClass\#SPCTRT rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "specimen treatment";
  dc:title "specimen treatment";
  rdfs:comment "A procedure or treatment performed on a specimen to prepare it for analysis";
  dcterms:description "A procedure or treatment performed on a specimen to prepare it for analysis".

cs:ActClass\#SPLY rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "supply";
  dc:title "supply";
  rdfs:comment "Supply orders and deliveries are simple Acts that focus on the delivered product. The product is associated with the Supply Act via Participation.typeCode=\"product\". With general Supply Acts, the precise identification of the Material (manufacturer, serial numbers, etc.) is important.  Most of the detailed information about the Supply should be represented using the Material class.  If delivery needs to be scheduled, tracked, and billed separately, one can associate a Transportation Act with the Supply Act.  Pharmacy dispense services are represented as Supply Acts, associated with a SubstanceAdministration  Act. The SubstanceAdministration class represents the administration of medication, while dispensing is supply.";
  dcterms:description "Supply orders and deliveries are simple Acts that focus on the delivered product. The product is associated with the Supply Act via Participation.typeCode=\"product\". With general Supply Acts, the precise identification of the Material (manufacturer, serial numbers, etc.) is important.  Most of the detailed information about the Supply should be represented using the Material class.  If delivery needs to be scheduled, tracked, and billed separately, one can associate a Transportation Act with the Supply Act.  Pharmacy dispense services are represented as Supply Acts, associated with a SubstanceAdministration  Act. The SubstanceAdministration class represents the administration of medication, while dispensing is supply.".

cs:ActClass\#DIET rdfs:subClassOf cs:ActClass\#SPLY;
  rdfs:label "diet";
  dc:title "diet";
  rdfs:comment "Diet services are supply services, with some aspects resembling Medication services: the detail of the diet is given as a description of the Material associated via Participation.typeCode=\"product\". Medically relevant diet types may be communicated in the Diet.code attribute using domain ActDietCode, however, the detail of the food supplied and the various combinations of dishes should be communicated as Material instances.\r\n\n                        \n                           Deprecation Note\n                        \r\n\n                        \n                           Class: Use either the Supply class (if dealing with what should be given to the patient) or SubstanceAdministration class (if dealing with what the patient should consume)\r\n\n                        \n                           energyQuantity: This quantity can be conveyed by using a Content relationship with a quantity attribute expressing the calories\r\n\n                        \n                           carbohydrateQuantity:This quantity can be conveyed using a Content relationship to an Entity with a code of  carbohydrate and a quantity attribute on the content relationship.";
  dcterms:description "Diet services are supply services, with some aspects resembling Medication services: the detail of the diet is given as a description of the Material associated via Participation.typeCode=\"product\". Medically relevant diet types may be communicated in the Diet.code attribute using domain ActDietCode, however, the detail of the food supplied and the various combinations of dishes should be communicated as Material instances.\r\n\n                        \n                           Deprecation Note\n                        \r\n\n                        \n                           Class: Use either the Supply class (if dealing with what should be given to the patient) or SubstanceAdministration class (if dealing with what the patient should consume)\r\n\n                        \n                           energyQuantity: This quantity can be conveyed by using a Content relationship with a quantity attribute expressing the calories\r\n\n                        \n                           carbohydrateQuantity:This quantity can be conveyed using a Content relationship to an Entity with a code of  carbohydrate and a quantity attribute on the content relationship.".

cs:ActClass\#STORE rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "storage";
  dc:title "storage";
  rdfs:comment "The act of putting something away for safe keeping. The \"something\" may be physical object such as a specimen, or information, such as observations regarding a specimen.";
  dcterms:description "The act of putting something away for safe keeping. The \"something\" may be physical object such as a specimen, or information, such as observations regarding a specimen.".

cs:ActClass\#SUBST rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "Substitution";
  dc:title "Substitution";
  rdfs:comment "Definition: Indicates that the subject Act has undergone or should undergo substitution of a type indicated by Act.code.\r\n\n                        Rationale: Used to specify \"allowed\" substitution when creating orders, \"actual\" susbstitution when sending events, as well as the reason for the substitution and who was responsible for it.";
  dcterms:description "Definition: Indicates that the subject Act has undergone or should undergo substitution of a type indicated by Act.code.\r\n\n                        Rationale: Used to specify \"allowed\" substitution when creating orders, \"actual\" susbstitution when sending events, as well as the reason for the substitution and who was responsible for it.".

cs:ActClass\#TRFR rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "transfer";
  dc:title "transfer";
  rdfs:comment "Definition: The act of transferring information without the intent of imparting understanding about a topic to the subject that is the recipient or holder of the transferred information where the participation association must be RCV or HLD.";
  dcterms:description "Definition: The act of transferring information without the intent of imparting understanding about a topic to the subject that is the recipient or holder of the transferred information where the participation association must be RCV or HLD.".

cs:ActClass\#TRNS rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "transportation";
  dc:title "transportation";
  rdfs:comment "Transportation is the moving of a payload (people or material) from a location of origin to a destination location.  Thus, any transport service has the three target instances of type payload, origin, and destination, besides the targets that are generally used for any service (i.e., performer, device, etc.)";
  dcterms:description "Transportation is the moving of a payload (people or material) from a location of origin to a destination location.  Thus, any transport service has the three target instances of type payload, origin, and destination, besides the targets that are generally used for any service (i.e., performer, device, etc.)".

cs:ActClass\#XACT rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "financial transaction";
  dc:title "financial transaction";
  rdfs:comment "A sub-class of Act representing any transaction between two accounts whose value is measured in monetary terms.\r\n\n                        In the \"intent\" mood, communicates a request for a transaction to be initiated, or communicates a transfer of value between two accounts.\r\n\n                        In the \"event\" mood, communicates the posting of a transaction to an account.";
  dcterms:description "A sub-class of Act representing any transaction between two accounts whose value is measured in monetary terms.\r\n\n                        In the \"intent\" mood, communicates a request for a transaction to be initiated, or communicates a transfer of value between two accounts.\r\n\n                        In the \"event\" mood, communicates the posting of a transaction to an account.".

cs:ActClass\#%5fActClassContainer rdfs:subClassOf cs:ActClass\#ACT;
  rdfs:label "ActClassContainer";
  dc:title "ActClassContainer";
  rdfs:comment "ActClassContainer";
  dcterms:description "ActClassContainer".

cs:ActClass\#ENTRY rdfs:subClassOf cs:ActClass\#%5fActClassContainer;
  rdfs:label "entry";
  dc:title "entry";
  rdfs:comment "This context represents the information acquired and recorded for an observation, a clinical statement such as a portion of the patient's history or an inference or assertion, or an action that might be intended or has actually been performed. This class may represent both the actual data describing the observation, inference, or action, and optionally the details supporting the clinical reasoning process such as a reference to an electronic guideline, decision support system, or other knowledge reference.";
  dcterms:description "This context represents the information acquired and recorded for an observation, a clinical statement such as a portion of the patient's history or an inference or assertion, or an action that might be intended or has actually been performed. This class may represent both the actual data describing the observation, inference, or action, and optionally the details supporting the clinical reasoning process such as a reference to an electronic guideline, decision support system, or other knowledge reference.".

cs:ActClass\#ORGANIZER rdfs:subClassOf cs:ActClass\#%5fActClassContainer;
  rdfs:label "organizer";
  dc:title "organizer";
  rdfs:comment "Organizer of entries. Navigational. No semantic content. Knowledge of the section code is not required to interpret contained observations. Represents a heading in a heading structure, or \"organizer tree\".\r\n\n                        The record entries relating to a single clinical session are usually grouped under headings that represent phases of the encounter, or assist with layout and navigation. Clinical headings usually reflect the clinical workflow during a care session, and might also reflect the main author's reasoning processes. Much research has demonstrated that headings are used differently by different professional groups and specialties, and that headings are not used consistently enough to support safe automatic processing of the E H R.";
  dcterms:description "Organizer of entries. Navigational. No semantic content. Knowledge of the section code is not required to interpret contained observations. Represents a heading in a heading structure, or \"organizer tree\".\r\n\n                        The record entries relating to a single clinical session are usually grouped under headings that represent phases of the encounter, or assist with layout and navigation. Clinical headings usually reflect the clinical workflow during a care session, and might also reflect the main author's reasoning processes. Much research has demonstrated that headings are used differently by different professional groups and specialties, and that headings are not used consistently enough to support safe automatic processing of the E H R.".

cs:ActClass\#DOCCNTNT rdfs:subClassOf cs:ActClass.

cs:ActClass\#DOCLIST rdfs:subClassOf cs:ActClass.

cs:ActClass\#DOCLSTITM rdfs:subClassOf cs:ActClass.

cs:ActClass\#DOCPARA rdfs:subClassOf cs:ActClass.

cs:ActClass\#DOCTBL rdfs:subClassOf cs:ActClass.

cs:ActClass\#LINKHTML rdfs:subClassOf cs:ActClass.

cs:ActClass\#LOCALATTR rdfs:subClassOf cs:ActClass.

cs:ActClass\#LOCALMRKP rdfs:subClassOf cs:ActClass.

cs:ActClass\#ordered rdfs:subClassOf cs:ActClass.

cs:ActClass\#REFR rdfs:subClassOf cs:ActClass.

cs:ActClass\#TBLCOL rdfs:subClassOf cs:ActClass.

cs:ActClass\#TBLCOLGP rdfs:subClassOf cs:ActClass.

cs:ActClass\#TBLDATA rdfs:subClassOf cs:ActClass.

cs:ActClass\#TBLHDR rdfs:subClassOf cs:ActClass.

cs:ActClass\#TBLROW rdfs:subClassOf cs:ActClass.

cs:ActClass\#tbody rdfs:subClassOf cs:ActClass.

cs:ActClass\#tfoot rdfs:subClassOf cs:ActClass.

cs:ActClass\#thead rdfs:subClassOf cs:ActClass.

cs:ActClass\#unordered rdfs:subClassOf cs:ActClass.

# - vs:v3-ActClassInvestigation ------------------------------------------------

vs:v3-ActClassInvestigation a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "ActClassInvestigation";
  dc:title "ActClassInvestigation";
  rdfs:comment " An formalized inquiry into the circumstances surrounding a particular unplanned event or potential event for the purposes of identifying possible causes and contributing factors for the event. This investigation could be conducted at a local institutional level or at the level of a local or national government.";
  dcterms:description " An formalized inquiry into the circumstances surrounding a particular unplanned event or potential event for the purposes of identifying possible causes and contributing factors for the event. This investigation could be conducted at a local institutional level or at the level of a local or national government.";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-ActCode --------------------------------------------------------------

vs:v3-ActCode a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActCode";
  dc:title "v3 Code System ActCode";
  rdfs:comment " A code specifying the particular kind of Act that the Act-instance represents within its class.  Constraints:\r\nThe kind of Act (e.g. physical examination, serum potassium, inpatient encounter, charge financial transaction, etc.) is specified with a code from one of several, typically external, coding systems.  The coding system will depend on the class of Act, such as LOINC for observations, etc. Conceptually, the Act.code must be a specialization of the Act.classCode. This is why the structure of ActClass domain should be reflected in the superstructure of the ActCode domain and then individual codes or externally referenced vocabularies subordinated under these domains that reflect the ActClass structure. Act.classCode and Act.code are not modifiers of each other but the Act.code concept should really imply the Act.classCode concept. For a negative example, it is not appropriate to use an Act.code \"potassium\" together with and Act.classCode for \"laboratory observation\" to somehow mean \"potassium laboratory observation\" and then use the same Act.code for \"potassium\" together with Act.classCode for \"medication\" to mean \"substitution of potassium\". This mutually modifying use of Act.code and Act.classCode is not permitted.";
  dcterms:description " A code specifying the particular kind of Act that the Act-instance represents within its class.  Constraints:\r\nThe kind of Act (e.g. physical examination, serum potassium, inpatient encounter, charge financial transaction, etc.) is specified with a code from one of several, typically external, coding systems.  The coding system will depend on the class of Act, such as LOINC for observations, etc. Conceptually, the Act.code must be a specialization of the Act.classCode. This is why the structure of ActClass domain should be reflected in the superstructure of the ActCode domain and then individual codes or externally referenced vocabularies subordinated under these domains that reflect the ActClass structure. Act.classCode and Act.code are not modifiers of each other but the Act.code concept should really imply the Act.classCode concept. For a negative example, it is not appropriate to use an Act.code \"potassium\" together with and Act.classCode for \"laboratory observation\" to somehow mean \"potassium laboratory observation\" and then use the same Act.code for \"potassium\" together with Act.classCode for \"medication\" to mean \"substitution of potassium\". This mutually modifying use of Act.code and Act.classCode is not permitted.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActCode.

cs:ActCode.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActCode";
  dc:title "v3 Code System ActCode";
  rdfs:comment " A code specifying the particular kind of Act that the Act-instance represents within its class.  Constraints:\r\nThe kind of Act (e.g. physical examination, serum potassium, inpatient encounter, charge financial transaction, etc.) is specified with a code from one of several, typically external, coding systems.  The coding system will depend on the class of Act, such as LOINC for observations, etc. Conceptually, the Act.code must be a specialization of the Act.classCode. This is why the structure of ActClass domain should be reflected in the superstructure of the ActCode domain and then individual codes or externally referenced vocabularies subordinated under these domains that reflect the ActClass structure. Act.classCode and Act.code are not modifiers of each other but the Act.code concept should really imply the Act.classCode concept. For a negative example, it is not appropriate to use an Act.code \"potassium\" together with and Act.classCode for \"laboratory observation\" to somehow mean \"potassium laboratory observation\" and then use the same Act.code for \"potassium\" together with Act.classCode for \"medication\" to mean \"substitution of potassium\". This mutually modifying use of Act.code and Act.classCode is not permitted.";
  dcterms:description " A code specifying the particular kind of Act that the Act-instance represents within its class.  Constraints:\r\nThe kind of Act (e.g. physical examination, serum potassium, inpatient encounter, charge financial transaction, etc.) is specified with a code from one of several, typically external, coding systems.  The coding system will depend on the class of Act, such as LOINC for observations, etc. Conceptually, the Act.code must be a specialization of the Act.classCode. This is why the structure of ActClass domain should be reflected in the superstructure of the ActCode domain and then individual codes or externally referenced vocabularies subordinated under these domains that reflect the ActClass structure. Act.classCode and Act.code are not modifiers of each other but the Act.code concept should really imply the Act.classCode concept. For a negative example, it is not appropriate to use an Act.code \"potassium\" together with and Act.classCode for \"laboratory observation\" to somehow mean \"potassium laboratory observation\" and then use the same Act.code for \"potassium\" together with Act.classCode for \"medication\" to mean \"substitution of potassium\". This mutually modifying use of Act.code and Act.classCode is not permitted.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActCode a fhir:Concept.

cs:ActCode\#%5fActAccountCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActAccountCode";
  dc:title "ActAccountCode";
  rdfs:comment "An account represents a grouping of financial transactions that are tracked and reported together with a single balance. 	 	Examples of account codes (types) are Patient billing accounts (collection of charges), Cost centers; Cash.";
  dcterms:description "An account represents a grouping of financial transactions that are tracked and reported together with a single balance. 	 	Examples of account codes (types) are Patient billing accounts (collection of charges), Cost centers; Cash.".

cs:ActCode\#ACCTRECEIVABLE rdfs:subClassOf cs:ActCode\#%5fActAccountCode;
  rdfs:label "account receivable";
  dc:title "account receivable";
  rdfs:comment "An account for collecting charges, reversals, adjustments and payments, including deductibles, copayments, coinsurance (financial transactions) credited or debited to the account receivable account for a patient's encounter.";
  dcterms:description "An account for collecting charges, reversals, adjustments and payments, including deductibles, copayments, coinsurance (financial transactions) credited or debited to the account receivable account for a patient's encounter.".

cs:ActCode\#CASH rdfs:subClassOf cs:ActCode\#%5fActAccountCode;
  rdfs:label "Cash";
  dc:title "Cash";
  rdfs:comment "Cash";
  dcterms:description "Cash".

cs:ActCode\#CC rdfs:subClassOf cs:ActCode\#%5fActAccountCode;
  rdfs:label "credit card";
  dc:title "credit card";
  rdfs:comment "Description: Types of advance payment to be made on a plastic card usually issued by a financial institution used of purchasing services and/or products.";
  dcterms:description "Description: Types of advance payment to be made on a plastic card usually issued by a financial institution used of purchasing services and/or products.".

cs:ActCode\#AE rdfs:subClassOf cs:ActCode\#CC;
  rdfs:label "American Express";
  dc:title "American Express";
  rdfs:comment "American Express";
  dcterms:description "American Express".

cs:ActCode\#DN rdfs:subClassOf cs:ActCode\#CC;
  rdfs:label "Diner's Club";
  dc:title "Diner's Club";
  rdfs:comment "Diner's Club";
  dcterms:description "Diner's Club".

cs:ActCode\#DV rdfs:subClassOf cs:ActCode\#CC;
  rdfs:label "Discover Card";
  dc:title "Discover Card";
  rdfs:comment "Discover Card";
  dcterms:description "Discover Card".

cs:ActCode\#MC rdfs:subClassOf cs:ActCode\#CC;
  rdfs:label "Master Card";
  dc:title "Master Card";
  rdfs:comment "Master Card";
  dcterms:description "Master Card".

cs:ActCode\#V rdfs:subClassOf cs:ActCode\#CC;
  rdfs:label "Visa";
  dc:title "Visa";
  rdfs:comment "Visa";
  dcterms:description "Visa".

cs:ActCode\#PBILLACCT rdfs:subClassOf cs:ActCode\#%5fActAccountCode;
  rdfs:label "patient billing account";
  dc:title "patient billing account";
  rdfs:comment "An account representing charges and credits (financial transactions) for a patient's encounter.";
  dcterms:description "An account representing charges and credits (financial transactions) for a patient's encounter.".

cs:ActCode\#%5fActAdjudicationCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActAdjudicationCode";
  dc:title "ActAdjudicationCode";
  rdfs:comment "Includes coded responses that will occur as a result of the adjudication of an electronic invoice at a summary level and provides guidance on interpretation of the referenced adjudication results.";
  dcterms:description "Includes coded responses that will occur as a result of the adjudication of an electronic invoice at a summary level and provides guidance on interpretation of the referenced adjudication results.".

cs:ActCode\#%5fActAdjudicationGroupCode rdfs:subClassOf cs:ActCode\#%5fActAdjudicationCode;
  rdfs:label "ActAdjudicationGroupCode";
  dc:title "ActAdjudicationGroupCode";
  rdfs:comment "Catagorization of grouping criteria for the associated transactions and/or summary (totals, subtotals).";
  dcterms:description "Catagorization of grouping criteria for the associated transactions and/or summary (totals, subtotals).".

cs:ActCode\#CONT rdfs:subClassOf cs:ActCode\#%5fActAdjudicationGroupCode;
  rdfs:label "contract";
  dc:title "contract";
  rdfs:comment "Transaction counts and value totals by Contract Identifier.";
  dcterms:description "Transaction counts and value totals by Contract Identifier.".

cs:ActCode\#DAY rdfs:subClassOf cs:ActCode\#%5fActAdjudicationGroupCode;
  rdfs:label "day";
  dc:title "day";
  rdfs:comment "Transaction counts and value totals for each calendar day within the date range specified.";
  dcterms:description "Transaction counts and value totals for each calendar day within the date range specified.".

cs:ActCode\#LOC rdfs:subClassOf cs:ActCode\#%5fActAdjudicationGroupCode;
  rdfs:label "location";
  dc:title "location";
  rdfs:comment "Transaction counts and value totals by service location (e.g clinic).";
  dcterms:description "Transaction counts and value totals by service location (e.g clinic).".

cs:ActCode\#MONTH rdfs:subClassOf cs:ActCode\#%5fActAdjudicationGroupCode;
  rdfs:label "month";
  dc:title "month";
  rdfs:comment "Transaction counts and value totals for each calendar month within the date range specified.";
  dcterms:description "Transaction counts and value totals for each calendar month within the date range specified.".

cs:ActCode\#PERIOD rdfs:subClassOf cs:ActCode\#%5fActAdjudicationGroupCode;
  rdfs:label "period";
  dc:title "period";
  rdfs:comment "Transaction counts and value totals for the date range specified.";
  dcterms:description "Transaction counts and value totals for the date range specified.".

cs:ActCode\#PROV rdfs:subClassOf cs:ActCode\#%5fActAdjudicationGroupCode;
  rdfs:label "provider";
  dc:title "provider";
  rdfs:comment "Transaction counts and value totals by Provider Identifier.";
  dcterms:description "Transaction counts and value totals by Provider Identifier.".

cs:ActCode\#WEEK rdfs:subClassOf cs:ActCode\#%5fActAdjudicationGroupCode;
  rdfs:label "week";
  dc:title "week";
  rdfs:comment "Transaction counts and value totals for each calendar week within the date range specified.";
  dcterms:description "Transaction counts and value totals for each calendar week within the date range specified.".

cs:ActCode\#YEAR rdfs:subClassOf cs:ActCode\#%5fActAdjudicationGroupCode;
  rdfs:label "year";
  dc:title "year";
  rdfs:comment "Transaction counts and value totals for each calendar year within the date range specified.";
  dcterms:description "Transaction counts and value totals for each calendar year within the date range specified.".

cs:ActCode\#AA rdfs:subClassOf cs:ActCode\#%5fActAdjudicationCode;
  rdfs:label "adjudicated with adjustments";
  dc:title "adjudicated with adjustments";
  rdfs:comment "The invoice element has been accepted for payment but one or more adjustment(s) have been made to one or more invoice element line items (component charges).  \r\n\n                        Also includes the concept 'Adjudicate as zero' and items not covered under a particular Policy.  \r\n\n                        Invoice element can be reversed (nullified).  \r\n\n                        Recommend that the invoice element is saved for DUR (Drug Utilization Reporting).";
  dcterms:description "The invoice element has been accepted for payment but one or more adjustment(s) have been made to one or more invoice element line items (component charges).  \r\n\n                        Also includes the concept 'Adjudicate as zero' and items not covered under a particular Policy.  \r\n\n                        Invoice element can be reversed (nullified).  \r\n\n                        Recommend that the invoice element is saved for DUR (Drug Utilization Reporting).".

cs:ActCode\#ANF rdfs:subClassOf cs:ActCode\#AA;
  rdfs:label "adjudicated with adjustments and no financial impact";
  dc:title "adjudicated with adjustments and no financial impact";
  rdfs:comment "The invoice element has been accepted for payment but one or more adjustment(s) have been made to one or more invoice element line items (component charges) without changing the amount.  \r\n\n                        Invoice element can be reversed (nullified).  \r\n\n                        Recommend that the invoice element is saved for DUR (Drug Utilization Reporting).";
  dcterms:description "The invoice element has been accepted for payment but one or more adjustment(s) have been made to one or more invoice element line items (component charges) without changing the amount.  \r\n\n                        Invoice element can be reversed (nullified).  \r\n\n                        Recommend that the invoice element is saved for DUR (Drug Utilization Reporting).".

cs:ActCode\#AR rdfs:subClassOf cs:ActCode\#%5fActAdjudicationCode;
  rdfs:label "adjudicated as refused";
  dc:title "adjudicated as refused";
  rdfs:comment "The invoice element has passed through the adjudication process but payment is refused due to one or more reasons.\r\n\n                        Includes items such as patient not covered, or invoice element is not constructed according to payer rules (e.g. 'invoice submitted too late').\r\n\n                        If one invoice element line item in the invoice element structure is rejected, the remaining line items may not be adjudicated and the complete group is treated as rejected.\r\n\n                        A refused invoice element can be forwarded to the next payer (for Coordination of Benefits) or modified and resubmitted to refusing payer.\r\n\n                        Invoice element cannot be reversed (nullified) as there is nothing to reverse.  \r\n\n                        Recommend that the invoice element is not saved for DUR (Drug Utilization Reporting).";
  dcterms:description "The invoice element has passed through the adjudication process but payment is refused due to one or more reasons.\r\n\n                        Includes items such as patient not covered, or invoice element is not constructed according to payer rules (e.g. 'invoice submitted too late').\r\n\n                        If one invoice element line item in the invoice element structure is rejected, the remaining line items may not be adjudicated and the complete group is treated as rejected.\r\n\n                        A refused invoice element can be forwarded to the next payer (for Coordination of Benefits) or modified and resubmitted to refusing payer.\r\n\n                        Invoice element cannot be reversed (nullified) as there is nothing to reverse.  \r\n\n                        Recommend that the invoice element is not saved for DUR (Drug Utilization Reporting).".

cs:ActCode\#AS rdfs:subClassOf cs:ActCode\#%5fActAdjudicationCode;
  rdfs:label "adjudicated as submitted";
  dc:title "adjudicated as submitted";
  rdfs:comment "The invoice element was/will be paid exactly as submitted, without financial adjustment(s).\r\n\n                        If the dollar amount stays the same, but the billing codes have been amended or financial adjustments have been applied through the adjudication process, the invoice element is treated as \"Adjudicated with Adjustment\".\r\n\n                        If information items are included in the adjudication results that do not affect the monetary amounts paid, then this is still Adjudicated as Submitted (e.g. 'reached Plan Maximum on this Claim').  \r\n\n                        Invoice element can be reversed (nullified).  \r\n\n                        Recommend that the invoice element is saved for DUR (Drug Utilization Reporting).";
  dcterms:description "The invoice element was/will be paid exactly as submitted, without financial adjustment(s).\r\n\n                        If the dollar amount stays the same, but the billing codes have been amended or financial adjustments have been applied through the adjudication process, the invoice element is treated as \"Adjudicated with Adjustment\".\r\n\n                        If information items are included in the adjudication results that do not affect the monetary amounts paid, then this is still Adjudicated as Submitted (e.g. 'reached Plan Maximum on this Claim').  \r\n\n                        Invoice element can be reversed (nullified).  \r\n\n                        Recommend that the invoice element is saved for DUR (Drug Utilization Reporting).".

cs:ActCode\#%5fActAdjudicationResultActionCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActAdjudicationResultActionCode";
  dc:title "ActAdjudicationResultActionCode";
  rdfs:comment "Actions to be carried out by the recipient of the Adjudication Result information.";
  dcterms:description "Actions to be carried out by the recipient of the Adjudication Result information.".

cs:ActCode\#DISPLAY rdfs:subClassOf cs:ActCode\#%5fActAdjudicationResultActionCode;
  rdfs:label "Display";
  dc:title "Display";
  rdfs:comment "The adjudication result associated is to be displayed to the receiver of the adjudication result.";
  dcterms:description "The adjudication result associated is to be displayed to the receiver of the adjudication result.".

cs:ActCode\#FORM rdfs:subClassOf cs:ActCode\#%5fActAdjudicationResultActionCode;
  rdfs:label "Print on Form";
  dc:title "Print on Form";
  rdfs:comment "The adjudication result associated is to be printed on the specified form, which is then provided to the covered party.";
  dcterms:description "The adjudication result associated is to be printed on the specified form, which is then provided to the covered party.".

cs:ActCode\#%5fActBillableModifierCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActBillableModifierCode";
  dc:title "ActBillableModifierCode";
  rdfs:comment "Definition:An identifying modifier code for healthcare interventions or procedures.";
  dcterms:description "Definition:An identifying modifier code for healthcare interventions or procedures.".

cs:ActCode\#CPTM rdfs:subClassOf cs:ActCode\#%5fActBillableModifierCode;
  rdfs:label "CPT modifier codes";
  dc:title "CPT modifier codes";
  rdfs:comment "Description:CPT modifier codes are found in Appendix A of CPT 2000 Standard Edition.";
  dcterms:description "Description:CPT modifier codes are found in Appendix A of CPT 2000 Standard Edition.".

cs:ActCode\#HCPCSA rdfs:subClassOf cs:ActCode\#%5fActBillableModifierCode;
  rdfs:label "HCPCS Level II and Carrier-assigned";
  dc:title "HCPCS Level II and Carrier-assigned";
  rdfs:comment "Description:HCPCS Level II (HCFA-assigned) and Carrier-assigned (Level III) modifiers are reported in Appendix A of CPT 2000 Standard Edition and in the Medicare Bulletin.";
  dcterms:description "Description:HCPCS Level II (HCFA-assigned) and Carrier-assigned (Level III) modifiers are reported in Appendix A of CPT 2000 Standard Edition and in the Medicare Bulletin.".

cs:ActCode\#%5fActBillingArrangementCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActBillingArrangementCode";
  dc:title "ActBillingArrangementCode";
  rdfs:comment "The type of provision(s)  made for reimbursing for the deliver of healthcare services and/or goods provided by a Provider, over a specified period.";
  dcterms:description "The type of provision(s)  made for reimbursing for the deliver of healthcare services and/or goods provided by a Provider, over a specified period.".

cs:ActCode\#BLK rdfs:subClassOf cs:ActCode\#%5fActBillingArrangementCode;
  rdfs:label "block funding";
  dc:title "block funding";
  rdfs:comment "A billing arrangement where a Provider charges a lump sum to provide a prescribed group (volume) of services to a single patient which occur over a period of time.  Services included in the block may vary.  \r\n\n                        This billing arrangement is also known as Program of Care for some specific Payors and Program Fees for other Payors.";
  dcterms:description "A billing arrangement where a Provider charges a lump sum to provide a prescribed group (volume) of services to a single patient which occur over a period of time.  Services included in the block may vary.  \r\n\n                        This billing arrangement is also known as Program of Care for some specific Payors and Program Fees for other Payors.".

cs:ActCode\#CAP rdfs:subClassOf cs:ActCode\#%5fActBillingArrangementCode;
  rdfs:label "capitation funding";
  dc:title "capitation funding";
  rdfs:comment "A billing arrangement where the payment made to a Provider is determined by analyzing one or more demographic attributes about the persons/patients who are enrolled with the Provider (in their practice).";
  dcterms:description "A billing arrangement where the payment made to a Provider is determined by analyzing one or more demographic attributes about the persons/patients who are enrolled with the Provider (in their practice).".

cs:ActCode\#CONTF rdfs:subClassOf cs:ActCode\#%5fActBillingArrangementCode;
  rdfs:label "contract funding";
  dc:title "contract funding";
  rdfs:comment "A billing arrangement where a Provider charges a lump sum to provide a particular volume of one or more interventions/procedures or groups of interventions/procedures.";
  dcterms:description "A billing arrangement where a Provider charges a lump sum to provide a particular volume of one or more interventions/procedures or groups of interventions/procedures.".

cs:ActCode\#FINBILL rdfs:subClassOf cs:ActCode\#%5fActBillingArrangementCode;
  rdfs:label "financial";
  dc:title "financial";
  rdfs:comment "A billing arrangement where a Provider charges for non-clinical items.  This includes interest in arrears, mileage, etc.  Clinical content is not 	included in Invoices submitted with this type of billing arrangement.";
  dcterms:description "A billing arrangement where a Provider charges for non-clinical items.  This includes interest in arrears, mileage, etc.  Clinical content is not 	included in Invoices submitted with this type of billing arrangement.".

cs:ActCode\#ROST rdfs:subClassOf cs:ActCode\#%5fActBillingArrangementCode;
  rdfs:label "roster funding";
  dc:title "roster funding";
  rdfs:comment "A billing arrangement where funding is based on a list of individuals registered as patients of the Provider.";
  dcterms:description "A billing arrangement where funding is based on a list of individuals registered as patients of the Provider.".

cs:ActCode\#SESS rdfs:subClassOf cs:ActCode\#%5fActBillingArrangementCode;
  rdfs:label "sessional funding";
  dc:title "sessional funding";
  rdfs:comment "A billing arrangement where a Provider charges a sum to provide a group (volume) of interventions/procedures to one or more patients within a defined period of time, typically on the same date.  Interventions/procedures included in the session may vary.";
  dcterms:description "A billing arrangement where a Provider charges a sum to provide a group (volume) of interventions/procedures to one or more patients within a defined period of time, typically on the same date.  Interventions/procedures included in the session may vary.".

cs:ActCode\#FFS rdfs:subClassOf cs:ActCode\#%5fActBillingArrangementCode;
  rdfs:label "fee for service";
  dc:title "fee for service";
  rdfs:comment "A billing arrangement where a Provider charges a separate fee for each intervention/procedure/event or product.\r\n\n                        Fee for Service is used when an individual intervention/procedure/event is used for billing purposes.  In other words, fees are associated with the  intervention/procedure/event.  For example, a specific CCI (Canadian Classification of Interventions) code has an associated fee and is used for billing purposes.";
  dcterms:description "A billing arrangement where a Provider charges a separate fee for each intervention/procedure/event or product.\r\n\n                        Fee for Service is used when an individual intervention/procedure/event is used for billing purposes.  In other words, fees are associated with the  intervention/procedure/event.  For example, a specific CCI (Canadian Classification of Interventions) code has an associated fee and is used for billing purposes.".

cs:ActCode\#FFPS rdfs:subClassOf cs:ActCode\#FFS;
  rdfs:label "first fill, part fill, partial strength";
  dc:title "first fill, part fill, partial strength";
  rdfs:comment "A first fill where the quantity supplied is less than one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a partial fill might be for only 30 tablets.) and also where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets)";
  dcterms:description "A first fill where the quantity supplied is less than one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a partial fill might be for only 30 tablets.) and also where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets)".

cs:ActCode\#FFCS rdfs:subClassOf cs:ActCode\#FFS;
  rdfs:label "first fill complete, partial strength";
  dc:title "first fill complete, partial strength";
  rdfs:comment "A first fill where the quantity supplied is equal to one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a complete fill would be for the full 90 tablets) and also where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).";
  dcterms:description "A first fill where the quantity supplied is equal to one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a complete fill would be for the full 90 tablets) and also where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).".

cs:ActCode\#TFS rdfs:subClassOf cs:ActCode\#FFS;
  rdfs:label "trial fill partial strength";
  dc:title "trial fill partial strength";
  rdfs:comment "A fill where a small portion is provided to allow for determination of the therapy effectiveness and patient tolerance and also where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).";
  dcterms:description "A fill where a small portion is provided to allow for determination of the therapy effectiveness and patient tolerance and also where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).".

cs:ActCode\#%5fActBoundedROICode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActBoundedROICode";
  dc:title "ActBoundedROICode";
  rdfs:comment "Type of bounded ROI.";
  dcterms:description "Type of bounded ROI.".

cs:ActCode\#ROIFS rdfs:subClassOf cs:ActCode\#%5fActBoundedROICode;
  rdfs:label "fully specified ROI";
  dc:title "fully specified ROI";
  rdfs:comment "A fully specified bounded Region of Interest (ROI) delineates a ROI in which only those dimensions participate that are specified by boundary criteria, whereas all other dimensions are excluded.  For example a ROI to mark an episode of \"ST elevation\" in a subset of the EKG leads V2, V3, and V4 would include 4 boundaries, one each for time, V2, V3, and V4.";
  dcterms:description "A fully specified bounded Region of Interest (ROI) delineates a ROI in which only those dimensions participate that are specified by boundary criteria, whereas all other dimensions are excluded.  For example a ROI to mark an episode of \"ST elevation\" in a subset of the EKG leads V2, V3, and V4 would include 4 boundaries, one each for time, V2, V3, and V4.".

cs:ActCode\#ROIPS rdfs:subClassOf cs:ActCode\#%5fActBoundedROICode;
  rdfs:label "partially specified ROI";
  dc:title "partially specified ROI";
  rdfs:comment "A partially specified bounded Region of Interest (ROI) specifies a ROI in which at least all values in the dimensions specified by the boundary criteria participate. For example, if an episode of ventricular fibrillations (VFib) is observed, it usually doesn't make sense to exclude any EKG leads from the observation and the partially specified ROI would contain only one boundary for time indicating the time interval where VFib was observed.";
  dcterms:description "A partially specified bounded Region of Interest (ROI) specifies a ROI in which at least all values in the dimensions specified by the boundary criteria participate. For example, if an episode of ventricular fibrillations (VFib) is observed, it usually doesn't make sense to exclude any EKG leads from the observation and the partially specified ROI would contain only one boundary for time indicating the time interval where VFib was observed.".

cs:ActCode\#%5fActCareProvisionCode rdfs:subClassOf cs:ActCode;
  rdfs:label "act care provision";
  dc:title "act care provision";
  rdfs:comment "Description:The type and scope of responsibility taken-on by the performer of the Act for a specific subject of care.";
  dcterms:description "Description:The type and scope of responsibility taken-on by the performer of the Act for a specific subject of care.".

cs:ActCode\#%5fActCredentialedCareCode rdfs:subClassOf cs:ActCode\#%5fActCareProvisionCode;
  rdfs:label "act credentialed care";
  dc:title "act credentialed care";
  rdfs:comment "Description:The type and scope of legal and/or professional responsibility taken-on by the performer of the Act for a specific subject of care as described by a credentialing agency, i.e. government or non-government agency. Failure in executing this Act may result in loss of credential to the person or organization who participates as performer of the Act. Excludes employment agreements.\r\n\n                        \n                           Example:Hospital license; physician license; clinic accreditation.";
  dcterms:description "Description:The type and scope of legal and/or professional responsibility taken-on by the performer of the Act for a specific subject of care as described by a credentialing agency, i.e. government or non-government agency. Failure in executing this Act may result in loss of credential to the person or organization who participates as performer of the Act. Excludes employment agreements.\r\n\n                        \n                           Example:Hospital license; physician license; clinic accreditation.".

cs:ActCode\#%5fActCredentialedCareProvisionPersonCode rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareCode;
  rdfs:label "act credentialed care provision peron";
  dc:title "act credentialed care provision peron";
  rdfs:comment "Description:The type and scope of legal and/or professional responsibility taken-on by the performer of the Act for a specific subject of care as described by an agency for credentialing individuals.";
  dcterms:description "Description:The type and scope of legal and/or professional responsibility taken-on by the performer of the Act for a specific subject of care as described by an agency for credentialing individuals.".

cs:ActCode\#CACC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified anatomic pathology and clinical pathology care";
  dc:title "certified anatomic pathology and clinical pathology care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CAIC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified allergy and immunology care";
  dc:title "certified allergy and immunology care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CAMC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified aerospace medicine care";
  dc:title "certified aerospace medicine care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CANC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified anesthesiology care";
  dc:title "certified anesthesiology care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CAPC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified anatomic pathology care";
  dc:title "certified anatomic pathology care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CBGC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified clinical biochemical genetics care";
  dc:title "certified clinical biochemical genetics care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CCCC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified clinical cytogenetics care";
  dc:title "certified clinical cytogenetics care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CCGC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified clinical genetics (M.D.) care";
  dc:title "certified clinical genetics (M.D.) care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CCPC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified clinical pathology care";
  dc:title "certified clinical pathology care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CCSC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified colon and rectal surgery care";
  dc:title "certified colon and rectal surgery care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CDEC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified dermatology care";
  dc:title "certified dermatology care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CDRC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified diagnostic radiology care";
  dc:title "certified diagnostic radiology care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CEMC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified emergency medicine care";
  dc:title "certified emergency medicine care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CFPC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified family practice care";
  dc:title "certified family practice care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CIMC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified internal medicine care";
  dc:title "certified internal medicine care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CMGC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified clinical molecular genetics care";
  dc:title "certified clinical molecular genetics care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CNEC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified neurology care";
  dc:title "certified neurology care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board".

cs:ActCode\#CNMC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified nuclear medicine care";
  dc:title "certified nuclear medicine care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CNQC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified neurology with special qualifications in child neurology care";
  dc:title "certified neurology with special qualifications in child neurology care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CNSC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified neurological surgery care";
  dc:title "certified neurological surgery care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#COGC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified obstetrics and gynecology care";
  dc:title "certified obstetrics and gynecology care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#COMC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified occupational medicine care";
  dc:title "certified occupational medicine care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#COPC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified ophthalmology care";
  dc:title "certified ophthalmology care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#COSC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified orthopaedic surgery care";
  dc:title "certified orthopaedic surgery care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#COTC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified otolaryngology care";
  dc:title "certified otolaryngology care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CPEC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified pediatrics care";
  dc:title "certified pediatrics care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CPGC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified Ph.D. medical genetics care";
  dc:title "certified Ph.D. medical genetics care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CPHC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified public health and general preventive medicine care";
  dc:title "certified public health and general preventive medicine care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CPRC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified physical medicine and rehabilitation care";
  dc:title "certified physical medicine and rehabilitation care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CPSC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified plastic surgery care";
  dc:title "certified plastic surgery care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CPYC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified psychiatry care";
  dc:title "certified psychiatry care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CROC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified radiation oncology care";
  dc:title "certified radiation oncology care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CRPC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified radiological physics care";
  dc:title "certified radiological physics care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CSUC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified surgery care";
  dc:title "certified surgery care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CTSC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified thoracic surgery care";
  dc:title "certified thoracic surgery care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CURC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified urology care";
  dc:title "certified urology care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#CVSC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "certified vascular surgery care";
  dc:title "certified vascular surgery care";
  rdfs:comment "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.";
  dcterms:description "Description:Scope of responsibility taken on for specialty care as defined by the respective Specialty Board.".

cs:ActCode\#LGPC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionPersonCode;
  rdfs:label "licensed general physician care";
  dc:title "licensed general physician care";
  rdfs:comment "Description:Scope of responsibility taken-on for physician care of a patient as defined by a governmental licensing agency.";
  dcterms:description "Description:Scope of responsibility taken-on for physician care of a patient as defined by a governmental licensing agency.".

cs:ActCode\#%5fActCredentialedCareProvisionProgramCode rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareCode;
  rdfs:label "act credentialed care provision program";
  dc:title "act credentialed care provision program";
  rdfs:comment "Description:The type and scope of legal and/or professional responsibility taken-on by the performer of the Act for a specific subject of care as described by an agency for credentialing programs within organizations.";
  dcterms:description "Description:The type and scope of legal and/or professional responsibility taken-on by the performer of the Act for a specific subject of care as described by an agency for credentialing programs within organizations.".

cs:ActCode\#AALC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "accredited assisted living care";
  dc:title "accredited assisted living care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.".

cs:ActCode\#AAMC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "accredited ambulatory care";
  dc:title "accredited ambulatory care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.".

cs:ActCode\#ABHC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "accredited behavioral health care";
  dc:title "accredited behavioral health care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.".

cs:ActCode\#ACAC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "accredited critical access hospital care";
  dc:title "accredited critical access hospital care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.".

cs:ActCode\#ACHC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "accredited hospital care";
  dc:title "accredited hospital care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.".

cs:ActCode\#AHOC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "accredited home care";
  dc:title "accredited home care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.".

cs:ActCode\#ALTC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "accredited long term care";
  dc:title "accredited long term care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.".

cs:ActCode\#AOSC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "accredited office-based surgery care";
  dc:title "accredited office-based surgery care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the respective accreditation agency.".

cs:ActCode\#CACS rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified acute coronary syndrome care";
  dc:title "certified acute coronary syndrome care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CAMI rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified acute myocardial infarction care";
  dc:title "certified acute myocardial infarction care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CAST rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified asthma care";
  dc:title "certified asthma care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CBAR rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified bariatric surgery care";
  dc:title "certified bariatric surgery care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CCAD rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified coronary artery disease care";
  dc:title "certified coronary artery disease care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CCAR rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified cardiac care";
  dc:title "certified cardiac care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CDEP rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified depression care";
  dc:title "certified depression care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CDGD rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified digestive/gastrointestinal disorders care";
  dc:title "certified digestive/gastrointestinal disorders care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CDIA rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified diabetes care";
  dc:title "certified diabetes care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CEPI rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified epilepsy care";
  dc:title "certified epilepsy care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CFEL rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified frail elderly care";
  dc:title "certified frail elderly care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CHFC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified heart failure care";
  dc:title "certified heart failure care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CHRO rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified high risk obstetrics care";
  dc:title "certified high risk obstetrics care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CHYP rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified hyperlipidemia care";
  dc:title "certified hyperlipidemia care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CMIH rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified migraine headache care";
  dc:title "certified migraine headache care";
  rdfs:comment "Description:.";
  dcterms:description "Description:.".

cs:ActCode\#CMSC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified multiple sclerosis care";
  dc:title "certified multiple sclerosis care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#COJR rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified orthopedic joint replacement care";
  dc:title "certified orthopedic joint replacement care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CONC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified oncology care";
  dc:title "certified oncology care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#COPD rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified chronic obstructive pulmonary disease care";
  dc:title "certified chronic obstructive pulmonary disease care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CORT rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified organ transplant care";
  dc:title "certified organ transplant care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CPAD rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified parkinsons disease care";
  dc:title "certified parkinsons disease care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CPND rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified pneumonia disease care";
  dc:title "certified pneumonia disease care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CPST rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified primary stroke center care";
  dc:title "certified primary stroke center care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CSDM rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified stroke disease management care";
  dc:title "certified stroke disease management care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CSIC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified sickle cell care";
  dc:title "certified sickle cell care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CSLD rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified sleep disorders care";
  dc:title "certified sleep disorders care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CSPT rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified spine treatment care";
  dc:title "certified spine treatment care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CTBU rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified trauma/burn center care";
  dc:title "certified trauma/burn center care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CVDC rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified vascular diseases care";
  dc:title "certified vascular diseases care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CWMA rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified wound management care";
  dc:title "certified wound management care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#CWOH rdfs:subClassOf cs:ActCode\#%5fActCredentialedCareProvisionProgramCode;
  rdfs:label "certified women's health care";
  dc:title "certified women's health care";
  rdfs:comment "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.";
  dcterms:description "Description:Scope of responsibility taken on by an organization for care of a patient as defined by the disease management certification agency.".

cs:ActCode\#%5fActEncounterCode rdfs:subClassOf cs:ActCode\#%5fActCareProvisionCode;
  rdfs:label "ActEncounterCode";
  dc:title "ActEncounterCode";
  rdfs:comment "Domain provides codes that qualify the ActEncounterClass (ENC)";
  dcterms:description "Domain provides codes that qualify the ActEncounterClass (ENC)".

cs:ActCode\#AMB rdfs:subClassOf cs:ActCode\#%5fActEncounterCode;
  rdfs:label "ambulatory";
  dc:title "ambulatory";
  rdfs:comment "A comprehensive term for health care provided in a healthcare facility (e.g. a practitioneraTMs office, clinic setting, or hospital) on a nonresident basis. The term ambulatory usually implies that the patient has come to the location and is not assigned to a bed. Sometimes referred to as an outpatient encounter.";
  dcterms:description "A comprehensive term for health care provided in a healthcare facility (e.g. a practitioneraTMs office, clinic setting, or hospital) on a nonresident basis. The term ambulatory usually implies that the patient has come to the location and is not assigned to a bed. Sometimes referred to as an outpatient encounter.".

cs:ActCode\#EMER rdfs:subClassOf cs:ActCode\#%5fActEncounterCode;
  rdfs:label "emergency";
  dc:title "emergency";
  rdfs:comment "A patient encounter that takes place at a dedicated healthcare service delivery location where the patient receives immediate evaluation and treatment, provided until the patient can be discharged or responsibility for the patient's care is transferred elsewhere (for example, the patient could be admitted as an inpatient or transferred to another facility.)";
  dcterms:description "A patient encounter that takes place at a dedicated healthcare service delivery location where the patient receives immediate evaluation and treatment, provided until the patient can be discharged or responsibility for the patient's care is transferred elsewhere (for example, the patient could be admitted as an inpatient or transferred to another facility.)".

cs:ActCode\#FLD rdfs:subClassOf cs:ActCode\#%5fActEncounterCode;
  rdfs:label "field";
  dc:title "field";
  rdfs:comment "A patient encounter that takes place both outside a dedicated service delivery location and outside a patient's residence. Example locations might include an accident site and at a supermarket.";
  dcterms:description "A patient encounter that takes place both outside a dedicated service delivery location and outside a patient's residence. Example locations might include an accident site and at a supermarket.".

cs:ActCode\#HH rdfs:subClassOf cs:ActCode\#%5fActEncounterCode;
  rdfs:label "home health";
  dc:title "home health";
  rdfs:comment "Healthcare encounter that takes place in the residence of the patient or a designee";
  dcterms:description "Healthcare encounter that takes place in the residence of the patient or a designee".

cs:ActCode\#IMP rdfs:subClassOf cs:ActCode\#%5fActEncounterCode;
  rdfs:label "inpatient encounter";
  dc:title "inpatient encounter";
  rdfs:comment "A patient encounter where a patient is admitted by a hospital or equivalent facility, assigned to a location where patients generally stay at least overnight and provided with room, board, and continuous nursing service.";
  dcterms:description "A patient encounter where a patient is admitted by a hospital or equivalent facility, assigned to a location where patients generally stay at least overnight and provided with room, board, and continuous nursing service.".

cs:ActCode\#ACUTE rdfs:subClassOf cs:ActCode\#IMP;
  rdfs:label "inpatient acute";
  dc:title "inpatient acute";
  rdfs:comment "An acute inpatient encounter.";
  dcterms:description "An acute inpatient encounter.".

cs:ActCode\#NONAC rdfs:subClassOf cs:ActCode\#IMP;
  rdfs:label "inpatient non-acute";
  dc:title "inpatient non-acute";
  rdfs:comment "Any category of inpatient encounter except 'acute'";
  dcterms:description "Any category of inpatient encounter except 'acute'".

cs:ActCode\#PRENC rdfs:subClassOf cs:ActCode\#%5fActEncounterCode;
  rdfs:label "pre-admission";
  dc:title "pre-admission";
  rdfs:comment "A patient encounter where patient is scheduled or planned to receive service delivery in the future, and the patient is given a pre-admission account number. When the patient comes back for subsequent service, the pre-admission encounter is selected and is encapsulated into the service registration, and a new account number is generated.\r\n\n                        \n                           Usage Note: This is intended to be used in advance of encounter types such as ambulatory, inpatient encounter, virtual, etc.";
  dcterms:description "A patient encounter where patient is scheduled or planned to receive service delivery in the future, and the patient is given a pre-admission account number. When the patient comes back for subsequent service, the pre-admission encounter is selected and is encapsulated into the service registration, and a new account number is generated.\r\n\n                        \n                           Usage Note: This is intended to be used in advance of encounter types such as ambulatory, inpatient encounter, virtual, etc.".

cs:ActCode\#SS rdfs:subClassOf cs:ActCode\#%5fActEncounterCode;
  rdfs:label "short stay";
  dc:title "short stay";
  rdfs:comment "An encounter where the patient is admitted to a health care facility for a predetermined length of time, usually less than 24 hours.";
  dcterms:description "An encounter where the patient is admitted to a health care facility for a predetermined length of time, usually less than 24 hours.".

cs:ActCode\#VR rdfs:subClassOf cs:ActCode\#%5fActEncounterCode;
  rdfs:label "virtual";
  dc:title "virtual";
  rdfs:comment "A patient encounter where the patient and the practitioner(s) are not in the same physical location. Examples include telephone conference, email exchange, robotic surgery, and televideo conference.";
  dcterms:description "A patient encounter where the patient and the practitioner(s) are not in the same physical location. Examples include telephone conference, email exchange, robotic surgery, and televideo conference.".

cs:ActCode\#%5fActMedicalServiceCode rdfs:subClassOf cs:ActCode\#%5fActCareProvisionCode;
  rdfs:label "ActMedicalServiceCode";
  dc:title "ActMedicalServiceCode";
  rdfs:comment "General category of medical service provided to the patient during their encounter.";
  dcterms:description "General category of medical service provided to the patient during their encounter.".

cs:ActCode\#ALC rdfs:subClassOf cs:ActCode\#%5fActMedicalServiceCode;
  rdfs:label "Alternative Level of Care";
  dc:title "Alternative Level of Care";
  rdfs:comment "Provision of Alternate Level of Care to a patient in an acute bed.  Patient is waiting for placement in a long-term care facility and is unable to return home.";
  dcterms:description "Provision of Alternate Level of Care to a patient in an acute bed.  Patient is waiting for placement in a long-term care facility and is unable to return home.".

cs:ActCode\#CARD rdfs:subClassOf cs:ActCode\#%5fActMedicalServiceCode;
  rdfs:label "Cardiology";
  dc:title "Cardiology";
  rdfs:comment "Provision of diagnosis and treatment of diseases and disorders affecting the heart";
  dcterms:description "Provision of diagnosis and treatment of diseases and disorders affecting the heart".

cs:ActCode\#CHR rdfs:subClassOf cs:ActCode\#%5fActMedicalServiceCode;
  rdfs:label "Chronic";
  dc:title "Chronic";
  rdfs:comment "Provision of recurring care for chronic illness.";
  dcterms:description "Provision of recurring care for chronic illness.".

cs:ActCode\#DNTL rdfs:subClassOf cs:ActCode\#%5fActMedicalServiceCode;
  rdfs:label "Dental";
  dc:title "Dental";
  rdfs:comment "Provision of treatment for oral health and/or dental surgery.";
  dcterms:description "Provision of treatment for oral health and/or dental surgery.".

cs:ActCode\#DRGRHB rdfs:subClassOf cs:ActCode\#%5fActMedicalServiceCode;
  rdfs:label "Drug Rehab";
  dc:title "Drug Rehab";
  rdfs:comment "Provision of treatment for drug abuse.";
  dcterms:description "Provision of treatment for drug abuse.".

cs:ActCode\#GENRL rdfs:subClassOf cs:ActCode\#%5fActMedicalServiceCode;
  rdfs:label "General";
  dc:title "General";
  rdfs:comment "General care performed by a general practitioner or family doctor as a responsible provider for a patient.";
  dcterms:description "General care performed by a general practitioner or family doctor as a responsible provider for a patient.".

cs:ActCode\#MED rdfs:subClassOf cs:ActCode\#%5fActMedicalServiceCode;
  rdfs:label "Medical";
  dc:title "Medical";
  rdfs:comment "Provision of diagnostic and/or therapeutic treatment.";
  dcterms:description "Provision of diagnostic and/or therapeutic treatment.".

cs:ActCode\#OBS rdfs:subClassOf cs:ActCode\#%5fActMedicalServiceCode;
  rdfs:label "Obstetrics";
  dc:title "Obstetrics";
  rdfs:comment "Provision of care of women during pregnancy, childbirth and immediate postpartum period.  Also known as Maternity.";
  dcterms:description "Provision of care of women during pregnancy, childbirth and immediate postpartum period.  Also known as Maternity.".

cs:ActCode\#ONC rdfs:subClassOf cs:ActCode\#%5fActMedicalServiceCode;
  rdfs:label "Oncology";
  dc:title "Oncology";
  rdfs:comment "Provision of treatment and/or diagnosis related to tumors and/or cancer.";
  dcterms:description "Provision of treatment and/or diagnosis related to tumors and/or cancer.".

cs:ActCode\#PALL rdfs:subClassOf cs:ActCode\#%5fActMedicalServiceCode;
  rdfs:label "Palliative";
  dc:title "Palliative";
  rdfs:comment "Provision of care for patients who are living or dying from an advanced illness.";
  dcterms:description "Provision of care for patients who are living or dying from an advanced illness.".

cs:ActCode\#PED rdfs:subClassOf cs:ActCode\#%5fActMedicalServiceCode;
  rdfs:label "Pediatrics";
  dc:title "Pediatrics";
  rdfs:comment "Provision of diagnosis and treatment of diseases and disorders affecting children.";
  dcterms:description "Provision of diagnosis and treatment of diseases and disorders affecting children.".

cs:ActCode\#PHAR rdfs:subClassOf cs:ActCode\#%5fActMedicalServiceCode;
  rdfs:label "Pharmaceutical";
  dc:title "Pharmaceutical";
  rdfs:comment "Pharmaceutical care performed by a pharmacist.";
  dcterms:description "Pharmaceutical care performed by a pharmacist.".

cs:ActCode\#PHYRHB rdfs:subClassOf cs:ActCode\#%5fActMedicalServiceCode;
  rdfs:label "Physical Rehab";
  dc:title "Physical Rehab";
  rdfs:comment "Provision of treatment for physical injury.";
  dcterms:description "Provision of treatment for physical injury.".

cs:ActCode\#PSYCH rdfs:subClassOf cs:ActCode\#%5fActMedicalServiceCode;
  rdfs:label "Psychiatric";
  dc:title "Psychiatric";
  rdfs:comment "Provision of treatment of psychiatric disorder relating to mental illness.";
  dcterms:description "Provision of treatment of psychiatric disorder relating to mental illness.".

cs:ActCode\#SURG rdfs:subClassOf cs:ActCode\#%5fActMedicalServiceCode;
  rdfs:label "Surgical";
  dc:title "Surgical";
  rdfs:comment "Provision of surgical treatment.";
  dcterms:description "Provision of surgical treatment.".

cs:ActCode\#%5fActClaimAttachmentCategoryCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActClaimAttachmentCategoryCode";
  dc:title "ActClaimAttachmentCategoryCode";
  rdfs:comment "Description: Coded types of attachments included to support a healthcare claim.";
  dcterms:description "Description: Coded types of attachments included to support a healthcare claim.".

cs:ActCode\#AUTOATTCH rdfs:subClassOf cs:ActCode\#%5fActClaimAttachmentCategoryCode;
  rdfs:label "auto attachment";
  dc:title "auto attachment";
  rdfs:comment "Description: Automobile Information Attachment";
  dcterms:description "Description: Automobile Information Attachment".

cs:ActCode\#DOCUMENT rdfs:subClassOf cs:ActCode\#%5fActClaimAttachmentCategoryCode;
  rdfs:label "document";
  dc:title "document";
  rdfs:comment "Description: Document Attachment";
  dcterms:description "Description: Document Attachment".

cs:ActCode\#HEALTHREC rdfs:subClassOf cs:ActCode\#%5fActClaimAttachmentCategoryCode;
  rdfs:label "health record";
  dc:title "health record";
  rdfs:comment "Description: Health Record Attachment";
  dcterms:description "Description: Health Record Attachment".

cs:ActCode\#IMG rdfs:subClassOf cs:ActCode\#%5fActClaimAttachmentCategoryCode;
  rdfs:label "image attachment";
  dc:title "image attachment";
  rdfs:comment "Description: Image Attachment";
  dcterms:description "Description: Image Attachment".

cs:ActCode\#LABRESULTS rdfs:subClassOf cs:ActCode\#%5fActClaimAttachmentCategoryCode;
  rdfs:label "lab results";
  dc:title "lab results";
  rdfs:comment "Description: Lab Results Attachment";
  dcterms:description "Description: Lab Results Attachment".

cs:ActCode\#MODEL rdfs:subClassOf cs:ActCode\#%5fActClaimAttachmentCategoryCode;
  rdfs:label "model";
  dc:title "model";
  rdfs:comment "Description: Digital Model Attachment";
  dcterms:description "Description: Digital Model Attachment".

cs:ActCode\#WIATTCH rdfs:subClassOf cs:ActCode\#%5fActClaimAttachmentCategoryCode;
  rdfs:label "work injury report attachment";
  dc:title "work injury report attachment";
  rdfs:comment "Description: Work Injury related additional Information Attachment";
  dcterms:description "Description: Work Injury related additional Information Attachment".

cs:ActCode\#XRAY rdfs:subClassOf cs:ActCode\#%5fActClaimAttachmentCategoryCode;
  rdfs:label "x-ray";
  dc:title "x-ray";
  rdfs:comment "Description: Digital X-Ray Attachment";
  dcterms:description "Description: Digital X-Ray Attachment".

cs:ActCode\#%5fActConsentType rdfs:subClassOf cs:ActCode;
  rdfs:label "ActConsentType";
  dc:title "ActConsentType";
  rdfs:comment "Definition: The type of consent directive, e.g., to consent or dissent to collect, access, or use in specific ways within an EHRS or for health information exchange; or to disclose  health information  for purposes such as research.";
  dcterms:description "Definition: The type of consent directive, e.g., to consent or dissent to collect, access, or use in specific ways within an EHRS or for health information exchange; or to disclose  health information  for purposes such as research.".

cs:ActCode\#ICOL rdfs:subClassOf cs:ActCode\#%5fActConsentType;
  rdfs:label "information collection";
  dc:title "information collection";
  rdfs:comment "Definition: Consent to have healthcare information collected in an electronic health record.  This entails that the information may be used in analysis, modified, updated.";
  dcterms:description "Definition: Consent to have healthcare information collected in an electronic health record.  This entails that the information may be used in analysis, modified, updated.".

cs:ActCode\#IDSCL rdfs:subClassOf cs:ActCode\#%5fActConsentType;
  rdfs:label "information disclosure";
  dc:title "information disclosure";
  rdfs:comment "Definition: Consent to have collected healthcare information disclosed.";
  dcterms:description "Definition: Consent to have collected healthcare information disclosed.".

cs:ActCode\#INFA rdfs:subClassOf cs:ActCode\#%5fActConsentType;
  rdfs:label "information access";
  dc:title "information access";
  rdfs:comment "Definition: Consent to access healthcare information.";
  dcterms:description "Definition: Consent to access healthcare information.".

cs:ActCode\#INFAO rdfs:subClassOf cs:ActCode\#INFA;
  rdfs:label "access only";
  dc:title "access only";
  rdfs:comment "Definition: Consent to access or \"read\" only, which entails that the information is not to be copied, screen printed, saved, emailed, stored, re-disclosed or altered in any way.  This level ensures that data which is masked or to which access is restricted will not be.\r\n\n                        \n                           Example: Opened and then emailed or screen printed for use outside of the consent directive purpose.";
  dcterms:description "Definition: Consent to access or \"read\" only, which entails that the information is not to be copied, screen printed, saved, emailed, stored, re-disclosed or altered in any way.  This level ensures that data which is masked or to which access is restricted will not be.\r\n\n                        \n                           Example: Opened and then emailed or screen printed for use outside of the consent directive purpose.".

cs:ActCode\#INFASO rdfs:subClassOf cs:ActCode\#INFA;
  rdfs:label "access and save only";
  dc:title "access and save only";
  rdfs:comment "Definition: Consent to access and save only, which entails that access to the saved copy will remain locked.";
  dcterms:description "Definition: Consent to access and save only, which entails that access to the saved copy will remain locked.".

cs:ActCode\#IRDSCL rdfs:subClassOf cs:ActCode\#%5fActConsentType;
  rdfs:label "information redisclosure";
  dc:title "information redisclosure";
  rdfs:comment "Definition: Information re-disclosed without the patient's consent.";
  dcterms:description "Definition: Information re-disclosed without the patient's consent.".

cs:ActCode\#RESEARCH rdfs:subClassOf cs:ActCode\#%5fActConsentType;
  rdfs:label "research information access";
  dc:title "research information access";
  rdfs:comment "Definition: Consent to have healthcare information in an electronic health record accessed for research purposes.";
  dcterms:description "Definition: Consent to have healthcare information in an electronic health record accessed for research purposes.".

cs:ActCode\#RSDID rdfs:subClassOf cs:ActCode\#RESEARCH;
  rdfs:label "de-identified information access";
  dc:title "de-identified information access";
  rdfs:comment "Definition: Consent to have de-identified healthcare information in an electronic health record that is accessed for research purposes, but without consent to re-identify the information under any circumstance.";
  dcterms:description "Definition: Consent to have de-identified healthcare information in an electronic health record that is accessed for research purposes, but without consent to re-identify the information under any circumstance.".

cs:ActCode\#RSREID rdfs:subClassOf cs:ActCode\#RESEARCH;
  rdfs:label "re-identifiable information access";
  dc:title "re-identifiable information access";
  rdfs:comment "Definition: Consent to have de-identified healthcare information in an electronic health record that is accessed for research purposes re-identified under specific circumstances outlined in the consent.\r\n\n                        \n                           Example:: Where there is a need to inform the subject of potential health issues.";
  dcterms:description "Definition: Consent to have de-identified healthcare information in an electronic health record that is accessed for research purposes re-identified under specific circumstances outlined in the consent.\r\n\n                        \n                           Example:: Where there is a need to inform the subject of potential health issues.".

cs:ActCode\#%5fActContainerRegistrationCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActContainerRegistrationCode";
  dc:title "ActContainerRegistrationCode";
  rdfs:comment "Constrains the ActCode to the domain of Container Registration";
  dcterms:description "Constrains the ActCode to the domain of Container Registration".

cs:ActCode\#ID rdfs:subClassOf cs:ActCode\#%5fActContainerRegistrationCode;
  rdfs:label "Identified";
  dc:title "Identified";
  rdfs:comment "Used by one system to inform another that it has received a container.";
  dcterms:description "Used by one system to inform another that it has received a container.".

cs:ActCode\#IP rdfs:subClassOf cs:ActCode\#%5fActContainerRegistrationCode;
  rdfs:label "In Position";
  dc:title "In Position";
  rdfs:comment "Used by one system to inform another that the container is in position for specimen transfer (e.g., container removal from track, pipetting, etc.).";
  dcterms:description "Used by one system to inform another that the container is in position for specimen transfer (e.g., container removal from track, pipetting, etc.).".

cs:ActCode\#L rdfs:subClassOf cs:ActCode\#%5fActContainerRegistrationCode;
  rdfs:label "Left Equipment";
  dc:title "Left Equipment";
  rdfs:comment "Used by one system to inform another that the container has been released from that system.";
  dcterms:description "Used by one system to inform another that the container has been released from that system.".

cs:ActCode\#M rdfs:subClassOf cs:ActCode\#%5fActContainerRegistrationCode;
  rdfs:label "Missing";
  dc:title "Missing";
  rdfs:comment "Used by one system to inform another that the container did not arrive at its next expected location.";
  dcterms:description "Used by one system to inform another that the container did not arrive at its next expected location.".

cs:ActCode\#O rdfs:subClassOf cs:ActCode\#%5fActContainerRegistrationCode;
  rdfs:label "In Process";
  dc:title "In Process";
  rdfs:comment "Used by one system to inform another that the specific container is being processed by the equipment. It is useful as a response to a query about Container Status, when the specific step of the process is not relevant.";
  dcterms:description "Used by one system to inform another that the specific container is being processed by the equipment. It is useful as a response to a query about Container Status, when the specific step of the process is not relevant.".

cs:ActCode\#R rdfs:subClassOf cs:ActCode\#%5fActContainerRegistrationCode;
  rdfs:label "Process Completed";
  dc:title "Process Completed";
  rdfs:comment "Status is used by one system to inform another that the processing has been completed, but the container has not been released from that system.";
  dcterms:description "Status is used by one system to inform another that the processing has been completed, but the container has not been released from that system.".

cs:ActCode\#X rdfs:subClassOf cs:ActCode\#%5fActContainerRegistrationCode;
  rdfs:label "Container Unavailable";
  dc:title "Container Unavailable";
  rdfs:comment "Used by one system to inform another that the container is no longer available within the scope of the system (e.g., tube broken or discarded).";
  dcterms:description "Used by one system to inform another that the container is no longer available within the scope of the system (e.g., tube broken or discarded).".

cs:ActCode\#%5fActControlVariable rdfs:subClassOf cs:ActCode;
  rdfs:label "ActControlVariable";
  dc:title "ActControlVariable";
  rdfs:comment "An observation form that determines parameters or attributes of an Act. Examples are the settings of a ventilator machine as parameters of a ventilator treatment act; the controls on dillution factors of a chemical analyzer as a parameter of a laboratory observation act; the settings of a physiologic measurement assembly (e.g., time skew) or the position of the body while measuring blood pressure.\r\n\n                        Control variables are forms of observations because just as with clinical observations, the Observation.code determines the parameter and the Observation.value assigns the value. While control variables sometimes can be observed (by noting the control settings or an actually measured feedback loop) they are not primary observations, in the sense that a control variable without a primary act is of no use (e.g., it makes no sense to record a blood pressure position without recording a blood pressure, whereas it does make sense to record a systolic blood pressure without a diastolic blood pressure).";
  dcterms:description "An observation form that determines parameters or attributes of an Act. Examples are the settings of a ventilator machine as parameters of a ventilator treatment act; the controls on dillution factors of a chemical analyzer as a parameter of a laboratory observation act; the settings of a physiologic measurement assembly (e.g., time skew) or the position of the body while measuring blood pressure.\r\n\n                        Control variables are forms of observations because just as with clinical observations, the Observation.code determines the parameter and the Observation.value assigns the value. While control variables sometimes can be observed (by noting the control settings or an actually measured feedback loop) they are not primary observations, in the sense that a control variable without a primary act is of no use (e.g., it makes no sense to record a blood pressure position without recording a blood pressure, whereas it does make sense to record a systolic blood pressure without a diastolic blood pressure).".

cs:ActCode\#AUTO rdfs:subClassOf cs:ActCode\#%5fActControlVariable;
  rdfs:label "auto-repeat permission";
  dc:title "auto-repeat permission";
  rdfs:comment "Specifies whether or not automatic repeat testing is to be initiated on specimens.";
  dcterms:description "Specifies whether or not automatic repeat testing is to be initiated on specimens.".

cs:ActCode\#ENDC rdfs:subClassOf cs:ActCode\#%5fActControlVariable;
  rdfs:label "endogenous content";
  dc:title "endogenous content";
  rdfs:comment "A baseline value for the measured test that is inherently contained in the diluent.  In the calculation of the actual result for the measured test, this baseline value is normally considered.";
  dcterms:description "A baseline value for the measured test that is inherently contained in the diluent.  In the calculation of the actual result for the measured test, this baseline value is normally considered.".

cs:ActCode\#REFLEX rdfs:subClassOf cs:ActCode\#%5fActControlVariable;
  rdfs:label "reflex permission";
  dc:title "reflex permission";
  rdfs:comment "Specifies whether or not further testing may be automatically or manually initiated on specimens.";
  dcterms:description "Specifies whether or not further testing may be automatically or manually initiated on specimens.".

cs:ActCode\#%5fActCoverageConfirmationCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActCoverageConfirmationCode";
  dc:title "ActCoverageConfirmationCode";
  rdfs:comment "Response to an insurance coverage eligibility query or authorization request.";
  dcterms:description "Response to an insurance coverage eligibility query or authorization request.".

cs:ActCode\#%5fActCoverageAuthorizationConfirmationCode rdfs:subClassOf cs:ActCode\#%5fActCoverageConfirmationCode;
  rdfs:label "ActCoverageAuthorizationConfirmationCode";
  dc:title "ActCoverageAuthorizationConfirmationCode";
  rdfs:comment "Indication of authorization for healthcare service(s) and/or product(s).  If authorization is approved, funds are set aside.";
  dcterms:description "Indication of authorization for healthcare service(s) and/or product(s).  If authorization is approved, funds are set aside.".

cs:ActCode\#AUTH rdfs:subClassOf cs:ActCode\#%5fActCoverageAuthorizationConfirmationCode;
  rdfs:label "Authorized";
  dc:title "Authorized";
  rdfs:comment "Authorization approved and funds have been set aside to pay for specified healthcare service(s) and/or product(s) within defined criteria for the authorization.";
  dcterms:description "Authorization approved and funds have been set aside to pay for specified healthcare service(s) and/or product(s) within defined criteria for the authorization.".

cs:ActCode\#NAUTH rdfs:subClassOf cs:ActCode\#%5fActCoverageAuthorizationConfirmationCode;
  rdfs:label "Not Authorized";
  dc:title "Not Authorized";
  rdfs:comment "Authorization for specified healthcare service(s) and/or product(s) denied.";
  dcterms:description "Authorization for specified healthcare service(s) and/or product(s) denied.".

cs:ActCode\#%5fActCoverageEligibilityConfirmationCode rdfs:subClassOf cs:ActCode\#%5fActCoverageConfirmationCode;
  rdfs:label "ActCoverageEligibilityConfirmationCode";
  dc:title "ActCoverageEligibilityConfirmationCode";
  rdfs:comment "Indication of eligibility coverage for healthcare service(s) and/or product(s).";
  dcterms:description "Indication of eligibility coverage for healthcare service(s) and/or product(s).".

cs:ActCode\#ELG rdfs:subClassOf cs:ActCode\#%5fActCoverageEligibilityConfirmationCode;
  rdfs:label "Eligible";
  dc:title "Eligible";
  rdfs:comment "Insurance coverage is in effect for healthcare service(s) and/or product(s).";
  dcterms:description "Insurance coverage is in effect for healthcare service(s) and/or product(s).".

cs:ActCode\#NELG rdfs:subClassOf cs:ActCode\#%5fActCoverageEligibilityConfirmationCode;
  rdfs:label "Not Eligible";
  dc:title "Not Eligible";
  rdfs:comment "Insurance coverage is not in effect for healthcare service(s) and/or product(s). May optionally include reasons for the ineligibility.";
  dcterms:description "Insurance coverage is not in effect for healthcare service(s) and/or product(s). May optionally include reasons for the ineligibility.".

cs:ActCode\#%5fActCoverageLimitCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActCoverageLimitCode";
  dc:title "ActCoverageLimitCode";
  rdfs:comment "Criteria that are applicable to the authorized coverage.";
  dcterms:description "Criteria that are applicable to the authorized coverage.".

cs:ActCode\#%5fActCoverageQuantityLimitCode rdfs:subClassOf cs:ActCode\#%5fActCoverageLimitCode;
  rdfs:label "ActCoverageQuantityLimitCode";
  dc:title "ActCoverageQuantityLimitCode";
  rdfs:comment "Maximum amount paid or maximum number of services/products covered; or maximum amount or number covered during a specified time period under the policy or program.";
  dcterms:description "Maximum amount paid or maximum number of services/products covered; or maximum amount or number covered during a specified time period under the policy or program.".

cs:ActCode\#COVPRD rdfs:subClassOf cs:ActCode\#%5fActCoverageQuantityLimitCode;
  rdfs:label "coverage period";
  dc:title "coverage period";
  rdfs:comment "Codes representing the time period during which coverage is available; or financial participation requirements are in effect.";
  dcterms:description "Codes representing the time period during which coverage is available; or financial participation requirements are in effect.".

cs:ActCode\#LFEMX rdfs:subClassOf cs:ActCode\#%5fActCoverageQuantityLimitCode;
  rdfs:label "life time maximum";
  dc:title "life time maximum";
  rdfs:comment "Definition: Maximum amount paid by payer or covered party; or maximum number of services or products covered under the policy or program during a covered party's lifetime.";
  dcterms:description "Definition: Maximum amount paid by payer or covered party; or maximum number of services or products covered under the policy or program during a covered party's lifetime.".

cs:ActCode\#NETAMT rdfs:subClassOf cs:ActCode\#%5fActCoverageQuantityLimitCode;
  rdfs:label "Net Amount";
  dc:title "Net Amount";
  rdfs:comment "Maximum net amount that will be covered for the product or service specified.";
  dcterms:description "Maximum net amount that will be covered for the product or service specified.".

cs:ActCode\#PRDMX rdfs:subClassOf cs:ActCode\#%5fActCoverageQuantityLimitCode;
  rdfs:label "period maximum";
  dc:title "period maximum";
  rdfs:comment "Definition: Maximum amount paid by payer or covered party; or maximum number of services/products covered under the policy or program by time period specified by the effective time on the act.";
  dcterms:description "Definition: Maximum amount paid by payer or covered party; or maximum number of services/products covered under the policy or program by time period specified by the effective time on the act.".

cs:ActCode\#UNITPRICE rdfs:subClassOf cs:ActCode\#%5fActCoverageQuantityLimitCode;
  rdfs:label "Unit Price";
  dc:title "Unit Price";
  rdfs:comment "Maximum unit price that will be covered for the authorized product or service.";
  dcterms:description "Maximum unit price that will be covered for the authorized product or service.".

cs:ActCode\#UNITQTY rdfs:subClassOf cs:ActCode\#%5fActCoverageQuantityLimitCode;
  rdfs:label "Unit Quantity";
  dc:title "Unit Quantity";
  rdfs:comment "Maximum number of items that will be covered of the product or service specified.";
  dcterms:description "Maximum number of items that will be covered of the product or service specified.".

cs:ActCode\#COVMX rdfs:subClassOf cs:ActCode\#%5fActCoverageLimitCode;
  rdfs:label "coverage maximum";
  dc:title "coverage maximum";
  rdfs:comment "Definition: Codes representing the maximum coverate or financial participation requirements.";
  dcterms:description "Definition: Codes representing the maximum coverate or financial participation requirements.".

cs:ActCode\#%5fActCoveredPartyLimitCode rdfs:subClassOf cs:ActCode\#%5fActCoverageLimitCode;
  rdfs:label "ActCoveredPartyLimitCode";
  dc:title "ActCoveredPartyLimitCode";
  rdfs:comment "Codes representing the types of covered parties that may receive covered benefits under a policy or program.";
  dcterms:description "Codes representing the types of covered parties that may receive covered benefits under a policy or program.".

cs:ActCode\#%5fActCoverageTypeCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActCoverageTypeCode";
  dc:title "ActCoverageTypeCode";
  rdfs:comment "Definition: Set of codes indicating the type of insurance policy or program that pays for the cost of benefits provided to covered parties.";
  dcterms:description "Definition: Set of codes indicating the type of insurance policy or program that pays for the cost of benefits provided to covered parties.".

cs:ActCode\#%5fActInsurancePolicyCode rdfs:subClassOf cs:ActCode\#%5fActCoverageTypeCode;
  rdfs:label "ActInsurancePolicyCode";
  dc:title "ActInsurancePolicyCode";
  rdfs:comment "Set of codes indicating the type of insurance policy or other source of funds to cover healthcare costs.";
  dcterms:description "Set of codes indicating the type of insurance policy or other source of funds to cover healthcare costs.".

cs:ActCode\#EHCPOL rdfs:subClassOf cs:ActCode\#%5fActInsurancePolicyCode;
  rdfs:label "extended healthcare";
  dc:title "extended healthcare";
  rdfs:comment "Private insurance policy that provides coverage in addition to other policies (e.g. in addition to a Public Healthcare insurance policy).";
  dcterms:description "Private insurance policy that provides coverage in addition to other policies (e.g. in addition to a Public Healthcare insurance policy).".

cs:ActCode\#HSAPOL rdfs:subClassOf cs:ActCode\#%5fActInsurancePolicyCode;
  rdfs:label "health spending account";
  dc:title "health spending account";
  rdfs:comment "Insurance policy that provides for an allotment of funds replenished on a periodic (e.g. annual) basis. The use of the funds under this policy is at the 	discretion of the covered party.";
  dcterms:description "Insurance policy that provides for an allotment of funds replenished on a periodic (e.g. annual) basis. The use of the funds under this policy is at the 	discretion of the covered party.".

cs:ActCode\#AUTOPOL rdfs:subClassOf cs:ActCode\#%5fActInsurancePolicyCode;
  rdfs:label "automobile";
  dc:title "automobile";
  rdfs:comment "Insurance policy for injuries sustained in an automobile accident.  Will also typically covered non-named parties to the policy, such as pedestrians 	and passengers.";
  dcterms:description "Insurance policy for injuries sustained in an automobile accident.  Will also typically covered non-named parties to the policy, such as pedestrians 	and passengers.".

cs:ActCode\#COL rdfs:subClassOf cs:ActCode\#AUTOPOL;
  rdfs:label "collision coverage policy";
  dc:title "collision coverage policy";
  rdfs:comment "Definition: An automobile insurance policy under which the insurance company will cover the cost of damages to an automobile owned by the named insured that are caused by accident or intentionally by another party.";
  dcterms:description "Definition: An automobile insurance policy under which the insurance company will cover the cost of damages to an automobile owned by the named insured that are caused by accident or intentionally by another party.".

cs:ActCode\#UNINSMOT rdfs:subClassOf cs:ActCode\#AUTOPOL;
  rdfs:label "uninsured motorist policy";
  dc:title "uninsured motorist policy";
  rdfs:comment "Definition: An automobile insurance policy under which the insurance company will indemnify a loss for which another motorist is liable if that motorist is unable to pay because he or she is uninsured.  Coverage under the policy applies to bodily injury damages only.  Injuries to the covered party caused by a hit-and-run driver are also covered.";
  dcterms:description "Definition: An automobile insurance policy under which the insurance company will indemnify a loss for which another motorist is liable if that motorist is unable to pay because he or she is uninsured.  Coverage under the policy applies to bodily injury damages only.  Injuries to the covered party caused by a hit-and-run driver are also covered.".

cs:ActCode\#PUBLICPOL rdfs:subClassOf cs:ActCode\#%5fActInsurancePolicyCode;
  rdfs:label "public healthcare";
  dc:title "public healthcare";
  rdfs:comment "Insurance policy funded by a public health system such as a provincial or national health plan.  Examples include BC MSP (British Columbia 	Medical Services Plan) OHIP (Ontario Health Insurance Plan), NHS (National Health Service).";
  dcterms:description "Insurance policy funded by a public health system such as a provincial or national health plan.  Examples include BC MSP (British Columbia 	Medical Services Plan) OHIP (Ontario Health Insurance Plan), NHS (National Health Service).".

cs:ActCode\#DENTPRG rdfs:subClassOf cs:ActCode\#PUBLICPOL;
  rdfs:label "dental program";
  dc:title "dental program";
  rdfs:comment "Definition: A public or government health program that administers and funds coverage for dental care to assist program eligible who meet financial and health status criteria.";
  dcterms:description "Definition: A public or government health program that administers and funds coverage for dental care to assist program eligible who meet financial and health status criteria.".

cs:ActCode\#DISEASEPRG rdfs:subClassOf cs:ActCode\#PUBLICPOL;
  rdfs:label "public health program";
  dc:title "public health program";
  rdfs:comment "Definition: A public or government health program that administers and funds coverage for health and social services to assist program eligible who meet financial and health status criteria related to a particular disease.\r\n\n                        \n                           Example: Reproductive health, sexually transmitted disease, and end renal disease programs.";
  dcterms:description "Definition: A public or government health program that administers and funds coverage for health and social services to assist program eligible who meet financial and health status criteria related to a particular disease.\r\n\n                        \n                           Example: Reproductive health, sexually transmitted disease, and end renal disease programs.".

cs:ActCode\#CANPRG rdfs:subClassOf cs:ActCode\#DISEASEPRG;
  rdfs:label "women's cancer detection program";
  dc:title "women's cancer detection program";
  rdfs:comment "Definition: A program that provides low-income, uninsured, and underserved women access to timely, high-quality screening and diagnostic services, to detect breast and cervical cancer at the earliest stages.\r\n\n                        \n                           Example: To improve women's access to screening for breast and cervical cancers, Congress passed the Breast and Cervical Cancer Mortality Prevention Act of 1990, which guided CDC in creating the National Breast and Cervical Cancer Early Detection Program (NBCCEDP), which  provides access to critical breast and cervical cancer screening services for underserved women in the United States.  An estimated 7 to 10% of U.S. women of screening age are eligible to receive NBCCEDP services. Federal guidelines establish an eligibility baseline to direct services to uninsured and underinsured women at or below 250% of federal poverty level; ages 18 to 64 for cervical screening; ages 40 to 64 for breast screening.";
  dcterms:description "Definition: A program that provides low-income, uninsured, and underserved women access to timely, high-quality screening and diagnostic services, to detect breast and cervical cancer at the earliest stages.\r\n\n                        \n                           Example: To improve women's access to screening for breast and cervical cancers, Congress passed the Breast and Cervical Cancer Mortality Prevention Act of 1990, which guided CDC in creating the National Breast and Cervical Cancer Early Detection Program (NBCCEDP), which  provides access to critical breast and cervical cancer screening services for underserved women in the United States.  An estimated 7 to 10% of U.S. women of screening age are eligible to receive NBCCEDP services. Federal guidelines establish an eligibility baseline to direct services to uninsured and underinsured women at or below 250% of federal poverty level; ages 18 to 64 for cervical screening; ages 40 to 64 for breast screening.".

cs:ActCode\#ENDRENAL rdfs:subClassOf cs:ActCode\#DISEASEPRG;
  rdfs:label "end renal program";
  dc:title "end renal program";
  rdfs:comment "Definition: A public or government program that administers publicly funded coverage of kidney dialysis and kidney transplant services.\r\n\n                        Example: In the U.S., the Medicare End-stage Renal Disease program (ESRD), the National Kidney Foundation (NKF) American Kidney Fund (AKF) The Organ Transplant Fund.";
  dcterms:description "Definition: A public or government program that administers publicly funded coverage of kidney dialysis and kidney transplant services.\r\n\n                        Example: In the U.S., the Medicare End-stage Renal Disease program (ESRD), the National Kidney Foundation (NKF) American Kidney Fund (AKF) The Organ Transplant Fund.".

cs:ActCode\#HIVAIDS rdfs:subClassOf cs:ActCode\#DISEASEPRG;
  rdfs:label "HIV-AIDS program";
  dc:title "HIV-AIDS program";
  rdfs:comment "Definition: Government administered and funded HIV-AIDS program for beneficiaries meeting financial and health status criteria.  Administration, funding levels, eligibility criteria, covered benefits, provider types, and financial participation are typically set by a regulatory process.  Payer responsibilities for administering the program may be delegated to contractors.\r\n\n                        \n                           Example: In the U.S., the Ryan White program, which is administered by the Health Resources and Services Administration.";
  dcterms:description "Definition: Government administered and funded HIV-AIDS program for beneficiaries meeting financial and health status criteria.  Administration, funding levels, eligibility criteria, covered benefits, provider types, and financial participation are typically set by a regulatory process.  Payer responsibilities for administering the program may be delegated to contractors.\r\n\n                        \n                           Example: In the U.S., the Ryan White program, which is administered by the Health Resources and Services Administration.".

cs:ActCode\#MANDPOL rdfs:subClassOf cs:ActCode\#PUBLICPOL;
  rdfs:label "mandatory health program";
  dc:title "mandatory health program";
  rdfs:comment "mandatory health program";
  dcterms:description "mandatory health program".

cs:ActCode\#MENTPRG rdfs:subClassOf cs:ActCode\#PUBLICPOL;
  rdfs:label "mental health program";
  dc:title "mental health program";
  rdfs:comment "Definition: Government administered and funded mental health program for beneficiaries meeting financial and mental health status criteria.  Administration, funding levels, eligibility criteria, covered benefits, provider types, and financial participation are typically set by a regulatory process.  Payer responsibilities for administering the program may be delegated to contractors.\r\n\n                        \n                           Example: In the U.S., states receive funding for substance use programs from the Substance Abuse Mental Health Administration (SAMHSA).";
  dcterms:description "Definition: Government administered and funded mental health program for beneficiaries meeting financial and mental health status criteria.  Administration, funding levels, eligibility criteria, covered benefits, provider types, and financial participation are typically set by a regulatory process.  Payer responsibilities for administering the program may be delegated to contractors.\r\n\n                        \n                           Example: In the U.S., states receive funding for substance use programs from the Substance Abuse Mental Health Administration (SAMHSA).".

cs:ActCode\#SAFNET rdfs:subClassOf cs:ActCode\#PUBLICPOL;
  rdfs:label "safety net clinic program";
  dc:title "safety net clinic program";
  rdfs:comment "Definition: Government administered and funded program to support provision of care to underserved populations through safety net clinics.\r\n\n                        \n                           Example: In the U.S., safety net providers such as federally qualified health centers (FQHC) receive funding under PHSA Section 330 grants administered by the Health Resources and Services Administration.";
  dcterms:description "Definition: Government administered and funded program to support provision of care to underserved populations through safety net clinics.\r\n\n                        \n                           Example: In the U.S., safety net providers such as federally qualified health centers (FQHC) receive funding under PHSA Section 330 grants administered by the Health Resources and Services Administration.".

cs:ActCode\#SUBPRG rdfs:subClassOf cs:ActCode\#PUBLICPOL;
  rdfs:label "substance use program";
  dc:title "substance use program";
  rdfs:comment "Definition: Government administered and funded substance use program for beneficiaries meeting financial, substance use behavior, and health status criteria.  Beneficiaries may be required to enroll as a result of legal proceedings.  Administration, funding levels, eligibility criteria, covered benefits, provider types, and financial participation are typically set by a regulatory process.  Payer responsibilities for administering the program may be delegated to contractors.\r\n\n                        \n                           Example: In the U.S., states receive funding for substance use programs from the Substance Abuse Mental Health Administration (SAMHSA).";
  dcterms:description "Definition: Government administered and funded substance use program for beneficiaries meeting financial, substance use behavior, and health status criteria.  Beneficiaries may be required to enroll as a result of legal proceedings.  Administration, funding levels, eligibility criteria, covered benefits, provider types, and financial participation are typically set by a regulatory process.  Payer responsibilities for administering the program may be delegated to contractors.\r\n\n                        \n                           Example: In the U.S., states receive funding for substance use programs from the Substance Abuse Mental Health Administration (SAMHSA).".

cs:ActCode\#SUBSIDIZ rdfs:subClassOf cs:ActCode\#PUBLICPOL;
  rdfs:label "subsidized health program";
  dc:title "subsidized health program";
  rdfs:comment "Definition: A government health program that provides coverage for health services to persons meeting eligibility criteria such as income, location of residence, access to other coverages, health condition, and age, the cost of which is to some extent subsidized by public funds.";
  dcterms:description "Definition: A government health program that provides coverage for health services to persons meeting eligibility criteria such as income, location of residence, access to other coverages, health condition, and age, the cost of which is to some extent subsidized by public funds.".

cs:ActCode\#SUBSIDMC rdfs:subClassOf cs:ActCode\#SUBSIDIZ;
  rdfs:label "subsidized managed care program";
  dc:title "subsidized managed care program";
  rdfs:comment "Definition: A government health program that provides coverage through managed care contracts for health services to persons meeting eligibility criteria such as income, location of residence, access to other coverages, health condition, and age, the cost of which is to some extent subsidized by public funds. \r\n\n                        \n                           Discussion: The structure and business processes for underwriting and administering a subsidized managed care program is further specified by the Underwriter and Payer Role.class and Role.code.";
  dcterms:description "Definition: A government health program that provides coverage through managed care contracts for health services to persons meeting eligibility criteria such as income, location of residence, access to other coverages, health condition, and age, the cost of which is to some extent subsidized by public funds. \r\n\n                        \n                           Discussion: The structure and business processes for underwriting and administering a subsidized managed care program is further specified by the Underwriter and Payer Role.class and Role.code.".

cs:ActCode\#SUBSUPP rdfs:subClassOf cs:ActCode\#SUBSIDIZ;
  rdfs:label "subsidized supplemental health program";
  dc:title "subsidized supplemental health program";
  rdfs:comment "Definition: A government health program that provides coverage for health services to persons meeting eligibility criteria for a supplemental health policy or program such as income, location of residence, access to other coverages, health condition, and age, the cost of which is to some extent subsidized by public funds.\r\n\n                        \n                           Example:  Supplemental health coverage program may cover the cost of a health program or policy financial participations, such as the copays and the premiums, and may provide coverage for services in addition to those covered under the supplemented health program or policy.  In the U.S., Medicaid programs may pay the premium for a covered party who is also covered under the  Medicare program or a private health policy.\r\n\n                        \n                           Discussion: The structure and business processes for underwriting and administering a subsidized supplemental retiree health program is further specified by the Underwriter and Payer Role.class and Role.code.";
  dcterms:description "Definition: A government health program that provides coverage for health services to persons meeting eligibility criteria for a supplemental health policy or program such as income, location of residence, access to other coverages, health condition, and age, the cost of which is to some extent subsidized by public funds.\r\n\n                        \n                           Example:  Supplemental health coverage program may cover the cost of a health program or policy financial participations, such as the copays and the premiums, and may provide coverage for services in addition to those covered under the supplemented health program or policy.  In the U.S., Medicaid programs may pay the premium for a covered party who is also covered under the  Medicare program or a private health policy.\r\n\n                        \n                           Discussion: The structure and business processes for underwriting and administering a subsidized supplemental retiree health program is further specified by the Underwriter and Payer Role.class and Role.code.".

cs:ActCode\#WCBPOL rdfs:subClassOf cs:ActCode\#%5fActInsurancePolicyCode;
  rdfs:label "worker's compensation";
  dc:title "worker's compensation";
  rdfs:comment "Insurance policy for injuries sustained in the work place or in the course of employment.";
  dcterms:description "Insurance policy for injuries sustained in the work place or in the course of employment.".

cs:ActCode\#%5fActInsuranceTypeCode rdfs:subClassOf cs:ActCode\#%5fActCoverageTypeCode;
  rdfs:label "ActInsuranceTypeCode";
  dc:title "ActInsuranceTypeCode";
  rdfs:comment "Definition: Set of codes indicating the type of insurance policy.  Insurance, in law and economics, is a form of risk management primarily used to hedge against the risk of potential financial loss. Insurance is defined as the equitable transfer of the risk of a potential loss, from one entity to another, in exchange for a premium and duty of care. A policy holder is an individual or an organization enters into a contract with an underwriter which stipulates that, in exchange for payment of a sum of money (a premium), one or more covered parties (insureds) is guaranteed compensation for losses resulting from certain perils under specified conditions.  The underwriter analyzes the risk of loss, makes a decision as to whether the risk is insurable, and prices the premium accordingly.  A policy provides benefits that indemnify or cover the cost of a loss incurred by a covered party, and may include coverage for services required to remediate a loss.  An insurance policy contains pertinent facts about the policy holder, the insurance coverage, the covered parties, and the insurer.  A policy may include exemptions and provisions specifying the extent to which the indemnification clause cannot be enforced for intentional tortious conduct of a covered party, e.g., whether the covered parties are jointly or severably insured.\r\n\n                        \n                           Discussion: In contrast to programs, an insurance policy has one or more policy holders, who own the policy.  The policy holder may be the covered party, a relative of the covered party, a partnership, or a corporation, e.g., an employer.  A subscriber of a self-insured health insurance policy is a policy holder.  A subscriber of an employer sponsored health insurance policy is holds a certificate of coverage, but is not a policy holder; the policy holder is the employer.  See CoveredRoleType.";
  dcterms:description "Definition: Set of codes indicating the type of insurance policy.  Insurance, in law and economics, is a form of risk management primarily used to hedge against the risk of potential financial loss. Insurance is defined as the equitable transfer of the risk of a potential loss, from one entity to another, in exchange for a premium and duty of care. A policy holder is an individual or an organization enters into a contract with an underwriter which stipulates that, in exchange for payment of a sum of money (a premium), one or more covered parties (insureds) is guaranteed compensation for losses resulting from certain perils under specified conditions.  The underwriter analyzes the risk of loss, makes a decision as to whether the risk is insurable, and prices the premium accordingly.  A policy provides benefits that indemnify or cover the cost of a loss incurred by a covered party, and may include coverage for services required to remediate a loss.  An insurance policy contains pertinent facts about the policy holder, the insurance coverage, the covered parties, and the insurer.  A policy may include exemptions and provisions specifying the extent to which the indemnification clause cannot be enforced for intentional tortious conduct of a covered party, e.g., whether the covered parties are jointly or severably insured.\r\n\n                        \n                           Discussion: In contrast to programs, an insurance policy has one or more policy holders, who own the policy.  The policy holder may be the covered party, a relative of the covered party, a partnership, or a corporation, e.g., an employer.  A subscriber of a self-insured health insurance policy is a policy holder.  A subscriber of an employer sponsored health insurance policy is holds a certificate of coverage, but is not a policy holder; the policy holder is the employer.  See CoveredRoleType.".

cs:ActCode\#%5fActHealthInsuranceTypeCode rdfs:subClassOf cs:ActCode\#%5fActInsuranceTypeCode;
  rdfs:label "ActHealthInsuranceTypeCode";
  dc:title "ActHealthInsuranceTypeCode";
  rdfs:comment "Definition: Set of codes indicating the type of health insurance policy that covers health services provided to covered parties.  A health insurance policy is a written contract for insurance between the insurance company and the policyholder, and contains pertinent facts about the policy owner (the policy holder), the health insurance coverage, the insured subscribers and dependents, and the insurer.  Health insurance is typically administered in accordance with a plan, which specifies (1) the type of health services and health conditions that will be covered under what circumstances (e.g., exclusion of a pre-existing condition, service must be deemed medically necessary; service must not be experimental; service must provided in accordance with a protocol; drug must be on a formulary; service must be prior authorized; or be a referral from a primary care provider); (2) the type and affiliation of providers (e.g., only allopathic physicians, only in network, only providers employed by an HMO); (3) financial participations required of covered parties (e.g., co-pays, coinsurance, deductibles, out-of-pocket); and (4) the manner in which services will be paid (e.g., under indemnity or fee-for-service health plans, the covered party typically pays out-of-pocket and then file a claim for reimbursement, while health plans that have contractual relationships with providers, i.e., network providers, typically do not allow the providers to bill the covered party for the cost of the service until after filing a claim with the payer and receiving reimbursement).";
  dcterms:description "Definition: Set of codes indicating the type of health insurance policy that covers health services provided to covered parties.  A health insurance policy is a written contract for insurance between the insurance company and the policyholder, and contains pertinent facts about the policy owner (the policy holder), the health insurance coverage, the insured subscribers and dependents, and the insurer.  Health insurance is typically administered in accordance with a plan, which specifies (1) the type of health services and health conditions that will be covered under what circumstances (e.g., exclusion of a pre-existing condition, service must be deemed medically necessary; service must not be experimental; service must provided in accordance with a protocol; drug must be on a formulary; service must be prior authorized; or be a referral from a primary care provider); (2) the type and affiliation of providers (e.g., only allopathic physicians, only in network, only providers employed by an HMO); (3) financial participations required of covered parties (e.g., co-pays, coinsurance, deductibles, out-of-pocket); and (4) the manner in which services will be paid (e.g., under indemnity or fee-for-service health plans, the covered party typically pays out-of-pocket and then file a claim for reimbursement, while health plans that have contractual relationships with providers, i.e., network providers, typically do not allow the providers to bill the covered party for the cost of the service until after filing a claim with the payer and receiving reimbursement).".

cs:ActCode\#DENTAL rdfs:subClassOf cs:ActCode\#%5fActHealthInsuranceTypeCode;
  rdfs:label "dental care policy";
  dc:title "dental care policy";
  rdfs:comment "Definition: A health insurance policy that that covers benefits for dental services.";
  dcterms:description "Definition: A health insurance policy that that covers benefits for dental services.".

cs:ActCode\#DISEASE rdfs:subClassOf cs:ActCode\#%5fActHealthInsuranceTypeCode;
  rdfs:label "disease specific policy";
  dc:title "disease specific policy";
  rdfs:comment "Definition: A health insurance policy that covers benefits for healthcare services provided for named conditions under the policy, e.g., cancer, diabetes, or HIV-AIDS.";
  dcterms:description "Definition: A health insurance policy that covers benefits for healthcare services provided for named conditions under the policy, e.g., cancer, diabetes, or HIV-AIDS.".

cs:ActCode\#DRUGPOL rdfs:subClassOf cs:ActCode\#%5fActHealthInsuranceTypeCode;
  rdfs:label "drug policy";
  dc:title "drug policy";
  rdfs:comment "Definition: A health insurance policy that covers benefits for prescription drugs, pharmaceuticals, and supplies.";
  dcterms:description "Definition: A health insurance policy that covers benefits for prescription drugs, pharmaceuticals, and supplies.".

cs:ActCode\#HIP rdfs:subClassOf cs:ActCode\#%5fActHealthInsuranceTypeCode;
  rdfs:label "health insurance plan policy";
  dc:title "health insurance plan policy";
  rdfs:comment "Definition: A health insurance policy that covers healthcare benefits by protecting covered parties from medical expenses arising from health conditions, sickness, or accidental injury as well as preventive care. Health insurance policies explicitly exclude coverage for losses insured under a disability policy, workers' compensation program, liability insurance (including automobile insurance); or for medical expenses, coverage for on-site medical clinics or for limited dental or vision benefits when these are provided under a separate policy.\r\n\n                        \n                           Discussion: Health insurance policies are offered by health insurance plans that typically reimburse providers for covered services on a fee-for-service basis, that is, a fee that is the allowable amount that a provider may charge.  This is in contrast to managed care plans, which typically prepay providers a per-member/per-month amount or capitation as reimbursement for all covered services rendered.  Health insurance plans include indemnity and healthcare services plans.";
  dcterms:description "Definition: A health insurance policy that covers healthcare benefits by protecting covered parties from medical expenses arising from health conditions, sickness, or accidental injury as well as preventive care. Health insurance policies explicitly exclude coverage for losses insured under a disability policy, workers' compensation program, liability insurance (including automobile insurance); or for medical expenses, coverage for on-site medical clinics or for limited dental or vision benefits when these are provided under a separate policy.\r\n\n                        \n                           Discussion: Health insurance policies are offered by health insurance plans that typically reimburse providers for covered services on a fee-for-service basis, that is, a fee that is the allowable amount that a provider may charge.  This is in contrast to managed care plans, which typically prepay providers a per-member/per-month amount or capitation as reimbursement for all covered services rendered.  Health insurance plans include indemnity and healthcare services plans.".

cs:ActCode\#LTC rdfs:subClassOf cs:ActCode\#%5fActHealthInsuranceTypeCode;
  rdfs:label "long term care policy";
  dc:title "long term care policy";
  rdfs:comment "Definition: An insurance policy that covers benefits for long-term care services people need when they no longer can care for themselves. This may be due to an accident, disability, prolonged illness or the simple process of aging. Long-term care services assist with activities of daily living including:\r\n\n                        \n                           \n                              Help at home with day-to-day activities, such as cooking, cleaning, bathing and dressing\r\n\n                           \n                           \n                              Care in the community, such as in an adult day care facility\r\n\n                           \n                           \n                              Supervised care provided in an assisted living facility\r\n\n                           \n                           \n                              Skilled care provided in a nursing home";
  dcterms:description "Definition: An insurance policy that covers benefits for long-term care services people need when they no longer can care for themselves. This may be due to an accident, disability, prolonged illness or the simple process of aging. Long-term care services assist with activities of daily living including:\r\n\n                        \n                           \n                              Help at home with day-to-day activities, such as cooking, cleaning, bathing and dressing\r\n\n                           \n                           \n                              Care in the community, such as in an adult day care facility\r\n\n                           \n                           \n                              Supervised care provided in an assisted living facility\r\n\n                           \n                           \n                              Skilled care provided in a nursing home".

cs:ActCode\#MCPOL rdfs:subClassOf cs:ActCode\#%5fActHealthInsuranceTypeCode;
  rdfs:label "managed care policy";
  dc:title "managed care policy";
  rdfs:comment "Definition: Government mandated program providing coverage, disability income, and vocational rehabilitation for injuries sustained in the work place or in the course of employment.  Employers may either self-fund the program, purchase commercial coverage, or pay a premium to a government entity that administers the program.  Employees may be required to pay premiums toward the cost of coverage as well.\r\n\n                        Managed care policies specifically exclude coverage for losses insured under a disability policy, workers' compensation program, liability insurance (including automobile insurance); or for medical expenses, coverage for on-site medical clinics or for limited dental or vision benefits when these are provided under a separate policy.\r\n\n                        \n                           Discussion: Managed care policies are offered by managed care plans that contract with selected providers or health care organizations to provide comprehensive health care at a discount to covered parties and coordinate the financing and delivery of health care. Managed care uses medical protocols and procedures agreed on by the medical profession to be cost effective, also known as medical practice guidelines. Providers are typically reimbursed for covered services by a capitated amount on a per member per month basis that may reflect difference in the health status and level of services anticipated to be needed by the member.";
  dcterms:description "Definition: Government mandated program providing coverage, disability income, and vocational rehabilitation for injuries sustained in the work place or in the course of employment.  Employers may either self-fund the program, purchase commercial coverage, or pay a premium to a government entity that administers the program.  Employees may be required to pay premiums toward the cost of coverage as well.\r\n\n                        Managed care policies specifically exclude coverage for losses insured under a disability policy, workers' compensation program, liability insurance (including automobile insurance); or for medical expenses, coverage for on-site medical clinics or for limited dental or vision benefits when these are provided under a separate policy.\r\n\n                        \n                           Discussion: Managed care policies are offered by managed care plans that contract with selected providers or health care organizations to provide comprehensive health care at a discount to covered parties and coordinate the financing and delivery of health care. Managed care uses medical protocols and procedures agreed on by the medical profession to be cost effective, also known as medical practice guidelines. Providers are typically reimbursed for covered services by a capitated amount on a per member per month basis that may reflect difference in the health status and level of services anticipated to be needed by the member.".

cs:ActCode\#POS rdfs:subClassOf cs:ActCode\#MCPOL;
  rdfs:label "point of service policy";
  dc:title "point of service policy";
  rdfs:comment "Definition: A policy for a health plan that has features of both an HMO and a FFS plan.  Like an HMO, a POS plan encourages the use its HMO network to maintain discounted fees with participating providers, but recognizes that sometimes covered parties want to choose their own provider.  The POS plan allows a covered party to use providers who are not part of the HMO network (non-participating providers).  However, there is a greater cost associated with choosing these non-network providers. A covered party will usually pay deductibles and coinsurances that are substantially higher than the payments when he or she uses a plan provider. Use of non-participating providers often requires the covered party to pay the provider directly and then to file a claim for reimbursement, like in an FFS plan.";
  dcterms:description "Definition: A policy for a health plan that has features of both an HMO and a FFS plan.  Like an HMO, a POS plan encourages the use its HMO network to maintain discounted fees with participating providers, but recognizes that sometimes covered parties want to choose their own provider.  The POS plan allows a covered party to use providers who are not part of the HMO network (non-participating providers).  However, there is a greater cost associated with choosing these non-network providers. A covered party will usually pay deductibles and coinsurances that are substantially higher than the payments when he or she uses a plan provider. Use of non-participating providers often requires the covered party to pay the provider directly and then to file a claim for reimbursement, like in an FFS plan.".

cs:ActCode\#HMO rdfs:subClassOf cs:ActCode\#MCPOL;
  rdfs:label "health maintenance organization policy";
  dc:title "health maintenance organization policy";
  rdfs:comment "Definition: A policy for a health plan that provides coverage for health care only through contracted or employed physicians and hospitals located in particular geographic or service areas.  HMOs emphasize prevention and early detection of illness. Eligibility to enroll in an HMO is determined by where a covered party lives or works.";
  dcterms:description "Definition: A policy for a health plan that provides coverage for health care only through contracted or employed physicians and hospitals located in particular geographic or service areas.  HMOs emphasize prevention and early detection of illness. Eligibility to enroll in an HMO is determined by where a covered party lives or works.".

cs:ActCode\#PPO rdfs:subClassOf cs:ActCode\#MCPOL;
  rdfs:label "preferred provider organization policy";
  dc:title "preferred provider organization policy";
  rdfs:comment "Definition: A network-based, managed care plan that allows a covered party to choose any health care provider. However, if care is received from a \"preferred\" (participating in-network) provider, there are generally higher benefit coverage and lower deductibles.";
  dcterms:description "Definition: A network-based, managed care plan that allows a covered party to choose any health care provider. However, if care is received from a \"preferred\" (participating in-network) provider, there are generally higher benefit coverage and lower deductibles.".

cs:ActCode\#MENTPOL rdfs:subClassOf cs:ActCode\#%5fActHealthInsuranceTypeCode;
  rdfs:label "mental health policy";
  dc:title "mental health policy";
  rdfs:comment "Definition: A health insurance policy that covers benefits for mental health services and prescriptions.";
  dcterms:description "Definition: A health insurance policy that covers benefits for mental health services and prescriptions.".

cs:ActCode\#SUBPOL rdfs:subClassOf cs:ActCode\#%5fActHealthInsuranceTypeCode;
  rdfs:label "substance use policy";
  dc:title "substance use policy";
  rdfs:comment "Definition: A health insurance policy that covers benefits for substance use services.";
  dcterms:description "Definition: A health insurance policy that covers benefits for substance use services.".

cs:ActCode\#VISPOL rdfs:subClassOf cs:ActCode\#%5fActHealthInsuranceTypeCode;
  rdfs:label "vision care policy";
  dc:title "vision care policy";
  rdfs:comment "Definition: Set of codes for a policy that provides coverage for health care expenses arising from vision services.\r\n\n                        A health insurance policy that covers benefits for vision care services, prescriptions, and products.";
  dcterms:description "Definition: Set of codes for a policy that provides coverage for health care expenses arising from vision services.\r\n\n                        A health insurance policy that covers benefits for vision care services, prescriptions, and products.".

cs:ActCode\#DIS rdfs:subClassOf cs:ActCode\#%5fActInsuranceTypeCode;
  rdfs:label "disability insurance policy";
  dc:title "disability insurance policy";
  rdfs:comment "Definition: An insurance policy that provides a regular payment to compensate for income lost due to the covered party's inability to work because of illness or injury.";
  dcterms:description "Definition: An insurance policy that provides a regular payment to compensate for income lost due to the covered party's inability to work because of illness or injury.".

cs:ActCode\#EWB rdfs:subClassOf cs:ActCode\#%5fActInsuranceTypeCode;
  rdfs:label "employee welfare benefit plan policy";
  dc:title "employee welfare benefit plan policy";
  rdfs:comment "Definition: An insurance policy under a benefit plan run by an employer or employee organization for the purpose of providing benefits other than pension-related to employees and their families. Typically provides health-related benefits, benefits for disability, disease or unemployment, or day care and scholarship benefits, among others.  An employer sponsored health policy includes coverage of health care expenses arising from sickness or accidental injury, coverage for on-site medical clinics or for dental or vision benefits, which are typically provided under a separate policy.  Coverage excludes health care expenses covered by accident or disability, workers' compensation, liability or automobile insurance.";
  dcterms:description "Definition: An insurance policy under a benefit plan run by an employer or employee organization for the purpose of providing benefits other than pension-related to employees and their families. Typically provides health-related benefits, benefits for disability, disease or unemployment, or day care and scholarship benefits, among others.  An employer sponsored health policy includes coverage of health care expenses arising from sickness or accidental injury, coverage for on-site medical clinics or for dental or vision benefits, which are typically provided under a separate policy.  Coverage excludes health care expenses covered by accident or disability, workers' compensation, liability or automobile insurance.".

cs:ActCode\#FLEXP rdfs:subClassOf cs:ActCode\#%5fActInsuranceTypeCode;
  rdfs:label "flexible benefit plan policy";
  dc:title "flexible benefit plan policy";
  rdfs:comment "Definition:  An insurance policy that covers qualified benefits under a Flexible Benefit plan such as group medical insurance, long and short term disability income insurance, group term life insurance for employees only up to $50,000 face amount, specified disease coverage such as a cancer policy, dental and/or vision insurance, hospital indemnity insurance, accidental death and dismemberment insurance, a medical expense reimbursement plan and a dependent care reimbursement plan.\r\n\n                        \n                            Discussion: See UnderwriterRoleTypeCode flexible benefit plan which is defined as a benefit plan that allows employees to choose from several life, health, disability, dental, and other insurance plans according to their individual needs. Also known as cafeteria plans.  Authorized under Section 125 of the Revenue Act of 1978.";
  dcterms:description "Definition:  An insurance policy that covers qualified benefits under a Flexible Benefit plan such as group medical insurance, long and short term disability income insurance, group term life insurance for employees only up to $50,000 face amount, specified disease coverage such as a cancer policy, dental and/or vision insurance, hospital indemnity insurance, accidental death and dismemberment insurance, a medical expense reimbursement plan and a dependent care reimbursement plan.\r\n\n                        \n                            Discussion: See UnderwriterRoleTypeCode flexible benefit plan which is defined as a benefit plan that allows employees to choose from several life, health, disability, dental, and other insurance plans according to their individual needs. Also known as cafeteria plans.  Authorized under Section 125 of the Revenue Act of 1978.".

cs:ActCode\#LIFE rdfs:subClassOf cs:ActCode\#%5fActInsuranceTypeCode;
  rdfs:label "life insurance policy";
  dc:title "life insurance policy";
  rdfs:comment "Definition: A policy under which the insurer agrees to pay a sum of money upon the occurrence of the covered partys death. In return, the policyholder agrees to pay a stipulated amount called a premium at regular intervals.  Life insurance indemnifies the beneficiary for the loss of the insurable interest that a beneficiary has in the life of a covered party.  For persons related by blood, a substantial interest established through love and affection, and for all other persons, a lawful and substantial economic interest in having the life of the insured continue. An insurable interest is required when purchasing life insurance on another person. Specific exclusions are often written into the contract to limit the liability of the insurer; for example claims resulting from suicide or relating to war, riot and civil commotion.\r\n\n                        \n                           Discussion:A life insurance policy may be used by the covered party as a source of health care coverage in the case of  a viatical settlement, which is the sale of a life insurance policy by the policy owner, before the policy matures. Such a sale, at a price discounted from the face amount of the policy but usually in excess of the premiums paid or current cash surrender value, provides the seller an immediate cash settlement. Generally, viatical settlements involve insured individuals with a life expectancy of less than two years. In countries without state-subsidized healthcare and high healthcare costs (e.g. United States), this is a practical way to pay extremely high health insurance premiums that severely ill people face. Some people are also familiar with life settlements, which are similar transactions but involve insureds with longer life expectancies (two to fifteen years).";
  dcterms:description "Definition: A policy under which the insurer agrees to pay a sum of money upon the occurrence of the covered partys death. In return, the policyholder agrees to pay a stipulated amount called a premium at regular intervals.  Life insurance indemnifies the beneficiary for the loss of the insurable interest that a beneficiary has in the life of a covered party.  For persons related by blood, a substantial interest established through love and affection, and for all other persons, a lawful and substantial economic interest in having the life of the insured continue. An insurable interest is required when purchasing life insurance on another person. Specific exclusions are often written into the contract to limit the liability of the insurer; for example claims resulting from suicide or relating to war, riot and civil commotion.\r\n\n                        \n                           Discussion:A life insurance policy may be used by the covered party as a source of health care coverage in the case of  a viatical settlement, which is the sale of a life insurance policy by the policy owner, before the policy matures. Such a sale, at a price discounted from the face amount of the policy but usually in excess of the premiums paid or current cash surrender value, provides the seller an immediate cash settlement. Generally, viatical settlements involve insured individuals with a life expectancy of less than two years. In countries without state-subsidized healthcare and high healthcare costs (e.g. United States), this is a practical way to pay extremely high health insurance premiums that severely ill people face. Some people are also familiar with life settlements, which are similar transactions but involve insureds with longer life expectancies (two to fifteen years).".

cs:ActCode\#ANNU rdfs:subClassOf cs:ActCode\#LIFE;
  rdfs:label "annuity policy";
  dc:title "annuity policy";
  rdfs:comment "Definition: A policy that, after an initial premium or premiums, pays out a sum at pre-determined intervals.\r\n\n                        For example, a policy holder may pay $10,000, and in return receive $150 each month until he dies; or $1,000 for each of 14 years or death benefits if he dies before the full term of the annuity has elapsed.";
  dcterms:description "Definition: A policy that, after an initial premium or premiums, pays out a sum at pre-determined intervals.\r\n\n                        For example, a policy holder may pay $10,000, and in return receive $150 each month until he dies; or $1,000 for each of 14 years or death benefits if he dies before the full term of the annuity has elapsed.".

cs:ActCode\#TLIFE rdfs:subClassOf cs:ActCode\#LIFE;
  rdfs:label "term life insurance policy";
  dc:title "term life insurance policy";
  rdfs:comment "Definition: Life insurance under which the benefit is payable only if the insured dies during a specified period. If an insured dies during that period, the beneficiary receives the death payments. If the insured survives, the policy ends and the beneficiary receives nothing.";
  dcterms:description "Definition: Life insurance under which the benefit is payable only if the insured dies during a specified period. If an insured dies during that period, the beneficiary receives the death payments. If the insured survives, the policy ends and the beneficiary receives nothing.".

cs:ActCode\#ULIFE rdfs:subClassOf cs:ActCode\#LIFE;
  rdfs:label "universal life insurance policy";
  dc:title "universal life insurance policy";
  rdfs:comment "Definition: Life insurance under which the benefit is payable upon the insuredaTMs death or diagnosis of a terminal illness.  If an insured dies during that period, the beneficiary receives the death payments. If the insured survives, the policy ends and the beneficiary receives nothing";
  dcterms:description "Definition: Life insurance under which the benefit is payable upon the insuredaTMs death or diagnosis of a terminal illness.  If an insured dies during that period, the beneficiary receives the death payments. If the insured survives, the policy ends and the beneficiary receives nothing".

cs:ActCode\#PNC rdfs:subClassOf cs:ActCode\#%5fActInsuranceTypeCode;
  rdfs:label "property and casualty insurance policy";
  dc:title "property and casualty insurance policy";
  rdfs:comment "Definition: A type of insurance that covers damage to or loss of the policyholderaTMs property by providing payments for damages to property damage or the injury or death of living subjects.  The terms \"casualty\" and \"liability\" insurance are often used interchangeably. Both cover the policyholder's legal liability for damages caused to other persons and/or their property.";
  dcterms:description "Definition: A type of insurance that covers damage to or loss of the policyholderaTMs property by providing payments for damages to property damage or the injury or death of living subjects.  The terms \"casualty\" and \"liability\" insurance are often used interchangeably. Both cover the policyholder's legal liability for damages caused to other persons and/or their property.".

cs:ActCode\#REI rdfs:subClassOf cs:ActCode\#%5fActInsuranceTypeCode;
  rdfs:label "reinsurance policy";
  dc:title "reinsurance policy";
  rdfs:comment "Definition: An agreement between two or more insurance companies by which the risk of loss is proportioned. Thus the risk of loss is spread and a disproportionately large loss under a single policy does not fall on one insurance company. Acceptance by an insurer, called a reinsurer, of all or part of the risk of loss of another insurance company.\r\n\n                        \n                           Discussion: Reinsurance is a means by which an insurance company can protect itself against the risk of losses with other insurance companies. Individuals and corporations obtain insurance policies to provide protection for various risks (hurricanes, earthquakes, lawsuits, collisions, sickness and death, etc.). Reinsurers, in turn, provide insurance to insurance companies.\r\n\n                        For example, an HMO may purchase a reinsurance policy to protect itself from losing too much money from one insured's particularly expensive health care costs. An insurance company issuing an automobile liability policy, with a limit of $100,000 per accident may reinsure its liability in excess of $10,000. A fire insurance company which issues a large policy generally reinsures a portion of the risk with one or several other companies. Also called risk control insurance or stop-loss insurance.";
  dcterms:description "Definition: An agreement between two or more insurance companies by which the risk of loss is proportioned. Thus the risk of loss is spread and a disproportionately large loss under a single policy does not fall on one insurance company. Acceptance by an insurer, called a reinsurer, of all or part of the risk of loss of another insurance company.\r\n\n                        \n                           Discussion: Reinsurance is a means by which an insurance company can protect itself against the risk of losses with other insurance companies. Individuals and corporations obtain insurance policies to provide protection for various risks (hurricanes, earthquakes, lawsuits, collisions, sickness and death, etc.). Reinsurers, in turn, provide insurance to insurance companies.\r\n\n                        For example, an HMO may purchase a reinsurance policy to protect itself from losing too much money from one insured's particularly expensive health care costs. An insurance company issuing an automobile liability policy, with a limit of $100,000 per accident may reinsure its liability in excess of $10,000. A fire insurance company which issues a large policy generally reinsures a portion of the risk with one or several other companies. Also called risk control insurance or stop-loss insurance.".

cs:ActCode\#SURPL rdfs:subClassOf cs:ActCode\#%5fActInsuranceTypeCode;
  rdfs:label "surplus line insurance policy";
  dc:title "surplus line insurance policy";
  rdfs:comment "Definition: \n                        \r\n\n                        \n                           \n                              A risk or part of a risk for which there is no normal insurance market available.\r\n\n                           \n                           \n                              Insurance written by unauthorized insurance companies. Surplus lines insurance is insurance placed with unauthorized insurance companies through licensed surplus lines agents or brokers.";
  dcterms:description "Definition: \n                        \r\n\n                        \n                           \n                              A risk or part of a risk for which there is no normal insurance market available.\r\n\n                           \n                           \n                              Insurance written by unauthorized insurance companies. Surplus lines insurance is insurance placed with unauthorized insurance companies through licensed surplus lines agents or brokers.".

cs:ActCode\#UMBRL rdfs:subClassOf cs:ActCode\#%5fActInsuranceTypeCode;
  rdfs:label "umbrella liability insurance policy";
  dc:title "umbrella liability insurance policy";
  rdfs:comment "Definition: A form of insurance protection that provides additional liability coverage after the limits of your underlying policy are reached. An umbrella liability policy also protects you (the insured) in many situations not covered by the usual liability policies.";
  dcterms:description "Definition: A form of insurance protection that provides additional liability coverage after the limits of your underlying policy are reached. An umbrella liability policy also protects you (the insured) in many situations not covered by the usual liability policies.".

cs:ActCode\#%5fActProgramTypeCode rdfs:subClassOf cs:ActCode\#%5fActCoverageTypeCode;
  rdfs:label "ActProgramTypeCode";
  dc:title "ActProgramTypeCode";
  rdfs:comment "Definition: A set of codes used to indicate coverage under a program.  A program is an organized structure for administering and funding coverage of a benefit package for covered parties meeting eligibility criteria, typically related to employment, health, financial, and demographic status. Programs are typically established or permitted by legislation with provisions for ongoing government oversight.  Regulations may mandate the structure of the program, the manner in which it is funded and administered, covered benefits, provider types, eligibility criteria and financial participation. A government agency may be charged with implementing the program in accordance to the regulation.  Risk of loss under a program in most cases would not meet what an underwriter would consider an insurable risk, i.e., the risk is not random in nature, not financially measurable, and likely requires subsidization with government funds.\r\n\n                        \n                           Discussion: Programs do not have policy holders or subscribers.  Program eligibles are enrolled based on health status, statutory eligibility, financial status, or age.  Program eligibles who are covered parties under the program may be referred to as members, beneficiaries, eligibles, or recipients.  Programs risk are underwritten by not for profit organizations such as governmental entities, and the beneficiaries typically do not pay for any or some portion of the cost of coverage.  See CoveredPartyRoleType.";
  dcterms:description "Definition: A set of codes used to indicate coverage under a program.  A program is an organized structure for administering and funding coverage of a benefit package for covered parties meeting eligibility criteria, typically related to employment, health, financial, and demographic status. Programs are typically established or permitted by legislation with provisions for ongoing government oversight.  Regulations may mandate the structure of the program, the manner in which it is funded and administered, covered benefits, provider types, eligibility criteria and financial participation. A government agency may be charged with implementing the program in accordance to the regulation.  Risk of loss under a program in most cases would not meet what an underwriter would consider an insurable risk, i.e., the risk is not random in nature, not financially measurable, and likely requires subsidization with government funds.\r\n\n                        \n                           Discussion: Programs do not have policy holders or subscribers.  Program eligibles are enrolled based on health status, statutory eligibility, financial status, or age.  Program eligibles who are covered parties under the program may be referred to as members, beneficiaries, eligibles, or recipients.  Programs risk are underwritten by not for profit organizations such as governmental entities, and the beneficiaries typically do not pay for any or some portion of the cost of coverage.  See CoveredPartyRoleType.".

cs:ActCode\#CHAR rdfs:subClassOf cs:ActCode\#%5fActProgramTypeCode;
  rdfs:label "charity program";
  dc:title "charity program";
  rdfs:comment "Definition: A program that covers the cost of services provided directly to a beneficiary who typically has no other source of coverage without charge.";
  dcterms:description "Definition: A program that covers the cost of services provided directly to a beneficiary who typically has no other source of coverage without charge.".

cs:ActCode\#CRIME rdfs:subClassOf cs:ActCode\#%5fActProgramTypeCode;
  rdfs:label "crime victim program";
  dc:title "crime victim program";
  rdfs:comment "Definition: A program that covers the cost of services provided to crime victims for injuries or losses related to the occurrence of a crime.";
  dcterms:description "Definition: A program that covers the cost of services provided to crime victims for injuries or losses related to the occurrence of a crime.".

cs:ActCode\#EAP rdfs:subClassOf cs:ActCode\#%5fActProgramTypeCode;
  rdfs:label "employee assistance program";
  dc:title "employee assistance program";
  rdfs:comment "Definition: An employee assistance program is run by an employer or employee organization for the purpose of providing benefits and covering all or part of the cost for employees to receive counseling, referrals, and advice in dealing with stressful issues in their lives. These may include substance abuse, bereavement, marital problems, weight issues, or general wellness issues.  The services are usually provided by a third-party, rather than the company itself, and the company receives only summary statistical data from the service provider. Employee's names and services received are kept confidential.";
  dcterms:description "Definition: An employee assistance program is run by an employer or employee organization for the purpose of providing benefits and covering all or part of the cost for employees to receive counseling, referrals, and advice in dealing with stressful issues in their lives. These may include substance abuse, bereavement, marital problems, weight issues, or general wellness issues.  The services are usually provided by a third-party, rather than the company itself, and the company receives only summary statistical data from the service provider. Employee's names and services received are kept confidential.".

cs:ActCode\#GOVEMP rdfs:subClassOf cs:ActCode\#%5fActProgramTypeCode;
  rdfs:label "government employee health program";
  dc:title "government employee health program";
  rdfs:comment "Definition: A set of codes used to indicate a government program that is an organized structure for administering and funding coverage of a benefit package for covered parties meeting eligibility criteria, typically related to employment, health and financial status. Government programs are established or permitted by legislation with provisions for ongoing government oversight.  Regulation mandates the structure of the program, the manner in which it is funded and administered, covered benefits, provider types, eligibility criteria and financial participation. A government agency is charged with implementing the program in accordance to the regulation\r\n\n                        \n                           Example: Federal employee health benefit program in the U.S.";
  dcterms:description "Definition: A set of codes used to indicate a government program that is an organized structure for administering and funding coverage of a benefit package for covered parties meeting eligibility criteria, typically related to employment, health and financial status. Government programs are established or permitted by legislation with provisions for ongoing government oversight.  Regulation mandates the structure of the program, the manner in which it is funded and administered, covered benefits, provider types, eligibility criteria and financial participation. A government agency is charged with implementing the program in accordance to the regulation\r\n\n                        \n                           Example: Federal employee health benefit program in the U.S.".

cs:ActCode\#HIRISK rdfs:subClassOf cs:ActCode\#%5fActProgramTypeCode;
  rdfs:label "high risk pool program";
  dc:title "high risk pool program";
  rdfs:comment "Definition: A government program that provides health coverage to individuals who are considered medically uninsurable or high risk, and who have been denied health insurance due to a serious health condition. In certain cases, it also applies to those who have been quoted very high premiums a\" again, due to a serious health condition.  The pool charges premiums for coverage.  Because the pool covers high-risk people, it incurs a higher level of claims than premiums can cover. The insurance industry pays into the pool to make up the difference and help it remain viable.";
  dcterms:description "Definition: A government program that provides health coverage to individuals who are considered medically uninsurable or high risk, and who have been denied health insurance due to a serious health condition. In certain cases, it also applies to those who have been quoted very high premiums a\" again, due to a serious health condition.  The pool charges premiums for coverage.  Because the pool covers high-risk people, it incurs a higher level of claims than premiums can cover. The insurance industry pays into the pool to make up the difference and help it remain viable.".

cs:ActCode\#IND rdfs:subClassOf cs:ActCode\#%5fActProgramTypeCode;
  rdfs:label "indigenous peoples health program";
  dc:title "indigenous peoples health program";
  rdfs:comment "Definition: Services provided directly and through contracted and operated indigenous peoples health programs.\r\n\n                        \n                           Example: Indian Health Service in the U.S.";
  dcterms:description "Definition: Services provided directly and through contracted and operated indigenous peoples health programs.\r\n\n                        \n                           Example: Indian Health Service in the U.S.".

cs:ActCode\#MILITARY rdfs:subClassOf cs:ActCode\#%5fActProgramTypeCode;
  rdfs:label "military health program";
  dc:title "military health program";
  rdfs:comment "Definition: A government program that provides coverage for health services to military personnel, retirees, and dependents.  A covered party who is a subscriber can choose from among Fee-for-Service (FFS) plans, and their Preferred Provider Organizations (PPO), or Plans offering a Point of Service (POS) Product, or Health Maintenance Organizations.\r\n\n                        \n                           Example: In the U.S., TRICARE, CHAMPUS.";
  dcterms:description "Definition: A government program that provides coverage for health services to military personnel, retirees, and dependents.  A covered party who is a subscriber can choose from among Fee-for-Service (FFS) plans, and their Preferred Provider Organizations (PPO), or Plans offering a Point of Service (POS) Product, or Health Maintenance Organizations.\r\n\n                        \n                           Example: In the U.S., TRICARE, CHAMPUS.".

cs:ActCode\#RETIRE rdfs:subClassOf cs:ActCode\#%5fActProgramTypeCode;
  rdfs:label "retiree health program";
  dc:title "retiree health program";
  rdfs:comment "Definition: A government mandated program with specific eligibility requirements based on premium contributions made during employment, length of employment, age, and employment status, e.g., being retired, disabled, or a dependent of a covered party under this program.   Benefits typically include ambulatory, inpatient, and long-term care, such as hospice care, home health care and respite care.";
  dcterms:description "Definition: A government mandated program with specific eligibility requirements based on premium contributions made during employment, length of employment, age, and employment status, e.g., being retired, disabled, or a dependent of a covered party under this program.   Benefits typically include ambulatory, inpatient, and long-term care, such as hospice care, home health care and respite care.".

cs:ActCode\#SOCIAL rdfs:subClassOf cs:ActCode\#%5fActProgramTypeCode;
  rdfs:label "social service program";
  dc:title "social service program";
  rdfs:comment "Definition: A social service program funded by a public or governmental entity.\r\n\n                        \n                           Example: Programs providing habilitation, food, lodging, medicine, transportation, equipment, devices, products, education, training, counseling, alteration of living or work space, and other resources to persons meeting eligibility criteria.";
  dcterms:description "Definition: A social service program funded by a public or governmental entity.\r\n\n                        \n                           Example: Programs providing habilitation, food, lodging, medicine, transportation, equipment, devices, products, education, training, counseling, alteration of living or work space, and other resources to persons meeting eligibility criteria.".

cs:ActCode\#VET rdfs:subClassOf cs:ActCode\#%5fActProgramTypeCode;
  rdfs:label "veteran health program";
  dc:title "veteran health program";
  rdfs:comment "Definition: Services provided directly and through contracted and operated veteran health programs.";
  dcterms:description "Definition: Services provided directly and through contracted and operated veteran health programs.".

cs:ActCode\#%5fActDetectedIssueManagementCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActDetectedIssueManagementCode";
  dc:title "ActDetectedIssueManagementCode";
  rdfs:comment "Codes dealing with the management of Detected Issue observations";
  dcterms:description "Codes dealing with the management of Detected Issue observations".

cs:ActCode\#%5fActAdministrativeDetectedIssueManagementCode rdfs:subClassOf cs:ActCode\#%5fActDetectedIssueManagementCode;
  rdfs:label "ActAdministrativeDetectedIssueManagementCode";
  dc:title "ActAdministrativeDetectedIssueManagementCode";
  rdfs:comment "Codes dealing with the management of Detected Issue observations for the administrative and patient administrative acts domains.";
  dcterms:description "Codes dealing with the management of Detected Issue observations for the administrative and patient administrative acts domains.".

cs:ActCode\#%5fAuthorizationIssueManagementCode rdfs:subClassOf cs:ActCode\#%5fActAdministrativeDetectedIssueManagementCode;
  rdfs:label "Authorization Issue Management Code";
  dc:title "Authorization Issue Management Code";
  rdfs:comment "Authorization Issue Management Code";
  dcterms:description "Authorization Issue Management Code".

cs:ActCode\#EMAUTH rdfs:subClassOf cs:ActCode\#%5fAuthorizationIssueManagementCode;
  rdfs:label "emergency authorization override";
  dc:title "emergency authorization override";
  rdfs:comment "Used to temporarily override normal authorization rules to gain access to data in a case of emergency. Use of this override code will typically be monitored, and a procedure to verify its proper use may be triggered when used.";
  dcterms:description "Used to temporarily override normal authorization rules to gain access to data in a case of emergency. Use of this override code will typically be monitored, and a procedure to verify its proper use may be triggered when used.".

cs:ActCode\#21 rdfs:subClassOf cs:ActCode\#EMAUTH;
  rdfs:label "authorization confirmed";
  dc:title "authorization confirmed";
  rdfs:comment "Description: Indicates that the permissions have been externally verified and the request should be processed.";
  dcterms:description "Description: Indicates that the permissions have been externally verified and the request should be processed.".

cs:ActCode\#1 rdfs:subClassOf cs:ActCode\#%5fActDetectedIssueManagementCode;
  rdfs:label "Therapy Appropriate";
  dc:title "Therapy Appropriate";
  rdfs:comment "Confirmed drug therapy appropriate";
  dcterms:description "Confirmed drug therapy appropriate".

cs:ActCode\#19 rdfs:subClassOf cs:ActCode\#1;
  rdfs:label "Consulted Supplier";
  dc:title "Consulted Supplier";
  rdfs:comment "Consulted other supplier/pharmacy, therapy confirmed";
  dcterms:description "Consulted other supplier/pharmacy, therapy confirmed".

cs:ActCode\#2 rdfs:subClassOf cs:ActCode\#1;
  rdfs:label "Assessed Patient";
  dc:title "Assessed Patient";
  rdfs:comment "Assessed patient, therapy is appropriate";
  dcterms:description "Assessed patient, therapy is appropriate".

cs:ActCode\#22 rdfs:subClassOf cs:ActCode\#1;
  rdfs:label "appropriate indication or diagnosis";
  dc:title "appropriate indication or diagnosis";
  rdfs:comment "Description: The patient has the appropriate indication or diagnosis for the action to be taken.";
  dcterms:description "Description: The patient has the appropriate indication or diagnosis for the action to be taken.".

cs:ActCode\#23 rdfs:subClassOf cs:ActCode\#1;
  rdfs:label "prior therapy documented";
  dc:title "prior therapy documented";
  rdfs:comment "Description: It has been confirmed that the appropriate pre-requisite therapy has been tried.";
  dcterms:description "Description: It has been confirmed that the appropriate pre-requisite therapy has been tried.".

cs:ActCode\#3 rdfs:subClassOf cs:ActCode\#1;
  rdfs:label "Patient Explanation";
  dc:title "Patient Explanation";
  rdfs:comment "Patient gave adequate explanation";
  dcterms:description "Patient gave adequate explanation".

cs:ActCode\#4 rdfs:subClassOf cs:ActCode\#1;
  rdfs:label "Consulted Other Source";
  dc:title "Consulted Other Source";
  rdfs:comment "Consulted other supply source, therapy still appropriate";
  dcterms:description "Consulted other supply source, therapy still appropriate".

cs:ActCode\#5 rdfs:subClassOf cs:ActCode\#1;
  rdfs:label "Consulted Prescriber";
  dc:title "Consulted Prescriber";
  rdfs:comment "Consulted prescriber, therapy confirmed";
  dcterms:description "Consulted prescriber, therapy confirmed".

cs:ActCode\#6 rdfs:subClassOf cs:ActCode\#5;
  rdfs:label "Prescriber Declined Change";
  dc:title "Prescriber Declined Change";
  rdfs:comment "Consulted prescriber and recommended change, prescriber declined";
  dcterms:description "Consulted prescriber and recommended change, prescriber declined".

cs:ActCode\#7 rdfs:subClassOf cs:ActCode\#1;
  rdfs:label "Interacting Therapy No Longer Active/Planned";
  dc:title "Interacting Therapy No Longer Active/Planned";
  rdfs:comment "Concurrent therapy triggering alert is no longer on-going or planned";
  dcterms:description "Concurrent therapy triggering alert is no longer on-going or planned".

cs:ActCode\#14 rdfs:subClassOf cs:ActCode\#%5fActDetectedIssueManagementCode;
  rdfs:label "Supply Appropriate";
  dc:title "Supply Appropriate";
  rdfs:comment "Confirmed supply action appropriate";
  dcterms:description "Confirmed supply action appropriate".

cs:ActCode\#15 rdfs:subClassOf cs:ActCode\#14;
  rdfs:label "Replacement";
  dc:title "Replacement";
  rdfs:comment "Patient's existing supply was lost/wasted";
  dcterms:description "Patient's existing supply was lost/wasted".

cs:ActCode\#16 rdfs:subClassOf cs:ActCode\#14;
  rdfs:label "Vacation Supply";
  dc:title "Vacation Supply";
  rdfs:comment "Supply date is due to patient vacation";
  dcterms:description "Supply date is due to patient vacation".

cs:ActCode\#17 rdfs:subClassOf cs:ActCode\#14;
  rdfs:label "Weekend Supply";
  dc:title "Weekend Supply";
  rdfs:comment "Supply date is intended to carry patient over weekend";
  dcterms:description "Supply date is intended to carry patient over weekend".

cs:ActCode\#18 rdfs:subClassOf cs:ActCode\#14;
  rdfs:label "Leave of Absence";
  dc:title "Leave of Absence";
  rdfs:comment "Supply is intended for use during a leave of absence from an institution.";
  dcterms:description "Supply is intended for use during a leave of absence from an institution.".

cs:ActCode\#20 rdfs:subClassOf cs:ActCode\#14;
  rdfs:label "additional quantity on separate dispense";
  dc:title "additional quantity on separate dispense";
  rdfs:comment "Description: Supply is different than expected as an additional quantity has been supplied in a separate dispense.";
  dcterms:description "Description: Supply is different than expected as an additional quantity has been supplied in a separate dispense.".

cs:ActCode\#8 rdfs:subClassOf cs:ActCode\#%5fActDetectedIssueManagementCode;
  rdfs:label "Other Action Taken";
  dc:title "Other Action Taken";
  rdfs:comment "Order is performed as issued, but other action taken to mitigate potential adverse effects";
  dcterms:description "Order is performed as issued, but other action taken to mitigate potential adverse effects".

cs:ActCode\#10 rdfs:subClassOf cs:ActCode\#8;
  rdfs:label "Provided Patient Education";
  dc:title "Provided Patient Education";
  rdfs:comment "Provided education or training to the patient on appropriate therapy use";
  dcterms:description "Provided education or training to the patient on appropriate therapy use".

cs:ActCode\#11 rdfs:subClassOf cs:ActCode\#8;
  rdfs:label "Added Concurrent Therapy";
  dc:title "Added Concurrent Therapy";
  rdfs:comment "Instituted an additional therapy to mitigate potential negative effects";
  dcterms:description "Instituted an additional therapy to mitigate potential negative effects".

cs:ActCode\#12 rdfs:subClassOf cs:ActCode\#8;
  rdfs:label "Temporarily Suspended Concurrent Therapy";
  dc:title "Temporarily Suspended Concurrent Therapy";
  rdfs:comment "Suspended existing therapy that triggered interaction for the duration of this therapy";
  dcterms:description "Suspended existing therapy that triggered interaction for the duration of this therapy".

cs:ActCode\#13 rdfs:subClassOf cs:ActCode\#8;
  rdfs:label "Stopped Concurrent Therapy";
  dc:title "Stopped Concurrent Therapy";
  rdfs:comment "Aborted existing therapy that triggered interaction.";
  dcterms:description "Aborted existing therapy that triggered interaction.".

cs:ActCode\#9 rdfs:subClassOf cs:ActCode\#8;
  rdfs:label "Instituted Ongoing Monitoring Program";
  dc:title "Instituted Ongoing Monitoring Program";
  rdfs:comment "Arranged to monitor patient for adverse effects";
  dcterms:description "Arranged to monitor patient for adverse effects".

cs:ActCode\#%5fActExposureCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActExposureCode";
  dc:title "ActExposureCode";
  rdfs:comment "Concepts that identify the type or nature of exposure interaction.  Examples include \"household\", \"care giver\", \"intimate partner\", \"common space\", \"common substance\", etc. to further describe the nature of interaction.";
  dcterms:description "Concepts that identify the type or nature of exposure interaction.  Examples include \"household\", \"care giver\", \"intimate partner\", \"common space\", \"common substance\", etc. to further describe the nature of interaction.".

cs:ActCode\#CHLDCARE rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Day care - Child care Interaction";
  dc:title "Day care - Child care Interaction";
  rdfs:comment "Description: Exposure participants' interaction occurred in a child care setting";
  dcterms:description "Description: Exposure participants' interaction occurred in a child care setting".

cs:ActCode\#CONVEYNC rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Common Conveyance Interaction";
  dc:title "Common Conveyance Interaction";
  rdfs:comment "Description: An interaction where the exposure participants traveled in/on the same vehicle (not necessarily concurrently, e.g. both are passengers of the same plane, but on different flights of that plane).";
  dcterms:description "Description: An interaction where the exposure participants traveled in/on the same vehicle (not necessarily concurrently, e.g. both are passengers of the same plane, but on different flights of that plane).".

cs:ActCode\#HLTHCARE rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Health Care Interaction - Not Patient Care";
  dc:title "Health Care Interaction - Not Patient Care";
  rdfs:comment "Description: Exposure participants' interaction occurred during the course of health care delivery or in a health care delivery setting, but did not involve the direct provision of care (e.g. a janitor cleaning a patient's hospital room).";
  dcterms:description "Description: Exposure participants' interaction occurred during the course of health care delivery or in a health care delivery setting, but did not involve the direct provision of care (e.g. a janitor cleaning a patient's hospital room).".

cs:ActCode\#HOMECARE rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Care Giver Interaction";
  dc:title "Care Giver Interaction";
  rdfs:comment "Description: Exposure interaction occurred in context of one providing care for the other, i.e. a babysitter providing care for a child, a home-care aide providing assistance to a paraplegic.";
  dcterms:description "Description: Exposure interaction occurred in context of one providing care for the other, i.e. a babysitter providing care for a child, a home-care aide providing assistance to a paraplegic.".

cs:ActCode\#HOSPPTNT rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Hospital Patient Interaction";
  dc:title "Hospital Patient Interaction";
  rdfs:comment "Description: Exposure participants' interaction occurred when both were patients being treated in the same (acute) health care delivery facility.";
  dcterms:description "Description: Exposure participants' interaction occurred when both were patients being treated in the same (acute) health care delivery facility.".

cs:ActCode\#HOSPVSTR rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Hospital Visitor Interaction";
  dc:title "Hospital Visitor Interaction";
  rdfs:comment "Description: Exposure participants' interaction occurred when one visited the other who was a patient being treated in a health care delivery facility.";
  dcterms:description "Description: Exposure participants' interaction occurred when one visited the other who was a patient being treated in a health care delivery facility.".

cs:ActCode\#HOUSEHLD rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Household Interaction";
  dc:title "Household Interaction";
  rdfs:comment "Description: Exposure interaction occurred in context of domestic interaction, i.e. both participants reside in the same household.";
  dcterms:description "Description: Exposure interaction occurred in context of domestic interaction, i.e. both participants reside in the same household.".

cs:ActCode\#INMATE rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Inmate Interaction";
  dc:title "Inmate Interaction";
  rdfs:comment "Description: Exposure participants' interaction occurred in the course of one or both participants being incarcerated at a correctional facility";
  dcterms:description "Description: Exposure participants' interaction occurred in the course of one or both participants being incarcerated at a correctional facility".

cs:ActCode\#INTIMATE rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Intimate Interaction";
  dc:title "Intimate Interaction";
  rdfs:comment "Description: Exposure interaction was intimate, i.e. participants are intimate companions (e.g. spouses, domestic partners).";
  dcterms:description "Description: Exposure interaction was intimate, i.e. participants are intimate companions (e.g. spouses, domestic partners).".

cs:ActCode\#LTRMCARE rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Long Term Care Facility Interaction";
  dc:title "Long Term Care Facility Interaction";
  rdfs:comment "Description: Exposure participants' interaction occurred in the course of one or both participants being resident at a long term care facility (second participant may be a visitor, worker, resident or a physical place or object within the facility).";
  dcterms:description "Description: Exposure participants' interaction occurred in the course of one or both participants being resident at a long term care facility (second participant may be a visitor, worker, resident or a physical place or object within the facility).".

cs:ActCode\#PLACE rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Common Space Interaction";
  dc:title "Common Space Interaction";
  rdfs:comment "Description: An interaction where the exposure participants were both present in the same location/place/space.";
  dcterms:description "Description: An interaction where the exposure participants were both present in the same location/place/space.".

cs:ActCode\#PTNTCARE rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Health Care Interaction - Patient Care";
  dc:title "Health Care Interaction - Patient Care";
  rdfs:comment "Description: Exposure participants' interaction occurred during the course of  health care delivery by a provider (e.g. a physician treating a patient in her office).";
  dcterms:description "Description: Exposure participants' interaction occurred during the course of  health care delivery by a provider (e.g. a physician treating a patient in her office).".

cs:ActCode\#SCHOOL2 rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "School Interaction";
  dc:title "School Interaction";
  rdfs:comment "Description: Exposure participants' interaction occurred in an academic setting (e.g., participants are fellow students, or student and teacher).";
  dcterms:description "Description: Exposure participants' interaction occurred in an academic setting (e.g., participants are fellow students, or student and teacher).".

cs:ActCode\#SOCIAL2 rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Social/Extended Family Interaction";
  dc:title "Social/Extended Family Interaction";
  rdfs:comment "Description: An interaction where the exposure participants are social associates or members of the same extended family";
  dcterms:description "Description: An interaction where the exposure participants are social associates or members of the same extended family".

cs:ActCode\#SUBSTNCE rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Common Substance Interaction";
  dc:title "Common Substance Interaction";
  rdfs:comment "Description: An interaction where the exposure participants shared or co-used a common substance (e.g. drugs, needles, or common food item).";
  dcterms:description "Description: An interaction where the exposure participants shared or co-used a common substance (e.g. drugs, needles, or common food item).".

cs:ActCode\#TRAVINT rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Common Travel Interaction";
  dc:title "Common Travel Interaction";
  rdfs:comment "Description: An interaction where the exposure participants traveled together in/on the same vehicle/trip (e.g. concurrent co-passengers).";
  dcterms:description "Description: An interaction where the exposure participants traveled together in/on the same vehicle/trip (e.g. concurrent co-passengers).".

cs:ActCode\#WORK2 rdfs:subClassOf cs:ActCode\#%5fActExposureCode;
  rdfs:label "Work Interaction";
  dc:title "Work Interaction";
  rdfs:comment "Description: Exposure interaction occurred in a work setting, i.e. participants are co-workers.";
  dcterms:description "Description: Exposure interaction occurred in a work setting, i.e. participants are co-workers.".

cs:ActCode\#%5fActFinancialTransactionCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActFinancialTransactionCode";
  dc:title "ActFinancialTransactionCode";
  rdfs:comment "ActFinancialTransactionCode";
  dcterms:description "ActFinancialTransactionCode".

cs:ActCode\#CHRG rdfs:subClassOf cs:ActCode\#%5fActFinancialTransactionCode;
  rdfs:label "Standard Charge";
  dc:title "Standard Charge";
  rdfs:comment "A type of transaction that represents a charge for a service or product.  Expressed in monetary terms.";
  dcterms:description "A type of transaction that represents a charge for a service or product.  Expressed in monetary terms.".

cs:ActCode\#REV rdfs:subClassOf cs:ActCode\#%5fActFinancialTransactionCode;
  rdfs:label "Standard Charge Reversal";
  dc:title "Standard Charge Reversal";
  rdfs:comment "A type of transaction that represents a reversal of a previous charge for a service or product. Expressed in monetary terms.  It has the opposite effect of a standard charge.";
  dcterms:description "A type of transaction that represents a reversal of a previous charge for a service or product. Expressed in monetary terms.  It has the opposite effect of a standard charge.".

cs:ActCode\#%5fActIncidentCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActIncidentCode";
  dc:title "ActIncidentCode";
  rdfs:comment "Set of codes indicating the type of incident or accident.";
  dcterms:description "Set of codes indicating the type of incident or accident.".

cs:ActCode\#MVA rdfs:subClassOf cs:ActCode\#%5fActIncidentCode;
  rdfs:label "Motor vehicle accident";
  dc:title "Motor vehicle accident";
  rdfs:comment "Incident or accident as the result of a motor vehicle accident";
  dcterms:description "Incident or accident as the result of a motor vehicle accident".

cs:ActCode\#SCHOOL rdfs:subClassOf cs:ActCode\#%5fActIncidentCode;
  rdfs:label "School Accident";
  dc:title "School Accident";
  rdfs:comment "Incident or accident is the result of a school place accident.";
  dcterms:description "Incident or accident is the result of a school place accident.".

cs:ActCode\#SPT rdfs:subClassOf cs:ActCode\#%5fActIncidentCode;
  rdfs:label "Sporting Accident";
  dc:title "Sporting Accident";
  rdfs:comment "Incident or accident is the result of a sporting accident.";
  dcterms:description "Incident or accident is the result of a sporting accident.".

cs:ActCode\#WPA rdfs:subClassOf cs:ActCode\#%5fActIncidentCode;
  rdfs:label "Workplace accident";
  dc:title "Workplace accident";
  rdfs:comment "Incident or accident is the result of a work place accident";
  dcterms:description "Incident or accident is the result of a work place accident".

cs:ActCode\#%5fActInformationAccessCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActInformationAccessCode";
  dc:title "ActInformationAccessCode";
  rdfs:comment "Description: The type of health information to which the subject of the information or the subject's delegate consents or dissents.";
  dcterms:description "Description: The type of health information to which the subject of the information or the subject's delegate consents or dissents.".

cs:ActCode\#ACADR rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "adverse drug reaction access";
  dc:title "adverse drug reaction access";
  rdfs:comment "Description: Provide consent to collect, use, disclose, or access adverse drug reaction information for a patient.";
  dcterms:description "Description: Provide consent to collect, use, disclose, or access adverse drug reaction information for a patient.".

cs:ActCode\#ACALL rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "all access";
  dc:title "all access";
  rdfs:comment "Description: Provide consent to collect, use, disclose, or access all information for a patient.";
  dcterms:description "Description: Provide consent to collect, use, disclose, or access all information for a patient.".

cs:ActCode\#ACALLG rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "allergy access";
  dc:title "allergy access";
  rdfs:comment "Description: Provide consent to collect, use, disclose, or access allergy information for a patient.";
  dcterms:description "Description: Provide consent to collect, use, disclose, or access allergy information for a patient.".

cs:ActCode\#ACCONS rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "informational consent access";
  dc:title "informational consent access";
  rdfs:comment "Description: Provide consent to collect, use, disclose, or access informational consent information for a patient.";
  dcterms:description "Description: Provide consent to collect, use, disclose, or access informational consent information for a patient.".

cs:ActCode\#ACDEMO rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "demographics access";
  dc:title "demographics access";
  rdfs:comment "Description: Provide consent to collect, use, disclose, or access demographics information for a patient.";
  dcterms:description "Description: Provide consent to collect, use, disclose, or access demographics information for a patient.".

cs:ActCode\#ACDI rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "diagnostic imaging access";
  dc:title "diagnostic imaging access";
  rdfs:comment "Description: Provide consent to collect, use, disclose, or access diagnostic imaging information for a patient.";
  dcterms:description "Description: Provide consent to collect, use, disclose, or access diagnostic imaging information for a patient.".

cs:ActCode\#ACIMMUN rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "immunization access";
  dc:title "immunization access";
  rdfs:comment "Description: Provide consent to collect, use, disclose, or access immunization information for a patient.";
  dcterms:description "Description: Provide consent to collect, use, disclose, or access immunization information for a patient.".

cs:ActCode\#ACLAB rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "lab test result access";
  dc:title "lab test result access";
  rdfs:comment "Description: Provide consent to collect, use, disclose, or access lab test result information for a patient.";
  dcterms:description "Description: Provide consent to collect, use, disclose, or access lab test result information for a patient.".

cs:ActCode\#ACMED rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "medication access";
  dc:title "medication access";
  rdfs:comment "Description: Provide consent to collect, use, disclose, or access medical condition information for a patient.";
  dcterms:description "Description: Provide consent to collect, use, disclose, or access medical condition information for a patient.".

cs:ActCode\#ACMEDC rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "medical condition access";
  dc:title "medical condition access";
  rdfs:comment "Definition: Provide consent to view or access medical condition information for a patient.";
  dcterms:description "Definition: Provide consent to view or access medical condition information for a patient.".

cs:ActCode\#ACMEN rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "mental health access";
  dc:title "mental health access";
  rdfs:comment "Description:Provide consent to collect, use, disclose, or access mental health information for a patient.";
  dcterms:description "Description:Provide consent to collect, use, disclose, or access mental health information for a patient.".

cs:ActCode\#ACOBS rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "common observations access";
  dc:title "common observations access";
  rdfs:comment "Description: Provide consent to collect, use, disclose, or access common observation information for a patient.";
  dcterms:description "Description: Provide consent to collect, use, disclose, or access common observation information for a patient.".

cs:ActCode\#ACPOLPRG rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "policy or program information access";
  dc:title "policy or program information access";
  rdfs:comment "Description: Provide consent to collect, use, disclose, or access coverage policy or program for a patient.";
  dcterms:description "Description: Provide consent to collect, use, disclose, or access coverage policy or program for a patient.".

cs:ActCode\#ACPROV rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "provider information access";
  dc:title "provider information access";
  rdfs:comment "Description: Provide consent to collect, use, disclose, or access provider information for a patient.";
  dcterms:description "Description: Provide consent to collect, use, disclose, or access provider information for a patient.".

cs:ActCode\#ACPSERV rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "professional service access";
  dc:title "professional service access";
  rdfs:comment "Description: Provide consent to collect, use, disclose, or access professional service information for a patient.";
  dcterms:description "Description: Provide consent to collect, use, disclose, or access professional service information for a patient.".

cs:ActCode\#ACSUBSTAB rdfs:subClassOf cs:ActCode\#%5fActInformationAccessCode;
  rdfs:label "substance abuse access";
  dc:title "substance abuse access";
  rdfs:comment "Description:Provide consent to collect, use, disclose, or access substance abuse information for a patient.";
  dcterms:description "Description:Provide consent to collect, use, disclose, or access substance abuse information for a patient.".

cs:ActCode\#%5fActInformationAccessContextCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActInformationAccessContextCode";
  dc:title "ActInformationAccessContextCode";
  rdfs:comment "Concepts conveying the context in which authorization given under jurisdictional law, by organizational policy, or by a patient consent directive permits the collection, access, use or disclosure of specified patient health information.";
  dcterms:description "Concepts conveying the context in which authorization given under jurisdictional law, by organizational policy, or by a patient consent directive permits the collection, access, use or disclosure of specified patient health information.".

cs:ActCode\#INFAUT rdfs:subClassOf cs:ActCode\#%5fActInformationAccessContextCode;
  rdfs:label "authorized information transfer";
  dc:title "authorized information transfer";
  rdfs:comment "Authorization to collect, access, use, or disclose specified patient health information in accordance with jurisdictional law, organizational policy, or a patient's consent directive, which may be implied, deemed, opt-in, opt-out, or explicit.";
  dcterms:description "Authorization to collect, access, use, or disclose specified patient health information in accordance with jurisdictional law, organizational policy, or a patient's consent directive, which may be implied, deemed, opt-in, opt-out, or explicit.".

cs:ActCode\#INFCON rdfs:subClassOf cs:ActCode\#INFAUT;
  rdfs:label "after explicit consent";
  dc:title "after explicit consent";
  rdfs:comment "Authorization to collect, access, use, or disclose specified patient health information as explicitly consented to by the subject of the information or the subject's representative.";
  dcterms:description "Authorization to collect, access, use, or disclose specified patient health information as explicitly consented to by the subject of the information or the subject's representative.".

cs:ActCode\#INFCRT rdfs:subClassOf cs:ActCode\#%5fActInformationAccessContextCode;
  rdfs:label "only on court order";
  dc:title "only on court order";
  rdfs:comment "Authorization to collect, access, use, or disclose specified patient health information in accordance with judicial system protocol, such as in the case of a subpoena or court order.";
  dcterms:description "Authorization to collect, access, use, or disclose specified patient health information in accordance with judicial system protocol, such as in the case of a subpoena or court order.".

cs:ActCode\#INFDNG rdfs:subClassOf cs:ActCode\#%5fActInformationAccessContextCode;
  rdfs:label "only if danger to others";
  dc:title "only if danger to others";
  rdfs:comment "Authorization to collect, access, use, or disclose specified patient health information where deemed necessary to avert potential danger to other persons in accordance with jurisdictional law, organizational policy, or standards of practice.  For example, disclosure about a person threatening violence.";
  dcterms:description "Authorization to collect, access, use, or disclose specified patient health information where deemed necessary to avert potential danger to other persons in accordance with jurisdictional law, organizational policy, or standards of practice.  For example, disclosure about a person threatening violence.".

cs:ActCode\#INFEMER rdfs:subClassOf cs:ActCode\#%5fActInformationAccessContextCode;
  rdfs:label "only in an emergency";
  dc:title "only in an emergency";
  rdfs:comment "Authorization to collect, access, use, or disclose specified patient health information in accordance with emergency information transfer protocol dictated by jurisdictional law, organization policy, or standards of practice. For example, sharing of health information during disaster response.";
  dcterms:description "Authorization to collect, access, use, or disclose specified patient health information in accordance with emergency information transfer protocol dictated by jurisdictional law, organization policy, or standards of practice. For example, sharing of health information during disaster response.".

cs:ActCode\#INFPWR rdfs:subClassOf cs:ActCode\#%5fActInformationAccessContextCode;
  rdfs:label "only if public welfare risk";
  dc:title "only if public welfare risk";
  rdfs:comment "Authorization to collect, access, use, or disclose specified patient health information necessary to avert potential public welfare risk in accordance with jurisdictional law, organizational policy, or standards of practice.  For example, reporting that a person is a victim of abuse or demonstrating suicidal tendencies.";
  dcterms:description "Authorization to collect, access, use, or disclose specified patient health information necessary to avert potential public welfare risk in accordance with jurisdictional law, organizational policy, or standards of practice.  For example, reporting that a person is a victim of abuse or demonstrating suicidal tendencies.".

cs:ActCode\#INFREG rdfs:subClassOf cs:ActCode\#%5fActInformationAccessContextCode;
  rdfs:label "regulatory information transfer";
  dc:title "regulatory information transfer";
  rdfs:comment "Authorization to collect, access, use, or disclose specified patient health information for public health, welfare, and safety purposes in accordance with jurisdictional law, organizational policy, or standards of practice.  For example, public health reporting of notifiable conditions.";
  dcterms:description "Authorization to collect, access, use, or disclose specified patient health information for public health, welfare, and safety purposes in accordance with jurisdictional law, organizational policy, or standards of practice.  For example, public health reporting of notifiable conditions.".

cs:ActCode\#%5fActInformationCategoryCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActInformationCategoryCode";
  dc:title "ActInformationCategoryCode";
  rdfs:comment "Definition:Indicates the set of information types which may be manipulated or referenced, such as for recommending access restrictions.";
  dcterms:description "Definition:Indicates the set of information types which may be manipulated or referenced, such as for recommending access restrictions.".

cs:ActCode\#ALLCAT rdfs:subClassOf cs:ActCode\#%5fActInformationCategoryCode;
  rdfs:label "all categories";
  dc:title "all categories";
  rdfs:comment "Description: All patient information.";
  dcterms:description "Description: All patient information.".

cs:ActCode\#ALLGCAT rdfs:subClassOf cs:ActCode\#%5fActInformationCategoryCode;
  rdfs:label "allergy category";
  dc:title "allergy category";
  rdfs:comment "Definition:All information pertaining to a patient's allergy and intolerance records.";
  dcterms:description "Definition:All information pertaining to a patient's allergy and intolerance records.".

cs:ActCode\#ARCAT rdfs:subClassOf cs:ActCode\#%5fActInformationCategoryCode;
  rdfs:label "adverse drug reaction category";
  dc:title "adverse drug reaction category";
  rdfs:comment "Description: All information pertaining to a patient's adverse drug reactions.";
  dcterms:description "Description: All information pertaining to a patient's adverse drug reactions.".

cs:ActCode\#COBSCAT rdfs:subClassOf cs:ActCode\#%5fActInformationCategoryCode;
  rdfs:label "common observation category";
  dc:title "common observation category";
  rdfs:comment "Definition:All information pertaining to a patient's common observation records (height, weight, blood pressure, temperature, etc.).";
  dcterms:description "Definition:All information pertaining to a patient's common observation records (height, weight, blood pressure, temperature, etc.).".

cs:ActCode\#DEMOCAT rdfs:subClassOf cs:ActCode\#%5fActInformationCategoryCode;
  rdfs:label "demographics category";
  dc:title "demographics category";
  rdfs:comment "Definition:All information pertaining to a patient's demographics (such as name, date of birth, gender, address, etc).";
  dcterms:description "Definition:All information pertaining to a patient's demographics (such as name, date of birth, gender, address, etc).".

cs:ActCode\#DICAT rdfs:subClassOf cs:ActCode\#%5fActInformationCategoryCode;
  rdfs:label "diagnostic image category";
  dc:title "diagnostic image category";
  rdfs:comment "Definition:All information pertaining to a patient's diagnostic image records (orders & results).";
  dcterms:description "Definition:All information pertaining to a patient's diagnostic image records (orders & results).".

cs:ActCode\#IMMUCAT rdfs:subClassOf cs:ActCode\#%5fActInformationCategoryCode;
  rdfs:label "immunization category";
  dc:title "immunization category";
  rdfs:comment "Definition:All information pertaining to a patient's vaccination records.";
  dcterms:description "Definition:All information pertaining to a patient's vaccination records.".

cs:ActCode\#LABCAT rdfs:subClassOf cs:ActCode\#%5fActInformationCategoryCode;
  rdfs:label "lab test category";
  dc:title "lab test category";
  rdfs:comment "Description: All information pertaining to a patient's lab test records (orders & results)";
  dcterms:description "Description: All information pertaining to a patient's lab test records (orders & results)".

cs:ActCode\#MEDCCAT rdfs:subClassOf cs:ActCode\#%5fActInformationCategoryCode;
  rdfs:label "medical condition category";
  dc:title "medical condition category";
  rdfs:comment "Definition:All information pertaining to a patient's medical condition records.";
  dcterms:description "Definition:All information pertaining to a patient's medical condition records.".

cs:ActCode\#MENCAT rdfs:subClassOf cs:ActCode\#%5fActInformationCategoryCode;
  rdfs:label "mental health category";
  dc:title "mental health category";
  rdfs:comment "Description: All information pertaining to a patient's mental health records.";
  dcterms:description "Description: All information pertaining to a patient's mental health records.".

cs:ActCode\#PSVCCAT rdfs:subClassOf cs:ActCode\#%5fActInformationCategoryCode;
  rdfs:label "professional service category";
  dc:title "professional service category";
  rdfs:comment "Definition:All information pertaining to a patient's professional service records (such as smoking cessation, counseling, medication review, mental health).";
  dcterms:description "Definition:All information pertaining to a patient's professional service records (such as smoking cessation, counseling, medication review, mental health).".

cs:ActCode\#RXCAT rdfs:subClassOf cs:ActCode\#%5fActInformationCategoryCode;
  rdfs:label "medication category";
  dc:title "medication category";
  rdfs:comment "Definition:All information pertaining to a patient's medication records (orders, dispenses and other active medications).";
  dcterms:description "Definition:All information pertaining to a patient's medication records (orders, dispenses and other active medications).".

cs:ActCode\#%5fActInvoiceElementCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActInvoiceElementCode";
  dc:title "ActInvoiceElementCode";
  rdfs:comment "Type of invoice element that is used to assist in describing an Invoice that is either submitted for adjudication or for which is returned on adjudication results.";
  dcterms:description "Type of invoice element that is used to assist in describing an Invoice that is either submitted for adjudication or for which is returned on adjudication results.".

cs:ActCode\#%5fActInvoiceAdjudicationPaymentCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceElementCode;
  rdfs:label "ActInvoiceAdjudicationPaymentCode";
  dc:title "ActInvoiceAdjudicationPaymentCode";
  rdfs:comment "Codes representing a grouping of invoice elements (totals, sub-totals), reported through a Payment Advice or a Statement of Financial Activity (SOFA).  The code can represent summaries by day, location, payee and other cost elements such as bonus, retroactive adjustment and transaction fees.";
  dcterms:description "Codes representing a grouping of invoice elements (totals, sub-totals), reported through a Payment Advice or a Statement of Financial Activity (SOFA).  The code can represent summaries by day, location, payee and other cost elements such as bonus, retroactive adjustment and transaction fees.".

cs:ActCode\#%5fActInvoiceAdjudicationPaymentGroupCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentCode;
  rdfs:label "ActInvoiceAdjudicationPaymentGroupCode";
  dc:title "ActInvoiceAdjudicationPaymentGroupCode";
  rdfs:comment "Codes representing adjustments to a Payment Advice such as retroactive, clawback, garnishee, etc.";
  dcterms:description "Codes representing adjustments to a Payment Advice such as retroactive, clawback, garnishee, etc.".

cs:ActCode\#ALEC rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentGroupCode;
  rdfs:label "alternate electronic";
  dc:title "alternate electronic";
  rdfs:comment "Payment initiated by the payor as the result of adjudicating a submitted invoice that arrived to the payor from an electronic source that did not provide a conformant set of HL7 messages (e.g. web claim submission).";
  dcterms:description "Payment initiated by the payor as the result of adjudicating a submitted invoice that arrived to the payor from an electronic source that did not provide a conformant set of HL7 messages (e.g. web claim submission).".

cs:ActCode\#BONUS rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentGroupCode;
  rdfs:label "bonus";
  dc:title "bonus";
  rdfs:comment "Bonus payments based on performance, volume, etc. as agreed to by the payor.";
  dcterms:description "Bonus payments based on performance, volume, etc. as agreed to by the payor.".

cs:ActCode\#CFWD rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentGroupCode;
  rdfs:label "carry forward adjusment";
  dc:title "carry forward adjusment";
  rdfs:comment "An amount still owing to the payor but the payment is 0$ and this cannot be settled until a future payment is made.";
  dcterms:description "An amount still owing to the payor but the payment is 0$ and this cannot be settled until a future payment is made.".

cs:ActCode\#EDU rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentGroupCode;
  rdfs:label "education fees";
  dc:title "education fees";
  rdfs:comment "Fees deducted on behalf of a payee for tuition and continuing education.";
  dcterms:description "Fees deducted on behalf of a payee for tuition and continuing education.".

cs:ActCode\#EPYMT rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentGroupCode;
  rdfs:label "early payment fee";
  dc:title "early payment fee";
  rdfs:comment "Fees deducted on behalf of a payee for charges based on a shorter payment frequency (i.e. next day versus biweekly payments.";
  dcterms:description "Fees deducted on behalf of a payee for charges based on a shorter payment frequency (i.e. next day versus biweekly payments.".

cs:ActCode\#GARN rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentGroupCode;
  rdfs:label "garnishee";
  dc:title "garnishee";
  rdfs:comment "Fees deducted on behalf of a payee for charges based on a per-transaction or time-period (e.g. monthly) fee.";
  dcterms:description "Fees deducted on behalf of a payee for charges based on a per-transaction or time-period (e.g. monthly) fee.".

cs:ActCode\#INVOICE rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentGroupCode;
  rdfs:label "submitted invoice";
  dc:title "submitted invoice";
  rdfs:comment "Payment is based on a payment intent for a previously submitted Invoice, based on formal adjudication results..";
  dcterms:description "Payment is based on a payment intent for a previously submitted Invoice, based on formal adjudication results..".

cs:ActCode\#PINV rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentGroupCode;
  rdfs:label "paper invoice";
  dc:title "paper invoice";
  rdfs:comment "Payment initiated by the payor as the result of adjudicating a paper (original, may have been faxed) invoice.";
  dcterms:description "Payment initiated by the payor as the result of adjudicating a paper (original, may have been faxed) invoice.".

cs:ActCode\#PPRD rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentGroupCode;
  rdfs:label "prior period adjustment";
  dc:title "prior period adjustment";
  rdfs:comment "An amount that was owed to the payor as indicated, by a carry forward adjusment, in a previous payment advice";
  dcterms:description "An amount that was owed to the payor as indicated, by a carry forward adjusment, in a previous payment advice".

cs:ActCode\#PROA rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentGroupCode;
  rdfs:label "professional association deduction";
  dc:title "professional association deduction";
  rdfs:comment "Professional association fee that is collected by the payor from the practitioner/provider on behalf of the association";
  dcterms:description "Professional association fee that is collected by the payor from the practitioner/provider on behalf of the association".

cs:ActCode\#RECOV rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentGroupCode;
  rdfs:label "recovery";
  dc:title "recovery";
  rdfs:comment "Retroactive adjustment such as fee rate adjustment due to contract negotiations.";
  dcterms:description "Retroactive adjustment such as fee rate adjustment due to contract negotiations.".

cs:ActCode\#RETRO rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentGroupCode;
  rdfs:label "retro adjustment";
  dc:title "retro adjustment";
  rdfs:comment "Bonus payments based on performance, volume, etc. as agreed to by the payor.";
  dcterms:description "Bonus payments based on performance, volume, etc. as agreed to by the payor.".

cs:ActCode\#TRAN rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentGroupCode;
  rdfs:label "transaction fee";
  dc:title "transaction fee";
  rdfs:comment "Fees deducted on behalf of a payee for charges based on a per-transaction or time-period (e.g. monthly) fee.";
  dcterms:description "Fees deducted on behalf of a payee for charges based on a per-transaction or time-period (e.g. monthly) fee.".

cs:ActCode\#%5fActInvoiceAdjudicationPaymentSummaryCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentCode;
  rdfs:label "ActInvoiceAdjudicationPaymentSummaryCode";
  dc:title "ActInvoiceAdjudicationPaymentSummaryCode";
  rdfs:comment "Codes representing a grouping of invoice elements (totals, sub-totals), reported through a Payment Advice or a Statement of Financial Activity (SOFA).  The code can represent summaries by day, location, payee, etc.";
  dcterms:description "Codes representing a grouping of invoice elements (totals, sub-totals), reported through a Payment Advice or a Statement of Financial Activity (SOFA).  The code can represent summaries by day, location, payee, etc.".

cs:ActCode\#INVTYPE rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentSummaryCode;
  rdfs:label "invoice type";
  dc:title "invoice type";
  rdfs:comment "Transaction counts and value totals by invoice type (e.g. RXDINV - Pharmacy Dispense)";
  dcterms:description "Transaction counts and value totals by invoice type (e.g. RXDINV - Pharmacy Dispense)".

cs:ActCode\#PAYEE rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentSummaryCode;
  rdfs:label "payee";
  dc:title "payee";
  rdfs:comment "Transaction counts and value totals by each instance of an invoice payee.";
  dcterms:description "Transaction counts and value totals by each instance of an invoice payee.".

cs:ActCode\#PAYOR rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentSummaryCode;
  rdfs:label "payor";
  dc:title "payor";
  rdfs:comment "Transaction counts and value totals by each instance of an invoice payor.";
  dcterms:description "Transaction counts and value totals by each instance of an invoice payor.".

cs:ActCode\#SENDAPP rdfs:subClassOf cs:ActCode\#%5fActInvoiceAdjudicationPaymentSummaryCode;
  rdfs:label "sending application";
  dc:title "sending application";
  rdfs:comment "Transaction counts and value totals by each instance of a messaging application on a single processor. It is a registered identifier known to the receivers.";
  dcterms:description "Transaction counts and value totals by each instance of a messaging application on a single processor. It is a registered identifier known to the receivers.".

cs:ActCode\#%5fActInvoiceDetailCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceElementCode;
  rdfs:label "ActInvoiceDetailCode";
  dc:title "ActInvoiceDetailCode";
  rdfs:comment "Codes representing a service or product that is being invoiced (billed).  The code can represent such concepts as \"office visit\", \"drug X\", \"wheelchair\" and other billable items such as taxes, service charges and discounts.";
  dcterms:description "Codes representing a service or product that is being invoiced (billed).  The code can represent such concepts as \"office visit\", \"drug X\", \"wheelchair\" and other billable items such as taxes, service charges and discounts.".

cs:ActCode\#%5fActInvoiceDetailClinicalProductCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailCode;
  rdfs:label "ActInvoiceDetailClinicalProductCode";
  dc:title "ActInvoiceDetailClinicalProductCode";
  rdfs:comment "An identifying data string for healthcare products.";
  dcterms:description "An identifying data string for healthcare products.".

cs:ActCode\#UNSPSC rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailClinicalProductCode;
  rdfs:label "United Nations Standard Products and Services Classification";
  dc:title "United Nations Standard Products and Services Classification";
  rdfs:comment "Description:United Nations Standard Products and Services Classification, managed by Uniform Code Council (UCC): www.unspsc.org";
  dcterms:description "Description:United Nations Standard Products and Services Classification, managed by Uniform Code Council (UCC): www.unspsc.org".

cs:ActCode\#%5fActInvoiceDetailDrugProductCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailCode;
  rdfs:label "ActInvoiceDetailDrugProductCode";
  dc:title "ActInvoiceDetailDrugProductCode";
  rdfs:comment "An identifying data string for A substance used as a medication or in the preparation of medication.";
  dcterms:description "An identifying data string for A substance used as a medication or in the preparation of medication.".

cs:ActCode\#GTIN rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailDrugProductCode;
  rdfs:label "Global Trade Item Number";
  dc:title "Global Trade Item Number";
  rdfs:comment "Description:Global Trade Item Number is an identifier for trade items developed by GS1 (comprising the former EAN International and Uniform Code Council).";
  dcterms:description "Description:Global Trade Item Number is an identifier for trade items developed by GS1 (comprising the former EAN International and Uniform Code Council).".

cs:ActCode\#UPC rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailDrugProductCode;
  rdfs:label "Universal Product Code";
  dc:title "Universal Product Code";
  rdfs:comment "Description:Universal Product Code is one of a wide variety of bar code languages widely used in the United States and Canada for items in stores.";
  dcterms:description "Description:Universal Product Code is one of a wide variety of bar code languages widely used in the United States and Canada for items in stores.".

cs:ActCode\#%5fActInvoiceDetailGenericCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailCode;
  rdfs:label "ActInvoiceDetailGenericCode";
  dc:title "ActInvoiceDetailGenericCode";
  rdfs:comment "The detail item codes to identify charges or changes to the total billing of a claim due to insurance rules and payments.";
  dcterms:description "The detail item codes to identify charges or changes to the total billing of a claim due to insurance rules and payments.".

cs:ActCode\#%5fActInvoiceDetailGenericAdjudicatorCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericCode;
  rdfs:label "ActInvoiceDetailGenericAdjudicatorCode";
  dc:title "ActInvoiceDetailGenericAdjudicatorCode";
  rdfs:comment "The billable item codes to identify adjudicator specified components to the total billing of a claim.";
  dcterms:description "The billable item codes to identify adjudicator specified components to the total billing of a claim.".

cs:ActCode\#COIN rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericAdjudicatorCode;
  rdfs:label "coinsurance";
  dc:title "coinsurance";
  rdfs:comment "That portion of the eligible charges which a covered party must pay for each service and/or product. It is a percentage of the eligible amount for the service/product that is typically charged after the covered party has met the policy deductible.  This amount represents the covered party's coinsurance that is applied to a particular adjudication result. It is expressed as a negative dollar amount in adjudication results.";
  dcterms:description "That portion of the eligible charges which a covered party must pay for each service and/or product. It is a percentage of the eligible amount for the service/product that is typically charged after the covered party has met the policy deductible.  This amount represents the covered party's coinsurance that is applied to a particular adjudication result. It is expressed as a negative dollar amount in adjudication results.".

cs:ActCode\#COPAYMENT rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericAdjudicatorCode;
  rdfs:label "patient co-pay";
  dc:title "patient co-pay";
  rdfs:comment "That portion of the eligible charges which a covered party must pay for each service and/or product. It is a defined amount per service/product of the eligible amount for the service/product. This amount represents the covered party's copayment that is applied to a particular adjudication result. It is expressed as a negative dollar amount in adjudication results.";
  dcterms:description "That portion of the eligible charges which a covered party must pay for each service and/or product. It is a defined amount per service/product of the eligible amount for the service/product. This amount represents the covered party's copayment that is applied to a particular adjudication result. It is expressed as a negative dollar amount in adjudication results.".

cs:ActCode\#DEDUCTIBLE rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericAdjudicatorCode;
  rdfs:label "deductible";
  dc:title "deductible";
  rdfs:comment "That portion of the eligible charges which a covered party must pay in a particular period (e.g. annual) before the benefits are payable by the adjudicator. This amount represents the covered party's deductible that is applied to a particular adjudication result. It is expressed as a negative dollar amount in adjudication results.";
  dcterms:description "That portion of the eligible charges which a covered party must pay in a particular period (e.g. annual) before the benefits are payable by the adjudicator. This amount represents the covered party's deductible that is applied to a particular adjudication result. It is expressed as a negative dollar amount in adjudication results.".

cs:ActCode\#PAY rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericAdjudicatorCode;
  rdfs:label "payment";
  dc:title "payment";
  rdfs:comment "The guarantor, who may be the patient, pays the entire charge for a service. Reasons for such action may include: there is no insurance coverage for the service (e.g. cosmetic surgery); the patient wishes to self-pay for the service; or the insurer denies payment for the service due to contractual provisions such as the need for prior authorization.";
  dcterms:description "The guarantor, who may be the patient, pays the entire charge for a service. Reasons for such action may include: there is no insurance coverage for the service (e.g. cosmetic surgery); the patient wishes to self-pay for the service; or the insurer denies payment for the service due to contractual provisions such as the need for prior authorization.".

cs:ActCode\#SPEND rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericAdjudicatorCode;
  rdfs:label "spend down";
  dc:title "spend down";
  rdfs:comment "That total amount of the eligible charges which a covered party must periodically pay for services and/or products prior to the Medicaid program providing any coverage. This amount represents the covered party's spend down that is applied to a particular adjudication result. It is expressed as a negative dollar amount in adjudication results";
  dcterms:description "That total amount of the eligible charges which a covered party must periodically pay for services and/or products prior to the Medicaid program providing any coverage. This amount represents the covered party's spend down that is applied to a particular adjudication result. It is expressed as a negative dollar amount in adjudication results".

cs:ActCode\#COINS rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericAdjudicatorCode;
  rdfs:label "co-insurance";
  dc:title "co-insurance";
  rdfs:comment "The covered party pays a percentage of the cost of covered services.";
  dcterms:description "The covered party pays a percentage of the cost of covered services.".

cs:ActCode\#%5fActInvoiceDetailGenericModifierCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericCode;
  rdfs:label "ActInvoiceDetailGenericModifierCode";
  dc:title "ActInvoiceDetailGenericModifierCode";
  rdfs:comment "The billable item codes to identify modifications to a billable item charge. As for example after hours increase in the office visit fee.";
  dcterms:description "The billable item codes to identify modifications to a billable item charge. As for example after hours increase in the office visit fee.".

cs:ActCode\#AFTHRS rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericModifierCode;
  rdfs:label "non-normal hours";
  dc:title "non-normal hours";
  rdfs:comment "Premium paid on service fees in compensation for practicing outside of normal working hours.";
  dcterms:description "Premium paid on service fees in compensation for practicing outside of normal working hours.".

cs:ActCode\#ISOL rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericModifierCode;
  rdfs:label "isolation allowance";
  dc:title "isolation allowance";
  rdfs:comment "Premium paid on service fees in compensation for practicing in a remote location.";
  dcterms:description "Premium paid on service fees in compensation for practicing in a remote location.".

cs:ActCode\#OOO rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericModifierCode;
  rdfs:label "out of office";
  dc:title "out of office";
  rdfs:comment "Premium paid on service fees in compensation for practicing at a location other than normal working location.";
  dcterms:description "Premium paid on service fees in compensation for practicing at a location other than normal working location.".

cs:ActCode\#%5fActInvoiceDetailGenericProviderCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericCode;
  rdfs:label "ActInvoiceDetailGenericProviderCode";
  dc:title "ActInvoiceDetailGenericProviderCode";
  rdfs:comment "The billable item codes to identify provider supplied charges or changes to the total billing of a claim.";
  dcterms:description "The billable item codes to identify provider supplied charges or changes to the total billing of a claim.".

cs:ActCode\#CANCAPT rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericProviderCode;
  rdfs:label "cancelled appointment";
  dc:title "cancelled appointment";
  rdfs:comment "A charge to compensate the provider when a patient cancels an appointment with insufficient time for the provider to make another appointment with another patient.";
  dcterms:description "A charge to compensate the provider when a patient cancels an appointment with insufficient time for the provider to make another appointment with another patient.".

cs:ActCode\#DSC rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericProviderCode;
  rdfs:label "discount";
  dc:title "discount";
  rdfs:comment "A reduction in the amount charged as a percentage of the amount. For example a 5% discount for volume purchase.";
  dcterms:description "A reduction in the amount charged as a percentage of the amount. For example a 5% discount for volume purchase.".

cs:ActCode\#ESA rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericProviderCode;
  rdfs:label "extraordinary service assessment";
  dc:title "extraordinary service assessment";
  rdfs:comment "A premium on a service fee is requested because, due to extenuating circumstances, the service took an extraordinary amount of time or supplies.";
  dcterms:description "A premium on a service fee is requested because, due to extenuating circumstances, the service took an extraordinary amount of time or supplies.".

cs:ActCode\#FFSTOP rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericProviderCode;
  rdfs:label "fee for service top off";
  dc:title "fee for service top off";
  rdfs:comment "Under agreement between the parties (payor and provider), a guaranteed level of income is established for the provider over a specific, pre-determined period of time. The normal course of business for the provider is submission of fee-for-service claims. Should the fee-for-service income during the specified period of time be less than the agreed to amount, a top-up amount is paid to the provider equal to the difference between the fee-for-service total and the guaranteed income amount for that period of time. The details of the agreement may specify (or not) a requirement for repayment to the payor in the event that the fee-for-service income exceeds the guaranteed amount.";
  dcterms:description "Under agreement between the parties (payor and provider), a guaranteed level of income is established for the provider over a specific, pre-determined period of time. The normal course of business for the provider is submission of fee-for-service claims. Should the fee-for-service income during the specified period of time be less than the agreed to amount, a top-up amount is paid to the provider equal to the difference between the fee-for-service total and the guaranteed income amount for that period of time. The details of the agreement may specify (or not) a requirement for repayment to the payor in the event that the fee-for-service income exceeds the guaranteed amount.".

cs:ActCode\#FNLFEE rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericProviderCode;
  rdfs:label "final fee";
  dc:title "final fee";
  rdfs:comment "Anticipated or actual final fee associated with treating a patient.";
  dcterms:description "Anticipated or actual final fee associated with treating a patient.".

cs:ActCode\#FRSTFEE rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericProviderCode;
  rdfs:label "first fee";
  dc:title "first fee";
  rdfs:comment "Anticipated or actual initial fee associated with treating a patient.";
  dcterms:description "Anticipated or actual initial fee associated with treating a patient.".

cs:ActCode\#MARKUP rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericProviderCode;
  rdfs:label "markup or up-charge";
  dc:title "markup or up-charge";
  rdfs:comment "An increase in the amount charged as a percentage of the amount. For example, 12% markup on product cost.";
  dcterms:description "An increase in the amount charged as a percentage of the amount. For example, 12% markup on product cost.".

cs:ActCode\#MISSAPT rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericProviderCode;
  rdfs:label "missed appointment";
  dc:title "missed appointment";
  rdfs:comment "A charge to compensate the provider when a patient does not show for an appointment.";
  dcterms:description "A charge to compensate the provider when a patient does not show for an appointment.".

cs:ActCode\#PERFEE rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericProviderCode;
  rdfs:label "periodic fee";
  dc:title "periodic fee";
  rdfs:comment "Anticipated or actual periodic fee associated with treating a patient. For example, expected billing cycle such as monthly, quarterly. The actual period (e.g. monthly, quarterly) is specified in the unit quantity of the Invoice Element.";
  dcterms:description "Anticipated or actual periodic fee associated with treating a patient. For example, expected billing cycle such as monthly, quarterly. The actual period (e.g. monthly, quarterly) is specified in the unit quantity of the Invoice Element.".

cs:ActCode\#PERMBNS rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericProviderCode;
  rdfs:label "performance bonus";
  dc:title "performance bonus";
  rdfs:comment "The amount for a performance bonus that is being requested from a payor for the performance of certain services (childhood immunizations, influenza immunizations, mammograms, pap smears) on a sliding scale. That is, for 90% of childhood immunizations to a maximum of $2200/yr. An invoice is created at the end of the service period (one year) and a code is submitted indicating the percentage achieved and the dollar amount claimed.";
  dcterms:description "The amount for a performance bonus that is being requested from a payor for the performance of certain services (childhood immunizations, influenza immunizations, mammograms, pap smears) on a sliding scale. That is, for 90% of childhood immunizations to a maximum of $2200/yr. An invoice is created at the end of the service period (one year) and a code is submitted indicating the percentage achieved and the dollar amount claimed.".

cs:ActCode\#RESTOCK rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericProviderCode;
  rdfs:label "restocking fee";
  dc:title "restocking fee";
  rdfs:comment "A charge is requested because the patient failed to pick up the item and it took an amount of time to return it to stock for future use.";
  dcterms:description "A charge is requested because the patient failed to pick up the item and it took an amount of time to return it to stock for future use.".

cs:ActCode\#TRAVEL rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericProviderCode;
  rdfs:label "travel";
  dc:title "travel";
  rdfs:comment "A charge to cover the cost of travel time and/or cost in conjuction with providing a service or product. It may be charged per kilometer or per hour based on the effective agreement.";
  dcterms:description "A charge to cover the cost of travel time and/or cost in conjuction with providing a service or product. It may be charged per kilometer or per hour based on the effective agreement.".

cs:ActCode\#URGENT rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericProviderCode;
  rdfs:label "urgent";
  dc:title "urgent";
  rdfs:comment "Premium paid on service fees in compensation for providing an expedited response to an urgent situation.";
  dcterms:description "Premium paid on service fees in compensation for providing an expedited response to an urgent situation.".

cs:ActCode\#%5fActInvoiceDetailTaxCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailGenericCode;
  rdfs:label "ActInvoiceDetailTaxCode";
  dc:title "ActInvoiceDetailTaxCode";
  rdfs:comment "The billable item codes to identify modifications to a billable item charge by a tax factor applied to the amount. As for example 7% provincial sales tax.";
  dcterms:description "The billable item codes to identify modifications to a billable item charge by a tax factor applied to the amount. As for example 7% provincial sales tax.".

cs:ActCode\#FST rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailTaxCode;
  rdfs:label "federal sales tax";
  dc:title "federal sales tax";
  rdfs:comment "Federal tax on transactions such as the Goods and Services Tax (GST)";
  dcterms:description "Federal tax on transactions such as the Goods and Services Tax (GST)".

cs:ActCode\#HST rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailTaxCode;
  rdfs:label "harmonized sales Tax";
  dc:title "harmonized sales Tax";
  rdfs:comment "Joint Federal/Provincial Sales Tax";
  dcterms:description "Joint Federal/Provincial Sales Tax".

cs:ActCode\#PST rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailTaxCode;
  rdfs:label "provincial/state sales tax";
  dc:title "provincial/state sales tax";
  rdfs:comment "Tax levied by the provincial or state jurisdiction such as Provincial Sales Tax";
  dcterms:description "Tax levied by the provincial or state jurisdiction such as Provincial Sales Tax".

cs:ActCode\#%5fActInvoiceDetailPreferredAccommodationCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailCode;
  rdfs:label "ActInvoiceDetailPreferredAccommodationCode";
  dc:title "ActInvoiceDetailPreferredAccommodationCode";
  rdfs:comment "An identifying data string for medical facility accommodations.";
  dcterms:description "An identifying data string for medical facility accommodations.".

cs:ActCode\#%5fActEncounterAccommodationCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailPreferredAccommodationCode;
  rdfs:label "ActEncounterAccommodationCode";
  dc:title "ActEncounterAccommodationCode";
  rdfs:comment "Accommodation type.  In Intent mood, represents the accommodation type requested.  In Event mood, represents accommodation assigned/used.  In Definition mood, represents the available accommodation type.";
  dcterms:description "Accommodation type.  In Intent mood, represents the accommodation type requested.  In Event mood, represents accommodation assigned/used.  In Definition mood, represents the available accommodation type.".

cs:ActCode\#%5fHL7AccommodationCode rdfs:subClassOf cs:ActCode\#%5fActEncounterAccommodationCode;
  rdfs:label "HL7AccommodationCode";
  dc:title "HL7AccommodationCode";
  rdfs:comment "Description:Accommodation type. In Intent mood, represents the accommodation type requested. In Event mood, represents accommodation assigned/used. In Definition mood, represents the available accommodation type.";
  dcterms:description "Description:Accommodation type. In Intent mood, represents the accommodation type requested. In Event mood, represents accommodation assigned/used. In Definition mood, represents the available accommodation type.".

cs:ActCode\#I rdfs:subClassOf cs:ActCode\#%5fHL7AccommodationCode;
  rdfs:label "Isolation";
  dc:title "Isolation";
  rdfs:comment "Accommodations used in the care of diseases that are transmitted through casual contact or respiratory transmission.";
  dcterms:description "Accommodations used in the care of diseases that are transmitted through casual contact or respiratory transmission.".

cs:ActCode\#P rdfs:subClassOf cs:ActCode\#%5fHL7AccommodationCode;
  rdfs:label "Private";
  dc:title "Private";
  rdfs:comment "Accommodations in which there is only 1 bed.";
  dcterms:description "Accommodations in which there is only 1 bed.".

cs:ActCode\#S rdfs:subClassOf cs:ActCode\#%5fHL7AccommodationCode;
  rdfs:label "Suite";
  dc:title "Suite";
  rdfs:comment "Uniquely designed and elegantly decorated accommodations with many amenities available for an additional charge.";
  dcterms:description "Uniquely designed and elegantly decorated accommodations with many amenities available for an additional charge.".

cs:ActCode\#SP rdfs:subClassOf cs:ActCode\#%5fHL7AccommodationCode;
  rdfs:label "Semi-private";
  dc:title "Semi-private";
  rdfs:comment "Accommodations in which there are 2 beds.";
  dcterms:description "Accommodations in which there are 2 beds.".

cs:ActCode\#W rdfs:subClassOf cs:ActCode\#%5fHL7AccommodationCode;
  rdfs:label "Ward";
  dc:title "Ward";
  rdfs:comment "Accommodations in which there are 3 or more beds.";
  dcterms:description "Accommodations in which there are 3 or more beds.".

cs:ActCode\#%5fActInvoiceDetailClinicalServiceCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceDetailCode;
  rdfs:label "ActInvoiceDetailClinicalServiceCode";
  dc:title "ActInvoiceDetailClinicalServiceCode";
  rdfs:comment "An identifying data string for healthcare procedures.";
  dcterms:description "An identifying data string for healthcare procedures.".

cs:ActCode\#%5fActInvoiceGroupCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceElementCode;
  rdfs:label "ActInvoiceGroupCode";
  dc:title "ActInvoiceGroupCode";
  rdfs:comment "Type of invoice element that is used to assist in describing an Invoice that is either submitted for adjudication or for which is returned on adjudication results.\r\n\n                        Invoice elements of this type signify a grouping of one or more children (detail) invoice elements.  They do not have intrinsic costing associated with them, but merely reflect the sum of all costing for it's immediate children invoice elements.";
  dcterms:description "Type of invoice element that is used to assist in describing an Invoice that is either submitted for adjudication or for which is returned on adjudication results.\r\n\n                        Invoice elements of this type signify a grouping of one or more children (detail) invoice elements.  They do not have intrinsic costing associated with them, but merely reflect the sum of all costing for it's immediate children invoice elements.".

cs:ActCode\#%5fActInvoiceInterGroupCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceGroupCode;
  rdfs:label "ActInvoiceInterGroupCode";
  dc:title "ActInvoiceInterGroupCode";
  rdfs:comment "Type of invoice element that is used to assist in describing an Invoice that is either submitted for adjudication or for which is returned on adjudication results.\r\n\n                        Invoice elements of this type signify a grouping of one or more children (detail) invoice elements.  They do not have intrinsic costing associated with them, but merely reflect the sum of all costing for it's immediate children invoice elements.\r\n\n                        The domain is only specified for an intermediate invoice element group (non-root or non-top level) for an Invoice.";
  dcterms:description "Type of invoice element that is used to assist in describing an Invoice that is either submitted for adjudication or for which is returned on adjudication results.\r\n\n                        Invoice elements of this type signify a grouping of one or more children (detail) invoice elements.  They do not have intrinsic costing associated with them, but merely reflect the sum of all costing for it's immediate children invoice elements.\r\n\n                        The domain is only specified for an intermediate invoice element group (non-root or non-top level) for an Invoice.".

cs:ActCode\#CPNDDRGING rdfs:subClassOf cs:ActCode\#%5fActInvoiceInterGroupCode;
  rdfs:label "compound drug invoice group";
  dc:title "compound drug invoice group";
  rdfs:comment "A grouping of invoice element groups and details including the ones specifying the compound ingredients being invoiced. It may also contain generic detail items such as markup.";
  dcterms:description "A grouping of invoice element groups and details including the ones specifying the compound ingredients being invoiced. It may also contain generic detail items such as markup.".

cs:ActCode\#CPNDINDING rdfs:subClassOf cs:ActCode\#%5fActInvoiceInterGroupCode;
  rdfs:label "compound ingredient invoice group";
  dc:title "compound ingredient invoice group";
  rdfs:comment "A grouping of invoice element details including the one specifying an ingredient drug being invoiced. It may also contain generic detail items such as tax or markup.";
  dcterms:description "A grouping of invoice element details including the one specifying an ingredient drug being invoiced. It may also contain generic detail items such as tax or markup.".

cs:ActCode\#CPNDSUPING rdfs:subClassOf cs:ActCode\#%5fActInvoiceInterGroupCode;
  rdfs:label "compound supply invoice group";
  dc:title "compound supply invoice group";
  rdfs:comment "A grouping of invoice element groups and details including the ones specifying the compound supplies being invoiced. It may also contain generic detail items such as markup.";
  dcterms:description "A grouping of invoice element groups and details including the ones specifying the compound supplies being invoiced. It may also contain generic detail items such as markup.".

cs:ActCode\#DRUGING rdfs:subClassOf cs:ActCode\#%5fActInvoiceInterGroupCode;
  rdfs:label "drug invoice group";
  dc:title "drug invoice group";
  rdfs:comment "A grouping of invoice element details including the one specifying the drug being invoiced. It may also contain generic detail items such as markup.";
  dcterms:description "A grouping of invoice element details including the one specifying the drug being invoiced. It may also contain generic detail items such as markup.".

cs:ActCode\#FRAMEING rdfs:subClassOf cs:ActCode\#%5fActInvoiceInterGroupCode;
  rdfs:label "frame invoice group";
  dc:title "frame invoice group";
  rdfs:comment "A grouping of invoice element details including the ones specifying the frame fee and the frame dispensing cost that are being invoiced.";
  dcterms:description "A grouping of invoice element details including the ones specifying the frame fee and the frame dispensing cost that are being invoiced.".

cs:ActCode\#LENSING rdfs:subClassOf cs:ActCode\#%5fActInvoiceInterGroupCode;
  rdfs:label "lens invoice group";
  dc:title "lens invoice group";
  rdfs:comment "A grouping of invoice element details including the ones specifying the lens fee and the lens dispensing cost that are being invoiced.";
  dcterms:description "A grouping of invoice element details including the ones specifying the lens fee and the lens dispensing cost that are being invoiced.".

cs:ActCode\#PRDING rdfs:subClassOf cs:ActCode\#%5fActInvoiceInterGroupCode;
  rdfs:label "product invoice group";
  dc:title "product invoice group";
  rdfs:comment "A grouping of invoice element details including the one specifying the product (good or supply) being invoiced. It may also contain generic detail items such as tax or discount.";
  dcterms:description "A grouping of invoice element details including the one specifying the product (good or supply) being invoiced. It may also contain generic detail items such as tax or discount.".

cs:ActCode\#%5fActInvoiceRootGroupCode rdfs:subClassOf cs:ActCode\#%5fActInvoiceGroupCode;
  rdfs:label "ActInvoiceRootGroupCode";
  dc:title "ActInvoiceRootGroupCode";
  rdfs:comment "Type of invoice element that is used to assist in describing an Invoice that is either submitted for adjudication or for which is returned on adjudication results.\r\n\n                        Invoice elements of this type signify a grouping of one or more children (detail) invoice elements.  They do not have intrinsic costing associated with them, but merely reflect the sum of all costing for it's immediate children invoice elements.\r\n\n                        Codes from this domain reflect the type of Invoice such as Pharmacy Dispense, Clinical Service and Clinical Product.  The domain is only specified for the root (top level) invoice element group for an Invoice.";
  dcterms:description "Type of invoice element that is used to assist in describing an Invoice that is either submitted for adjudication or for which is returned on adjudication results.\r\n\n                        Invoice elements of this type signify a grouping of one or more children (detail) invoice elements.  They do not have intrinsic costing associated with them, but merely reflect the sum of all costing for it's immediate children invoice elements.\r\n\n                        Codes from this domain reflect the type of Invoice such as Pharmacy Dispense, Clinical Service and Clinical Product.  The domain is only specified for the root (top level) invoice element group for an Invoice.".

cs:ActCode\#CPINV rdfs:subClassOf cs:ActCode\#%5fActInvoiceRootGroupCode;
  rdfs:label "clinical product invoice";
  dc:title "clinical product invoice";
  rdfs:comment "Clinical product invoice where the Invoice Grouping contains one or more billable item and is supported by clinical product(s).\r\n\n                        For example, a crutch or a wheelchair.";
  dcterms:description "Clinical product invoice where the Invoice Grouping contains one or more billable item and is supported by clinical product(s).\r\n\n                        For example, a crutch or a wheelchair.".

cs:ActCode\#CSINV rdfs:subClassOf cs:ActCode\#%5fActInvoiceRootGroupCode;
  rdfs:label "clinical service invoice";
  dc:title "clinical service invoice";
  rdfs:comment "Clinical Services Invoice which can be used to describe a single service, multiple services or repeated services.\r\n\n                        [1] Single Clinical services invoice where the Invoice Grouping contains one billable item and is supported by one clinical service.\r\n\n                        For example, a single service for an office visit or simple clinical procedure (e.g. knee mobilization).\r\n\n                        [2] Multiple Clinical services invoice where the Invoice Grouping contains more than one billable item, supported by one or more clinical services.  The services can be distinct and over multiple dates, but for the same patient. This type of invoice includes a series of treatments which must be adjudicated together.\r\n\n                        For example, an adjustment and ultrasound for a chiropractic session where fees are associated for each of the services and adjudicated (invoiced) together.\r\n\n                        [3] Repeated Clinical services invoice where the Invoice Grouping contains one or more billable item, supported by the same clinical service repeated over a period of time.\r\n\n                        For example, the same Chiropractic adjustment (service or treatment) delivered on 3 separate occasions over a period of time at the discretion of the provider (e.g. month).";
  dcterms:description "Clinical Services Invoice which can be used to describe a single service, multiple services or repeated services.\r\n\n                        [1] Single Clinical services invoice where the Invoice Grouping contains one billable item and is supported by one clinical service.\r\n\n                        For example, a single service for an office visit or simple clinical procedure (e.g. knee mobilization).\r\n\n                        [2] Multiple Clinical services invoice where the Invoice Grouping contains more than one billable item, supported by one or more clinical services.  The services can be distinct and over multiple dates, but for the same patient. This type of invoice includes a series of treatments which must be adjudicated together.\r\n\n                        For example, an adjustment and ultrasound for a chiropractic session where fees are associated for each of the services and adjudicated (invoiced) together.\r\n\n                        [3] Repeated Clinical services invoice where the Invoice Grouping contains one or more billable item, supported by the same clinical service repeated over a period of time.\r\n\n                        For example, the same Chiropractic adjustment (service or treatment) delivered on 3 separate occasions over a period of time at the discretion of the provider (e.g. month).".

cs:ActCode\#CSPINV rdfs:subClassOf cs:ActCode\#%5fActInvoiceRootGroupCode;
  rdfs:label "clinical service and product";
  dc:title "clinical service and product";
  rdfs:comment "A clinical Invoice Grouping consisting of one or more services and one or more product.  Billing for these service(s) and product(s) are supported by multiple clinical billable events (acts).\r\n\n                        All items in the Invoice Grouping must be adjudicated together to be acceptable to the Adjudicator.\r\n\n                        For example , a brace (product) invoiced together with the fitting (service).";
  dcterms:description "A clinical Invoice Grouping consisting of one or more services and one or more product.  Billing for these service(s) and product(s) are supported by multiple clinical billable events (acts).\r\n\n                        All items in the Invoice Grouping must be adjudicated together to be acceptable to the Adjudicator.\r\n\n                        For example , a brace (product) invoiced together with the fitting (service).".

cs:ActCode\#FININV rdfs:subClassOf cs:ActCode\#%5fActInvoiceRootGroupCode;
  rdfs:label "financial invoice";
  dc:title "financial invoice";
  rdfs:comment "Invoice Grouping without clinical justification.  These will not require identification of participants and associations from a clinical context such as patient and provider.\r\n\n                        Examples are interest charges and mileage.";
  dcterms:description "Invoice Grouping without clinical justification.  These will not require identification of participants and associations from a clinical context such as patient and provider.\r\n\n                        Examples are interest charges and mileage.".

cs:ActCode\#OHSINV rdfs:subClassOf cs:ActCode\#%5fActInvoiceRootGroupCode;
  rdfs:label "oral health service";
  dc:title "oral health service";
  rdfs:comment "A clinical Invoice Grouping consisting of one or more oral health services. Billing for these service(s) are supported by multiple clinical billable events (acts).\r\n\n                        All items in the Invoice Grouping must be adjudicated together to be acceptable to the Adjudicator.";
  dcterms:description "A clinical Invoice Grouping consisting of one or more oral health services. Billing for these service(s) are supported by multiple clinical billable events (acts).\r\n\n                        All items in the Invoice Grouping must be adjudicated together to be acceptable to the Adjudicator.".

cs:ActCode\#PAINV rdfs:subClassOf cs:ActCode\#%5fActInvoiceRootGroupCode;
  rdfs:label "preferred accommodation invoice";
  dc:title "preferred accommodation invoice";
  rdfs:comment "HealthCare facility preferred accommodation invoice.";
  dcterms:description "HealthCare facility preferred accommodation invoice.".

cs:ActCode\#RXCINV rdfs:subClassOf cs:ActCode\#%5fActInvoiceRootGroupCode;
  rdfs:label "Rx compound invoice";
  dc:title "Rx compound invoice";
  rdfs:comment "Pharmacy dispense invoice for a compound.";
  dcterms:description "Pharmacy dispense invoice for a compound.".

cs:ActCode\#RXDINV rdfs:subClassOf cs:ActCode\#%5fActInvoiceRootGroupCode;
  rdfs:label "Rx dispense invoice";
  dc:title "Rx dispense invoice";
  rdfs:comment "Pharmacy dispense invoice not involving a compound";
  dcterms:description "Pharmacy dispense invoice not involving a compound".

cs:ActCode\#SBFINV rdfs:subClassOf cs:ActCode\#%5fActInvoiceRootGroupCode;
  rdfs:label "sessional or block fee invoice";
  dc:title "sessional or block fee invoice";
  rdfs:comment "Clinical services invoice where the Invoice Group contains one billable item for multiple clinical services in one or more sessions.";
  dcterms:description "Clinical services invoice where the Invoice Group contains one billable item for multiple clinical services in one or more sessions.".

cs:ActCode\#VRXINV rdfs:subClassOf cs:ActCode\#%5fActInvoiceRootGroupCode;
  rdfs:label "vision dispense invoice";
  dc:title "vision dispense invoice";
  rdfs:comment "Vision dispense invoice for up to 2 lens (left and right), frame and optional discount.  Eye exams are invoiced as a clinical service invoice.";
  dcterms:description "Vision dispense invoice for up to 2 lens (left and right), frame and optional discount.  Eye exams are invoiced as a clinical service invoice.".

cs:ActCode\#%5fActInvoiceElementSummaryCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActInvoiceElementSummaryCode";
  dc:title "ActInvoiceElementSummaryCode";
  rdfs:comment "Identifies the different types of summary information that can be reported by queries dealing with Statement of Financial Activity (SOFA).  The summary information is generally used to help resolve balance discrepancies between providers and payors.";
  dcterms:description "Identifies the different types of summary information that can be reported by queries dealing with Statement of Financial Activity (SOFA).  The summary information is generally used to help resolve balance discrepancies between providers and payors.".

cs:ActCode\#%5fInvoiceElementAdjudicated rdfs:subClassOf cs:ActCode\#%5fActInvoiceElementSummaryCode;
  rdfs:label "InvoiceElementAdjudicated";
  dc:title "InvoiceElementAdjudicated";
  rdfs:comment "Total counts and total net amounts adjudicated for all  Invoice Groupings that were adjudicated within a time period based on the adjudication date of the Invoice Grouping.";
  dcterms:description "Total counts and total net amounts adjudicated for all  Invoice Groupings that were adjudicated within a time period based on the adjudication date of the Invoice Grouping.".

cs:ActCode\#ADNFPPELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. nullified prior-period electronic amount";
  dc:title "adjud. nullified prior-period electronic amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date), subsequently cancelled in the specified period and submitted electronically.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date), subsequently cancelled in the specified period and submitted electronically.".

cs:ActCode\#ADNFPPELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. nullified prior-period electronic count";
  dc:title "adjud. nullified prior-period electronic count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date), subsequently cancelled in the specified period and submitted electronically.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date), subsequently cancelled in the specified period and submitted electronically.".

cs:ActCode\#ADNFPPMNAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. nullified prior-period manual amount";
  dc:title "adjud. nullified prior-period manual amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date), subsequently cancelled in the specified period and submitted manually.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date), subsequently cancelled in the specified period and submitted manually.".

cs:ActCode\#ADNFPPMNCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. nullified prior-period manual count";
  dc:title "adjud. nullified prior-period manual count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date), subsequently cancelled in the specified period and submitted manually.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date), subsequently cancelled in the specified period and submitted manually.".

cs:ActCode\#ADNFSPELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. nullified same-period electronic amount";
  dc:title "adjud. nullified same-period electronic amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date), subsequently nullified in the specified period and submitted electronically.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date), subsequently nullified in the specified period and submitted electronically.".

cs:ActCode\#ADNFSPELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. nullified same-period electronic count";
  dc:title "adjud. nullified same-period electronic count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date), subsequently nullified in the specified period and submitted electronically.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date), subsequently nullified in the specified period and submitted electronically.".

cs:ActCode\#ADNFSPMNAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. nullified same-period manual amount";
  dc:title "adjud. nullified same-period manual amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date), subsequently cancelled in the specified period and submitted manually.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date), subsequently cancelled in the specified period and submitted manually.".

cs:ActCode\#ADNFSPMNCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. nullified same-period manual count";
  dc:title "adjud. nullified same-period manual count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date), subsequently cancelled in the specified period and submitted manually.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date), subsequently cancelled in the specified period and submitted manually.".

cs:ActCode\#ADNPPPELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. non-payee payable prior-period electronic amount";
  dc:title "adjud. non-payee payable prior-period electronic amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted electronically.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted electronically.".

cs:ActCode\#ADNPPPELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. non-payee payable prior-period electronic count";
  dc:title "adjud. non-payee payable prior-period electronic count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted electronically.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted electronically.".

cs:ActCode\#ADNPPPMNAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. non-payee payable prior-period manual amount";
  dc:title "adjud. non-payee payable prior-period manual amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted manually.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted manually.".

cs:ActCode\#ADNPPPMNCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. non-payee payable prior-period manual count";
  dc:title "adjud. non-payee payable prior-period manual count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted manually.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted manually.".

cs:ActCode\#ADNPSPELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. non-payee payable same-period electronic amount";
  dc:title "adjud. non-payee payable same-period electronic amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted electronically.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted electronically.".

cs:ActCode\#ADNPSPELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. non-payee payable same-period electronic count";
  dc:title "adjud. non-payee payable same-period electronic count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted electronically.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted electronically.".

cs:ActCode\#ADNPSPMNAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. non-payee payable same-period manual amount";
  dc:title "adjud. non-payee payable same-period manual amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted manually.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted manually.".

cs:ActCode\#ADNPSPMNCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. non-payee payable same-period manual count";
  dc:title "adjud. non-payee payable same-period manual count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted manually.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that do not match a specified payee (e.g. pay patient) and submitted manually.".

cs:ActCode\#ADPPPPELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. payee payable prior-period electronic amount";
  dc:title "adjud. payee payable prior-period electronic amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted electronically.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted electronically.".

cs:ActCode\#ADPPPPELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. payee payable prior-period electronic count";
  dc:title "adjud. payee payable prior-period electronic count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted electronically.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted electronically.".

cs:ActCode\#ADPPPPMNAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. payee payable prior-period manual amout";
  dc:title "adjud. payee payable prior-period manual amout";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted manually.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted manually.".

cs:ActCode\#ADPPPPMNCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. payee payable prior-period manual count";
  dc:title "adjud. payee payable prior-period manual count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted manually.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were adjudicated as payable prior to the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted manually.".

cs:ActCode\#ADPPSPELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. payee payable same-period electronic amount";
  dc:title "adjud. payee payable same-period electronic amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted electronically.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted electronically.".

cs:ActCode\#ADPPSPELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. payee payable same-period electronic count";
  dc:title "adjud. payee payable same-period electronic count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted electronically.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted electronically.".

cs:ActCode\#ADPPSPMNAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. payee payable same-period manual amount";
  dc:title "adjud. payee payable same-period manual amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted manually.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted manually.".

cs:ActCode\#ADPPSPMNCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. payee payable same-period manual count";
  dc:title "adjud. payee payable same-period manual count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted manually.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were adjudicated as payable during the specified time period (based on adjudication date) that match a specified payee (e.g. pay provider) and submitted manually.".

cs:ActCode\#ADRFPPELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. refused prior-period electronic amount";
  dc:title "adjud. refused prior-period electronic amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as refused prior to the specified time period (based on adjudication date) and submitted electronically.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as refused prior to the specified time period (based on adjudication date) and submitted electronically.".

cs:ActCode\#ADRFPPELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. refused prior-period electronic count";
  dc:title "adjud. refused prior-period electronic count";
  rdfs:comment "Identifies the  total number of all  Invoice Groupings that were adjudicated as refused prior to the specified time period (based on adjudication date) and submitted electronically.";
  dcterms:description "Identifies the  total number of all  Invoice Groupings that were adjudicated as refused prior to the specified time period (based on adjudication date) and submitted electronically.".

cs:ActCode\#ADRFPPMNAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. refused prior-period manual amount";
  dc:title "adjud. refused prior-period manual amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as refused prior to the specified time period (based on adjudication date) and submitted manually.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as refused prior to the specified time period (based on adjudication date) and submitted manually.".

cs:ActCode\#ADRFPPMNCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. refused prior-period manual count";
  dc:title "adjud. refused prior-period manual count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were adjudicated as refused prior to the specified time period (based on adjudication date) and submitted manually.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were adjudicated as refused prior to the specified time period (based on adjudication date) and submitted manually.".

cs:ActCode\#ADRFSPELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. refused same-period electronic amount";
  dc:title "adjud. refused same-period electronic amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as refused during the specified time period (based on adjudication date) and submitted electronically.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as refused during the specified time period (based on adjudication date) and submitted electronically.".

cs:ActCode\#ADRFSPELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. refused same-period electronic count";
  dc:title "adjud. refused same-period electronic count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were adjudicated as refused during the specified time period (based on adjudication date) and submitted electronically.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were adjudicated as refused during the specified time period (based on adjudication date) and submitted electronically.".

cs:ActCode\#ADRFSPMNAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. refused same-period manual amount";
  dc:title "adjud. refused same-period manual amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were adjudicated as refused during the specified time period (based on adjudication date) and submitted manually.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were adjudicated as refused during the specified time period (based on adjudication date) and submitted manually.".

cs:ActCode\#ADRFSPMNCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementAdjudicated;
  rdfs:label "adjud. refused same-period manual count";
  dc:title "adjud. refused same-period manual count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were adjudicated as refused during the specified time period (based on adjudication date) and submitted manually.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were adjudicated as refused during the specified time period (based on adjudication date) and submitted manually.".

cs:ActCode\#%5fInvoiceElementPaid rdfs:subClassOf cs:ActCode\#%5fActInvoiceElementSummaryCode;
  rdfs:label "InvoiceElementPaid";
  dc:title "InvoiceElementPaid";
  rdfs:comment "Total counts and total net amounts paid for all  Invoice Groupings that were paid within a time period based on the payment date.";
  dcterms:description "Total counts and total net amounts paid for all  Invoice Groupings that were paid within a time period based on the payment date.".

cs:ActCode\#PDNFPPELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid nullified prior-period electronic amount";
  dc:title "paid nullified prior-period electronic amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were paid prior to the specified time period (based on payment date), subsequently nullified in the specified period and submitted electronically.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were paid prior to the specified time period (based on payment date), subsequently nullified in the specified period and submitted electronically.".

cs:ActCode\#PDNFPPELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid nullified prior-period electronic count";
  dc:title "paid nullified prior-period electronic count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were paid prior to the specified time period (based on payment date), subsequently nullified in the specified period and submitted electronically.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were paid prior to the specified time period (based on payment date), subsequently nullified in the specified period and submitted electronically.".

cs:ActCode\#PDNFPPMNAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid nullified prior-period manual amount";
  dc:title "paid nullified prior-period manual amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were paid prior to the specified time period (based on payment date), subsequently nullified in the specified period and submitted manually.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were paid prior to the specified time period (based on payment date), subsequently nullified in the specified period and submitted manually.".

cs:ActCode\#PDNFPPMNCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid nullified prior-period manual count";
  dc:title "paid nullified prior-period manual count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were paid prior to the specified time period (based on payment date), subsequently nullified in the specified period and submitted manually.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were paid prior to the specified time period (based on payment date), subsequently nullified in the specified period and submitted manually.".

cs:ActCode\#PDNFSPELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid nullified same-period electronic amount";
  dc:title "paid nullified same-period electronic amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were paid during the specified time period (based on payment date), subsequently nullified in the specified period and submitted electronically.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were paid during the specified time period (based on payment date), subsequently nullified in the specified period and submitted electronically.".

cs:ActCode\#PDNFSPELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid nullified same-period electronic count";
  dc:title "paid nullified same-period electronic count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were paid during the specified time period (based on payment date), subsequently cancelled in the specified period and submitted electronically.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were paid during the specified time period (based on payment date), subsequently cancelled in the specified period and submitted electronically.".

cs:ActCode\#PDNFSPMNAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid nullified same-period manual amount";
  dc:title "paid nullified same-period manual amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were paid during the specified time period (based on payment date), subsequently nullified in the specified period and submitted manually.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were paid during the specified time period (based on payment date), subsequently nullified in the specified period and submitted manually.".

cs:ActCode\#PDNFSPMNCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid nullified same-period manual count";
  dc:title "paid nullified same-period manual count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were paid during the specified time period (based on payment date), subsequently nullified in the specified period and submitted manually.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were paid during the specified time period (based on payment date), subsequently nullified in the specified period and submitted manually.".

cs:ActCode\#PDNPPPELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid non-payee payable prior-period electronic amount";
  dc:title "paid non-payee payable prior-period electronic amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted electronically.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted electronically.".

cs:ActCode\#PDNPPPELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid non-payee payable prior-period electronic count";
  dc:title "paid non-payee payable prior-period electronic count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted electronically.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted electronically.".

cs:ActCode\#PDNPPPMNAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid non-payee payable prior-period manual amount";
  dc:title "paid non-payee payable prior-period manual amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted manually.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted manually.".

cs:ActCode\#PDNPPPMNCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid non-payee payable prior-period manual count";
  dc:title "paid non-payee payable prior-period manual count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted manually.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted manually.".

cs:ActCode\#PDNPSPELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid non-payee payable same-period electronic amount";
  dc:title "paid non-payee payable same-period electronic amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were paid during the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted electronically.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were paid during the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted electronically.".

cs:ActCode\#PDNPSPELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid non-payee payable same-period electronic count";
  dc:title "paid non-payee payable same-period electronic count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were paid during the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted electronically.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were paid during the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted electronically.".

cs:ActCode\#PDNPSPMNAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid non-payee payable same-period manual amount";
  dc:title "paid non-payee payable same-period manual amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were paid during the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted manually.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were paid during the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted manually.".

cs:ActCode\#PDNPSPMNCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid non-payee payable same-period manual count";
  dc:title "paid non-payee payable same-period manual count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were paid during the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted manually.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were paid during the specified time period (based on payment date) that do not match a specified payee (e.g. pay patient) and submitted manually.".

cs:ActCode\#PDPPPPELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid payee payable prior-period electronic amount";
  dc:title "paid payee payable prior-period electronic amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted electronically.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted electronically.".

cs:ActCode\#PDPPPPELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid payee payable prior-period electronic count";
  dc:title "paid payee payable prior-period electronic count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted electronically.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted electronically.".

cs:ActCode\#PDPPPPMNAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid payee payable prior-period manual amount";
  dc:title "paid payee payable prior-period manual amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted manually.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted manually.".

cs:ActCode\#PDPPPPMNCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid payee payable prior-period manual count";
  dc:title "paid payee payable prior-period manual count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted manually.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were paid prior to the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted manually.".

cs:ActCode\#PDPPSPELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid payee payable same-period electronic amount";
  dc:title "paid payee payable same-period electronic amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were paid during the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted electronically.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were paid during the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted electronically.".

cs:ActCode\#PDPPSPELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid payee payable same-period electronic count";
  dc:title "paid payee payable same-period electronic count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were paid during the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted electronically.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were paid during the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted electronically.".

cs:ActCode\#PDPPSPMNAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid payee payable same-period manual amount";
  dc:title "paid payee payable same-period manual amount";
  rdfs:comment "Identifies the total net amount of all  Invoice Groupings that were paid during the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted manually.";
  dcterms:description "Identifies the total net amount of all  Invoice Groupings that were paid during the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted manually.".

cs:ActCode\#PDPPSPMNCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementPaid;
  rdfs:label "paid payee payable same-period manual count";
  dc:title "paid payee payable same-period manual count";
  rdfs:comment "Identifies the total number of all  Invoice Groupings that were paid during the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted manually.";
  dcterms:description "Identifies the total number of all  Invoice Groupings that were paid during the specified time period (based on payment date) that match a specified payee (e.g. pay provider) and submitted manually.".

cs:ActCode\#%5fInvoiceElementSubmitted rdfs:subClassOf cs:ActCode\#%5fActInvoiceElementSummaryCode;
  rdfs:label "InvoiceElementSubmitted";
  dc:title "InvoiceElementSubmitted";
  rdfs:comment "Total counts and total net amounts billed for all Invoice Groupings that were submitted within a time period.  Adjudicated invoice elements are included.";
  dcterms:description "Total counts and total net amounts billed for all Invoice Groupings that were submitted within a time period.  Adjudicated invoice elements are included.".

cs:ActCode\#SBBLELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementSubmitted;
  rdfs:label "submitted billed electronic amount";
  dc:title "submitted billed electronic amount";
  rdfs:comment "Identifies the total net amount billed for all submitted Invoice Groupings within a time period and submitted electronically.  Adjudicated invoice elements are included.";
  dcterms:description "Identifies the total net amount billed for all submitted Invoice Groupings within a time period and submitted electronically.  Adjudicated invoice elements are included.".

cs:ActCode\#SBBLELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementSubmitted;
  rdfs:label "submitted billed electronic count";
  dc:title "submitted billed electronic count";
  rdfs:comment "Identifies the total number of submitted Invoice Groupings within a time period and submitted electronically.  Adjudicated invoice elements are included.";
  dcterms:description "Identifies the total number of submitted Invoice Groupings within a time period and submitted electronically.  Adjudicated invoice elements are included.".

cs:ActCode\#SBNFELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementSubmitted;
  rdfs:label "submitted nullified electronic amount";
  dc:title "submitted nullified electronic amount";
  rdfs:comment "Identifies the total net amount billed for all submitted  Invoice Groupings that were nullified within a time period and submitted electronically.  Adjudicated invoice elements are included.";
  dcterms:description "Identifies the total net amount billed for all submitted  Invoice Groupings that were nullified within a time period and submitted electronically.  Adjudicated invoice elements are included.".

cs:ActCode\#SBNFELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementSubmitted;
  rdfs:label "submitted cancelled electronic count";
  dc:title "submitted cancelled electronic count";
  rdfs:comment "Identifies the total number of submitted  Invoice Groupings that were nullified within a time period and submitted electronically.  Adjudicated invoice elements are included.";
  dcterms:description "Identifies the total number of submitted  Invoice Groupings that were nullified within a time period and submitted electronically.  Adjudicated invoice elements are included.".

cs:ActCode\#SBPDELAT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementSubmitted;
  rdfs:label "submitted pending electronic amount";
  dc:title "submitted pending electronic amount";
  rdfs:comment "Identifies the total net amount billed for all submitted  Invoice Groupings that are pended or held by the payor, within a time period and submitted electronically.  Adjudicated invoice elements are not included.";
  dcterms:description "Identifies the total net amount billed for all submitted  Invoice Groupings that are pended or held by the payor, within a time period and submitted electronically.  Adjudicated invoice elements are not included.".

cs:ActCode\#SBPDELCT rdfs:subClassOf cs:ActCode\#%5fInvoiceElementSubmitted;
  rdfs:label "submitted pending electronic count";
  dc:title "submitted pending electronic count";
  rdfs:comment "Identifies the total number of submitted  Invoice Groupings that are pended or held by the payor, within a time period and submitted electronically.  Adjudicated invoice elements are not included.";
  dcterms:description "Identifies the total number of submitted  Invoice Groupings that are pended or held by the payor, within a time period and submitted electronically.  Adjudicated invoice elements are not included.".

cs:ActCode\#%5fActInvoiceOverrideCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActInvoiceOverrideCode";
  dc:title "ActInvoiceOverrideCode";
  rdfs:comment "Includes coded responses that will occur as a result of the adjudication of an electronic invoice at a summary level and provides guidance on interpretation of the referenced adjudication results.";
  dcterms:description "Includes coded responses that will occur as a result of the adjudication of an electronic invoice at a summary level and provides guidance on interpretation of the referenced adjudication results.".

cs:ActCode\#COVGE rdfs:subClassOf cs:ActCode\#%5fActInvoiceOverrideCode;
  rdfs:label "coverage problem";
  dc:title "coverage problem";
  rdfs:comment "Insurance coverage problems have been encountered. Additional explanation information to be supplied.";
  dcterms:description "Insurance coverage problems have been encountered. Additional explanation information to be supplied.".

cs:ActCode\#EFORM rdfs:subClassOf cs:ActCode\#%5fActInvoiceOverrideCode;
  rdfs:label "electronic form to follow";
  dc:title "electronic form to follow";
  rdfs:comment "Electronic form with supporting or additional information to follow.";
  dcterms:description "Electronic form with supporting or additional information to follow.".

cs:ActCode\#FAX rdfs:subClassOf cs:ActCode\#%5fActInvoiceOverrideCode;
  rdfs:label "fax to follow";
  dc:title "fax to follow";
  rdfs:comment "Fax with supporting or additional information to follow.";
  dcterms:description "Fax with supporting or additional information to follow.".

cs:ActCode\#GFTH rdfs:subClassOf cs:ActCode\#%5fActInvoiceOverrideCode;
  rdfs:label "good faith indicator";
  dc:title "good faith indicator";
  rdfs:comment "The medical service was provided to a patient in good faith that they had medical coverage, although no evidence of coverage was available before service was rendered.";
  dcterms:description "The medical service was provided to a patient in good faith that they had medical coverage, although no evidence of coverage was available before service was rendered.".

cs:ActCode\#LATE rdfs:subClassOf cs:ActCode\#%5fActInvoiceOverrideCode;
  rdfs:label "late invoice";
  dc:title "late invoice";
  rdfs:comment "Knowingly over the payor's published time limit for this invoice possibly due to a previous payor's delays in processing. Additional reason information will be supplied.";
  dcterms:description "Knowingly over the payor's published time limit for this invoice possibly due to a previous payor's delays in processing. Additional reason information will be supplied.".

cs:ActCode\#MANUAL rdfs:subClassOf cs:ActCode\#%5fActInvoiceOverrideCode;
  rdfs:label "manual review";
  dc:title "manual review";
  rdfs:comment "Manual review of the invoice is requested.  Additional information to be supplied.  This may be used in the case of an appeal.";
  dcterms:description "Manual review of the invoice is requested.  Additional information to be supplied.  This may be used in the case of an appeal.".

cs:ActCode\#OOJ rdfs:subClassOf cs:ActCode\#%5fActInvoiceOverrideCode;
  rdfs:label "out of jurisdiction";
  dc:title "out of jurisdiction";
  rdfs:comment "The medical service and/or product was provided to a patient that has coverage in another jurisdiction.";
  dcterms:description "The medical service and/or product was provided to a patient that has coverage in another jurisdiction.".

cs:ActCode\#ORTHO rdfs:subClassOf cs:ActCode\#%5fActInvoiceOverrideCode;
  rdfs:label "orthodontic service";
  dc:title "orthodontic service";
  rdfs:comment "The service provided is required for orthodontic purposes. If the covered party has orthodontic coverage, then the service may be paid.";
  dcterms:description "The service provided is required for orthodontic purposes. If the covered party has orthodontic coverage, then the service may be paid.".

cs:ActCode\#PAPER rdfs:subClassOf cs:ActCode\#%5fActInvoiceOverrideCode;
  rdfs:label "paper documentation to follow";
  dc:title "paper documentation to follow";
  rdfs:comment "Paper documentation (or other physical format) with supporting or additional information to follow.";
  dcterms:description "Paper documentation (or other physical format) with supporting or additional information to follow.".

cs:ActCode\#PIE rdfs:subClassOf cs:ActCode\#%5fActInvoiceOverrideCode;
  rdfs:label "public insurance exhausted";
  dc:title "public insurance exhausted";
  rdfs:comment "Public Insurance has been exhausted.  Invoice has not been sent to Public Insuror and therefore no Explanation Of Benefits (EOB) is provided with this Invoice submission.";
  dcterms:description "Public Insurance has been exhausted.  Invoice has not been sent to Public Insuror and therefore no Explanation Of Benefits (EOB) is provided with this Invoice submission.".

cs:ActCode\#PYRDELAY rdfs:subClassOf cs:ActCode\#%5fActInvoiceOverrideCode;
  rdfs:label "delayed by a previous payor";
  dc:title "delayed by a previous payor";
  rdfs:comment "Allows provider to explain lateness of invoice to a subsequent payor.";
  dcterms:description "Allows provider to explain lateness of invoice to a subsequent payor.".

cs:ActCode\#REFNR rdfs:subClassOf cs:ActCode\#%5fActInvoiceOverrideCode;
  rdfs:label "referral not required";
  dc:title "referral not required";
  rdfs:comment "Rules of practice do not require a physician's referral for the provider to perform a billable service.";
  dcterms:description "Rules of practice do not require a physician's referral for the provider to perform a billable service.".

cs:ActCode\#REPSERV rdfs:subClassOf cs:ActCode\#%5fActInvoiceOverrideCode;
  rdfs:label "repeated service";
  dc:title "repeated service";
  rdfs:comment "The same service was delivered within a time period that would usually indicate a duplicate billing.  However, the repeated service is a medical 	necessity and therefore not a duplicate.";
  dcterms:description "The same service was delivered within a time period that would usually indicate a duplicate billing.  However, the repeated service is a medical 	necessity and therefore not a duplicate.".

cs:ActCode\#UNRELAT rdfs:subClassOf cs:ActCode\#%5fActInvoiceOverrideCode;
  rdfs:label "unrelated service";
  dc:title "unrelated service";
  rdfs:comment "The service provided is not related to another billed service. For example, 2 unrelated services provided on the same day to the same patient which may normally result in a refused payment for one of the items.";
  dcterms:description "The service provided is not related to another billed service. For example, 2 unrelated services provided on the same day to the same patient which may normally result in a refused payment for one of the items.".

cs:ActCode\#VERBAUTH rdfs:subClassOf cs:ActCode\#%5fActInvoiceOverrideCode;
  rdfs:label "verbal authorization";
  dc:title "verbal authorization";
  rdfs:comment "The provider has received a verbal permission from an authoritative source to perform the service or supply the item being invoiced.";
  dcterms:description "The provider has received a verbal permission from an authoritative source to perform the service or supply the item being invoiced.".

cs:ActCode\#%5fActListCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActListCode";
  dc:title "ActListCode";
  rdfs:comment "Provides codes associated with ActClass value of LIST (working list)";
  dcterms:description "Provides codes associated with ActClass value of LIST (working list)".

cs:ActCode\#%5fActObservationList rdfs:subClassOf cs:ActCode\#%5fActListCode;
  rdfs:label "ActObservationList";
  dc:title "ActObservationList";
  rdfs:comment "ActObservationList";
  dcterms:description "ActObservationList".

cs:ActCode\#CARELIST rdfs:subClassOf cs:ActCode\#%5fActObservationList;
  rdfs:label "care plan";
  dc:title "care plan";
  rdfs:comment "List of acts representing a care plan.  The acts can be in a varierty of moods including event (EVN) to record acts that have been carried out as part of the care plan.";
  dcterms:description "List of acts representing a care plan.  The acts can be in a varierty of moods including event (EVN) to record acts that have been carried out as part of the care plan.".

cs:ActCode\#CONDLIST rdfs:subClassOf cs:ActCode\#%5fActObservationList;
  rdfs:label "condition list";
  dc:title "condition list";
  rdfs:comment "List of condition observations.";
  dcterms:description "List of condition observations.".

cs:ActCode\#INTOLIST rdfs:subClassOf cs:ActCode\#CONDLIST;
  rdfs:label "intolerance list";
  dc:title "intolerance list";
  rdfs:comment "List of intolerance observations.";
  dcterms:description "List of intolerance observations.".

cs:ActCode\#PROBLIST rdfs:subClassOf cs:ActCode\#CONDLIST;
  rdfs:label "problem list";
  dc:title "problem list";
  rdfs:comment "List of problem observations.";
  dcterms:description "List of problem observations.".

cs:ActCode\#RISKLIST rdfs:subClassOf cs:ActCode\#CONDLIST;
  rdfs:label "risk factors";
  dc:title "risk factors";
  rdfs:comment "List of risk factor observations.";
  dcterms:description "List of risk factor observations.".

cs:ActCode\#GOALLIST rdfs:subClassOf cs:ActCode\#%5fActObservationList;
  rdfs:label "goal list";
  dc:title "goal list";
  rdfs:comment "List of observations in goal mood.";
  dcterms:description "List of observations in goal mood.".

cs:ActCode\#%5fActTherapyDurationWorkingListCode rdfs:subClassOf cs:ActCode\#%5fActListCode;
  rdfs:label "ActTherapyDurationWorkingListCode";
  dc:title "ActTherapyDurationWorkingListCode";
  rdfs:comment "Codes used to identify different types of 'duration-based' working lists.  Examples include \"Continuous/Chronic\", \"Short-Term\" and \"As-Needed\".";
  dcterms:description "Codes used to identify different types of 'duration-based' working lists.  Examples include \"Continuous/Chronic\", \"Short-Term\" and \"As-Needed\".".

cs:ActCode\#%5fActMedicationTherapyDurationWorkingListCode rdfs:subClassOf cs:ActCode\#%5fActTherapyDurationWorkingListCode;
  rdfs:label "act medication therapy duration working list";
  dc:title "act medication therapy duration working list";
  rdfs:comment "Definition:A collection of concepts that identifies different types of 'duration-based' mediation working lists.\r\n\n                        \n                           Examples:\"Continuous/Chronic\" \"Short-Term\" and \"As Needed\"";
  dcterms:description "Definition:A collection of concepts that identifies different types of 'duration-based' mediation working lists.\r\n\n                        \n                           Examples:\"Continuous/Chronic\" \"Short-Term\" and \"As Needed\"".

cs:ActCode\#ACU rdfs:subClassOf cs:ActCode\#%5fActMedicationTherapyDurationWorkingListCode;
  rdfs:label "short term/acute";
  dc:title "short term/acute";
  rdfs:comment "Definition:A list of medications which the patient is only expected to consume for the duration of the current order or limited set of orders and which is not expected to be renewed.";
  dcterms:description "Definition:A list of medications which the patient is only expected to consume for the duration of the current order or limited set of orders and which is not expected to be renewed.".

cs:ActCode\#CHRON rdfs:subClassOf cs:ActCode\#%5fActMedicationTherapyDurationWorkingListCode;
  rdfs:label "continuous/chronic";
  dc:title "continuous/chronic";
  rdfs:comment "Definition:A list of medications which are expected to be continued beyond the present order and which the patient should be assumed to be taking unless explicitly stopped.";
  dcterms:description "Definition:A list of medications which are expected to be continued beyond the present order and which the patient should be assumed to be taking unless explicitly stopped.".

cs:ActCode\#ONET rdfs:subClassOf cs:ActCode\#%5fActMedicationTherapyDurationWorkingListCode;
  rdfs:label "one time";
  dc:title "one time";
  rdfs:comment "Definition:A list of medications which the patient is intended to be administered only once.";
  dcterms:description "Definition:A list of medications which the patient is intended to be administered only once.".

cs:ActCode\#PRN rdfs:subClassOf cs:ActCode\#%5fActMedicationTherapyDurationWorkingListCode;
  rdfs:label "as needed";
  dc:title "as needed";
  rdfs:comment "Definition:A list of medications which the patient will consume intermittently based on the behavior of the condition for which the medication is indicated.";
  dcterms:description "Definition:A list of medications which the patient will consume intermittently based on the behavior of the condition for which the medication is indicated.".

cs:ActCode\#MEDLIST rdfs:subClassOf cs:ActCode\#%5fActListCode;
  rdfs:label "medication list";
  dc:title "medication list";
  rdfs:comment "List of medications.";
  dcterms:description "List of medications.".

cs:ActCode\#CURMEDLIST rdfs:subClassOf cs:ActCode\#MEDLIST;
  rdfs:label "current medication list";
  dc:title "current medication list";
  rdfs:comment "List of current medications.";
  dcterms:description "List of current medications.".

cs:ActCode\#DISCMEDLIST rdfs:subClassOf cs:ActCode\#MEDLIST;
  rdfs:label "discharge medication list";
  dc:title "discharge medication list";
  rdfs:comment "List of discharge medications.";
  dcterms:description "List of discharge medications.".

cs:ActCode\#HISTMEDLIST rdfs:subClassOf cs:ActCode\#MEDLIST;
  rdfs:label "medication history";
  dc:title "medication history";
  rdfs:comment "Historical list of medications.";
  dcterms:description "Historical list of medications.".

cs:ActCode\#%5fActMonitoringProtocolCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActMonitoringProtocolCode";
  dc:title "ActMonitoringProtocolCode";
  rdfs:comment "Identifies types of monitoring programs";
  dcterms:description "Identifies types of monitoring programs".

cs:ActCode\#CTLSUB rdfs:subClassOf cs:ActCode\#%5fActMonitoringProtocolCode;
  rdfs:label "Controlled Substance";
  dc:title "Controlled Substance";
  rdfs:comment "A monitoring program that focuses on narcotics and/or commonly abused substances that are subject to legal restriction.";
  dcterms:description "A monitoring program that focuses on narcotics and/or commonly abused substances that are subject to legal restriction.".

cs:ActCode\#INV rdfs:subClassOf cs:ActCode\#%5fActMonitoringProtocolCode;
  rdfs:label "investigational";
  dc:title "investigational";
  rdfs:comment "Definition:A monitoring program that focuses on a drug which is under investigation and has not received regulatory approval for the condition being investigated";
  dcterms:description "Definition:A monitoring program that focuses on a drug which is under investigation and has not received regulatory approval for the condition being investigated".

cs:ActCode\#LU rdfs:subClassOf cs:ActCode\#%5fActMonitoringProtocolCode;
  rdfs:label "limited use";
  dc:title "limited use";
  rdfs:comment "Description:A drug that can be prescribed (and reimbursed) only if it meets certain criteria.";
  dcterms:description "Description:A drug that can be prescribed (and reimbursed) only if it meets certain criteria.".

cs:ActCode\#OTC rdfs:subClassOf cs:ActCode\#%5fActMonitoringProtocolCode;
  rdfs:label "non prescription medicine";
  dc:title "non prescription medicine";
  rdfs:comment "Medicines designated in this way may be supplied for patient use without a prescription.  The exact form of categorisation will vary in different realms.";
  dcterms:description "Medicines designated in this way may be supplied for patient use without a prescription.  The exact form of categorisation will vary in different realms.".

cs:ActCode\#RX rdfs:subClassOf cs:ActCode\#%5fActMonitoringProtocolCode;
  rdfs:label "prescription only medicine";
  dc:title "prescription only medicine";
  rdfs:comment "Some form of prescription is required before the related medicine can be supplied for a patient.  The exact form of regulation will vary in different realms.";
  dcterms:description "Some form of prescription is required before the related medicine can be supplied for a patient.  The exact form of regulation will vary in different realms.".

cs:ActCode\#SA rdfs:subClassOf cs:ActCode\#%5fActMonitoringProtocolCode;
  rdfs:label "special authorization";
  dc:title "special authorization";
  rdfs:comment "Definition:A drug that requires prior approval (to be reimbursed) before being dispensed";
  dcterms:description "Definition:A drug that requires prior approval (to be reimbursed) before being dispensed".

cs:ActCode\#SAC rdfs:subClassOf cs:ActCode\#%5fActMonitoringProtocolCode;
  rdfs:label "special access";
  dc:title "special access";
  rdfs:comment "Description:A drug that requires special access permission to be prescribed and dispensed.";
  dcterms:description "Description:A drug that requires special access permission to be prescribed and dispensed.".

cs:ActCode\#%5fActNonObservationIndicationCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActNonObservationIndicationCode";
  dc:title "ActNonObservationIndicationCode";
  rdfs:comment "Description:Concepts representing indications (reasons for clinical action) other than diagnosis and symptoms.";
  dcterms:description "Description:Concepts representing indications (reasons for clinical action) other than diagnosis and symptoms.".

cs:ActCode\#IND01 rdfs:subClassOf cs:ActCode\#%5fActNonObservationIndicationCode;
  rdfs:label "imaging study requiring contrast";
  dc:title "imaging study requiring contrast";
  rdfs:comment "Description:Contrast agent required for imaging study.";
  dcterms:description "Description:Contrast agent required for imaging study.".

cs:ActCode\#IND02 rdfs:subClassOf cs:ActCode\#%5fActNonObservationIndicationCode;
  rdfs:label "colonoscopy prep";
  dc:title "colonoscopy prep";
  rdfs:comment "Description:Provision of prescription or direction to consume a product for purposes of bowel clearance in preparation for a colonoscopy.";
  dcterms:description "Description:Provision of prescription or direction to consume a product for purposes of bowel clearance in preparation for a colonoscopy.".

cs:ActCode\#IND03 rdfs:subClassOf cs:ActCode\#%5fActNonObservationIndicationCode;
  rdfs:label "prophylaxis";
  dc:title "prophylaxis";
  rdfs:comment "Description:Provision of medication as a preventative measure during a treatment or other period of increased risk.";
  dcterms:description "Description:Provision of medication as a preventative measure during a treatment or other period of increased risk.".

cs:ActCode\#IND04 rdfs:subClassOf cs:ActCode\#%5fActNonObservationIndicationCode;
  rdfs:label "surgical prophylaxis";
  dc:title "surgical prophylaxis";
  rdfs:comment "Description:Provision of medication during pre-operative phase; e.g., antibiotics before dental surgery or bowel prep before colon surgery.";
  dcterms:description "Description:Provision of medication during pre-operative phase; e.g., antibiotics before dental surgery or bowel prep before colon surgery.".

cs:ActCode\#IND05 rdfs:subClassOf cs:ActCode\#%5fActNonObservationIndicationCode;
  rdfs:label "pregnancy prophylaxis";
  dc:title "pregnancy prophylaxis";
  rdfs:comment "Description:Provision of medication for pregnancy --e.g., vitamins, antibiotic treatments for vaginal tract colonization, etc.";
  dcterms:description "Description:Provision of medication for pregnancy --e.g., vitamins, antibiotic treatments for vaginal tract colonization, etc.".

cs:ActCode\#%5fActObservationVerificationType rdfs:subClassOf cs:ActCode;
  rdfs:label "act observation verification";
  dc:title "act observation verification";
  rdfs:comment "Identifies the type of verification investigation being undertaken with respect to the subject of the verification activity.\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           \n                              Verification of eligibility for coverage under a policy or program - aka enrolled/covered by a policy or program\r\n\n                           \n                           \n                              Verification of record - e.g., person has record in an immunization registry\r\n\n                           \n                           \n                              Verification of enumeration - e.g. NPI\r\n\n                           \n                           \n                              Verification of Board Certification - provider specific\r\n\n                           \n                           \n                              Verification of Certification - e.g. JAHCO, NCQA, URAC\r\n\n                           \n                           \n                              Verification of Conformance - e.g. entity use with HIPAA, conformant to the CCHIT EHR system criteria\r\n\n                           \n                           \n                              Verification of Provider Credentials\r\n\n                           \n                           \n                              Verification of no adverse findings - e.g. on National Provider Data Bank, Health Integrity Protection Data Base (HIPDB)";
  dcterms:description "Identifies the type of verification investigation being undertaken with respect to the subject of the verification activity.\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           \n                              Verification of eligibility for coverage under a policy or program - aka enrolled/covered by a policy or program\r\n\n                           \n                           \n                              Verification of record - e.g., person has record in an immunization registry\r\n\n                           \n                           \n                              Verification of enumeration - e.g. NPI\r\n\n                           \n                           \n                              Verification of Board Certification - provider specific\r\n\n                           \n                           \n                              Verification of Certification - e.g. JAHCO, NCQA, URAC\r\n\n                           \n                           \n                              Verification of Conformance - e.g. entity use with HIPAA, conformant to the CCHIT EHR system criteria\r\n\n                           \n                           \n                              Verification of Provider Credentials\r\n\n                           \n                           \n                              Verification of no adverse findings - e.g. on National Provider Data Bank, Health Integrity Protection Data Base (HIPDB)".

cs:ActCode\#VFPAPER rdfs:subClassOf cs:ActCode\#%5fActObservationVerificationType;
  rdfs:label "verify paper";
  dc:title "verify paper";
  rdfs:comment "Definition:Indicates that the paper version of the record has, should be or is being verified against the electronic version.";
  dcterms:description "Definition:Indicates that the paper version of the record has, should be or is being verified against the electronic version.".

cs:ActCode\#%5fActPaymentCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActPaymentCode";
  dc:title "ActPaymentCode";
  rdfs:comment "Code identifying the method or the movement of payment instructions.\r\n\n                        Codes are drawn from X12 data element 591 (PaymentMethodCode)";
  dcterms:description "Code identifying the method or the movement of payment instructions.\r\n\n                        Codes are drawn from X12 data element 591 (PaymentMethodCode)".

cs:ActCode\#ACH rdfs:subClassOf cs:ActCode\#%5fActPaymentCode;
  rdfs:label "Automated Clearing House";
  dc:title "Automated Clearing House";
  rdfs:comment "Automated Clearing House (ACH).";
  dcterms:description "Automated Clearing House (ACH).".

cs:ActCode\#CHK rdfs:subClassOf cs:ActCode\#%5fActPaymentCode;
  rdfs:label "Cheque";
  dc:title "Cheque";
  rdfs:comment "A written order to a bank to pay the amount specified from funds on deposit.";
  dcterms:description "A written order to a bank to pay the amount specified from funds on deposit.".

cs:ActCode\#DDP rdfs:subClassOf cs:ActCode\#%5fActPaymentCode;
  rdfs:label "Direct Deposit";
  dc:title "Direct Deposit";
  rdfs:comment "Electronic Funds Transfer (EFT) deposit into the payee's bank account";
  dcterms:description "Electronic Funds Transfer (EFT) deposit into the payee's bank account".

cs:ActCode\#NON rdfs:subClassOf cs:ActCode\#%5fActPaymentCode;
  rdfs:label "Non-Payment Data";
  dc:title "Non-Payment Data";
  rdfs:comment "Non-Payment Data.";
  dcterms:description "Non-Payment Data.".

cs:ActCode\#%5fActPharmacySupplyType rdfs:subClassOf cs:ActCode;
  rdfs:label "ActPharmacySupplyType";
  dc:title "ActPharmacySupplyType";
  rdfs:comment "Identifies types of dispensing events";
  dcterms:description "Identifies types of dispensing events".

cs:ActCode\#DF rdfs:subClassOf cs:ActCode\#%5fActPharmacySupplyType;
  rdfs:label "Daily Fill";
  dc:title "Daily Fill";
  rdfs:comment "A fill providing sufficient supply for one day";
  dcterms:description "A fill providing sufficient supply for one day".

cs:ActCode\#EM rdfs:subClassOf cs:ActCode\#%5fActPharmacySupplyType;
  rdfs:label "Emergency Supply";
  dc:title "Emergency Supply";
  rdfs:comment "A supply action where there is no 'valid' order for the supplied medication.  E.g. Emergency vacation supply, weekend supply (when prescriber is unavailable to provide a renewal prescription)";
  dcterms:description "A supply action where there is no 'valid' order for the supplied medication.  E.g. Emergency vacation supply, weekend supply (when prescriber is unavailable to provide a renewal prescription)".

cs:ActCode\#SO rdfs:subClassOf cs:ActCode\#EM;
  rdfs:label "Script Owing";
  dc:title "Script Owing";
  rdfs:comment "An emergency supply where the expectation is that a formal order authorizing the supply will be provided at a later date.";
  dcterms:description "An emergency supply where the expectation is that a formal order authorizing the supply will be provided at a later date.".

cs:ActCode\#FF rdfs:subClassOf cs:ActCode\#%5fActPharmacySupplyType;
  rdfs:label "First Fill";
  dc:title "First Fill";
  rdfs:comment "The initial fill against an order.  (This includes initial fills against refill orders.)";
  dcterms:description "The initial fill against an order.  (This includes initial fills against refill orders.)".

cs:ActCode\#FFC rdfs:subClassOf cs:ActCode\#FF;
  rdfs:label "First Fill - Complete";
  dc:title "First Fill - Complete";
  rdfs:comment "A first fill where the quantity supplied is equal to one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a complete fill would be for the full 90 tablets).";
  dcterms:description "A first fill where the quantity supplied is equal to one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a complete fill would be for the full 90 tablets).".

cs:ActCode\#FFP rdfs:subClassOf cs:ActCode\#FF;
  rdfs:label "First Fill - Part Fill";
  dc:title "First Fill - Part Fill";
  rdfs:comment "A first fill where the quantity supplied is less than one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a partial fill might be for only 30 tablets.)";
  dcterms:description "A first fill where the quantity supplied is less than one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a partial fill might be for only 30 tablets.)".

cs:ActCode\#FFSS rdfs:subClassOf cs:ActCode\#FF;
  rdfs:label "first fill, partial strength";
  dc:title "first fill, partial strength";
  rdfs:comment "A first fill where the strength supplied is less than the ordered strength. (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).";
  dcterms:description "A first fill where the strength supplied is less than the ordered strength. (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).".

cs:ActCode\#TF rdfs:subClassOf cs:ActCode\#FF;
  rdfs:label "Trial Fill";
  dc:title "Trial Fill";
  rdfs:comment "A fill where a small portion is provided to allow for determination of the therapy effectiveness and patient tolerance.";
  dcterms:description "A fill where a small portion is provided to allow for determination of the therapy effectiveness and patient tolerance.".

cs:ActCode\#FS rdfs:subClassOf cs:ActCode\#%5fActPharmacySupplyType;
  rdfs:label "Floor stock";
  dc:title "Floor stock";
  rdfs:comment "A supply action to restock a smaller more local dispensary.";
  dcterms:description "A supply action to restock a smaller more local dispensary.".

cs:ActCode\#MS rdfs:subClassOf cs:ActCode\#%5fActPharmacySupplyType;
  rdfs:label "Manufacturer Sample";
  dc:title "Manufacturer Sample";
  rdfs:comment "A supply of a manufacturer sample";
  dcterms:description "A supply of a manufacturer sample".

cs:ActCode\#RF rdfs:subClassOf cs:ActCode\#%5fActPharmacySupplyType;
  rdfs:label "Refill";
  dc:title "Refill";
  rdfs:comment "A fill against an order that has already been filled (or partially filled) at least once.";
  dcterms:description "A fill against an order that has already been filled (or partially filled) at least once.".

cs:ActCode\#UD rdfs:subClassOf cs:ActCode\#RF;
  rdfs:label "Unit Dose";
  dc:title "Unit Dose";
  rdfs:comment "A supply action that provides sufficient material for a single dose.";
  dcterms:description "A supply action that provides sufficient material for a single dose.".

cs:ActCode\#RFC rdfs:subClassOf cs:ActCode\#RF;
  rdfs:label "Refill - Complete";
  dc:title "Refill - Complete";
  rdfs:comment "A refill where the quantity supplied is equal to one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a complete fill would be for the full 90 tablets.)";
  dcterms:description "A refill where the quantity supplied is equal to one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a complete fill would be for the full 90 tablets.)".

cs:ActCode\#RFCS rdfs:subClassOf cs:ActCode\#RFC;
  rdfs:label "refill complete partial strength";
  dc:title "refill complete partial strength";
  rdfs:comment "A refill where the quantity supplied is equal to one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a complete fill would be for the full 90 tablets.) and where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).";
  dcterms:description "A refill where the quantity supplied is equal to one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a complete fill would be for the full 90 tablets.) and where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).".

cs:ActCode\#RFF rdfs:subClassOf cs:ActCode\#RF;
  rdfs:label "Refill (First fill this facility)";
  dc:title "Refill (First fill this facility)";
  rdfs:comment "The first fill against an order that has already been filled at least once at another facility.";
  dcterms:description "The first fill against an order that has already been filled at least once at another facility.".

cs:ActCode\#RFFS rdfs:subClassOf cs:ActCode\#RFF;
  rdfs:label "refill partial strength (first fill this facility)";
  dc:title "refill partial strength (first fill this facility)";
  rdfs:comment "The first fill against an order that has already been filled at least once at another facility and where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).";
  dcterms:description "The first fill against an order that has already been filled at least once at another facility and where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).".

cs:ActCode\#RFP rdfs:subClassOf cs:ActCode\#RF;
  rdfs:label "Refill - Part Fill";
  dc:title "Refill - Part Fill";
  rdfs:comment "A refill where the quantity supplied is less than one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a partial fill might be for only 30 tablets.)";
  dcterms:description "A refill where the quantity supplied is less than one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a partial fill might be for only 30 tablets.)".

cs:ActCode\#RFPS rdfs:subClassOf cs:ActCode\#RFP;
  rdfs:label "refill part fill partial strength";
  dc:title "refill part fill partial strength";
  rdfs:comment "A refill where the quantity supplied is less than one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a partial fill might be for only 30 tablets.) and where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).";
  dcterms:description "A refill where the quantity supplied is less than one full repetition of the ordered amount. (e.g. If the order was 90 tablets, 3 refills, a partial fill might be for only 30 tablets.) and where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).".

cs:ActCode\#RFS rdfs:subClassOf cs:ActCode\#RF;
  rdfs:label "refill partial strength";
  dc:title "refill partial strength";
  rdfs:comment "A fill against an order that has already been filled (or partially filled) at least once and where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).";
  dcterms:description "A fill against an order that has already been filled (or partially filled) at least once and where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).".

cs:ActCode\#TB rdfs:subClassOf cs:ActCode\#RF;
  rdfs:label "Trial Balance";
  dc:title "Trial Balance";
  rdfs:comment "A fill where the remainder of a 'complete' fill is provided after a trial fill has been provided.";
  dcterms:description "A fill where the remainder of a 'complete' fill is provided after a trial fill has been provided.".

cs:ActCode\#TBS rdfs:subClassOf cs:ActCode\#TB;
  rdfs:label "trial balance partial strength";
  dc:title "trial balance partial strength";
  rdfs:comment "A fill where the remainder of a 'complete' fill is provided after a trial fill has been provided and where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).";
  dcterms:description "A fill where the remainder of a 'complete' fill is provided after a trial fill has been provided and where the strength supplied is less than the ordered strength (e.g. 10mg for an order of 50mg where a subsequent fill will dispense 40mg tablets).".

cs:ActCode\#UDE rdfs:subClassOf cs:ActCode\#%5fActPharmacySupplyType;
  rdfs:label "unit dose equivalent";
  dc:title "unit dose equivalent";
  rdfs:comment "A supply action that provides sufficient material for a single dose via multiple products.  E.g. 2 50mg tablets for a 100mg unit dose.";
  dcterms:description "A supply action that provides sufficient material for a single dose via multiple products.  E.g. 2 50mg tablets for a 100mg unit dose.".

cs:ActCode\#%5fActPolicyType rdfs:subClassOf cs:ActCode;
  rdfs:label "ActPolicyType";
  dc:title "ActPolicyType";
  rdfs:comment "Description:Types of policies that further specify the ActClassPolicy value set.";
  dcterms:description "Description:Types of policies that further specify the ActClassPolicy value set.".

cs:ActCode\#%5fActPrivacyPolicy rdfs:subClassOf cs:ActCode\#%5fActPolicyType;
  rdfs:label "ActPrivacyPolicy";
  dc:title "ActPrivacyPolicy";
  rdfs:comment "A policy deeming certain information to be private to an individual or organization.\r\n\n                        \n                           Definition: A mandate, obligation, requirement, rule, or expectation relating to privacy.\r\n\n                        \n                           Discussion: ActPrivacyPolicyType codes support the designation of the 1..* policies that are applicable to an Act such as a Consent Directive, a Role such as a VIP Patient, or an Entity such as a patient who is a minor.  1..* ActPrivacyPolicyType values may be associated with an Act or Role to indicate the policies that govern the assignment of an Act or Role confidentialityCode.  Use of multiple ActPrivacyPolicyType values enables fine grain specification of applicable policies, but must be carefully assigned to ensure cogency and avoid creation of conflicting policy mandates.\r\n\n                        \n                           Usage Note: Statutory title may be named in the ActClassPolicy Act Act.title to specify which privacy policy is being referenced.";
  dcterms:description "A policy deeming certain information to be private to an individual or organization.\r\n\n                        \n                           Definition: A mandate, obligation, requirement, rule, or expectation relating to privacy.\r\n\n                        \n                           Discussion: ActPrivacyPolicyType codes support the designation of the 1..* policies that are applicable to an Act such as a Consent Directive, a Role such as a VIP Patient, or an Entity such as a patient who is a minor.  1..* ActPrivacyPolicyType values may be associated with an Act or Role to indicate the policies that govern the assignment of an Act or Role confidentialityCode.  Use of multiple ActPrivacyPolicyType values enables fine grain specification of applicable policies, but must be carefully assigned to ensure cogency and avoid creation of conflicting policy mandates.\r\n\n                        \n                           Usage Note: Statutory title may be named in the ActClassPolicy Act Act.title to specify which privacy policy is being referenced.".

cs:ActCode\#%5fActConsentDirective rdfs:subClassOf cs:ActCode\#%5fActPrivacyPolicy;
  rdfs:label "ActConsentDirective";
  dc:title "ActConsentDirective";
  rdfs:comment "Definition: Specifies the type of consent directive indicated by an ActClassPolicy e.g., a 3rd party authorization to disclose or consent for a substitute decision maker (SDM) or a notice of privacy policy.\r\n\n                        \n                           Usage Note: ActConsentDirective codes are used to specify the type of Consent Directive to which a Consent Directive Act conforms.";
  dcterms:description "Definition: Specifies the type of consent directive indicated by an ActClassPolicy e.g., a 3rd party authorization to disclose or consent for a substitute decision maker (SDM) or a notice of privacy policy.\r\n\n                        \n                           Usage Note: ActConsentDirective codes are used to specify the type of Consent Directive to which a Consent Directive Act conforms.".

cs:ActCode\#EMRGONLY rdfs:subClassOf cs:ActCode\#%5fActConsentDirective;
  rdfs:label "emergency only";
  dc:title "emergency only";
  rdfs:comment "This general consent directive specifically limits disclosure of health information for purpose of emergency treatment. Additional parameters may further limit the disclosure to specific users, roles, duration, types of information, and impose uses obligations.\r\n\n                        \n                           Definition: Opt-in to disclosure of health information for emergency only consent directive.";
  dcterms:description "This general consent directive specifically limits disclosure of health information for purpose of emergency treatment. Additional parameters may further limit the disclosure to specific users, roles, duration, types of information, and impose uses obligations.\r\n\n                        \n                           Definition: Opt-in to disclosure of health information for emergency only consent directive.".

cs:ActCode\#NOPP rdfs:subClassOf cs:ActCode\#%5fActConsentDirective;
  rdfs:label "notice of privacy practices";
  dc:title "notice of privacy practices";
  rdfs:comment "Acknowledgement of custodian notice of privacy practices.\r\n\n                        \n                           Usage Notes: This type of consent directive acknowledges a custodian's notice of privacy practices including its permitted collection, access, use and disclosure of health information to users and for purposes of use specified.";
  dcterms:description "Acknowledgement of custodian notice of privacy practices.\r\n\n                        \n                           Usage Notes: This type of consent directive acknowledges a custodian's notice of privacy practices including its permitted collection, access, use and disclosure of health information to users and for purposes of use specified.".

cs:ActCode\#OPTIN rdfs:subClassOf cs:ActCode\#%5fActConsentDirective;
  rdfs:label "opt-in";
  dc:title "opt-in";
  rdfs:comment "This general consent directive permits disclosure of health information.  Additional parameter may limit authorized users, purpose of use, user obligations, duration, or information types permitted to be disclosed, and impose uses obligations.\r\n\n                        \n                           Definition: Opt-in to disclosure of health information consent directive.";
  dcterms:description "This general consent directive permits disclosure of health information.  Additional parameter may limit authorized users, purpose of use, user obligations, duration, or information types permitted to be disclosed, and impose uses obligations.\r\n\n                        \n                           Definition: Opt-in to disclosure of health information consent directive.".

cs:ActCode\#OPTOUT rdfs:subClassOf cs:ActCode\#%5fActConsentDirective;
  rdfs:label "op-out";
  dc:title "op-out";
  rdfs:comment "This general consent directive prohibits disclosure of health information.  Additional parameters may permit access to some information types by certain users, roles, purposes of use, durations and impose user obligations.\r\n\n                        \n                           Definition: Opt-out of disclosure of health information consent directive.";
  dcterms:description "This general consent directive prohibits disclosure of health information.  Additional parameters may permit access to some information types by certain users, roles, purposes of use, durations and impose user obligations.\r\n\n                        \n                           Definition: Opt-out of disclosure of health information consent directive.".

cs:ActCode\#%5fInformationSensitivityPolicy rdfs:subClassOf cs:ActCode\#%5fActPrivacyPolicy;
  rdfs:label "InformationSensitivityPolicy";
  dc:title "InformationSensitivityPolicy";
  rdfs:comment "A mandate, obligation, requirement, rule, or expectation characterizing the value or importance of a resource and may include its vulnerability. (Based on ISO7498-2:1989. Note: The vulnerability of personally identifiable sensitive information may be based on concerns that the unauthorized disclosure may result in social stigmatization or discrimination.) Description:  Types of Sensitivity policy that apply to Acts or Roles.  A sensitivity policy is adopted by an enterprise or group of enterprises (a 'policy domain') through a formal data use agreement that stipulates the value, importance, and vulnerability of information. A sensitivity code representing a sensitivity policy may be associated with criteria such as categories of information or sets of information identifiers (e.g., a value set of clinical codes or branch in a code system hierarchy).   These criteria may in turn be used for the Policy Decision Point in a Security Engine.  A sensitivity code may be used to set the confidentiality code used on information about Acts and Roles to trigger the security mechanisms required to control how security principals (i.e., a person, a machine, a software application) may act on the information (e.g., collection, access, use, or disclosure). Sensitivity codes are never assigned to the transport or business envelope containing patient specific information being exchanged outside of a policy domain as this would disclose the information intended to be protected by the policy.  When sensitive information is exchanged with others outside of a policy domain, the confidentiality code on the transport or business envelope conveys the receiver's responsibilities and indicates the how the information is to be safeguarded without unauthorized disclosure of the sensitive information.  This ensures that sensitive information is treated by receivers as the sender intends, accomplishing interoperability without point to point negotiations.\r\n\n                        \n                           Usage Note: Sensitivity codes are not useful for interoperability outside of a policy domain because sensitivity policies are typically localized and vary drastically across policy domains even for the same information category because of differing organizational business rules, security policies, and jurisdictional requirements.  For example, an employee's sensitivity code would make little sense for use outside of a policy domain.   'Taboo' would rarely be useful outside of a policy domain unless there are jurisdictional requirements requiring that a provider disclose sensitive information to a patient directly.  Sensitivity codes may be more appropriate in a legacy system's Master Files in order to notify those who access a patient's orders and observations about the sensitivity policies that apply.  Newer systems may have a security engine that uses a sensitivity policy's criteria directly.  The specializable InformationSensitivityPolicy Act.code may be useful in some scenarios if used in combination with a sensitivity identifier and/or Act.title.";
  dcterms:description "A mandate, obligation, requirement, rule, or expectation characterizing the value or importance of a resource and may include its vulnerability. (Based on ISO7498-2:1989. Note: The vulnerability of personally identifiable sensitive information may be based on concerns that the unauthorized disclosure may result in social stigmatization or discrimination.) Description:  Types of Sensitivity policy that apply to Acts or Roles.  A sensitivity policy is adopted by an enterprise or group of enterprises (a 'policy domain') through a formal data use agreement that stipulates the value, importance, and vulnerability of information. A sensitivity code representing a sensitivity policy may be associated with criteria such as categories of information or sets of information identifiers (e.g., a value set of clinical codes or branch in a code system hierarchy).   These criteria may in turn be used for the Policy Decision Point in a Security Engine.  A sensitivity code may be used to set the confidentiality code used on information about Acts and Roles to trigger the security mechanisms required to control how security principals (i.e., a person, a machine, a software application) may act on the information (e.g., collection, access, use, or disclosure). Sensitivity codes are never assigned to the transport or business envelope containing patient specific information being exchanged outside of a policy domain as this would disclose the information intended to be protected by the policy.  When sensitive information is exchanged with others outside of a policy domain, the confidentiality code on the transport or business envelope conveys the receiver's responsibilities and indicates the how the information is to be safeguarded without unauthorized disclosure of the sensitive information.  This ensures that sensitive information is treated by receivers as the sender intends, accomplishing interoperability without point to point negotiations.\r\n\n                        \n                           Usage Note: Sensitivity codes are not useful for interoperability outside of a policy domain because sensitivity policies are typically localized and vary drastically across policy domains even for the same information category because of differing organizational business rules, security policies, and jurisdictional requirements.  For example, an employee's sensitivity code would make little sense for use outside of a policy domain.   'Taboo' would rarely be useful outside of a policy domain unless there are jurisdictional requirements requiring that a provider disclose sensitive information to a patient directly.  Sensitivity codes may be more appropriate in a legacy system's Master Files in order to notify those who access a patient's orders and observations about the sensitivity policies that apply.  Newer systems may have a security engine that uses a sensitivity policy's criteria directly.  The specializable InformationSensitivityPolicy Act.code may be useful in some scenarios if used in combination with a sensitivity identifier and/or Act.title.".

cs:ActCode\#%5fActInformationSensitivityPolicy rdfs:subClassOf cs:ActCode\#%5fInformationSensitivityPolicy;
  rdfs:label "ActInformationSensitivityPolicy";
  dc:title "ActInformationSensitivityPolicy";
  rdfs:comment "Types of sensitivity policies that apply to Acts.  Act.confidentialityCode is defined in the RIM as \"constraints around appropriate disclosure of information about this Act, regardless of mood.\"\r\n\n                        \n                           Usage Note: ActSensitivity codes are used to bind information to an Act.confidentialityCode according to local sensitivity policy so that those confidentiality codes can then govern its handling across enterprises.  Internally to a policy domain, however, local policies guide the access control system on how end users in that policy domain are  able to use information tagged with these sensitivity values.";
  dcterms:description "Types of sensitivity policies that apply to Acts.  Act.confidentialityCode is defined in the RIM as \"constraints around appropriate disclosure of information about this Act, regardless of mood.\"\r\n\n                        \n                           Usage Note: ActSensitivity codes are used to bind information to an Act.confidentialityCode according to local sensitivity policy so that those confidentiality codes can then govern its handling across enterprises.  Internally to a policy domain, however, local policies guide the access control system on how end users in that policy domain are  able to use information tagged with these sensitivity values.".

cs:ActCode\#ETH rdfs:subClassOf cs:ActCode\#%5fActInformationSensitivityPolicy;
  rdfs:label "substance abuse information sensitivity";
  dc:title "substance abuse information sensitivity";
  rdfs:comment "Policy for handling alcohol or drug-abuse information, which will be afforded heightened confidentiality.  Information handling protocols based on organizational policies related to alcohol or drug-abuse information that is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling alcohol or drug-abuse information, which will be afforded heightened confidentiality.  Information handling protocols based on organizational policies related to alcohol or drug-abuse information that is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#GDIS rdfs:subClassOf cs:ActCode\#%5fActInformationSensitivityPolicy;
  rdfs:label "genetic disease information sensitivity";
  dc:title "genetic disease information sensitivity";
  rdfs:comment "Policy for handling genetic disease information, which will be afforded heightened confidentiality. Information handling protocols based on organizational policies related to genetic disease information that is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling genetic disease information, which will be afforded heightened confidentiality. Information handling protocols based on organizational policies related to genetic disease information that is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#HIV rdfs:subClassOf cs:ActCode\#%5fActInformationSensitivityPolicy;
  rdfs:label "HIV/AIDS information sensitivity";
  dc:title "HIV/AIDS information sensitivity";
  rdfs:comment "Policy for handling HIV or AIDS information, which will be afforded heightened confidentiality. Information handling protocols based on organizational policies related to HIV or AIDS information that is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling HIV or AIDS information, which will be afforded heightened confidentiality. Information handling protocols based on organizational policies related to HIV or AIDS information that is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#PSY rdfs:subClassOf cs:ActCode\#%5fActInformationSensitivityPolicy;
  rdfs:label "psychiatry information sensitivity";
  dc:title "psychiatry information sensitivity";
  rdfs:comment "Policy for handling psychiatry information, which will be afforded heightened confidentiality. Information handling protocols based on organizational policies related to psychiatry information that is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling psychiatry information, which will be afforded heightened confidentiality. Information handling protocols based on organizational policies related to psychiatry information that is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#SCA rdfs:subClassOf cs:ActCode\#%5fActInformationSensitivityPolicy;
  rdfs:label "sickle cell anemia";
  dc:title "sickle cell anemia";
  rdfs:comment "Policy for handling sickle cell disease information, which is afforded heightened confidentiality.  Information handling protocols are based on organizational policies related to sickle cell disease information, which is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then the Act valued with this ActCode should be associated with an Act valued with any applicable laws from the ActPrivacyLaw code system.";
  dcterms:description "Policy for handling sickle cell disease information, which is afforded heightened confidentiality.  Information handling protocols are based on organizational policies related to sickle cell disease information, which is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then the Act valued with this ActCode should be associated with an Act valued with any applicable laws from the ActPrivacyLaw code system.".

cs:ActCode\#SDV rdfs:subClassOf cs:ActCode\#%5fActInformationSensitivityPolicy;
  rdfs:label "sexual assault, abuse, or domestic violence information sensitivity";
  dc:title "sexual assault, abuse, or domestic violence information sensitivity";
  rdfs:comment "Policy for handling sexual assault, abuse, or domestic violence information, which will be afforded heightened confidentiality. Information handling protocols based on organizational policies related to sexual assault, abuse, or domestic violence information that is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling sexual assault, abuse, or domestic violence information, which will be afforded heightened confidentiality. Information handling protocols based on organizational policies related to sexual assault, abuse, or domestic violence information that is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#SEX rdfs:subClassOf cs:ActCode\#%5fActInformationSensitivityPolicy;
  rdfs:label "sexuality and reproductive health information sensitivity";
  dc:title "sexuality and reproductive health information sensitivity";
  rdfs:comment "Policy for handling sexuality and reproductive health information, which will be afforded heightened confidentiality.  Information handling protocols based on organizational policies related to sexuality and reproductive health information that is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling sexuality and reproductive health information, which will be afforded heightened confidentiality.  Information handling protocols based on organizational policies related to sexuality and reproductive health information that is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#STD rdfs:subClassOf cs:ActCode\#%5fActInformationSensitivityPolicy;
  rdfs:label "sexually transmitted disease information sensitivity";
  dc:title "sexually transmitted disease information sensitivity";
  rdfs:comment "Policy for handling sexually transmitted disease information, which will be afforded heightened confidentiality.\n Information handling protocols based on organizational policies related to sexually transmitted disease information that is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling sexually transmitted disease information, which will be afforded heightened confidentiality.\n Information handling protocols based on organizational policies related to sexually transmitted disease information that is deemed sensitive.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#TBOO rdfs:subClassOf cs:ActCode\#%5fActInformationSensitivityPolicy;
  rdfs:label "taboo";
  dc:title "taboo";
  rdfs:comment "Policy for handling information not to be initially disclosed or discussed with patient except by a physician assigned to patient in this case. Information handling protocols based on organizational policies related to sensitive patient information that must be initially discussed with the patient by an attending physician before being disclosed to the patient.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.\r\n\n                        \n                           Open Issue: This definition conflates a rule and a characteristic, and there may be a similar issue with ts sibling codes.";
  dcterms:description "Policy for handling information not to be initially disclosed or discussed with patient except by a physician assigned to patient in this case. Information handling protocols based on organizational policies related to sensitive patient information that must be initially discussed with the patient by an attending physician before being disclosed to the patient.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.\r\n\n                        \n                           Open Issue: This definition conflates a rule and a characteristic, and there may be a similar issue with ts sibling codes.".

cs:ActCode\#SICKLE rdfs:subClassOf cs:ActCode\#%5fActInformationSensitivityPolicy;
  rdfs:label "sickle cell";
  dc:title "sickle cell";
  rdfs:comment "Types of sensitivity policies that apply to Acts.  Act.confidentialityCode is defined in the RIM as \"constraints around appropriate disclosure of information about this Act, regardless of mood.\"\r\n\n                        \n                           Usage Note: ActSensitivity codes are used to bind information to an Act.confidentialityCode according to local sensitivity policy so that those confidentiality codes can then govern its handling across enterprises.  Internally to a policy domain, however, local policies guide the access control system on how end users in that policy domain are able to use information tagged with these sensitivity values.";
  dcterms:description "Types of sensitivity policies that apply to Acts.  Act.confidentialityCode is defined in the RIM as \"constraints around appropriate disclosure of information about this Act, regardless of mood.\"\r\n\n                        \n                           Usage Note: ActSensitivity codes are used to bind information to an Act.confidentialityCode according to local sensitivity policy so that those confidentiality codes can then govern its handling across enterprises.  Internally to a policy domain, however, local policies guide the access control system on how end users in that policy domain are able to use information tagged with these sensitivity values.".

cs:ActCode\#%5fEntitySensitivityPolicyType rdfs:subClassOf cs:ActCode\#%5fInformationSensitivityPolicy;
  rdfs:label "EntityInformationSensitivityPolicy";
  dc:title "EntityInformationSensitivityPolicy";
  rdfs:comment "Types of sensitivity policies that may apply to a sensitive attribute on an Entity.\r\n\n                        \n                           Usage Note: EntitySensitivity codes are used to convey a policy that is applicable to sensitive information conveyed by an entity attribute.  May be used to bind a Role.confidentialityCode associated with an Entity per organizational policy.  Role.confidentialityCode is defined in the RIM as \"an indication of the appropriate disclosure of information about this Role with respect to the playing Entity.\"";
  dcterms:description "Types of sensitivity policies that may apply to a sensitive attribute on an Entity.\r\n\n                        \n                           Usage Note: EntitySensitivity codes are used to convey a policy that is applicable to sensitive information conveyed by an entity attribute.  May be used to bind a Role.confidentialityCode associated with an Entity per organizational policy.  Role.confidentialityCode is defined in the RIM as \"an indication of the appropriate disclosure of information about this Role with respect to the playing Entity.\"".

cs:ActCode\#DEMO rdfs:subClassOf cs:ActCode\#%5fEntitySensitivityPolicyType;
  rdfs:label "all demographic information sensitivity";
  dc:title "all demographic information sensitivity";
  rdfs:comment "Policy for handling all demographic information about an information subject, which will be afforded heightened confidentiality. Policies may govern sensitivity of information related to all demographic about an information subject, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling all demographic information about an information subject, which will be afforded heightened confidentiality. Policies may govern sensitivity of information related to all demographic about an information subject, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#DOB rdfs:subClassOf cs:ActCode\#%5fEntitySensitivityPolicyType;
  rdfs:label "date of birth information sensitivity";
  dc:title "date of birth information sensitivity";
  rdfs:comment "Policy for handling information related to an information subject's date of birth, which will be afforded heightened confidentiality.Policies may govern sensitivity of information related to an information subject's date of birth, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling information related to an information subject's date of birth, which will be afforded heightened confidentiality.Policies may govern sensitivity of information related to an information subject's date of birth, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#GENDER rdfs:subClassOf cs:ActCode\#%5fEntitySensitivityPolicyType;
  rdfs:label "gender and sexual orientation information sensitivity";
  dc:title "gender and sexual orientation information sensitivity";
  rdfs:comment "Policy for handling information related to an information subject's gender and sexual orientation, which will be afforded heightened confidentiality.  Policies may govern sensitivity of information related to an information subject's gender and sexual orientation, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling information related to an information subject's gender and sexual orientation, which will be afforded heightened confidentiality.  Policies may govern sensitivity of information related to an information subject's gender and sexual orientation, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#LIVARG rdfs:subClassOf cs:ActCode\#%5fEntitySensitivityPolicyType;
  rdfs:label "living arrangement information sensitivity";
  dc:title "living arrangement information sensitivity";
  rdfs:comment "Policy for handling information related to an information subject's living arrangement, which will be afforded heightened confidentiality.  Policies may govern sensitivity of information related to an information subject's living arrangement, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling information related to an information subject's living arrangement, which will be afforded heightened confidentiality.  Policies may govern sensitivity of information related to an information subject's living arrangement, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#MARST rdfs:subClassOf cs:ActCode\#%5fEntitySensitivityPolicyType;
  rdfs:label "marital status information sensitivity";
  dc:title "marital status information sensitivity";
  rdfs:comment "Policy for handling information related to an information subject's marital status, which will be afforded heightened confidentiality. Policies may govern sensitivity of information related to an information subject's marital status, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling information related to an information subject's marital status, which will be afforded heightened confidentiality. Policies may govern sensitivity of information related to an information subject's marital status, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#RACE rdfs:subClassOf cs:ActCode\#%5fEntitySensitivityPolicyType;
  rdfs:label "race information sensitivity";
  dc:title "race information sensitivity";
  rdfs:comment "Policy for handling information related to an information subject's race, which will be afforded heightened confidentiality.  Policies may govern sensitivity of information related to an information subject's race, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling information related to an information subject's race, which will be afforded heightened confidentiality.  Policies may govern sensitivity of information related to an information subject's race, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Note: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#REL rdfs:subClassOf cs:ActCode\#%5fEntitySensitivityPolicyType;
  rdfs:label "religion information sensitivity";
  dc:title "religion information sensitivity";
  rdfs:comment "Policy for handling information related to an information subject's religious affiliation, which will be afforded heightened confidentiality.  Policies may govern sensitivity of information related to an information subject's religion, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Notes: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling information related to an information subject's religious affiliation, which will be afforded heightened confidentiality.  Policies may govern sensitivity of information related to an information subject's religion, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Notes: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#%5fRoleInformationSensitivityPolicy rdfs:subClassOf cs:ActCode\#%5fInformationSensitivityPolicy;
  rdfs:label "RoleInformationSensitivityPolicy";
  dc:title "RoleInformationSensitivityPolicy";
  rdfs:comment "Types of sensitivity policies that apply to Roles.\r\n\n                        \n                           Usage Notes: RoleSensitivity codes are used to bind information to a Role.confidentialityCode per organizational policy.  Role.confidentialityCode is defined in the RIM as \"an indication of the appropriate disclosure of information about this Role with respect to the playing Entity.\"";
  dcterms:description "Types of sensitivity policies that apply to Roles.\r\n\n                        \n                           Usage Notes: RoleSensitivity codes are used to bind information to a Role.confidentialityCode per organizational policy.  Role.confidentialityCode is defined in the RIM as \"an indication of the appropriate disclosure of information about this Role with respect to the playing Entity.\"".

cs:ActCode\#B rdfs:subClassOf cs:ActCode\#%5fRoleInformationSensitivityPolicy;
  rdfs:label "business information sensitivity";
  dc:title "business information sensitivity";
  rdfs:comment "Policy for handling trade secrets such as financial information or intellectual property, which will be afforded heightened confidentiality.  Description:  Since the service class can represent knowledge structures that may be considered a trade or business secret, there is sometimes (though rarely) the need to flag those items as of business level confidentiality.\r\n\n                        \n                           Usage Notes: No patient related information may ever be of this confidentiality level.   If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling trade secrets such as financial information or intellectual property, which will be afforded heightened confidentiality.  Description:  Since the service class can represent knowledge structures that may be considered a trade or business secret, there is sometimes (though rarely) the need to flag those items as of business level confidentiality.\r\n\n                        \n                           Usage Notes: No patient related information may ever be of this confidentiality level.   If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#EMPL rdfs:subClassOf cs:ActCode\#%5fRoleInformationSensitivityPolicy;
  rdfs:label "employer information sensitivity";
  dc:title "employer information sensitivity";
  rdfs:comment "Policy for handling information related to an employer which is deemed classified to protect an employee who is the information subject, and which will be afforded heightened confidentiality.  Description:  Policies may govern sensitivity of information related to an employer, such as law enforcement or national security, the identity of which could impact the privacy, well-being, or safety of an information subject who is an employee.\r\n\n                        \n                           Usage Notes: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling information related to an employer which is deemed classified to protect an employee who is the information subject, and which will be afforded heightened confidentiality.  Description:  Policies may govern sensitivity of information related to an employer, such as law enforcement or national security, the identity of which could impact the privacy, well-being, or safety of an information subject who is an employee.\r\n\n                        \n                           Usage Notes: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#LOCIS rdfs:subClassOf cs:ActCode\#%5fRoleInformationSensitivityPolicy;
  rdfs:label "location information sensitivity";
  dc:title "location information sensitivity";
  rdfs:comment "Policy for handling information related to the location of the information subject, which will be afforded heightened confidentiality.  Description:  Policies may govern sensitivity of information related to the location of the information subject, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Notes: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling information related to the location of the information subject, which will be afforded heightened confidentiality.  Description:  Policies may govern sensitivity of information related to the location of the information subject, the disclosure of which could impact the privacy, well-being, or safety of that subject.\r\n\n                        \n                           Usage Notes: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#SSP rdfs:subClassOf cs:ActCode\#%5fRoleInformationSensitivityPolicy;
  rdfs:label "sensitive service provider information sensitivity";
  dc:title "sensitive service provider information sensitivity";
  rdfs:comment "Policy for handling information related to a provider of sensitive services, which will be afforded heightened confidentiality.  Description:  Policies may govern sensitivity of information related to providers who deliver sensitive healthcare services in order to protect the privacy, well-being, and safety of the provider and of patients receiving sensitive services.\r\n\n                        \n                           Usage Notes: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling information related to a provider of sensitive services, which will be afforded heightened confidentiality.  Description:  Policies may govern sensitivity of information related to providers who deliver sensitive healthcare services in order to protect the privacy, well-being, and safety of the provider and of patients receiving sensitive services.\r\n\n                        \n                           Usage Notes: If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#ADOL rdfs:subClassOf cs:ActCode\#%5fInformationSensitivityPolicy;
  rdfs:label "adolescent information sensitivity";
  dc:title "adolescent information sensitivity";
  rdfs:comment "Policy for handling information related to an adolescent, which will be afforded heightened confidentiality per applicable organizational or jurisdictional policy.  An enterprise may have a policy that requires that adolescent patient information be provided heightened confidentiality.  Information deemed sensitive typically includes health information and patient role information including patient status, demographics, next of kin, and location.\r\n\n                        \n                           Usage Note: For use within an enterprise in which an adolescent is the information subject.  If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling information related to an adolescent, which will be afforded heightened confidentiality per applicable organizational or jurisdictional policy.  An enterprise may have a policy that requires that adolescent patient information be provided heightened confidentiality.  Information deemed sensitive typically includes health information and patient role information including patient status, demographics, next of kin, and location.\r\n\n                        \n                           Usage Note: For use within an enterprise in which an adolescent is the information subject.  If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#CEL rdfs:subClassOf cs:ActCode\#%5fInformationSensitivityPolicy;
  rdfs:label "celebrity information sensitivity";
  dc:title "celebrity information sensitivity";
  rdfs:comment "Policy for handling information related to a celebrity (people of public interest (VIP), which will be afforded heightened confidentiality.  Celebrities are people of public interest (VIP) about whose information an enterprise may have a policy that requires heightened confidentiality.  Information deemed sensitive may include health information and patient role information including patient status, demographics, next of kin, and location.\r\n\n                        \n                           Usage Note:  For use within an enterprise in which the information subject is deemed a celebrity or very important person.  If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling information related to a celebrity (people of public interest (VIP), which will be afforded heightened confidentiality.  Celebrities are people of public interest (VIP) about whose information an enterprise may have a policy that requires heightened confidentiality.  Information deemed sensitive may include health information and patient role information including patient status, demographics, next of kin, and location.\r\n\n                        \n                           Usage Note:  For use within an enterprise in which the information subject is deemed a celebrity or very important person.  If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#DIA rdfs:subClassOf cs:ActCode\#%5fInformationSensitivityPolicy;
  rdfs:label "diagnosis information sensitivity";
  dc:title "diagnosis information sensitivity";
  rdfs:comment "Policy for handling information related to a diagnosis, health condition or health problem, which will be afforded heightened confidentiality.  Diagnostic, health condition or health problem related information may be deemed sensitive by organizational policy, and require heightened confidentiality.\r\n\n                        \n                           Usage Note: For use within an enterprise that provides heightened confidentiality to  diagnostic, health condition or health problem related information deemed sensitive.   If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling information related to a diagnosis, health condition or health problem, which will be afforded heightened confidentiality.  Diagnostic, health condition or health problem related information may be deemed sensitive by organizational policy, and require heightened confidentiality.\r\n\n                        \n                           Usage Note: For use within an enterprise that provides heightened confidentiality to  diagnostic, health condition or health problem related information deemed sensitive.   If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#DRGIS rdfs:subClassOf cs:ActCode\#%5fInformationSensitivityPolicy;
  rdfs:label "drug information sensitivity";
  dc:title "drug information sensitivity";
  rdfs:comment "Policy for handling information related to a drug, which will be afforded heightened confidentiality. Drug information may be deemed sensitive by organizational policy, and require heightened confidentiality.\r\n\n                        \n                           Usage Note: For use within an enterprise that provides heightened confidentiality to drug information deemed sensitive.   If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling information related to a drug, which will be afforded heightened confidentiality. Drug information may be deemed sensitive by organizational policy, and require heightened confidentiality.\r\n\n                        \n                           Usage Note: For use within an enterprise that provides heightened confidentiality to drug information deemed sensitive.   If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#EMP rdfs:subClassOf cs:ActCode\#%5fInformationSensitivityPolicy;
  rdfs:label "employee information sensitivity";
  dc:title "employee information sensitivity";
  rdfs:comment "Policy for handling information related to an employee, which will be afforded heightened confidentiality. When a patient is an employee, an enterprise may have a policy that requires heightened confidentiality.  Information deemed sensitive typically includes health information and patient role information including patient status, demographics, next of kin, and location.\r\n\n                        \n                           Usage Note: Policy for handling information related to an employee, which will be afforded heightened confidentiality.  Description:  When a patient is an employee, an enterprise may have a policy that requires heightened confidentiality.  Information deemed sensitive typically includes health information and patient role information including patient status, demographics, next of kin, and location.";
  dcterms:description "Policy for handling information related to an employee, which will be afforded heightened confidentiality. When a patient is an employee, an enterprise may have a policy that requires heightened confidentiality.  Information deemed sensitive typically includes health information and patient role information including patient status, demographics, next of kin, and location.\r\n\n                        \n                           Usage Note: Policy for handling information related to an employee, which will be afforded heightened confidentiality.  Description:  When a patient is an employee, an enterprise may have a policy that requires heightened confidentiality.  Information deemed sensitive typically includes health information and patient role information including patient status, demographics, next of kin, and location.".

cs:ActCode\#PDS rdfs:subClassOf cs:ActCode\#%5fInformationSensitivityPolicy;
  rdfs:label "patient default sensitivity";
  dc:title "patient default sensitivity";
  rdfs:comment "Policy for handling information reported by the patient about another person, e.g., a family member, which will be afforded heightened confidentiality. Sensitive information reported by the patient about another person, e.g., family members may be deemed sensitive by default.  The flag may be set or cleared on patient's request.  \r\n\n                        \n                           Usage Note: For sensitive information relayed by or about a patient, which is deemed sensitive within the enterprise (i.e., by default regardless of whether the patient requested that the information be deemed sensitive.)   If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "Policy for handling information reported by the patient about another person, e.g., a family member, which will be afforded heightened confidentiality. Sensitive information reported by the patient about another person, e.g., family members may be deemed sensitive by default.  The flag may be set or cleared on patient's request.  \r\n\n                        \n                           Usage Note: For sensitive information relayed by or about a patient, which is deemed sensitive within the enterprise (i.e., by default regardless of whether the patient requested that the information be deemed sensitive.)   If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#PRS rdfs:subClassOf cs:ActCode\#%5fInformationSensitivityPolicy;
  rdfs:label "patient requested sensitivity";
  dc:title "patient requested sensitivity";
  rdfs:comment "For sensitive information relayed by or about a patient, which is deemed sensitive within the enterprise (i.e., by default regardless of whether the patient requested that the information be deemed sensitive.)   If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.\r\n\n                        \n                           Usage Note: For use within an enterprise that provides heightened confidentiality to certain types of information designated by a patient as sensitive.   If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.";
  dcterms:description "For sensitive information relayed by or about a patient, which is deemed sensitive within the enterprise (i.e., by default regardless of whether the patient requested that the information be deemed sensitive.)   If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.\r\n\n                        \n                           Usage Note: For use within an enterprise that provides heightened confidentiality to certain types of information designated by a patient as sensitive.   If there is a jurisdictional mandate, then use the applicable ActPrivacyLaw code system, and specify the law rather than or in addition to this more generic code.".

cs:ActCode\#COMPT rdfs:subClassOf cs:ActCode\#%5fActPrivacyPolicy;
  rdfs:label "compartment";
  dc:title "compartment";
  rdfs:comment "This is the healthcare analog to the US Intelligence Community's concept of a Special Access Program.  Compartment codes may be used in as a field value in an initiator's clearance to indicate permission to access and use an IT Resource with a security label having the same compartment value in security category label field.\r\n\n                        Map: Aligns with ISO 2382-8 definition of Compartment - \"A division of data into isolated blocks with separate security controls for the purpose of reducing risk.\"";
  dcterms:description "This is the healthcare analog to the US Intelligence Community's concept of a Special Access Program.  Compartment codes may be used in as a field value in an initiator's clearance to indicate permission to access and use an IT Resource with a security label having the same compartment value in security category label field.\r\n\n                        Map: Aligns with ISO 2382-8 definition of Compartment - \"A division of data into isolated blocks with separate security controls for the purpose of reducing risk.\"".

cs:ActCode\#HRCOMPT rdfs:subClassOf cs:ActCode\#COMPT;
  rdfs:label "human resource compartment";
  dc:title "human resource compartment";
  rdfs:comment "A security category label field value, which indicates that access and use of an IT resource is restricted to members of human resources department or workflow.";
  dcterms:description "A security category label field value, which indicates that access and use of an IT resource is restricted to members of human resources department or workflow.".

cs:ActCode\#RESCOMPT rdfs:subClassOf cs:ActCode\#COMPT;
  rdfs:label "research project compartment";
  dc:title "research project compartment";
  rdfs:comment "A security category label field value, which indicates that access and use of an IT resource is restricted to members of a research project.";
  dcterms:description "A security category label field value, which indicates that access and use of an IT resource is restricted to members of a research project.".

cs:ActCode\#RMGTCOMPT rdfs:subClassOf cs:ActCode\#COMPT;
  rdfs:label "records management compartment";
  dc:title "records management compartment";
  rdfs:comment "A security category label field value, which indicates that access and use of an IT resource is restricted to members of records management department or workflow.";
  dcterms:description "A security category label field value, which indicates that access and use of an IT resource is restricted to members of records management department or workflow.".

cs:ActCode\#ActTrustPolicyType rdfs:subClassOf cs:ActCode\#%5fActPolicyType;
  rdfs:label "trust policy";
  dc:title "trust policy";
  rdfs:comment "A mandate, obligation, requirement, rule, or expectation conveyed as security metadata between senders and receivers required to establish the reliability, authenticity, and trustworthiness of their transactions.\r\n\n                        Trust security metadata are observation made about aspects of trust applicable to an IT resource (data, information object, service, or system capability).\r\n\n                        Trust applicable to IT resources is established and maintained in and among security domains, and may be comprised of observations about the domain's trust authority, trust framework, trust policy, trust interaction rules, means for assessing and monitoring adherence to trust policies, mechanisms that enforce trust, and quality and reliability measures of assurance in those mechanisms. [Based on ISO IEC 10181-1 and NIST SP 800-63-2]\r\n\n                        For example, identity proofing , level of assurance, and Trust Framework.";
  dcterms:description "A mandate, obligation, requirement, rule, or expectation conveyed as security metadata between senders and receivers required to establish the reliability, authenticity, and trustworthiness of their transactions.\r\n\n                        Trust security metadata are observation made about aspects of trust applicable to an IT resource (data, information object, service, or system capability).\r\n\n                        Trust applicable to IT resources is established and maintained in and among security domains, and may be comprised of observations about the domain's trust authority, trust framework, trust policy, trust interaction rules, means for assessing and monitoring adherence to trust policies, mechanisms that enforce trust, and quality and reliability measures of assurance in those mechanisms. [Based on ISO IEC 10181-1 and NIST SP 800-63-2]\r\n\n                        For example, identity proofing , level of assurance, and Trust Framework.".

cs:ActCode\#TRSTACCRD rdfs:subClassOf cs:ActCode\#ActTrustPolicyType;
  rdfs:label "trust accreditation";
  dc:title "trust accreditation";
  rdfs:comment "Type of security metadata about the formal declaration by an authority or neutral third party that validates the technical, security, trust, and business practice conformance of Trust Agents to facilitate security, interoperability, and trust among participants within a security domain or trust framework.";
  dcterms:description "Type of security metadata about the formal declaration by an authority or neutral third party that validates the technical, security, trust, and business practice conformance of Trust Agents to facilitate security, interoperability, and trust among participants within a security domain or trust framework.".

cs:ActCode\#TRSTAGRE rdfs:subClassOf cs:ActCode\#ActTrustPolicyType;
  rdfs:label "trust agreement";
  dc:title "trust agreement";
  rdfs:comment "Type of security metadata about privacy and security requirements with which a security domain must comply. [ISO IEC 10181-1]";
  dcterms:description "Type of security metadata about privacy and security requirements with which a security domain must comply. [ISO IEC 10181-1]".

cs:ActCode\#TRSTASSUR rdfs:subClassOf cs:ActCode\#ActTrustPolicyType;
  rdfs:label "trust assurance";
  dc:title "trust assurance";
  rdfs:comment "Type of security metadata about the digital quality or reliability of a trust assertion, activity, capability, information exchange, mechanism, process, or protocol.";
  dcterms:description "Type of security metadata about the digital quality or reliability of a trust assertion, activity, capability, information exchange, mechanism, process, or protocol.".

cs:ActCode\#TRSTCERT rdfs:subClassOf cs:ActCode\#ActTrustPolicyType;
  rdfs:label "trust certificate";
  dc:title "trust certificate";
  rdfs:comment "Type of security metadata about a set of security-relevant data issued by a security authority or trusted third party, together with security information which is used to provide the integrity and data origin authentication services for an IT resource (data, information object, service, or system capability). [Based on ISO IEC 10181-1]";
  dcterms:description "Type of security metadata about a set of security-relevant data issued by a security authority or trusted third party, together with security information which is used to provide the integrity and data origin authentication services for an IT resource (data, information object, service, or system capability). [Based on ISO IEC 10181-1]".

cs:ActCode\#TRSTFWK rdfs:subClassOf cs:ActCode\#ActTrustPolicyType;
  rdfs:label "trust framework";
  dc:title "trust framework";
  rdfs:comment "Type of security metadata about a complete set of contracts, regulations, or commitments that enable participating actors to rely on certain assertions by other actors to fulfill their information security requirements. [Kantara Initiative]";
  dcterms:description "Type of security metadata about a complete set of contracts, regulations, or commitments that enable participating actors to rely on certain assertions by other actors to fulfill their information security requirements. [Kantara Initiative]".

cs:ActCode\#TRSTMEC rdfs:subClassOf cs:ActCode\#ActTrustPolicyType;
  rdfs:label "trust mechanism";
  dc:title "trust mechanism";
  rdfs:comment "Type of security metadata about a security architecture system component that supports enforcement of security policies.";
  dcterms:description "Type of security metadata about a security architecture system component that supports enforcement of security policies.".

cs:ActCode\#COVPOL rdfs:subClassOf cs:ActCode\#%5fActPolicyType;
  rdfs:label "benefit policy";
  dc:title "benefit policy";
  rdfs:comment "Description:A mandate, obligation, requirement, rule, or expectation unilaterally imposed on benefit coverage under a policy or program by a sponsor, underwriter or payor on:\r\n\n                        \n                           \n                              The activity of another party\r\n\n                           \n                           \n                              The behavior of another party\r\n\n                           \n                           \n                              The manner in which an act is executed\r\n\n                           \n                        \n                        \n                           Examples:A clinical protocol imposed by a payer to which a provider must adhere in order to be paid for providing the service.  A formulary from which a provider must select prescribed drugs in order for the patient to incur a lower copay.";
  dcterms:description "Description:A mandate, obligation, requirement, rule, or expectation unilaterally imposed on benefit coverage under a policy or program by a sponsor, underwriter or payor on:\r\n\n                        \n                           \n                              The activity of another party\r\n\n                           \n                           \n                              The behavior of another party\r\n\n                           \n                           \n                              The manner in which an act is executed\r\n\n                           \n                        \n                        \n                           Examples:A clinical protocol imposed by a payer to which a provider must adhere in order to be paid for providing the service.  A formulary from which a provider must select prescribed drugs in order for the patient to incur a lower copay.".

cs:ActCode\#SecurityPolicy rdfs:subClassOf cs:ActCode\#%5fActPolicyType;
  rdfs:label "security policy";
  dc:title "security policy";
  rdfs:comment "Types of security policies that further specify the ActClassPolicy value set.\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           obligation to encrypt\n                           refrain from redisclosure without consent";
  dcterms:description "Types of security policies that further specify the ActClassPolicy value set.\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           obligation to encrypt\n                           refrain from redisclosure without consent".

cs:ActCode\#ObligationPolicy rdfs:subClassOf cs:ActCode\#SecurityPolicy;
  rdfs:label "obligation policy";
  dc:title "obligation policy";
  rdfs:comment "Conveys the mandated workflow action that an information custodian, receiver, or user must perform.  \r\n\n                        \n                           Usage Notes: Per ISO 22600-2, ObligationPolicy instances 'are event-triggered and define actions to be performed by manager agent'. Per HL7 Composite Security and Privacy Domain Analysis Model:  This value set refers to the action required to receive the permission specified in the privacy rule. Per OASIS XACML, an obligation is an operation specified in a policy or policy that is performed in conjunction with the enforcement of an access control decision.";
  dcterms:description "Conveys the mandated workflow action that an information custodian, receiver, or user must perform.  \r\n\n                        \n                           Usage Notes: Per ISO 22600-2, ObligationPolicy instances 'are event-triggered and define actions to be performed by manager agent'. Per HL7 Composite Security and Privacy Domain Analysis Model:  This value set refers to the action required to receive the permission specified in the privacy rule. Per OASIS XACML, an obligation is an operation specified in a policy or policy that is performed in conjunction with the enforcement of an access control decision.".

cs:ActCode\#ANONY rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "anonymize";
  dc:title "anonymize";
  rdfs:comment "Custodian system must remove any information that could result in identifying the information subject.";
  dcterms:description "Custodian system must remove any information that could result in identifying the information subject.".

cs:ActCode\#AOD rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "accounting of disclosure";
  dc:title "accounting of disclosure";
  rdfs:comment "Custodian system must make available to an information subject upon request an accounting of certain disclosures of the individualâ€™s protected health information over a period of time.  Policy may dictate that the accounting include information about the information disclosed,  the date of disclosure, the identification of the receiver, the purpose of the disclosure, the time in which the disclosing entity must provide a response and the time period for which accountings of disclosure can be requested.";
  dcterms:description "Custodian system must make available to an information subject upon request an accounting of certain disclosures of the individualâ€™s protected health information over a period of time.  Policy may dictate that the accounting include information about the information disclosed,  the date of disclosure, the identification of the receiver, the purpose of the disclosure, the time in which the disclosing entity must provide a response and the time period for which accountings of disclosure can be requested.".

cs:ActCode\#AUDIT rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "audit";
  dc:title "audit";
  rdfs:comment "Custodian system must monitor systems to ensure that all users are authorized to operate on information objects.";
  dcterms:description "Custodian system must monitor systems to ensure that all users are authorized to operate on information objects.".

cs:ActCode\#AUDTR rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "audit trail";
  dc:title "audit trail";
  rdfs:comment "Custodian system must monitor and maintain retrievable log for each user and operation on information.";
  dcterms:description "Custodian system must monitor and maintain retrievable log for each user and operation on information.".

cs:ActCode\#CPLYCC rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "comply with confidentiality code";
  dc:title "comply with confidentiality code";
  rdfs:comment "Custodian security system must retrieve, evaluate, and comply with the information handling directions of the Confidentiality Code associated with an information target.";
  dcterms:description "Custodian security system must retrieve, evaluate, and comply with the information handling directions of the Confidentiality Code associated with an information target.".

cs:ActCode\#CPLYCD rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "comply with consent directive";
  dc:title "comply with consent directive";
  rdfs:comment "Custodian security system must retrieve, evaluate, and comply with applicable information subject consent directives.";
  dcterms:description "Custodian security system must retrieve, evaluate, and comply with applicable information subject consent directives.".

cs:ActCode\#CPLYJPP rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "comply with jurisdictional privacy policy";
  dc:title "comply with jurisdictional privacy policy";
  rdfs:comment "Custodian security system must retrieve, evaluate, and comply with applicable jurisdictional privacy policies associated with the target information.";
  dcterms:description "Custodian security system must retrieve, evaluate, and comply with applicable jurisdictional privacy policies associated with the target information.".

cs:ActCode\#CPLYOPP rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "comply with organizational privacy policy";
  dc:title "comply with organizational privacy policy";
  rdfs:comment "Custodian security system must retrieve, evaluate, and comply with applicable organizational privacy policies associated with the target information.";
  dcterms:description "Custodian security system must retrieve, evaluate, and comply with applicable organizational privacy policies associated with the target information.".

cs:ActCode\#CPLYOSP rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "comply with organizational security policy";
  dc:title "comply with organizational security policy";
  rdfs:comment "Custodian security system must retrieve, evaluate, and comply with the organizational security policies associated with the target information.";
  dcterms:description "Custodian security system must retrieve, evaluate, and comply with the organizational security policies associated with the target information.".

cs:ActCode\#CPLYPOL rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "comply with policy";
  dc:title "comply with policy";
  rdfs:comment "Custodian security system must retrieve, evaluate, and comply with applicable policies associated with the target information.";
  dcterms:description "Custodian security system must retrieve, evaluate, and comply with applicable policies associated with the target information.".

cs:ActCode\#DEID rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "deidentify";
  dc:title "deidentify";
  rdfs:comment "Custodian system must strip information of data that would allow the identification of the source of the information or the information subject.";
  dcterms:description "Custodian system must strip information of data that would allow the identification of the source of the information or the information subject.".

cs:ActCode\#DELAU rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "delete after use";
  dc:title "delete after use";
  rdfs:comment "Custodian system must remove target information from access after use.";
  dcterms:description "Custodian system must remove target information from access after use.".

cs:ActCode\#ENCRYPT rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "encrypt";
  dc:title "encrypt";
  rdfs:comment "Custodian system must render information unreadable by algorithmically transforming plaintext into ciphertext.  \r\n\n                        \r\n\n                        \n                           Usage Notes: A mathematical transposition of a file or data stream so that it cannot be deciphered at the receiving end without the proper key. Encryption is a security feature that assures that only the parties who are supposed to be participating in a videoconference or data transfer are able to do so. It can include a password, public and private keys, or a complex combination of all.  (Per Infoway.)";
  dcterms:description "Custodian system must render information unreadable by algorithmically transforming plaintext into ciphertext.  \r\n\n                        \r\n\n                        \n                           Usage Notes: A mathematical transposition of a file or data stream so that it cannot be deciphered at the receiving end without the proper key. Encryption is a security feature that assures that only the parties who are supposed to be participating in a videoconference or data transfer are able to do so. It can include a password, public and private keys, or a complex combination of all.  (Per Infoway.)".

cs:ActCode\#ENCRYPTR rdfs:subClassOf cs:ActCode\#ENCRYPT;
  rdfs:label "encrypt at rest";
  dc:title "encrypt at rest";
  rdfs:comment "Custodian system must render information unreadable and unusable by algorithmically transforming plaintext into ciphertext when \"at rest\" or in storage.";
  dcterms:description "Custodian system must render information unreadable and unusable by algorithmically transforming plaintext into ciphertext when \"at rest\" or in storage.".

cs:ActCode\#ENCRYPTT rdfs:subClassOf cs:ActCode\#ENCRYPT;
  rdfs:label "encrypt in transit";
  dc:title "encrypt in transit";
  rdfs:comment "Custodian system must render information unreadable and unusable by algorithmically transforming plaintext into ciphertext while \"in transit\" or being transported by any means.";
  dcterms:description "Custodian system must render information unreadable and unusable by algorithmically transforming plaintext into ciphertext while \"in transit\" or being transported by any means.".

cs:ActCode\#ENCRYPTU rdfs:subClassOf cs:ActCode\#ENCRYPT;
  rdfs:label "encrypt in use";
  dc:title "encrypt in use";
  rdfs:comment "Custodian system must render information unreadable and unusable by algorithmically transforming plaintext into ciphertext while in use such that operations permitted on the target information are limited by the license granted to the end user.";
  dcterms:description "Custodian system must render information unreadable and unusable by algorithmically transforming plaintext into ciphertext while in use such that operations permitted on the target information are limited by the license granted to the end user.".

cs:ActCode\#HUAPRV rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "human approval";
  dc:title "human approval";
  rdfs:comment "Custodian system must require human review and approval for permission requested.";
  dcterms:description "Custodian system must require human review and approval for permission requested.".

cs:ActCode\#MASK rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "mask";
  dc:title "mask";
  rdfs:comment "Custodian system must render information unreadable and unusable by algorithmically transforming plaintext into ciphertext.  User may be provided a key to decrypt per license or \"shared secret\".";
  dcterms:description "Custodian system must render information unreadable and unusable by algorithmically transforming plaintext into ciphertext.  User may be provided a key to decrypt per license or \"shared secret\".".

cs:ActCode\#MINEC rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "minimum necessary";
  dc:title "minimum necessary";
  rdfs:comment "Custodian must limit access and disclosure to the minimum information required to support an authorized user's purpose of use.  \r\n\n                        \n                           Usage Note: Limiting the information available for access and disclosure to that an authorized user or receiver \"needs to know\" in order to perform permitted workflow or purpose of use.";
  dcterms:description "Custodian must limit access and disclosure to the minimum information required to support an authorized user's purpose of use.  \r\n\n                        \n                           Usage Note: Limiting the information available for access and disclosure to that an authorized user or receiver \"needs to know\" in order to perform permitted workflow or purpose of use.".

cs:ActCode\#PRIVMARK rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "privacy mark";
  dc:title "privacy mark";
  rdfs:comment "Custodian must create and/or maintain human readable security label tags as required by policy.\r\n\n                        Map:  Aligns with ISO 22600-3 Section A.3.4.3 description of privacy mark:  \"If present, the privacy-mark is not used for access control. The content of the privacy-mark may be defined by the security policy in force (identified by the security-policy-identifier) which may define a list of values to be used. Alternately, the value may be determined by the originator of the security-label.\"";
  dcterms:description "Custodian must create and/or maintain human readable security label tags as required by policy.\r\n\n                        Map:  Aligns with ISO 22600-3 Section A.3.4.3 description of privacy mark:  \"If present, the privacy-mark is not used for access control. The content of the privacy-mark may be defined by the security policy in force (identified by the security-policy-identifier) which may define a list of values to be used. Alternately, the value may be determined by the originator of the security-label.\"".

cs:ActCode\#PSEUD rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "pseudonymize";
  dc:title "pseudonymize";
  rdfs:comment "Custodian system must strip information of data that would allow the identification of the source of the information or the information subject.  Custodian may retain a key to relink data necessary to reidentify the information subject.";
  dcterms:description "Custodian system must strip information of data that would allow the identification of the source of the information or the information subject.  Custodian may retain a key to relink data necessary to reidentify the information subject.".

cs:ActCode\#REDACT rdfs:subClassOf cs:ActCode\#ObligationPolicy;
  rdfs:label "redact";
  dc:title "redact";
  rdfs:comment "Custodian system must remove information, which is not authorized to be access, used, or disclosed from records made available to otherwise authorized users.";
  dcterms:description "Custodian system must remove information, which is not authorized to be access, used, or disclosed from records made available to otherwise authorized users.".

cs:ActCode\#RefrainPolicy rdfs:subClassOf cs:ActCode\#SecurityPolicy;
  rdfs:label "refrain policy";
  dc:title "refrain policy";
  rdfs:comment "Conveys prohibited actions which an information custodian, receiver, or user is not permitted to perform unless otherwise authorized or permitted under specified circumstances.\r\n\n                        \r\n\n                        \n                           Usage Notes: ISO 22600-2 species that a Refrain Policy \"defines actions the subjects must refrain from performing\".  Per HL7 Composite Security and Privacy Domain Analysis Model:  May be used to indicate that a specific action is prohibited based on specific access control attributes e.g., purpose of use, information type, user role, etc.";
  dcterms:description "Conveys prohibited actions which an information custodian, receiver, or user is not permitted to perform unless otherwise authorized or permitted under specified circumstances.\r\n\n                        \r\n\n                        \n                           Usage Notes: ISO 22600-2 species that a Refrain Policy \"defines actions the subjects must refrain from performing\".  Per HL7 Composite Security and Privacy Domain Analysis Model:  May be used to indicate that a specific action is prohibited based on specific access control attributes e.g., purpose of use, information type, user role, etc.".

cs:ActCode\#NOAUTH rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no disclosure without subject authorization";
  dc:title "no disclosure without subject authorization";
  rdfs:comment "Prohibition on disclosure without information subject's authorization.";
  dcterms:description "Prohibition on disclosure without information subject's authorization.".

cs:ActCode\#NOCOLLECT rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no collection";
  dc:title "no collection";
  rdfs:comment "Prohibition on collection or storage of the information.";
  dcterms:description "Prohibition on collection or storage of the information.".

cs:ActCode\#NODSCLCD rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no disclosure without consent directive";
  dc:title "no disclosure without consent directive";
  rdfs:comment "Prohibition on disclosure without organizational approved patient restriction.";
  dcterms:description "Prohibition on disclosure without organizational approved patient restriction.".

cs:ActCode\#NODSCLCDS rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no disclosure without information subject's consent directive";
  dc:title "no disclosure without information subject's consent directive";
  rdfs:comment "Prohibition on disclosure without a consent directive from the information subject.";
  dcterms:description "Prohibition on disclosure without a consent directive from the information subject.".

cs:ActCode\#NOINTEGRATE rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no integration";
  dc:title "no integration";
  rdfs:comment "Prohibition on Integration into other records.";
  dcterms:description "Prohibition on Integration into other records.".

cs:ActCode\#NOLIST rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no unlisted entity disclosure";
  dc:title "no unlisted entity disclosure";
  rdfs:comment "Prohibition on disclosure except to entities on specific access list.";
  dcterms:description "Prohibition on disclosure except to entities on specific access list.".

cs:ActCode\#NOMOU rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no disclosure without MOU";
  dc:title "no disclosure without MOU";
  rdfs:comment "Prohibition on disclosure without an interagency service agreement or memorandum of understanding (MOU).";
  dcterms:description "Prohibition on disclosure without an interagency service agreement or memorandum of understanding (MOU).".

cs:ActCode\#NOORGPOL rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no disclosure without organizational authorization";
  dc:title "no disclosure without organizational authorization";
  rdfs:comment "Prohibition on disclosure without organizational authorization.";
  dcterms:description "Prohibition on disclosure without organizational authorization.".

cs:ActCode\#NOPAT rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no disclosure to patient, family or caregivers without attending provider's authorization";
  dc:title "no disclosure to patient, family or caregivers without attending provider's authorization";
  rdfs:comment "Prohibition on disclosing information to patient, family or caregivers without attending provider's authorization.\r\n\n                        \n                           Usage Note: The information may be labeled with the ActInformationSensitivity TBOO code, triggering application of this RefrainPolicy code as a handling caveat controlling access.\r\n\n                        Maps to FHIR NOPAT: Typically, this is used on an Alert resource, when the alert records information on patient abuse or non-compliance.\r\n\n                        FHIR print name is \"keep information from patient\". Maps to the French realm - code: INVISIBLE_PATIENT.\r\n\n                        \n                           displayName: Document non visible par le patient\n                           codingScheme: 1.2.250.1.213.1.1.4.13\n                        \n                        French use case:  A label for documents that the author  chose to hide from the patient until the content can be disclose to the patient in a face to face meeting between a healthcare professional and the patient (in French law some results like cancer diagnosis or AIDS diagnosis must be announced to the patient by a healthcare professional and should not be find out by the patient alone).";
  dcterms:description "Prohibition on disclosing information to patient, family or caregivers without attending provider's authorization.\r\n\n                        \n                           Usage Note: The information may be labeled with the ActInformationSensitivity TBOO code, triggering application of this RefrainPolicy code as a handling caveat controlling access.\r\n\n                        Maps to FHIR NOPAT: Typically, this is used on an Alert resource, when the alert records information on patient abuse or non-compliance.\r\n\n                        FHIR print name is \"keep information from patient\". Maps to the French realm - code: INVISIBLE_PATIENT.\r\n\n                        \n                           displayName: Document non visible par le patient\n                           codingScheme: 1.2.250.1.213.1.1.4.13\n                        \n                        French use case:  A label for documents that the author  chose to hide from the patient until the content can be disclose to the patient in a face to face meeting between a healthcare professional and the patient (in French law some results like cancer diagnosis or AIDS diagnosis must be announced to the patient by a healthcare professional and should not be find out by the patient alone).".

cs:ActCode\#NOPERSISTP rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no collection beyond purpose of use";
  dc:title "no collection beyond purpose of use";
  rdfs:comment "Prohibition on collection of the information beyond time necessary to accomplish authorized purpose of use is prohibited.";
  dcterms:description "Prohibition on collection of the information beyond time necessary to accomplish authorized purpose of use is prohibited.".

cs:ActCode\#NORDSCLCD rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no redisclosure without consent directive";
  dc:title "no redisclosure without consent directive";
  rdfs:comment "Prohibition on redisclosure without patient consent directive.";
  dcterms:description "Prohibition on redisclosure without patient consent directive.".

cs:ActCode\#NORDSCLCDS rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no redisclosure without information subject's consent directive";
  dc:title "no redisclosure without information subject's consent directive";
  rdfs:comment "Prohibition on redisclosure without a consent directive from the information subject.";
  dcterms:description "Prohibition on redisclosure without a consent directive from the information subject.".

cs:ActCode\#NORDSCLW rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no disclosure without jurisdictional authorization";
  dc:title "no disclosure without jurisdictional authorization";
  rdfs:comment "Prohibition on disclosure without authorization under jurisdictional law.";
  dcterms:description "Prohibition on disclosure without authorization under jurisdictional law.".

cs:ActCode\#NORELINK rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no relinking";
  dc:title "no relinking";
  rdfs:comment "Prohibition on associating de-identified or pseudonymized information with other information in a manner that could or does result in disclosing information intended to be masked.";
  dcterms:description "Prohibition on associating de-identified or pseudonymized information with other information in a manner that could or does result in disclosing information intended to be masked.".

cs:ActCode\#NOREUSE rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no reuse beyond purpose of use";
  dc:title "no reuse beyond purpose of use";
  rdfs:comment "Prohibition on use of the information beyond the purpose of use initially authorized.";
  dcterms:description "Prohibition on use of the information beyond the purpose of use initially authorized.".

cs:ActCode\#NOVIP rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no unauthorized VIP disclosure";
  dc:title "no unauthorized VIP disclosure";
  rdfs:comment "Prohibition on disclosure except to principals with access permission to specific VIP information.";
  dcterms:description "Prohibition on disclosure except to principals with access permission to specific VIP information.".

cs:ActCode\#ORCON rdfs:subClassOf cs:ActCode\#RefrainPolicy;
  rdfs:label "no disclosure without originator authorization";
  dc:title "no disclosure without originator authorization";
  rdfs:comment "Prohibition on disclosure except as permitted by the information originator.";
  dcterms:description "Prohibition on disclosure except as permitted by the information originator.".

cs:ActCode\#%5fActProductAcquisitionCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActProductAcquisitionCode";
  dc:title "ActProductAcquisitionCode";
  rdfs:comment "The method that a product is obtained for use by the subject of the supply act (e.g. patient).  Product examples are consumable or durable goods.";
  dcterms:description "The method that a product is obtained for use by the subject of the supply act (e.g. patient).  Product examples are consumable or durable goods.".

cs:ActCode\#LOAN rdfs:subClassOf cs:ActCode\#%5fActProductAcquisitionCode;
  rdfs:label "Loan";
  dc:title "Loan";
  rdfs:comment "Temporary supply of a product without transfer of ownership for the product.";
  dcterms:description "Temporary supply of a product without transfer of ownership for the product.".

cs:ActCode\#RENT rdfs:subClassOf cs:ActCode\#LOAN;
  rdfs:label "Rent";
  dc:title "Rent";
  rdfs:comment "Temporary supply of a product with financial compensation, without transfer of ownership for the product.";
  dcterms:description "Temporary supply of a product with financial compensation, without transfer of ownership for the product.".

cs:ActCode\#TRANSFER rdfs:subClassOf cs:ActCode\#%5fActProductAcquisitionCode;
  rdfs:label "Transfer";
  dc:title "Transfer";
  rdfs:comment "Transfer of ownership for a product.";
  dcterms:description "Transfer of ownership for a product.".

cs:ActCode\#SALE rdfs:subClassOf cs:ActCode\#TRANSFER;
  rdfs:label "Sale";
  dc:title "Sale";
  rdfs:comment "Transfer of ownership for a product for financial compensation.";
  dcterms:description "Transfer of ownership for a product for financial compensation.".

cs:ActCode\#%5fActSpecimenTransportCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActSpecimenTransportCode";
  dc:title "ActSpecimenTransportCode";
  rdfs:comment "Transportation of a specimen.";
  dcterms:description "Transportation of a specimen.".

cs:ActCode\#SREC rdfs:subClassOf cs:ActCode\#%5fActSpecimenTransportCode;
  rdfs:label "specimen received";
  dc:title "specimen received";
  rdfs:comment "Description:Specimen has been received by the participating organization/department.";
  dcterms:description "Description:Specimen has been received by the participating organization/department.".

cs:ActCode\#SSTOR rdfs:subClassOf cs:ActCode\#%5fActSpecimenTransportCode;
  rdfs:label "specimen in storage";
  dc:title "specimen in storage";
  rdfs:comment "Description:Specimen has been placed into storage at a participating location.";
  dcterms:description "Description:Specimen has been placed into storage at a participating location.".

cs:ActCode\#STRAN rdfs:subClassOf cs:ActCode\#%5fActSpecimenTransportCode;
  rdfs:label "specimen in transit";
  dc:title "specimen in transit";
  rdfs:comment "Description:Specimen has been put in transit to a participating receiver.";
  dcterms:description "Description:Specimen has been put in transit to a participating receiver.".

cs:ActCode\#%5fActSpecimenTreatmentCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActSpecimenTreatmentCode";
  dc:title "ActSpecimenTreatmentCode";
  rdfs:comment "Set of codes related to specimen treatments";
  dcterms:description "Set of codes related to specimen treatments".

cs:ActCode\#ACID rdfs:subClassOf cs:ActCode\#%5fActSpecimenTreatmentCode;
  rdfs:label "Acidification";
  dc:title "Acidification";
  rdfs:comment "The lowering of specimen pH through the addition of an acid";
  dcterms:description "The lowering of specimen pH through the addition of an acid".

cs:ActCode\#ALK rdfs:subClassOf cs:ActCode\#%5fActSpecimenTreatmentCode;
  rdfs:label "Alkalization";
  dc:title "Alkalization";
  rdfs:comment "The act rendering alkaline by impregnating with an alkali; a conferring of alkaline qualities.";
  dcterms:description "The act rendering alkaline by impregnating with an alkali; a conferring of alkaline qualities.".

cs:ActCode\#DEFB rdfs:subClassOf cs:ActCode\#%5fActSpecimenTreatmentCode;
  rdfs:label "Defibrination";
  dc:title "Defibrination";
  rdfs:comment "The removal of fibrin from whole blood or plasma through physical or chemical means";
  dcterms:description "The removal of fibrin from whole blood or plasma through physical or chemical means".

cs:ActCode\#FILT rdfs:subClassOf cs:ActCode\#%5fActSpecimenTreatmentCode;
  rdfs:label "Filtration";
  dc:title "Filtration";
  rdfs:comment "The passage of a liquid through a filter, accomplished by gravity, pressure or vacuum (suction).";
  dcterms:description "The passage of a liquid through a filter, accomplished by gravity, pressure or vacuum (suction).".

cs:ActCode\#LDLP rdfs:subClassOf cs:ActCode\#%5fActSpecimenTreatmentCode;
  rdfs:label "LDL Precipitation";
  dc:title "LDL Precipitation";
  rdfs:comment "LDL Precipitation";
  dcterms:description "LDL Precipitation".

cs:ActCode\#NEUT rdfs:subClassOf cs:ActCode\#%5fActSpecimenTreatmentCode;
  rdfs:label "Neutralization";
  dc:title "Neutralization";
  rdfs:comment "The act or process by which an acid and a base are combined in such proportions that the resulting compound is neutral.";
  dcterms:description "The act or process by which an acid and a base are combined in such proportions that the resulting compound is neutral.".

cs:ActCode\#RECA rdfs:subClassOf cs:ActCode\#%5fActSpecimenTreatmentCode;
  rdfs:label "Recalcification";
  dc:title "Recalcification";
  rdfs:comment "The addition of calcium back to a specimen after it was removed by chelating agents";
  dcterms:description "The addition of calcium back to a specimen after it was removed by chelating agents".

cs:ActCode\#UFIL rdfs:subClassOf cs:ActCode\#%5fActSpecimenTreatmentCode;
  rdfs:label "Ultrafiltration";
  dc:title "Ultrafiltration";
  rdfs:comment "The filtration of a colloidal substance through a semipermeable medium that allows only the passage of small molecules.";
  dcterms:description "The filtration of a colloidal substance through a semipermeable medium that allows only the passage of small molecules.".

cs:ActCode\#%5fActSubstanceAdministrationCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActSubstanceAdministrationCode";
  dc:title "ActSubstanceAdministrationCode";
  rdfs:comment "Description: Describes the type of substance administration being performed.  This should not be used to carry codes for identification of products.  Use an associated role or entity to carry such information.";
  dcterms:description "Description: Describes the type of substance administration being performed.  This should not be used to carry codes for identification of products.  Use an associated role or entity to carry such information.".

cs:ActCode\#DRUG rdfs:subClassOf cs:ActCode\#%5fActSubstanceAdministrationCode;
  rdfs:label "Drug therapy";
  dc:title "Drug therapy";
  rdfs:comment "The introduction of a drug into a subject with the intention of altering its biologic state with the intent of improving its health status.";
  dcterms:description "The introduction of a drug into a subject with the intention of altering its biologic state with the intent of improving its health status.".

cs:ActCode\#FD rdfs:subClassOf cs:ActCode\#%5fActSubstanceAdministrationCode;
  rdfs:label "food";
  dc:title "food";
  rdfs:comment "Description: The introduction of material into a subject with the intent of providing nutrition or other dietary supplements (e.g. minerals or vitamins).";
  dcterms:description "Description: The introduction of material into a subject with the intent of providing nutrition or other dietary supplements (e.g. minerals or vitamins).".

cs:ActCode\#IMMUNIZ rdfs:subClassOf cs:ActCode\#%5fActSubstanceAdministrationCode;
  rdfs:label "Immunization";
  dc:title "Immunization";
  rdfs:comment "The introduction of an immunogen with the intent of stimulating an immune response, aimed at preventing subsequent infections by more viable agents.";
  dcterms:description "The introduction of an immunogen with the intent of stimulating an immune response, aimed at preventing subsequent infections by more viable agents.".

cs:ActCode\#BOOSTER rdfs:subClassOf cs:ActCode\#IMMUNIZ;
  rdfs:label "Booster Immunization";
  dc:title "Booster Immunization";
  rdfs:comment "An additional immunization administration within a series intended to bolster or enhance immunity.";
  dcterms:description "An additional immunization administration within a series intended to bolster or enhance immunity.".

cs:ActCode\#INITIMMUNIZ rdfs:subClassOf cs:ActCode\#IMMUNIZ;
  rdfs:label "Initial Immunization";
  dc:title "Initial Immunization";
  rdfs:comment "The first immunization administration in a series intended to produce immunity";
  dcterms:description "The first immunization administration in a series intended to produce immunity".

cs:ActCode\#%5fActTaskCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActTaskCode";
  dc:title "ActTaskCode";
  rdfs:comment "Description: A task or action that a user may perform in a clinical information system (e.g., medication order entry, laboratory test results review, problem list entry).";
  dcterms:description "Description: A task or action that a user may perform in a clinical information system (e.g., medication order entry, laboratory test results review, problem list entry).".

cs:ActCode\#OE rdfs:subClassOf cs:ActCode\#%5fActTaskCode;
  rdfs:label "order entry task";
  dc:title "order entry task";
  rdfs:comment "A clinician creates a request for a service to be performed for a given patient.";
  dcterms:description "A clinician creates a request for a service to be performed for a given patient.".

cs:ActCode\#LABOE rdfs:subClassOf cs:ActCode\#OE;
  rdfs:label "laboratory test order entry task";
  dc:title "laboratory test order entry task";
  rdfs:comment "A clinician creates a request for a laboratory test to be done for a given patient.";
  dcterms:description "A clinician creates a request for a laboratory test to be done for a given patient.".

cs:ActCode\#MEDOE rdfs:subClassOf cs:ActCode\#OE;
  rdfs:label "medication order entry task";
  dc:title "medication order entry task";
  rdfs:comment "A clinician creates a request for the administration of one or more medications to a given patient.";
  dcterms:description "A clinician creates a request for the administration of one or more medications to a given patient.".

cs:ActCode\#PATDOC rdfs:subClassOf cs:ActCode\#%5fActTaskCode;
  rdfs:label "patient documentation task";
  dc:title "patient documentation task";
  rdfs:comment "A person enters documentation about a given patient.";
  dcterms:description "A person enters documentation about a given patient.".

cs:ActCode\#ALLERLREV rdfs:subClassOf cs:ActCode\#PATDOC;
  rdfs:label "allergy list review";
  dc:title "allergy list review";
  rdfs:comment "Description: A person reviews a list of known allergies of a given patient.";
  dcterms:description "Description: A person reviews a list of known allergies of a given patient.".

cs:ActCode\#CLINNOTEE rdfs:subClassOf cs:ActCode\#PATDOC;
  rdfs:label "clinical note entry task";
  dc:title "clinical note entry task";
  rdfs:comment "A clinician enters a clinical note about a given patient";
  dcterms:description "A clinician enters a clinical note about a given patient".

cs:ActCode\#DIAGLISTE rdfs:subClassOf cs:ActCode\#CLINNOTEE;
  rdfs:label "diagnosis list entry task";
  dc:title "diagnosis list entry task";
  rdfs:comment "A clinician enters a diagnosis for a given patient.";
  dcterms:description "A clinician enters a diagnosis for a given patient.".

cs:ActCode\#DISCHINSTE rdfs:subClassOf cs:ActCode\#CLINNOTEE;
  rdfs:label "discharge instruction entry";
  dc:title "discharge instruction entry";
  rdfs:comment "A person provides a discharge instruction to a patient.";
  dcterms:description "A person provides a discharge instruction to a patient.".

cs:ActCode\#DISCHSUME rdfs:subClassOf cs:ActCode\#CLINNOTEE;
  rdfs:label "discharge summary entry task";
  dc:title "discharge summary entry task";
  rdfs:comment "A clinician enters a discharge summary for a given patient.";
  dcterms:description "A clinician enters a discharge summary for a given patient.".

cs:ActCode\#PATEDUE rdfs:subClassOf cs:ActCode\#CLINNOTEE;
  rdfs:label "patient education entry";
  dc:title "patient education entry";
  rdfs:comment "A person provides a patient-specific education handout to a patient.";
  dcterms:description "A person provides a patient-specific education handout to a patient.".

cs:ActCode\#PATREPE rdfs:subClassOf cs:ActCode\#CLINNOTEE;
  rdfs:label "pathology report entry task";
  dc:title "pathology report entry task";
  rdfs:comment "A pathologist enters a report for a given patient.";
  dcterms:description "A pathologist enters a report for a given patient.".

cs:ActCode\#PROBLISTE rdfs:subClassOf cs:ActCode\#CLINNOTEE;
  rdfs:label "problem list entry task";
  dc:title "problem list entry task";
  rdfs:comment "A clinician enters a problem for a given patient.";
  dcterms:description "A clinician enters a problem for a given patient.".

cs:ActCode\#RADREPE rdfs:subClassOf cs:ActCode\#CLINNOTEE;
  rdfs:label "radiology report entry task";
  dc:title "radiology report entry task";
  rdfs:comment "A radiologist enters a report for a given patient.";
  dcterms:description "A radiologist enters a report for a given patient.".

cs:ActCode\#IMMLREV rdfs:subClassOf cs:ActCode\#PATDOC;
  rdfs:label "immunization list review";
  dc:title "immunization list review";
  rdfs:comment "Description: A person reviews a list of immunizations due or received for a given patient.";
  dcterms:description "Description: A person reviews a list of immunizations due or received for a given patient.".

cs:ActCode\#REMLREV rdfs:subClassOf cs:ActCode\#PATDOC;
  rdfs:label "reminder list review";
  dc:title "reminder list review";
  rdfs:comment "Description: A person reviews a list of health care reminders for a given patient.";
  dcterms:description "Description: A person reviews a list of health care reminders for a given patient.".

cs:ActCode\#WELLREMLREV rdfs:subClassOf cs:ActCode\#REMLREV;
  rdfs:label "wellness reminder list review";
  dc:title "wellness reminder list review";
  rdfs:comment "Description: A person reviews a list of wellness or preventive care reminders for a given patient.";
  dcterms:description "Description: A person reviews a list of wellness or preventive care reminders for a given patient.".

cs:ActCode\#PATINFO rdfs:subClassOf cs:ActCode\#%5fActTaskCode;
  rdfs:label "patient information review task";
  dc:title "patient information review task";
  rdfs:comment "A person (e.g., clinician, the patient herself) reviews patient information in the electronic medical record.";
  dcterms:description "A person (e.g., clinician, the patient herself) reviews patient information in the electronic medical record.".

cs:ActCode\#ALLERLE rdfs:subClassOf cs:ActCode\#PATINFO;
  rdfs:label "allergy list entry";
  dc:title "allergy list entry";
  rdfs:comment "Description: A person enters a known allergy for a given patient.";
  dcterms:description "Description: A person enters a known allergy for a given patient.".

cs:ActCode\#CDSREV rdfs:subClassOf cs:ActCode\#PATINFO;
  rdfs:label "clinical decision support intervention review";
  dc:title "clinical decision support intervention review";
  rdfs:comment "A person reviews a recommendation/assessment provided automatically by a clinical decision support application for a given patient.";
  dcterms:description "A person reviews a recommendation/assessment provided automatically by a clinical decision support application for a given patient.".

cs:ActCode\#CLINNOTEREV rdfs:subClassOf cs:ActCode\#PATINFO;
  rdfs:label "clinical note review task";
  dc:title "clinical note review task";
  rdfs:comment "A person reviews a clinical note of a given patient.";
  dcterms:description "A person reviews a clinical note of a given patient.".

cs:ActCode\#DISCHSUMREV rdfs:subClassOf cs:ActCode\#CLINNOTEREV;
  rdfs:label "discharge summary review task";
  dc:title "discharge summary review task";
  rdfs:comment "A person reviews a discharge summary of a given patient.";
  dcterms:description "A person reviews a discharge summary of a given patient.".

cs:ActCode\#DIAGLISTREV rdfs:subClassOf cs:ActCode\#PATINFO;
  rdfs:label "diagnosis list review task";
  dc:title "diagnosis list review task";
  rdfs:comment "A person reviews a list of diagnoses of a given patient.";
  dcterms:description "A person reviews a list of diagnoses of a given patient.".

cs:ActCode\#IMMLE rdfs:subClassOf cs:ActCode\#PATINFO;
  rdfs:label "immunization list entry";
  dc:title "immunization list entry";
  rdfs:comment "Description: A person enters an immunization due or received for a given patient.";
  dcterms:description "Description: A person enters an immunization due or received for a given patient.".

cs:ActCode\#LABRREV rdfs:subClassOf cs:ActCode\#PATINFO;
  rdfs:label "laboratory results review task";
  dc:title "laboratory results review task";
  rdfs:comment "A person reviews a list of laboratory results of a given patient.";
  dcterms:description "A person reviews a list of laboratory results of a given patient.".

cs:ActCode\#MICRORREV rdfs:subClassOf cs:ActCode\#PATINFO;
  rdfs:label "microbiology results review task";
  dc:title "microbiology results review task";
  rdfs:comment "A person reviews a list of microbiology results of a given patient.";
  dcterms:description "A person reviews a list of microbiology results of a given patient.".

cs:ActCode\#MICROORGRREV rdfs:subClassOf cs:ActCode\#MICRORREV;
  rdfs:label "microbiology organisms results review task";
  dc:title "microbiology organisms results review task";
  rdfs:comment "A person reviews organisms of microbiology results of a given patient.";
  dcterms:description "A person reviews organisms of microbiology results of a given patient.".

cs:ActCode\#MICROSENSRREV rdfs:subClassOf cs:ActCode\#MICRORREV;
  rdfs:label "microbiology sensitivity test results review task";
  dc:title "microbiology sensitivity test results review task";
  rdfs:comment "A person reviews the sensitivity test of microbiology results of a given patient.";
  dcterms:description "A person reviews the sensitivity test of microbiology results of a given patient.".

cs:ActCode\#MLREV rdfs:subClassOf cs:ActCode\#PATINFO;
  rdfs:label "medication list review task";
  dc:title "medication list review task";
  rdfs:comment "A person reviews a list of medication orders submitted to a given patient";
  dcterms:description "A person reviews a list of medication orders submitted to a given patient".

cs:ActCode\#MARWLREV rdfs:subClassOf cs:ActCode\#MLREV;
  rdfs:label "medication administration record work list review task";
  dc:title "medication administration record work list review task";
  rdfs:comment "A clinician reviews a work list of medications to be administered to a given patient.";
  dcterms:description "A clinician reviews a work list of medications to be administered to a given patient.".

cs:ActCode\#OREV rdfs:subClassOf cs:ActCode\#PATINFO;
  rdfs:label "orders review task";
  dc:title "orders review task";
  rdfs:comment "A person reviews a list of orders submitted to a given patient.";
  dcterms:description "A person reviews a list of orders submitted to a given patient.".

cs:ActCode\#PATREPREV rdfs:subClassOf cs:ActCode\#PATINFO;
  rdfs:label "pathology report review task";
  dc:title "pathology report review task";
  rdfs:comment "A person reviews a pathology report of a given patient.";
  dcterms:description "A person reviews a pathology report of a given patient.".

cs:ActCode\#PROBLISTREV rdfs:subClassOf cs:ActCode\#PATINFO;
  rdfs:label "problem list review task";
  dc:title "problem list review task";
  rdfs:comment "A person reviews a list of problems of a given patient.";
  dcterms:description "A person reviews a list of problems of a given patient.".

cs:ActCode\#RADREPREV rdfs:subClassOf cs:ActCode\#PATINFO;
  rdfs:label "radiology report review task";
  dc:title "radiology report review task";
  rdfs:comment "A person reviews a radiology report of a given patient.";
  dcterms:description "A person reviews a radiology report of a given patient.".

cs:ActCode\#REMLE rdfs:subClassOf cs:ActCode\#PATINFO;
  rdfs:label "reminder list entry";
  dc:title "reminder list entry";
  rdfs:comment "Description: A person enters a health care reminder for a given patient.";
  dcterms:description "Description: A person enters a health care reminder for a given patient.".

cs:ActCode\#WELLREMLE rdfs:subClassOf cs:ActCode\#REMLE;
  rdfs:label "wellness reminder list entry";
  dc:title "wellness reminder list entry";
  rdfs:comment "Description: A person enters a wellness or preventive care reminder for a given patient.";
  dcterms:description "Description: A person enters a wellness or preventive care reminder for a given patient.".

cs:ActCode\#RISKASSESS rdfs:subClassOf cs:ActCode\#PATINFO;
  rdfs:label "risk assessment instrument task";
  dc:title "risk assessment instrument task";
  rdfs:comment "A person reviews a Risk Assessment Instrument report of a given patient.";
  dcterms:description "A person reviews a Risk Assessment Instrument report of a given patient.".

cs:ActCode\#FALLRISK rdfs:subClassOf cs:ActCode\#RISKASSESS;
  rdfs:label "falls risk assessment instrument task";
  dc:title "falls risk assessment instrument task";
  rdfs:comment "A person reviews a Falls Risk Assessment Instrument report of a given patient.";
  dcterms:description "A person reviews a Falls Risk Assessment Instrument report of a given patient.".

cs:ActCode\#%5fActTransportationModeCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActTransportationModeCode";
  dc:title "ActTransportationModeCode";
  rdfs:comment "Characterizes how a transportation act was or will be carried out.\r\n\n                        \n                           Examples: Via private transport, via public transit, via courier.";
  dcterms:description "Characterizes how a transportation act was or will be carried out.\r\n\n                        \n                           Examples: Via private transport, via public transit, via courier.".

cs:ActCode\#%5fActPatientTransportationModeCode rdfs:subClassOf cs:ActCode\#%5fActTransportationModeCode;
  rdfs:label "ActPatientTransportationModeCode";
  dc:title "ActPatientTransportationModeCode";
  rdfs:comment "Definition: Characterizes how a patient was or will be transported to the site of a patient encounter.\r\n\n                        \n                           Examples: Via ambulance, via public transit, on foot.";
  dcterms:description "Definition: Characterizes how a patient was or will be transported to the site of a patient encounter.\r\n\n                        \n                           Examples: Via ambulance, via public transit, on foot.".

cs:ActCode\#AFOOT rdfs:subClassOf cs:ActCode\#%5fActPatientTransportationModeCode;
  rdfs:label "pedestrian transport";
  dc:title "pedestrian transport";
  rdfs:comment "pedestrian transport";
  dcterms:description "pedestrian transport".

cs:ActCode\#AMBT rdfs:subClassOf cs:ActCode\#%5fActPatientTransportationModeCode;
  rdfs:label "ambulance transport";
  dc:title "ambulance transport";
  rdfs:comment "ambulance transport";
  dcterms:description "ambulance transport".

cs:ActCode\#AMBAIR rdfs:subClassOf cs:ActCode\#AMBT;
  rdfs:label "fixed-wing ambulance transport";
  dc:title "fixed-wing ambulance transport";
  rdfs:comment "fixed-wing ambulance transport";
  dcterms:description "fixed-wing ambulance transport".

cs:ActCode\#AMBGRND rdfs:subClassOf cs:ActCode\#AMBT;
  rdfs:label "ground ambulance transport";
  dc:title "ground ambulance transport";
  rdfs:comment "ground ambulance transport";
  dcterms:description "ground ambulance transport".

cs:ActCode\#AMBHELO rdfs:subClassOf cs:ActCode\#AMBT;
  rdfs:label "helicopter ambulance transport";
  dc:title "helicopter ambulance transport";
  rdfs:comment "helicopter ambulance transport";
  dcterms:description "helicopter ambulance transport".

cs:ActCode\#LAWENF rdfs:subClassOf cs:ActCode\#%5fActPatientTransportationModeCode;
  rdfs:label "law enforcement transport";
  dc:title "law enforcement transport";
  rdfs:comment "law enforcement transport";
  dcterms:description "law enforcement transport".

cs:ActCode\#PRVTRN rdfs:subClassOf cs:ActCode\#%5fActPatientTransportationModeCode;
  rdfs:label "private transport";
  dc:title "private transport";
  rdfs:comment "private transport";
  dcterms:description "private transport".

cs:ActCode\#PUBTRN rdfs:subClassOf cs:ActCode\#%5fActPatientTransportationModeCode;
  rdfs:label "public transport";
  dc:title "public transport";
  rdfs:comment "public transport";
  dcterms:description "public transport".

cs:ActCode\#%5fObservationType rdfs:subClassOf cs:ActCode;
  rdfs:label "ObservationType";
  dc:title "ObservationType";
  rdfs:comment "Identifies the kinds of observations that can be performed";
  dcterms:description "Identifies the kinds of observations that can be performed".

cs:ActCode\#%5fActSpecObsCode rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "ActSpecObsCode";
  dc:title "ActSpecObsCode";
  rdfs:comment "Identifies the type of observation that is made about a specimen that may affect its processing, analysis or further result interpretation";
  dcterms:description "Identifies the type of observation that is made about a specimen that may affect its processing, analysis or further result interpretation".

cs:ActCode\#ARTBLD rdfs:subClassOf cs:ActCode\#%5fActSpecObsCode;
  rdfs:label "ActSpecObsArtBldCode";
  dc:title "ActSpecObsArtBldCode";
  rdfs:comment "Describes the artificial blood identifier that is associated with the specimen.";
  dcterms:description "Describes the artificial blood identifier that is associated with the specimen.".

cs:ActCode\#DILUTION rdfs:subClassOf cs:ActCode\#%5fActSpecObsCode;
  rdfs:label "ActSpecObsDilutionCode";
  dc:title "ActSpecObsDilutionCode";
  rdfs:comment "An observation that reports the dilution of a sample.";
  dcterms:description "An observation that reports the dilution of a sample.".

cs:ActCode\#AUTO%2dHIGH rdfs:subClassOf cs:ActCode\#DILUTION;
  rdfs:label "Auto-High Dilution";
  dc:title "Auto-High Dilution";
  rdfs:comment "The dilution of a sample performed by automated equipment.  The value is specified by the equipment";
  dcterms:description "The dilution of a sample performed by automated equipment.  The value is specified by the equipment".

cs:ActCode\#AUTO%2dLOW rdfs:subClassOf cs:ActCode\#DILUTION;
  rdfs:label "Auto-Low Dilution";
  dc:title "Auto-Low Dilution";
  rdfs:comment "The dilution of a sample performed by automated equipment.  The value is specified by the equipment";
  dcterms:description "The dilution of a sample performed by automated equipment.  The value is specified by the equipment".

cs:ActCode\#PRE rdfs:subClassOf cs:ActCode\#DILUTION;
  rdfs:label "Pre-Dilution";
  dc:title "Pre-Dilution";
  rdfs:comment "The dilution of the specimen made prior to being loaded onto analytical equipment";
  dcterms:description "The dilution of the specimen made prior to being loaded onto analytical equipment".

cs:ActCode\#RERUN rdfs:subClassOf cs:ActCode\#DILUTION;
  rdfs:label "Rerun Dilution";
  dc:title "Rerun Dilution";
  rdfs:comment "The value of the dilution of a sample after it had been analyzed at a prior dilution value";
  dcterms:description "The value of the dilution of a sample after it had been analyzed at a prior dilution value".

cs:ActCode\#EVNFCTS rdfs:subClassOf cs:ActCode\#%5fActSpecObsCode;
  rdfs:label "ActSpecObsEvntfctsCode";
  dc:title "ActSpecObsEvntfctsCode";
  rdfs:comment "Domain provides codes that qualify the ActLabObsEnvfctsCode domain. (Environmental Factors)";
  dcterms:description "Domain provides codes that qualify the ActLabObsEnvfctsCode domain. (Environmental Factors)".

cs:ActCode\#INTFR rdfs:subClassOf cs:ActCode\#%5fActSpecObsCode;
  rdfs:label "ActSpecObsInterferenceCode";
  dc:title "ActSpecObsInterferenceCode";
  rdfs:comment "An observation that relates to factors that may potentially cause interference with the observation";
  dcterms:description "An observation that relates to factors that may potentially cause interference with the observation".

cs:ActCode\#FIBRIN rdfs:subClassOf cs:ActCode\#INTFR;
  rdfs:label "Fibrin";
  dc:title "Fibrin";
  rdfs:comment "The Fibrin Index of the specimen. In the case of only differentiating between Absent and Present, recommend using 0 and 1";
  dcterms:description "The Fibrin Index of the specimen. In the case of only differentiating between Absent and Present, recommend using 0 and 1".

cs:ActCode\#HEMOLYSIS rdfs:subClassOf cs:ActCode\#INTFR;
  rdfs:label "Hemolysis";
  dc:title "Hemolysis";
  rdfs:comment "An observation of the hemolysis index of the specimen in g/L";
  dcterms:description "An observation of the hemolysis index of the specimen in g/L".

cs:ActCode\#ICTERUS rdfs:subClassOf cs:ActCode\#INTFR;
  rdfs:label "Icterus";
  dc:title "Icterus";
  rdfs:comment "An observation that describes the icterus index of the specimen.  It is recommended to use mMol/L of bilirubin";
  dcterms:description "An observation that describes the icterus index of the specimen.  It is recommended to use mMol/L of bilirubin".

cs:ActCode\#LIPEMIA rdfs:subClassOf cs:ActCode\#INTFR;
  rdfs:label "Lipemia";
  dc:title "Lipemia";
  rdfs:comment "An observation used to describe the Lipemia Index of the specimen. It is recommended to use the optical turbidity at 600 nm (in absorbance units).";
  dcterms:description "An observation used to describe the Lipemia Index of the specimen. It is recommended to use the optical turbidity at 600 nm (in absorbance units).".

cs:ActCode\#VOLUME rdfs:subClassOf cs:ActCode\#%5fActSpecObsCode;
  rdfs:label "ActSpecObsVolumeCode";
  dc:title "ActSpecObsVolumeCode";
  rdfs:comment "An observation that reports the volume of a sample.";
  dcterms:description "An observation that reports the volume of a sample.".

cs:ActCode\#AVAILABLE rdfs:subClassOf cs:ActCode\#VOLUME;
  rdfs:label "Available Volume";
  dc:title "Available Volume";
  rdfs:comment "The available quantity of specimen.   This is the current quantity minus any planned consumption (e.g., tests that are planned)";
  dcterms:description "The available quantity of specimen.   This is the current quantity minus any planned consumption (e.g., tests that are planned)".

cs:ActCode\#CONSUMPTION rdfs:subClassOf cs:ActCode\#VOLUME;
  rdfs:label "Consumption Volume";
  dc:title "Consumption Volume";
  rdfs:comment "The quantity of specimen that is used each time the equipment uses this substance";
  dcterms:description "The quantity of specimen that is used each time the equipment uses this substance".

cs:ActCode\#CURRENT rdfs:subClassOf cs:ActCode\#VOLUME;
  rdfs:label "Current Volume";
  dc:title "Current Volume";
  rdfs:comment "The current quantity of the specimen, i.e., initial quantity minus what has been actually used.";
  dcterms:description "The current quantity of the specimen, i.e., initial quantity minus what has been actually used.".

cs:ActCode\#INITIAL rdfs:subClassOf cs:ActCode\#VOLUME;
  rdfs:label "Initial Volume";
  dc:title "Initial Volume";
  rdfs:comment "The initial quantity of the specimen in inventory";
  dcterms:description "The initial quantity of the specimen in inventory".

cs:ActCode\#%5fAnnotationType rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "AnnotationType";
  dc:title "AnnotationType";
  rdfs:comment "AnnotationType";
  dcterms:description "AnnotationType".

cs:ActCode\#%5fActPatientAnnotationType rdfs:subClassOf cs:ActCode\#%5fAnnotationType;
  rdfs:label "ActPatientAnnotationType";
  dc:title "ActPatientAnnotationType";
  rdfs:comment "Description:Provides a categorization for annotations recorded directly against the patient .";
  dcterms:description "Description:Provides a categorization for annotations recorded directly against the patient .".

cs:ActCode\#ANNDI rdfs:subClassOf cs:ActCode\#%5fActPatientAnnotationType;
  rdfs:label "diagnostic image note";
  dc:title "diagnostic image note";
  rdfs:comment "Description:A note that is specific to a patient's diagnostic images, either historical, current or planned.";
  dcterms:description "Description:A note that is specific to a patient's diagnostic images, either historical, current or planned.".

cs:ActCode\#ANNGEN rdfs:subClassOf cs:ActCode\#%5fActPatientAnnotationType;
  rdfs:label "general note";
  dc:title "general note";
  rdfs:comment "Description:A general or uncategorized note.";
  dcterms:description "Description:A general or uncategorized note.".

cs:ActCode\#ANNIMM rdfs:subClassOf cs:ActCode\#%5fActPatientAnnotationType;
  rdfs:label "immunization note";
  dc:title "immunization note";
  rdfs:comment "A note that is specific to a patient's immunizations, either historical, current or planned.";
  dcterms:description "A note that is specific to a patient's immunizations, either historical, current or planned.".

cs:ActCode\#ANNLAB rdfs:subClassOf cs:ActCode\#%5fActPatientAnnotationType;
  rdfs:label "laboratory note";
  dc:title "laboratory note";
  rdfs:comment "Description:A note that is specific to a patient's laboratory results, either historical, current or planned.";
  dcterms:description "Description:A note that is specific to a patient's laboratory results, either historical, current or planned.".

cs:ActCode\#ANNMED rdfs:subClassOf cs:ActCode\#%5fActPatientAnnotationType;
  rdfs:label "medication note";
  dc:title "medication note";
  rdfs:comment "Description:A note that is specific to a patient's medications, either historical, current or planned.";
  dcterms:description "Description:A note that is specific to a patient's medications, either historical, current or planned.".

cs:ActCode\#%5fGeneticObservationType rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "GeneticObservationType";
  dc:title "GeneticObservationType";
  rdfs:comment "Description: None provided";
  dcterms:description "Description: None provided".

cs:ActCode\#GENE rdfs:subClassOf cs:ActCode\#%5fGeneticObservationType;
  rdfs:label "gene";
  dc:title "gene";
  rdfs:comment "Description: A DNA segment that contributes to phenotype/function. In the absence of demonstrated function a gene may be characterized by sequence, transcription or homology";
  dcterms:description "Description: A DNA segment that contributes to phenotype/function. In the absence of demonstrated function a gene may be characterized by sequence, transcription or homology".

cs:ActCode\#%5fImmunizationObservationType rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "ImmunizationObservationType";
  dc:title "ImmunizationObservationType";
  rdfs:comment "Description: Observation codes which describe characteristics of the immunization material.";
  dcterms:description "Description: Observation codes which describe characteristics of the immunization material.".

cs:ActCode\#OBSANTC rdfs:subClassOf cs:ActCode\#%5fImmunizationObservationType;
  rdfs:label "antigen count";
  dc:title "antigen count";
  rdfs:comment "Description: Indicates the valid antigen count.";
  dcterms:description "Description: Indicates the valid antigen count.".

cs:ActCode\#OBSANTV rdfs:subClassOf cs:ActCode\#%5fImmunizationObservationType;
  rdfs:label "antigen validity";
  dc:title "antigen validity";
  rdfs:comment "Description: Indicates whether an antigen is valid or invalid.";
  dcterms:description "Description: Indicates whether an antigen is valid or invalid.".

cs:ActCode\#%5fIndividualCaseSafetyReportType rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "Individual Case Safety Report Type";
  dc:title "Individual Case Safety Report Type";
  rdfs:comment "A code that is used to indicate the type of case safety report received from sender. The current code example reference is from the International Conference on Harmonisation (ICH) Expert Workgroup guideline on Clinical Safety Data Management: Data Elements for Transmission of Individual Case Safety Reports. The unknown/unavailable option allows the transmission of information from a secondary sender where the initial sender did not specify the type of report.\r\n\n                        Example concepts include: Spontaneous, Report from study, Other.";
  dcterms:description "A code that is used to indicate the type of case safety report received from sender. The current code example reference is from the International Conference on Harmonisation (ICH) Expert Workgroup guideline on Clinical Safety Data Management: Data Elements for Transmission of Individual Case Safety Reports. The unknown/unavailable option allows the transmission of information from a secondary sender where the initial sender did not specify the type of report.\r\n\n                        Example concepts include: Spontaneous, Report from study, Other.".

cs:ActCode\#PAT%5fADV%5fEVNT rdfs:subClassOf cs:ActCode\#%5fIndividualCaseSafetyReportType;
  rdfs:label "patient adverse event";
  dc:title "patient adverse event";
  rdfs:comment "Indicates that the ICSR is describing problems that a patient experienced after receiving a vaccine product.";
  dcterms:description "Indicates that the ICSR is describing problems that a patient experienced after receiving a vaccine product.".

cs:ActCode\#VAC%5fPROBLEM rdfs:subClassOf cs:ActCode\#%5fIndividualCaseSafetyReportType;
  rdfs:label "vaccine product problem";
  dc:title "vaccine product problem";
  rdfs:comment "Indicates that the ICSR is describing a problem with the actual vaccine product such as physical defects (cloudy, particulate matter) or inability to confer immunity.";
  dcterms:description "Indicates that the ICSR is describing a problem with the actual vaccine product such as physical defects (cloudy, particulate matter) or inability to confer immunity.".

cs:ActCode\#%5fLOINCObservationActContextAgeType rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "LOINCObservationActContextAgeType";
  dc:title "LOINCObservationActContextAgeType";
  rdfs:comment "Definition:The set of LOINC codes for the act of determining the period of time that has elapsed since an entity was born or created.";
  dcterms:description "Definition:The set of LOINC codes for the act of determining the period of time that has elapsed since an entity was born or created.".

cs:ActCode\#21611%2d9 rdfs:subClassOf cs:ActCode\#%5fLOINCObservationActContextAgeType;
  rdfs:label "age patient qn est";
  dc:title "age patient qn est";
  rdfs:comment "Definition:Estimated age.";
  dcterms:description "Definition:Estimated age.".

cs:ActCode\#21612%2d7 rdfs:subClassOf cs:ActCode\#%5fLOINCObservationActContextAgeType;
  rdfs:label "age patient qn reported";
  dc:title "age patient qn reported";
  rdfs:comment "Definition:Reported age.";
  dcterms:description "Definition:Reported age.".

cs:ActCode\#29553%2d5 rdfs:subClassOf cs:ActCode\#%5fLOINCObservationActContextAgeType;
  rdfs:label "age patient qn calc";
  dc:title "age patient qn calc";
  rdfs:comment "Definition:Calculated age.";
  dcterms:description "Definition:Calculated age.".

cs:ActCode\#30525%2d0 rdfs:subClassOf cs:ActCode\#%5fLOINCObservationActContextAgeType;
  rdfs:label "age patient qn definition";
  dc:title "age patient qn definition";
  rdfs:comment "Definition:General specification of age with no implied method of determination.";
  dcterms:description "Definition:General specification of age with no implied method of determination.".

cs:ActCode\#30972%2d4 rdfs:subClassOf cs:ActCode\#%5fLOINCObservationActContextAgeType;
  rdfs:label "age at onset of adverse event";
  dc:title "age at onset of adverse event";
  rdfs:comment "Definition:Age at onset of associated adverse event; no implied method of determination.";
  dcterms:description "Definition:Age at onset of associated adverse event; no implied method of determination.".

cs:ActCode\#%5fMedicationObservationType rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "MedicationObservationType";
  dc:title "MedicationObservationType";
  rdfs:comment "MedicationObservationType";
  dcterms:description "MedicationObservationType".

cs:ActCode\#REP%5fHALF%5fLIFE rdfs:subClassOf cs:ActCode\#%5fMedicationObservationType;
  rdfs:label "representative half-life";
  dc:title "representative half-life";
  rdfs:comment "Description:This observation represents an 'average' or 'expected' half-life typical of the product.";
  dcterms:description "Description:This observation represents an 'average' or 'expected' half-life typical of the product.".

cs:ActCode\#SPLCOATING rdfs:subClassOf cs:ActCode\#%5fMedicationObservationType;
  rdfs:label "coating";
  dc:title "coating";
  rdfs:comment "Definition: A characteristic of an oral solid dosage form of a medicinal product, indicating whether it has one or more coatings such as sugar coating, film coating, or enteric coating.  Only coatings to the external surface or the dosage form should be considered (for example, coatings to individual pellets or granules inside a capsule or tablet are excluded from consideration).\r\n\n                        \n                           Constraints: The Observation.value must be a Boolean (BL) with true for the presence or false for the absence of one or more coatings on a solid dosage form.";
  dcterms:description "Definition: A characteristic of an oral solid dosage form of a medicinal product, indicating whether it has one or more coatings such as sugar coating, film coating, or enteric coating.  Only coatings to the external surface or the dosage form should be considered (for example, coatings to individual pellets or granules inside a capsule or tablet are excluded from consideration).\r\n\n                        \n                           Constraints: The Observation.value must be a Boolean (BL) with true for the presence or false for the absence of one or more coatings on a solid dosage form.".

cs:ActCode\#SPLCOLOR rdfs:subClassOf cs:ActCode\#%5fMedicationObservationType;
  rdfs:label "color";
  dc:title "color";
  rdfs:comment "Definition:  A characteristic of an oral solid dosage form of a medicinal product, specifying the color or colors that most predominantly define the appearance of the dose form. SPLCOLOR is not an FDA specification for the actual color of solid dosage forms or the names of colors that can appear in labeling.\r\n\n                        \n                           Constraints: The Observation.value must be a single coded value or a list of multiple coded values, specifying one or more distinct colors that approximate of the color(s) of distinct areas of the solid dosage form, such as the different sides of a tablet or one-part capsule, or the different halves of a two-part capsule.  Bands on banded capsules, regardless of the color, are not considered when assigning an SPLCOLOR. Imprints on the dosage form, regardless of their color are not considered when assigning an SPLCOLOR. If more than one color exists on a particular side or half, then the most predominant color on that side or half is recorded.  If the gelatin capsule shell is colorless and transparent, use the predominant color of the contents that appears through the colorless and transparent capsule shell. Colors can include: Black;Gray;White;Red;Pink;Purple;Green;Yellow;Orange;Brown;Blue;Turquoise.";
  dcterms:description "Definition:  A characteristic of an oral solid dosage form of a medicinal product, specifying the color or colors that most predominantly define the appearance of the dose form. SPLCOLOR is not an FDA specification for the actual color of solid dosage forms or the names of colors that can appear in labeling.\r\n\n                        \n                           Constraints: The Observation.value must be a single coded value or a list of multiple coded values, specifying one or more distinct colors that approximate of the color(s) of distinct areas of the solid dosage form, such as the different sides of a tablet or one-part capsule, or the different halves of a two-part capsule.  Bands on banded capsules, regardless of the color, are not considered when assigning an SPLCOLOR. Imprints on the dosage form, regardless of their color are not considered when assigning an SPLCOLOR. If more than one color exists on a particular side or half, then the most predominant color on that side or half is recorded.  If the gelatin capsule shell is colorless and transparent, use the predominant color of the contents that appears through the colorless and transparent capsule shell. Colors can include: Black;Gray;White;Red;Pink;Purple;Green;Yellow;Orange;Brown;Blue;Turquoise.".

cs:ActCode\#SPLIMAGE rdfs:subClassOf cs:ActCode\#%5fMedicationObservationType;
  rdfs:label "image";
  dc:title "image";
  rdfs:comment "Description: A characteristic representing a single file reference that contains two or more views of the same dosage form of the product; in most cases this should represent front and back views of the dosage form, but occasionally additional views might be needed in order to capture all of the important physical characteristics of the dosage form.  Any imprint and/or symbol should be clearly identifiable, and the viewer should not normally need to rotate the image in order to read it.  Images that are submitted with SPL should be included in the same directory as the SPL file.";
  dcterms:description "Description: A characteristic representing a single file reference that contains two or more views of the same dosage form of the product; in most cases this should represent front and back views of the dosage form, but occasionally additional views might be needed in order to capture all of the important physical characteristics of the dosage form.  Any imprint and/or symbol should be clearly identifiable, and the viewer should not normally need to rotate the image in order to read it.  Images that are submitted with SPL should be included in the same directory as the SPL file.".

cs:ActCode\#SPLIMPRINT rdfs:subClassOf cs:ActCode\#%5fMedicationObservationType;
  rdfs:label "imprint";
  dc:title "imprint";
  rdfs:comment "Definition:  A characteristic of an oral solid dosage form of a medicinal product, specifying the alphanumeric text that appears on the solid dosage form, including text that is embossed, debossed, engraved or printed with ink. The presence of other non-textual distinguishing marks or symbols is recorded by SPLSYMBOL.\r\n\n                        \n                           Examples: Included in SPLIMPRINT are alphanumeric text that appears on the bands of banded capsules and logos and other symbols that can be interpreted as letters or numbers.\r\n\n                        \n                           Constraints: The Observation.value must be of type Character String (ST). Excluded from SPLIMPRINT are internal and external cut-outs in the form of alphanumeric text and the letter 'R' with a circle around it (when referring to a registered trademark) and the letters 'TM' (when referring to a 'trade mark').  To record text, begin on either side or part of the dosage form. Start at the top left and progress as one would normally read a book.  Enter a semicolon to show separation between words or line divisions.";
  dcterms:description "Definition:  A characteristic of an oral solid dosage form of a medicinal product, specifying the alphanumeric text that appears on the solid dosage form, including text that is embossed, debossed, engraved or printed with ink. The presence of other non-textual distinguishing marks or symbols is recorded by SPLSYMBOL.\r\n\n                        \n                           Examples: Included in SPLIMPRINT are alphanumeric text that appears on the bands of banded capsules and logos and other symbols that can be interpreted as letters or numbers.\r\n\n                        \n                           Constraints: The Observation.value must be of type Character String (ST). Excluded from SPLIMPRINT are internal and external cut-outs in the form of alphanumeric text and the letter 'R' with a circle around it (when referring to a registered trademark) and the letters 'TM' (when referring to a 'trade mark').  To record text, begin on either side or part of the dosage form. Start at the top left and progress as one would normally read a book.  Enter a semicolon to show separation between words or line divisions.".

cs:ActCode\#SPLSCORING rdfs:subClassOf cs:ActCode\#%5fMedicationObservationType;
  rdfs:label "scoring";
  dc:title "scoring";
  rdfs:comment "Definition: A characteristic of an oral solid dosage form of a medicinal product, specifying the number of equal pieces that the solid dosage form can be divided into using score line(s). \r\n\n                        \n                           Example: One score line creating two equal pieces is given a value of 2, two parallel score lines creating three equal pieces is given a value of 3.\r\n\n                        \n                           Constraints: Whether three parallel score lines create four equal pieces or two intersecting score lines create two equal pieces using one score line and four equal pieces using both score lines, both have the scoring value of 4. Solid dosage forms that are not scored are given a value of 1. Solid dosage forms that can only be divided into unequal pieces are given a null-value with nullFlavor other (OTH).";
  dcterms:description "Definition: A characteristic of an oral solid dosage form of a medicinal product, specifying the number of equal pieces that the solid dosage form can be divided into using score line(s). \r\n\n                        \n                           Example: One score line creating two equal pieces is given a value of 2, two parallel score lines creating three equal pieces is given a value of 3.\r\n\n                        \n                           Constraints: Whether three parallel score lines create four equal pieces or two intersecting score lines create two equal pieces using one score line and four equal pieces using both score lines, both have the scoring value of 4. Solid dosage forms that are not scored are given a value of 1. Solid dosage forms that can only be divided into unequal pieces are given a null-value with nullFlavor other (OTH).".

cs:ActCode\#SPLSHAPE rdfs:subClassOf cs:ActCode\#%5fMedicationObservationType;
  rdfs:label "shape";
  dc:title "shape";
  rdfs:comment "Description: A characteristic of an oral solid dosage form of a medicinal product, specifying the two dimensional representation of the solid dose form, in terms of the outside perimeter of a solid dosage form when the dosage form, resting on a flat surface, is viewed from directly above, including slight rounding of corners. SPLSHAPE does not include embossing, scoring, debossing, or internal cut-outs.  SPLSHAPE is independent of the orientation of the imprint and logo. Shapes can include: Triangle (3 sided); Square; Round; Semicircle; Pentagon (5 sided); Diamond; Double circle; Bullet; Hexagon (6 sided); Rectangle; Gear; Capsule; Heptagon (7 sided); Trapezoid; Oval; Clover; Octagon (8 sided); Tear; Freeform.";
  dcterms:description "Description: A characteristic of an oral solid dosage form of a medicinal product, specifying the two dimensional representation of the solid dose form, in terms of the outside perimeter of a solid dosage form when the dosage form, resting on a flat surface, is viewed from directly above, including slight rounding of corners. SPLSHAPE does not include embossing, scoring, debossing, or internal cut-outs.  SPLSHAPE is independent of the orientation of the imprint and logo. Shapes can include: Triangle (3 sided); Square; Round; Semicircle; Pentagon (5 sided); Diamond; Double circle; Bullet; Hexagon (6 sided); Rectangle; Gear; Capsule; Heptagon (7 sided); Trapezoid; Oval; Clover; Octagon (8 sided); Tear; Freeform.".

cs:ActCode\#SPLSIZE rdfs:subClassOf cs:ActCode\#%5fMedicationObservationType;
  rdfs:label "size";
  dc:title "size";
  rdfs:comment "Definition: A characteristic of an oral solid dosage form of a medicinal product, specifying the longest single dimension of the solid dosage form as a physical quantity in the dimension of length (e.g., 3 mm). The length is should be specified in millimeters and should be rounded to the nearest whole millimeter.\r\n\n                        \n                           Example: SPLSIZE for a rectangular shaped tablet is the length and SPLSIZE for a round shaped tablet is the diameter.";
  dcterms:description "Definition: A characteristic of an oral solid dosage form of a medicinal product, specifying the longest single dimension of the solid dosage form as a physical quantity in the dimension of length (e.g., 3 mm). The length is should be specified in millimeters and should be rounded to the nearest whole millimeter.\r\n\n                        \n                           Example: SPLSIZE for a rectangular shaped tablet is the length and SPLSIZE for a round shaped tablet is the diameter.".

cs:ActCode\#SPLSYMBOL rdfs:subClassOf cs:ActCode\#%5fMedicationObservationType;
  rdfs:label "symbol";
  dc:title "symbol";
  rdfs:comment "Definition: A characteristic of an oral solid dosage form of a medicinal product, to describe whether or not the medicinal product has a mark or symbol appearing on it for easy and definite recognition.  Score lines, letters, numbers, and internal and external cut-outs are not considered marks or symbols. See SPLSCORING and SPLIMPRINT for these characteristics.\r\n\n                        \n                           Constraints: The Observation.value must be a Boolean (BL) with <u>true</u> indicating the presence and <u>false</u> for the absence of marks or symbols.\r\n\n                        \n                           Example:";
  dcterms:description "Definition: A characteristic of an oral solid dosage form of a medicinal product, to describe whether or not the medicinal product has a mark or symbol appearing on it for easy and definite recognition.  Score lines, letters, numbers, and internal and external cut-outs are not considered marks or symbols. See SPLSCORING and SPLIMPRINT for these characteristics.\r\n\n                        \n                           Constraints: The Observation.value must be a Boolean (BL) with <u>true</u> indicating the presence and <u>false</u> for the absence of marks or symbols.\r\n\n                        \n                           Example:".

cs:ActCode\#%5fObservationIssueTriggerCodedObservationType rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "ObservationIssueTriggerCodedObservationType";
  dc:title "ObservationIssueTriggerCodedObservationType";
  rdfs:comment "Distinguishes the kinds of coded observations that could be the trigger for clinical issue detection. These are observations that are not measurable, but instead can be defined with codes. Coded observation types include: Allergy, Intolerance, Medical Condition, Pregnancy status, etc.";
  dcterms:description "Distinguishes the kinds of coded observations that could be the trigger for clinical issue detection. These are observations that are not measurable, but instead can be defined with codes. Coded observation types include: Allergy, Intolerance, Medical Condition, Pregnancy status, etc.".

cs:ActCode\#%5fCaseTransmissionMode rdfs:subClassOf cs:ActCode\#%5fObservationIssueTriggerCodedObservationType;
  rdfs:label "case transmission mode";
  dc:title "case transmission mode";
  rdfs:comment "Code for the mechanism by which disease was acquired by the living subject involved in the public health case. Includes sexually transmitted, airborne, bloodborne, vectorborne, foodborne, zoonotic, nosocomial, mechanical, dermal, congenital, environmental exposure, indeterminate.";
  dcterms:description "Code for the mechanism by which disease was acquired by the living subject involved in the public health case. Includes sexually transmitted, airborne, bloodborne, vectorborne, foodborne, zoonotic, nosocomial, mechanical, dermal, congenital, environmental exposure, indeterminate.".

cs:ActCode\#AIRTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "airborne transmission";
  dc:title "airborne transmission";
  rdfs:comment "Communication of an agent from a living subject or environmental source to a living subject through indirect contact via oral or nasal inhalation.";
  dcterms:description "Communication of an agent from a living subject or environmental source to a living subject through indirect contact via oral or nasal inhalation.".

cs:ActCode\#ANANTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "animal to animal transmission";
  dc:title "animal to animal transmission";
  rdfs:comment "Communication of an agent from one animal to another proximate animal.";
  dcterms:description "Communication of an agent from one animal to another proximate animal.".

cs:ActCode\#ANHUMTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "animal to human transmission";
  dc:title "animal to human transmission";
  rdfs:comment "Communication of an agent from an animal to a proximate person.";
  dcterms:description "Communication of an agent from an animal to a proximate person.".

cs:ActCode\#BDYFLDTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "body fluid contact transmission";
  dc:title "body fluid contact transmission";
  rdfs:comment "Communication of an agent from one living subject to another living subject through direct contact with any body fluid.";
  dcterms:description "Communication of an agent from one living subject to another living subject through direct contact with any body fluid.".

cs:ActCode\#BLDTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "blood borne transmission";
  dc:title "blood borne transmission";
  rdfs:comment "Communication of an agent to a living subject through direct contact with blood or blood products whether the contact with blood is part of  a therapeutic procedure or not.";
  dcterms:description "Communication of an agent to a living subject through direct contact with blood or blood products whether the contact with blood is part of  a therapeutic procedure or not.".

cs:ActCode\#DERMTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "transdermal transmission";
  dc:title "transdermal transmission";
  rdfs:comment "Communication of an agent from a living subject or environmental source to a living subject via agent migration through intact skin.";
  dcterms:description "Communication of an agent from a living subject or environmental source to a living subject via agent migration through intact skin.".

cs:ActCode\#ENVTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "environmental exposure transmission";
  dc:title "environmental exposure transmission";
  rdfs:comment "Communication of an agent from an environmental surface or source to a living subject by direct contact.";
  dcterms:description "Communication of an agent from an environmental surface or source to a living subject by direct contact.".

cs:ActCode\#FECTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "fecal-oral transmission";
  dc:title "fecal-oral transmission";
  rdfs:comment "Communication of an agent from a living subject or environmental source to a living subject through oral contact with material contaminated by person or animal fecal material.";
  dcterms:description "Communication of an agent from a living subject or environmental source to a living subject through oral contact with material contaminated by person or animal fecal material.".

cs:ActCode\#FOMTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "fomite transmission";
  dc:title "fomite transmission";
  rdfs:comment "Communication of an agent from an non-living material to a living subject through direct contact.";
  dcterms:description "Communication of an agent from an non-living material to a living subject through direct contact.".

cs:ActCode\#FOODTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "food-borne transmission";
  dc:title "food-borne transmission";
  rdfs:comment "Communication of an agent from a food source to a living subject via oral consumption.";
  dcterms:description "Communication of an agent from a food source to a living subject via oral consumption.".

cs:ActCode\#HUMHUMTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "human to human transmission";
  dc:title "human to human transmission";
  rdfs:comment "Communication of an agent from a person to a proximate person.";
  dcterms:description "Communication of an agent from a person to a proximate person.".

cs:ActCode\#INDTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "indeterminate disease transmission mode";
  dc:title "indeterminate disease transmission mode";
  rdfs:comment "Communication of an agent to a living subject via an undetermined route.";
  dcterms:description "Communication of an agent to a living subject via an undetermined route.".

cs:ActCode\#LACTTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "lactation transmission";
  dc:title "lactation transmission";
  rdfs:comment "Communication of an agent from one living subject to another living subject through direct contact with mammalian milk or colostrum.";
  dcterms:description "Communication of an agent from one living subject to another living subject through direct contact with mammalian milk or colostrum.".

cs:ActCode\#NOSTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "nosocomial transmission";
  dc:title "nosocomial transmission";
  rdfs:comment "Communication of an agent from any entity to a living subject while the living subject is in the patient role in a healthcare facility.";
  dcterms:description "Communication of an agent from any entity to a living subject while the living subject is in the patient role in a healthcare facility.".

cs:ActCode\#PARTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "parenteral transmission";
  dc:title "parenteral transmission";
  rdfs:comment "Communication of an agent from a living subject or environmental source to a living subject where the acquisition of the agent is not via the alimentary canal.";
  dcterms:description "Communication of an agent from a living subject or environmental source to a living subject where the acquisition of the agent is not via the alimentary canal.".

cs:ActCode\#PLACTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "transplacental transmission";
  dc:title "transplacental transmission";
  rdfs:comment "Communication of an agent from a living subject to the progeny of that living subject via agent migration across the maternal-fetal placental membranes while in utero.";
  dcterms:description "Communication of an agent from a living subject to the progeny of that living subject via agent migration across the maternal-fetal placental membranes while in utero.".

cs:ActCode\#SEXTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "sexual transmission";
  dc:title "sexual transmission";
  rdfs:comment "Communication of an agent from one living subject to another living subject through direct contact with genital or oral tissues as part of a sexual act.";
  dcterms:description "Communication of an agent from one living subject to another living subject through direct contact with genital or oral tissues as part of a sexual act.".

cs:ActCode\#TRNSFTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "transfusion transmission";
  dc:title "transfusion transmission";
  rdfs:comment "Communication of an agent from one living subject to another living subject through direct contact with blood or blood products where the contact with blood is part of  a therapeutic procedure.";
  dcterms:description "Communication of an agent from one living subject to another living subject through direct contact with blood or blood products where the contact with blood is part of  a therapeutic procedure.".

cs:ActCode\#VECTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "vector-borne transmission";
  dc:title "vector-borne transmission";
  rdfs:comment "Communication of an agent from a living subject acting as a required intermediary in the agent transmission process to a recipient living subject via direct contact.";
  dcterms:description "Communication of an agent from a living subject acting as a required intermediary in the agent transmission process to a recipient living subject via direct contact.".

cs:ActCode\#WATTRNS rdfs:subClassOf cs:ActCode\#%5fCaseTransmissionMode;
  rdfs:label "water-borne transmission";
  dc:title "water-borne transmission";
  rdfs:comment "Communication of an agent from a contaminated water source to a living subject whether the water is ingested as a food or not. The route of entry of the water may be through any bodily orifice.";
  dcterms:description "Communication of an agent from a contaminated water source to a living subject whether the water is ingested as a food or not. The route of entry of the water may be through any bodily orifice.".

cs:ActCode\#%5fObservationQualityMeasureAttribute rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "ObservationQualityMeasureAttribute";
  dc:title "ObservationQualityMeasureAttribute";
  rdfs:comment "Codes used to define various metadata aspects of a health quality measure.";
  dcterms:description "Codes used to define various metadata aspects of a health quality measure.".

cs:ActCode\#AGGREGATE rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "aggregate measure observation";
  dc:title "aggregate measure observation";
  rdfs:comment "Indicates that the observation is carrying out an aggregation calculation, contained in the value element.";
  dcterms:description "Indicates that the observation is carrying out an aggregation calculation, contained in the value element.".

cs:ActCode\#COPY rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "copyright";
  dc:title "copyright";
  rdfs:comment "Identifies the organization(s) who own the intellectual property represented by the eMeasure.";
  dcterms:description "Identifies the organization(s) who own the intellectual property represented by the eMeasure.".

cs:ActCode\#CRS rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "clinical recommendation statement";
  dc:title "clinical recommendation statement";
  rdfs:comment "Summary of relevant clinical guidelines or other clinical recommendations supporting this eMeasure.";
  dcterms:description "Summary of relevant clinical guidelines or other clinical recommendations supporting this eMeasure.".

cs:ActCode\#DEF rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "definition";
  dc:title "definition";
  rdfs:comment "Description of individual terms, provided as needed.";
  dcterms:description "Description of individual terms, provided as needed.".

cs:ActCode\#DISC rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "disclaimer";
  dc:title "disclaimer";
  rdfs:comment "Disclaimer information for the eMeasure.";
  dcterms:description "Disclaimer information for the eMeasure.".

cs:ActCode\#FINALDT rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "finalized date/time";
  dc:title "finalized date/time";
  rdfs:comment "The timestamp when the eMeasure was last packaged in the Measure Authoring Tool.";
  dcterms:description "The timestamp when the eMeasure was last packaged in the Measure Authoring Tool.".

cs:ActCode\#GUIDE rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "guidance";
  dc:title "guidance";
  rdfs:comment "Used to allow measure developers to provide additional guidance for implementers to understand greater specificity than could be provided in the logic for data criteria.";
  dcterms:description "Used to allow measure developers to provide additional guidance for implementers to understand greater specificity than could be provided in the logic for data criteria.".

cs:ActCode\#IDUR rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "improvement notation";
  dc:title "improvement notation";
  rdfs:comment "Information on whether an increase or decrease in score is the preferred result \n(e.g., a higher score indicates better quality OR a lower score indicates better quality OR quality is within a range).";
  dcterms:description "Information on whether an increase or decrease in score is the preferred result \n(e.g., a higher score indicates better quality OR a lower score indicates better quality OR quality is within a range).".

cs:ActCode\#ITMCNT rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "items counted";
  dc:title "items counted";
  rdfs:comment "Describes the items counted by the measure (e.g., patients, encounters, procedures, etc.)";
  dcterms:description "Describes the items counted by the measure (e.g., patients, encounters, procedures, etc.)".

cs:ActCode\#KEY rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "keyword";
  dc:title "keyword";
  rdfs:comment "A significant word that aids in discoverability.";
  dcterms:description "A significant word that aids in discoverability.".

cs:ActCode\#MEDT rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "measurement end date";
  dc:title "measurement end date";
  rdfs:comment "The end date of the measurement period.";
  dcterms:description "The end date of the measurement period.".

cs:ActCode\#MSD rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "measurement start date";
  dc:title "measurement start date";
  rdfs:comment "The start date of the measurement period.";
  dcterms:description "The start date of the measurement period.".

cs:ActCode\#MSRADJ rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "risk adjustment";
  dc:title "risk adjustment";
  rdfs:comment "The method of adjusting for clinical severity and conditions present at the start of care that can influence patient outcomes for making valid comparisons of outcome measures across providers. Indicates whether an eMeasure is subject to the statistical process for reducing, removing, or clarifying the influences of confounding factors to allow more useful comparisons.";
  dcterms:description "The method of adjusting for clinical severity and conditions present at the start of care that can influence patient outcomes for making valid comparisons of outcome measures across providers. Indicates whether an eMeasure is subject to the statistical process for reducing, removing, or clarifying the influences of confounding factors to allow more useful comparisons.".

cs:ActCode\#MSRAGG rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "rate aggregation";
  dc:title "rate aggregation";
  rdfs:comment "Describes how to combine information calculated based on logic in each of several populations into one summarized result. It can also be used to describe how to risk adjust the data based on supplemental data elements described in the eMeasure. (e.g., pneumonia hospital measures antibiotic selection in the ICU versus non-ICU and then the roll-up of the two). \r\n\n                        \n                           Open Issue: The description does NOT align well with the definition used in the HQMF specfication; correct the MSGAGG definition, and the possible distinction of MSRAGG as a child of AGGREGATE.";
  dcterms:description "Describes how to combine information calculated based on logic in each of several populations into one summarized result. It can also be used to describe how to risk adjust the data based on supplemental data elements described in the eMeasure. (e.g., pneumonia hospital measures antibiotic selection in the ICU versus non-ICU and then the roll-up of the two). \r\n\n                        \n                           Open Issue: The description does NOT align well with the definition used in the HQMF specfication; correct the MSGAGG definition, and the possible distinction of MSRAGG as a child of AGGREGATE.".

cs:ActCode\#MSRIMPROV rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "health quality measure improvement notation";
  dc:title "health quality measure improvement notation";
  rdfs:comment "Information on whether an increase or decrease in score is the preferred result. This should reflect information on which way is better, an increase or decrease in score.";
  dcterms:description "Information on whether an increase or decrease in score is the preferred result. This should reflect information on which way is better, an increase or decrease in score.".

cs:ActCode\#MSRJUR rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "jurisdiction";
  dc:title "jurisdiction";
  rdfs:comment "The list of jurisdiction(s) for which the measure applies.";
  dcterms:description "The list of jurisdiction(s) for which the measure applies.".

cs:ActCode\#MSRRPTR rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "reporter type";
  dc:title "reporter type";
  rdfs:comment "Type of person or organization that is expected to report the issue.";
  dcterms:description "Type of person or organization that is expected to report the issue.".

cs:ActCode\#MSRRPTTIME rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "timeframe for reporting";
  dc:title "timeframe for reporting";
  rdfs:comment "The maximum time that may elapse following completion of the measure until the measure report must be sent to the receiver.";
  dcterms:description "The maximum time that may elapse following completion of the measure until the measure report must be sent to the receiver.".

cs:ActCode\#MSRSCORE rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "measure scoring";
  dc:title "measure scoring";
  rdfs:comment "Indicates how the calculation is performed for the eMeasure \n(e.g., proportion, continuous variable, ratio)";
  dcterms:description "Indicates how the calculation is performed for the eMeasure \n(e.g., proportion, continuous variable, ratio)".

cs:ActCode\#MSRSET rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "health quality measure care setting";
  dc:title "health quality measure care setting";
  rdfs:comment "Location(s) in which care being measured is rendered\r\n\n                        Usage Note: MSRSET is used rather than RoleCode because the setting applies to what is being measured, as opposed to participating directly in the health quality measure documantion itself).";
  dcterms:description "Location(s) in which care being measured is rendered\r\n\n                        Usage Note: MSRSET is used rather than RoleCode because the setting applies to what is being measured, as opposed to participating directly in the health quality measure documantion itself).".

cs:ActCode\#MSRTOPIC rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "health quality measure topic type";
  dc:title "health quality measure topic type";
  rdfs:comment "health quality measure topic type";
  dcterms:description "health quality measure topic type".

cs:ActCode\#MSRTP rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "measurement period";
  dc:title "measurement period";
  rdfs:comment "The time period for which the eMeasure applies.";
  dcterms:description "The time period for which the eMeasure applies.".

cs:ActCode\#MSRTYPE rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "measure type";
  dc:title "measure type";
  rdfs:comment "Indicates whether the eMeasure is used to examine a process or an outcome over time \n(e.g., Structure, Process, Outcome).";
  dcterms:description "Indicates whether the eMeasure is used to examine a process or an outcome over time \n(e.g., Structure, Process, Outcome).".

cs:ActCode\#RAT rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "rationale";
  dc:title "rationale";
  rdfs:comment "Succinct statement of the need for the measure. Usually includes statements pertaining to Importance criterion: impact, gap in care and evidence.";
  dcterms:description "Succinct statement of the need for the measure. Usually includes statements pertaining to Importance criterion: impact, gap in care and evidence.".

cs:ActCode\#REF rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "reference";
  dc:title "reference";
  rdfs:comment "Identifies bibliographic citations or references to clinical practice guidelines, sources of evidence, or other relevant materials supporting the intent and rationale of the eMeasure.";
  dcterms:description "Identifies bibliographic citations or references to clinical practice guidelines, sources of evidence, or other relevant materials supporting the intent and rationale of the eMeasure.".

cs:ActCode\#SDE rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "supplemental data elements";
  dc:title "supplemental data elements";
  rdfs:comment "Comparison of results across strata can be used to show where disparities exist or where there is a need to expose differences in results. For example, Centers for Medicare & Medicaid Services (CMS) in the U.S. defines four required Supplemental Data Elements (payer, ethnicity, race, and gender), which are variables used to aggregate data into various subgroups. Additional supplemental data elements required for risk adjustment or other purposes of data aggregation can be included in the Supplemental Data Element section.";
  dcterms:description "Comparison of results across strata can be used to show where disparities exist or where there is a need to expose differences in results. For example, Centers for Medicare & Medicaid Services (CMS) in the U.S. defines four required Supplemental Data Elements (payer, ethnicity, race, and gender), which are variables used to aggregate data into various subgroups. Additional supplemental data elements required for risk adjustment or other purposes of data aggregation can be included in the Supplemental Data Element section.".

cs:ActCode\#STRAT rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "stratification";
  dc:title "stratification";
  rdfs:comment "Describes the strata for which the measure is to be evaluated. There are three examples of reasons for stratification based on existing work. These include: (1) evaluate the measure based on different age groupings within the population described in the measure (e.g., evaluate the whole [age 14-25] and each sub-stratum [14-19] and [20-25]); (2) evaluate the eMeasure based on either a specific condition, a specific discharge location, or both; (3) evaluate the eMeasure based on different locations within a facility (e.g., evaluate the overall rate for all intensive care units and also some strata include additional findings [specific birth weights for neonatal intensive care units]).";
  dcterms:description "Describes the strata for which the measure is to be evaluated. There are three examples of reasons for stratification based on existing work. These include: (1) evaluate the measure based on different age groupings within the population described in the measure (e.g., evaluate the whole [age 14-25] and each sub-stratum [14-19] and [20-25]); (2) evaluate the eMeasure based on either a specific condition, a specific discharge location, or both; (3) evaluate the eMeasure based on different locations within a facility (e.g., evaluate the overall rate for all intensive care units and also some strata include additional findings [specific birth weights for neonatal intensive care units]).".

cs:ActCode\#TRANF rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "transmission format";
  dc:title "transmission format";
  rdfs:comment "Can be a URL or hyperlinks that link to the transmission formats that are specified for a particular reporting program.";
  dcterms:description "Can be a URL or hyperlinks that link to the transmission formats that are specified for a particular reporting program.".

cs:ActCode\#USE rdfs:subClassOf cs:ActCode\#%5fObservationQualityMeasureAttribute;
  rdfs:label "notice of use";
  dc:title "notice of use";
  rdfs:comment "Usage notes.";
  dcterms:description "Usage notes.".

cs:ActCode\#%5fObservationSequenceType rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "ObservationSequenceType";
  dc:title "ObservationSequenceType";
  rdfs:comment "ObservationSequenceType";
  dcterms:description "ObservationSequenceType".

cs:ActCode\#TIME%5fABSOLUTE rdfs:subClassOf cs:ActCode\#%5fObservationSequenceType;
  rdfs:label "absolute time sequence";
  dc:title "absolute time sequence";
  rdfs:comment "A sequence of values in the \"absolute\" time domain.  This is the same time domain that all HL7 timestamps use.  It is time as measured by the Gregorian calendar";
  dcterms:description "A sequence of values in the \"absolute\" time domain.  This is the same time domain that all HL7 timestamps use.  It is time as measured by the Gregorian calendar".

cs:ActCode\#TIME%5fRELATIVE rdfs:subClassOf cs:ActCode\#%5fObservationSequenceType;
  rdfs:label "relative time sequence";
  dc:title "relative time sequence";
  rdfs:comment "A sequence of values in a \"relative\" time domain.  The time is measured relative to the earliest effective time in the Observation Series containing this sequence.";
  dcterms:description "A sequence of values in a \"relative\" time domain.  The time is measured relative to the earliest effective time in the Observation Series containing this sequence.".

cs:ActCode\#%5fObservationSeriesType rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "ObservationSeriesType";
  dc:title "ObservationSeriesType";
  rdfs:comment "ObservationSeriesType";
  dcterms:description "ObservationSeriesType".

cs:ActCode\#%5fECGObservationSeriesType rdfs:subClassOf cs:ActCode\#%5fObservationSeriesType;
  rdfs:label "ECGObservationSeriesType";
  dc:title "ECGObservationSeriesType";
  rdfs:comment "ECGObservationSeriesType";
  dcterms:description "ECGObservationSeriesType".

cs:ActCode\#REPRESENTATIVE%5fBEAT rdfs:subClassOf cs:ActCode\#%5fECGObservationSeriesType;
  rdfs:label "ECG representative beat waveforms";
  dc:title "ECG representative beat waveforms";
  rdfs:comment "This Observation Series type contains waveforms of a \"representative beat\" (a.k.a. \"median beat\" or \"average beat\").  The waveform samples are measured in relative time, relative to the beginning of the beat as defined by the Observation Series effective time.  The waveforms are not directly acquired from the subject, but rather algorithmically derived from the \"rhythm\" waveforms.";
  dcterms:description "This Observation Series type contains waveforms of a \"representative beat\" (a.k.a. \"median beat\" or \"average beat\").  The waveform samples are measured in relative time, relative to the beginning of the beat as defined by the Observation Series effective time.  The waveforms are not directly acquired from the subject, but rather algorithmically derived from the \"rhythm\" waveforms.".

cs:ActCode\#RHYTHM rdfs:subClassOf cs:ActCode\#%5fECGObservationSeriesType;
  rdfs:label "ECG rhythm waveforms";
  dc:title "ECG rhythm waveforms";
  rdfs:comment "This Observation type contains ECG \"rhythm\" waveforms.  The waveform samples are measured in absolute time (a.k.a. \"subject time\" or \"effective time\").  These waveforms are usually \"raw\" with some minimal amount of noise reduction and baseline filtering applied.";
  dcterms:description "This Observation type contains ECG \"rhythm\" waveforms.  The waveform samples are measured in absolute time (a.k.a. \"subject time\" or \"effective time\").  These waveforms are usually \"raw\" with some minimal amount of noise reduction and baseline filtering applied.".

cs:ActCode\#%5fPatientImmunizationRelatedObservationType rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "PatientImmunizationRelatedObservationType";
  dc:title "PatientImmunizationRelatedObservationType";
  rdfs:comment "Description: Reporting codes that are related to an immunization event.";
  dcterms:description "Description: Reporting codes that are related to an immunization event.".

cs:ActCode\#CLSSRM rdfs:subClassOf cs:ActCode\#%5fPatientImmunizationRelatedObservationType;
  rdfs:label "classroom";
  dc:title "classroom";
  rdfs:comment "Description: The class room associated with the patient during the immunization event.";
  dcterms:description "Description: The class room associated with the patient during the immunization event.".

cs:ActCode\#GRADE rdfs:subClassOf cs:ActCode\#%5fPatientImmunizationRelatedObservationType;
  rdfs:label "grade";
  dc:title "grade";
  rdfs:comment "Description: The school grade or level the patient was in when immunized.";
  dcterms:description "Description: The school grade or level the patient was in when immunized.".

cs:ActCode\#SCHL rdfs:subClassOf cs:ActCode\#%5fPatientImmunizationRelatedObservationType;
  rdfs:label "school";
  dc:title "school";
  rdfs:comment "Description: The school the patient attended when immunized.";
  dcterms:description "Description: The school the patient attended when immunized.".

cs:ActCode\#SCHLDIV rdfs:subClassOf cs:ActCode\#%5fPatientImmunizationRelatedObservationType;
  rdfs:label "school division";
  dc:title "school division";
  rdfs:comment "Description: The school division or district associated with the patient during the immunization event.";
  dcterms:description "Description: The school division or district associated with the patient during the immunization event.".

cs:ActCode\#TEACHER rdfs:subClassOf cs:ActCode\#%5fPatientImmunizationRelatedObservationType;
  rdfs:label "teacher";
  dc:title "teacher";
  rdfs:comment "Description: The patient's teacher when immunized.";
  dcterms:description "Description: The patient's teacher when immunized.".

cs:ActCode\#%5fPopulationInclusionObservationType rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "PopulationInclusionObservationType";
  dc:title "PopulationInclusionObservationType";
  rdfs:comment "Observation types for specifying criteria used to assert that a subject is included in a particular population.";
  dcterms:description "Observation types for specifying criteria used to assert that a subject is included in a particular population.".

cs:ActCode\#DENEX rdfs:subClassOf cs:ActCode\#%5fPopulationInclusionObservationType;
  rdfs:label "denominator exclusions";
  dc:title "denominator exclusions";
  rdfs:comment "Criteria which specify subjects who should be removed from the eMeasure population and denominator before determining if numerator criteria are met. Denominator exclusions are used in proportion and ratio measures to help narrow the denominator.";
  dcterms:description "Criteria which specify subjects who should be removed from the eMeasure population and denominator before determining if numerator criteria are met. Denominator exclusions are used in proportion and ratio measures to help narrow the denominator.".

cs:ActCode\#DENEXCEP rdfs:subClassOf cs:ActCode\#%5fPopulationInclusionObservationType;
  rdfs:label "denominator exceptions";
  dc:title "denominator exceptions";
  rdfs:comment "Criteria which specify the removal of a subject, procedure or unit of measurement from the denominator, only if the numerator criteria are not met. Denominator exceptions allow for adjustment of the calculated score for those providers with higher risk populations. Denominator exceptions are used only in proportion eMeasures. They are not appropriate for ratio or continuous variable eMeasures. Denominator exceptions allow for the exercise of clinical judgment and should be specifically defined where capturing the information in a structured manner fits the clinical workflow. Generic denominator exception reasons used in proportion eMeasures fall into three general categories:\r\n\n                        \n                           Medical reasons\n                           Patient (or subject) reasons\n                           System reasons";
  dcterms:description "Criteria which specify the removal of a subject, procedure or unit of measurement from the denominator, only if the numerator criteria are not met. Denominator exceptions allow for adjustment of the calculated score for those providers with higher risk populations. Denominator exceptions are used only in proportion eMeasures. They are not appropriate for ratio or continuous variable eMeasures. Denominator exceptions allow for the exercise of clinical judgment and should be specifically defined where capturing the information in a structured manner fits the clinical workflow. Generic denominator exception reasons used in proportion eMeasures fall into three general categories:\r\n\n                        \n                           Medical reasons\n                           Patient (or subject) reasons\n                           System reasons".

cs:ActCode\#DENOM rdfs:subClassOf cs:ActCode\#%5fPopulationInclusionObservationType;
  rdfs:label "denominator";
  dc:title "denominator";
  rdfs:comment "Criteria for specifying the entities to be evaluated by a specific quality measure, based on a shared common set of characteristics (within a specific measurement set to which a given measure belongs).  The denominator can be the same as the initial population, or it may be a subset of the initial population to further constrain it for the purpose of the eMeasure. Different measures within an eMeasure set may have different denominators. Continuous Variable eMeasures do not have a denominator, but instead define a measure population.";
  dcterms:description "Criteria for specifying the entities to be evaluated by a specific quality measure, based on a shared common set of characteristics (within a specific measurement set to which a given measure belongs).  The denominator can be the same as the initial population, or it may be a subset of the initial population to further constrain it for the purpose of the eMeasure. Different measures within an eMeasure set may have different denominators. Continuous Variable eMeasures do not have a denominator, but instead define a measure population.".

cs:ActCode\#IPOP rdfs:subClassOf cs:ActCode\#%5fPopulationInclusionObservationType;
  rdfs:label "initial population";
  dc:title "initial population";
  rdfs:comment "Criteria for specifying the entities to be evaluated by a specific quality measure, based on a shared common set of characteristics (within a specific measurement set to which a given measure belongs).";
  dcterms:description "Criteria for specifying the entities to be evaluated by a specific quality measure, based on a shared common set of characteristics (within a specific measurement set to which a given measure belongs).".

cs:ActCode\#IPPOP rdfs:subClassOf cs:ActCode\#IPOP;
  rdfs:label "initial patient population";
  dc:title "initial patient population";
  rdfs:comment "Criteria for specifying the patients to be evaluated by a specific quality measure, based on a shared common set of characteristics (within a specific measurement set to which a given measure belongs). Details often include information based upon specific age groups, diagnoses, diagnostic and procedure codes, and enrollment periods.";
  dcterms:description "Criteria for specifying the patients to be evaluated by a specific quality measure, based on a shared common set of characteristics (within a specific measurement set to which a given measure belongs). Details often include information based upon specific age groups, diagnoses, diagnostic and procedure codes, and enrollment periods.".

cs:ActCode\#MSRPOPL rdfs:subClassOf cs:ActCode\#%5fPopulationInclusionObservationType;
  rdfs:label "measure population";
  dc:title "measure population";
  rdfs:comment "Criteria for specifying\nthe measure population as a narrative description (e.g., all patients seen in the Emergency Department during the measurement period).  This is used only in continuous variable eMeasures.";
  dcterms:description "Criteria for specifying\nthe measure population as a narrative description (e.g., all patients seen in the Emergency Department during the measurement period).  This is used only in continuous variable eMeasures.".

cs:ActCode\#MSRPOPLEX rdfs:subClassOf cs:ActCode\#%5fPopulationInclusionObservationType;
  rdfs:label "measure population exclusions";
  dc:title "measure population exclusions";
  rdfs:comment "Criteria for specifying subjects who should be removed from the eMeasure's Initial Population and Measure Population. Measure Population Exclusions are used in Continuous Variable measures to help narrow the Measure Population before determining the value(s) of the continuous variable(s).";
  dcterms:description "Criteria for specifying subjects who should be removed from the eMeasure's Initial Population and Measure Population. Measure Population Exclusions are used in Continuous Variable measures to help narrow the Measure Population before determining the value(s) of the continuous variable(s).".

cs:ActCode\#NUMER rdfs:subClassOf cs:ActCode\#%5fPopulationInclusionObservationType;
  rdfs:label "numerator";
  dc:title "numerator";
  rdfs:comment "Criteria for specifying the processes or outcomes expected for each patient, procedure, or other unit of measurement defined in the denominator for proportion measures, or related to (but not directly derived from) the denominator for ratio measures (e.g., a numerator listing the number of central line blood stream infections and a denominator indicating the days per thousand of central line usage in a specific time period).";
  dcterms:description "Criteria for specifying the processes or outcomes expected for each patient, procedure, or other unit of measurement defined in the denominator for proportion measures, or related to (but not directly derived from) the denominator for ratio measures (e.g., a numerator listing the number of central line blood stream infections and a denominator indicating the days per thousand of central line usage in a specific time period).".

cs:ActCode\#NUMEX rdfs:subClassOf cs:ActCode\#%5fPopulationInclusionObservationType;
  rdfs:label "numerator exclusions";
  dc:title "numerator exclusions";
  rdfs:comment "Criteria for specifying instances that should not be included in the numerator data. (e.g., if the number of central line blood stream infections per 1000 catheter days were to exclude infections with a specific bacterium, that bacterium would be listed as a numerator exclusion).  Numerator Exclusions are used only in ratio eMeasures.";
  dcterms:description "Criteria for specifying instances that should not be included in the numerator data. (e.g., if the number of central line blood stream infections per 1000 catheter days were to exclude infections with a specific bacterium, that bacterium would be listed as a numerator exclusion).  Numerator Exclusions are used only in ratio eMeasures.".

cs:ActCode\#%5fPreferenceObservationType rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "_PreferenceObservationType";
  dc:title "_PreferenceObservationType";
  rdfs:comment "Types of observations that can be made about Preferences.";
  dcterms:description "Types of observations that can be made about Preferences.".

cs:ActCode\#PREFSTRENGTH rdfs:subClassOf cs:ActCode\#%5fPreferenceObservationType;
  rdfs:label "preference strength";
  dc:title "preference strength";
  rdfs:comment "An observation about how important a preference is to the target of the preference.";
  dcterms:description "An observation about how important a preference is to the target of the preference.".

cs:ActCode\#ADVERSE%5fREACTION rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "Adverse Reaction";
  dc:title "Adverse Reaction";
  rdfs:comment "Indicates that the observation is of an unexpected negative occurrence in the subject suspected to result from the subject's exposure to one or more agents.  Observation values would be the symptom resulting from the reaction.";
  dcterms:description "Indicates that the observation is of an unexpected negative occurrence in the subject suspected to result from the subject's exposure to one or more agents.  Observation values would be the symptom resulting from the reaction.".

cs:ActCode\#ASSERTION rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "Assertion";
  dc:title "Assertion";
  rdfs:comment "Description:Refines classCode OBS to indicate an observation in which observation.value contains a finding or other nominalized statement, where the encoded information in Observation.value is not altered by Observation.code.  For instance, observation.code=\"ASSERTION\" and observation.value=\"fracture of femur present\" is an assertion of a clinical finding of femur fracture.";
  dcterms:description "Description:Refines classCode OBS to indicate an observation in which observation.value contains a finding or other nominalized statement, where the encoded information in Observation.value is not altered by Observation.code.  For instance, observation.code=\"ASSERTION\" and observation.value=\"fracture of femur present\" is an assertion of a clinical finding of femur fracture.".

cs:ActCode\#CASESER rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "case seriousness criteria";
  dc:title "case seriousness criteria";
  rdfs:comment "Definition:An observation that provides a characterization of the level of harm to an investigation subject as a result of a reaction or event.";
  dcterms:description "Definition:An observation that provides a characterization of the level of harm to an investigation subject as a result of a reaction or event.".

cs:ActCode\#CDIO rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "case disease imported observation";
  dc:title "case disease imported observation";
  rdfs:comment "An observation that states whether the disease was likely acquired outside the jurisdiction of observation, and if so, the nature of the inter-jurisdictional relationship.\r\n\n                        \n                           OpenIssue: This code could be moved to LOINC if it can be done before there are significant implemenations using it.";
  dcterms:description "An observation that states whether the disease was likely acquired outside the jurisdiction of observation, and if so, the nature of the inter-jurisdictional relationship.\r\n\n                        \n                           OpenIssue: This code could be moved to LOINC if it can be done before there are significant implemenations using it.".

cs:ActCode\#CRIT rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "criticality";
  dc:title "criticality";
  rdfs:comment "A clinical judgment as to the worst case result of a future exposure (including substance administration). When the worst case result is assessed to have a life-threatening or organ system threatening potential, it is considered to be of high criticality.";
  dcterms:description "A clinical judgment as to the worst case result of a future exposure (including substance administration). When the worst case result is assessed to have a life-threatening or organ system threatening potential, it is considered to be of high criticality.".

cs:ActCode\#CTMO rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "case transmission mode observation";
  dc:title "case transmission mode observation";
  rdfs:comment "An observation that states the mechanism by which disease was acquired by the living subject involved in the public health case.\r\n\n                        \n                           OpenIssue: This code could be moved to LOINC if it can be done before there are significant implemenations using it.";
  dcterms:description "An observation that states the mechanism by which disease was acquired by the living subject involved in the public health case.\r\n\n                        \n                           OpenIssue: This code could be moved to LOINC if it can be done before there are significant implemenations using it.".

cs:ActCode\#DX rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "ObservationDiagnosisTypes";
  dc:title "ObservationDiagnosisTypes";
  rdfs:comment "Includes all codes defining types of indications such as diagnosis, symptom and other indications such as contrast agents for lab tests.";
  dcterms:description "Includes all codes defining types of indications such as diagnosis, symptom and other indications such as contrast agents for lab tests.".

cs:ActCode\#ADMDX rdfs:subClassOf cs:ActCode\#DX;
  rdfs:label "admitting diagnosis";
  dc:title "admitting diagnosis";
  rdfs:comment "Admitting diagnosis are the diagnoses documented  for administrative purposes as the basis for a hospital admission.";
  dcterms:description "Admitting diagnosis are the diagnoses documented  for administrative purposes as the basis for a hospital admission.".

cs:ActCode\#DISDX rdfs:subClassOf cs:ActCode\#DX;
  rdfs:label "discharge diagnosis";
  dc:title "discharge diagnosis";
  rdfs:comment "Discharge diagnosis are the diagnoses documented for administrative purposes as the time of hospital discharge.";
  dcterms:description "Discharge diagnosis are the diagnoses documented for administrative purposes as the time of hospital discharge.".

cs:ActCode\#INTDX rdfs:subClassOf cs:ActCode\#DX;
  rdfs:label "intermediate diagnosis";
  dc:title "intermediate diagnosis";
  rdfs:comment "Intermediate diagnoses are those diagnoses documented for administrative purposes during the course of a hospital stay.";
  dcterms:description "Intermediate diagnoses are those diagnoses documented for administrative purposes during the course of a hospital stay.".

cs:ActCode\#NOI rdfs:subClassOf cs:ActCode\#DX;
  rdfs:label "nature of injury";
  dc:title "nature of injury";
  rdfs:comment "The type of injury that the injury coding specifies.";
  dcterms:description "The type of injury that the injury coding specifies.".

cs:ActCode\#GISTIER rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "GIS tier";
  dc:title "GIS tier";
  rdfs:comment "Description: Accuracy determined as per the GIS tier code system.";
  dcterms:description "Description: Accuracy determined as per the GIS tier code system.".

cs:ActCode\#HHOBS rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "household situation observation";
  dc:title "household situation observation";
  rdfs:comment "Indicates that the observation is of a person’s living situation in a household including the household composition and circumstances.";
  dcterms:description "Indicates that the observation is of a person’s living situation in a household including the household composition and circumstances.".

cs:ActCode\#ISSUE rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "detected issue";
  dc:title "detected issue";
  rdfs:comment "There is a clinical issue for the therapy that makes continuation of the therapy inappropriate.\r\n\n                        \n                           Open Issue: The definition of this code does not correctly represent the concept space of its specializations (children)";
  dcterms:description "There is a clinical issue for the therapy that makes continuation of the therapy inappropriate.\r\n\n                        \n                           Open Issue: The definition of this code does not correctly represent the concept space of its specializations (children)".

cs:ActCode\#%5fActAdministrativeDetectedIssueCode rdfs:subClassOf cs:ActCode\#ISSUE;
  rdfs:label "ActAdministrativeDetectedIssueCode";
  dc:title "ActAdministrativeDetectedIssueCode";
  rdfs:comment "Identifies types of detectyed issues for Act class \"ALRT\" for the administrative and patient administrative acts domains.";
  dcterms:description "Identifies types of detectyed issues for Act class \"ALRT\" for the administrative and patient administrative acts domains.".

cs:ActCode\#%5fActAdministrativeAuthorizationDetectedIssueCode rdfs:subClassOf cs:ActCode\#%5fActAdministrativeDetectedIssueCode;
  rdfs:label "ActAdministrativeAuthorizationDetectedIssueCode";
  dc:title "ActAdministrativeAuthorizationDetectedIssueCode";
  rdfs:comment "ActAdministrativeAuthorizationDetectedIssueCode";
  dcterms:description "ActAdministrativeAuthorizationDetectedIssueCode".

cs:ActCode\#NAT rdfs:subClassOf cs:ActCode\#%5fActAdministrativeAuthorizationDetectedIssueCode;
  rdfs:label "Insufficient authorization";
  dc:title "Insufficient authorization";
  rdfs:comment "The requesting party has insufficient authorization to invoke the interaction.";
  dcterms:description "The requesting party has insufficient authorization to invoke the interaction.".

cs:ActCode\#SUPPRESSED rdfs:subClassOf cs:ActCode\#%5fActAdministrativeAuthorizationDetectedIssueCode;
  rdfs:label "record suppressed";
  dc:title "record suppressed";
  rdfs:comment "Description: One or more records in the query response have been suppressed due to consent or privacy restrictions.";
  dcterms:description "Description: One or more records in the query response have been suppressed due to consent or privacy restrictions.".

cs:ActCode\#VALIDAT rdfs:subClassOf cs:ActCode\#%5fActAdministrativeAuthorizationDetectedIssueCode;
  rdfs:label "validation issue";
  dc:title "validation issue";
  rdfs:comment "Description:The specified element did not pass business-rule validation.";
  dcterms:description "Description:The specified element did not pass business-rule validation.".

cs:ActCode\#KEY204 rdfs:subClassOf cs:ActCode\#VALIDAT;
  rdfs:label "Unknown key identifier";
  dc:title "Unknown key identifier";
  rdfs:comment "The ID of the patient, order, etc., was not found. Used for transactions other than additions, e.g. transfer of a non-existent patient.";
  dcterms:description "The ID of the patient, order, etc., was not found. Used for transactions other than additions, e.g. transfer of a non-existent patient.".

cs:ActCode\#KEY205 rdfs:subClassOf cs:ActCode\#VALIDAT;
  rdfs:label "Duplicate key identifier";
  dc:title "Duplicate key identifier";
  rdfs:comment "The ID of the patient, order, etc., already exists. Used in response to addition transactions (Admit, New Order, etc.).";
  dcterms:description "The ID of the patient, order, etc., already exists. Used in response to addition transactions (Admit, New Order, etc.).".

cs:ActCode\#COMPLY rdfs:subClassOf cs:ActCode\#VALIDAT;
  rdfs:label "Compliance Alert";
  dc:title "Compliance Alert";
  rdfs:comment "There may be an issue with the patient complying with the intentions of the proposed therapy";
  dcterms:description "There may be an issue with the patient complying with the intentions of the proposed therapy".

cs:ActCode\#DUPTHPY rdfs:subClassOf cs:ActCode\#COMPLY;
  rdfs:label "Duplicate Therapy Alert";
  dc:title "Duplicate Therapy Alert";
  rdfs:comment "The proposed therapy appears to duplicate an existing therapy";
  dcterms:description "The proposed therapy appears to duplicate an existing therapy".

cs:ActCode\#DUPTHPCLS rdfs:subClassOf cs:ActCode\#DUPTHPY;
  rdfs:label "duplicate therapeutic alass alert";
  dc:title "duplicate therapeutic alass alert";
  rdfs:comment "Description:The proposed therapy appears to have the same intended therapeutic benefit as an existing therapy, though the specific mechanisms of action vary.";
  dcterms:description "Description:The proposed therapy appears to have the same intended therapeutic benefit as an existing therapy, though the specific mechanisms of action vary.".

cs:ActCode\#DUPTHPGEN rdfs:subClassOf cs:ActCode\#DUPTHPY;
  rdfs:label "duplicate generic alert";
  dc:title "duplicate generic alert";
  rdfs:comment "Description:The proposed therapy appears to have the same intended therapeutic benefit as an existing therapy and uses the same mechanisms of action as the existing therapy.";
  dcterms:description "Description:The proposed therapy appears to have the same intended therapeutic benefit as an existing therapy and uses the same mechanisms of action as the existing therapy.".

cs:ActCode\#ABUSE rdfs:subClassOf cs:ActCode\#COMPLY;
  rdfs:label "commonly abused/misused alert";
  dc:title "commonly abused/misused alert";
  rdfs:comment "Description:The proposed therapy is frequently misused or abused and therefore should be used with caution and/or monitoring.";
  dcterms:description "Description:The proposed therapy is frequently misused or abused and therefore should be used with caution and/or monitoring.".

cs:ActCode\#FRAUD rdfs:subClassOf cs:ActCode\#COMPLY;
  rdfs:label "potential fraud";
  dc:title "potential fraud";
  rdfs:comment "Description:The request is suspected to have a fraudulent basis.";
  dcterms:description "Description:The request is suspected to have a fraudulent basis.".

cs:ActCode\#PLYDOC rdfs:subClassOf cs:ActCode\#COMPLY;
  rdfs:label "Poly-orderer Alert";
  dc:title "Poly-orderer Alert";
  rdfs:comment "A similar or identical therapy was recently ordered by a different practitioner.";
  dcterms:description "A similar or identical therapy was recently ordered by a different practitioner.".

cs:ActCode\#PLYPHRM rdfs:subClassOf cs:ActCode\#COMPLY;
  rdfs:label "Poly-supplier Alert";
  dc:title "Poly-supplier Alert";
  rdfs:comment "This patient was recently supplied a similar or identical therapy from a different pharmacy or supplier.";
  dcterms:description "This patient was recently supplied a similar or identical therapy from a different pharmacy or supplier.".

cs:ActCode\#DOSE rdfs:subClassOf cs:ActCode\#VALIDAT;
  rdfs:label "Dosage problem";
  dc:title "Dosage problem";
  rdfs:comment "Proposed dosage instructions for therapy differ from standard practice.";
  dcterms:description "Proposed dosage instructions for therapy differ from standard practice.".

cs:ActCode\#DOSECOND rdfs:subClassOf cs:ActCode\#DOSE;
  rdfs:label "dosage-condition alert";
  dc:title "dosage-condition alert";
  rdfs:comment "Description:Proposed dosage is inappropriate due to patient's medical condition.";
  dcterms:description "Description:Proposed dosage is inappropriate due to patient's medical condition.".

cs:ActCode\#DOSEDUR rdfs:subClassOf cs:ActCode\#DOSE;
  rdfs:label "Dose-Duration Alert";
  dc:title "Dose-Duration Alert";
  rdfs:comment "Proposed length of therapy differs from standard practice.";
  dcterms:description "Proposed length of therapy differs from standard practice.".

cs:ActCode\#DOSEDURH rdfs:subClassOf cs:ActCode\#DOSEDUR;
  rdfs:label "Dose-Duration High Alert";
  dc:title "Dose-Duration High Alert";
  rdfs:comment "Proposed length of therapy is longer than standard practice";
  dcterms:description "Proposed length of therapy is longer than standard practice".

cs:ActCode\#DOSEDURHIND rdfs:subClassOf cs:ActCode\#DOSEDURH;
  rdfs:label "Dose-Duration High for Indication Alert";
  dc:title "Dose-Duration High for Indication Alert";
  rdfs:comment "Proposed length of therapy is longer than standard practice for the identified indication or diagnosis";
  dcterms:description "Proposed length of therapy is longer than standard practice for the identified indication or diagnosis".

cs:ActCode\#DOSEDURL rdfs:subClassOf cs:ActCode\#DOSEDUR;
  rdfs:label "Dose-Duration Low Alert";
  dc:title "Dose-Duration Low Alert";
  rdfs:comment "Proposed length of therapy is shorter than that necessary for therapeutic effect";
  dcterms:description "Proposed length of therapy is shorter than that necessary for therapeutic effect".

cs:ActCode\#DOSEDURLIND rdfs:subClassOf cs:ActCode\#DOSEDURL;
  rdfs:label "Dose-Duration Low for Indication Alert";
  dc:title "Dose-Duration Low for Indication Alert";
  rdfs:comment "Proposed length of therapy is shorter than standard practice for the identified indication or diagnosis";
  dcterms:description "Proposed length of therapy is shorter than standard practice for the identified indication or diagnosis".

cs:ActCode\#DOSEH rdfs:subClassOf cs:ActCode\#DOSE;
  rdfs:label "High Dose Alert";
  dc:title "High Dose Alert";
  rdfs:comment "Proposed dosage exceeds standard practice";
  dcterms:description "Proposed dosage exceeds standard practice".

cs:ActCode\#DOSEHINDA rdfs:subClassOf cs:ActCode\#DOSEH;
  rdfs:label "High Dose for Age Alert";
  dc:title "High Dose for Age Alert";
  rdfs:comment "Proposed dosage exceeds standard practice for the patient's age";
  dcterms:description "Proposed dosage exceeds standard practice for the patient's age".

cs:ActCode\#DOSEHIND rdfs:subClassOf cs:ActCode\#DOSEH;
  rdfs:label "High Dose for Indication Alert";
  dc:title "High Dose for Indication Alert";
  rdfs:comment "High Dose for Indication Alert";
  dcterms:description "High Dose for Indication Alert".

cs:ActCode\#DOSEHINDSA rdfs:subClassOf cs:ActCode\#DOSEH;
  rdfs:label "High Dose for Height/Surface Area Alert";
  dc:title "High Dose for Height/Surface Area Alert";
  rdfs:comment "Proposed dosage exceeds standard practice for the patient's height or body surface area";
  dcterms:description "Proposed dosage exceeds standard practice for the patient's height or body surface area".

cs:ActCode\#DOSEHINDW rdfs:subClassOf cs:ActCode\#DOSEH;
  rdfs:label "High Dose for Weight Alert";
  dc:title "High Dose for Weight Alert";
  rdfs:comment "Proposed dosage exceeds standard practice for the patient's weight";
  dcterms:description "Proposed dosage exceeds standard practice for the patient's weight".

cs:ActCode\#DOSEIVL rdfs:subClassOf cs:ActCode\#DOSE;
  rdfs:label "Dose-Interval Alert";
  dc:title "Dose-Interval Alert";
  rdfs:comment "Proposed dosage interval/timing differs from standard practice";
  dcterms:description "Proposed dosage interval/timing differs from standard practice".

cs:ActCode\#DOSEIVLIND rdfs:subClassOf cs:ActCode\#DOSEIVL;
  rdfs:label "Dose-Interval for Indication Alert";
  dc:title "Dose-Interval for Indication Alert";
  rdfs:comment "Proposed dosage interval/timing differs from standard practice for the identified indication or diagnosis";
  dcterms:description "Proposed dosage interval/timing differs from standard practice for the identified indication or diagnosis".

cs:ActCode\#DOSEL rdfs:subClassOf cs:ActCode\#DOSE;
  rdfs:label "Low Dose Alert";
  dc:title "Low Dose Alert";
  rdfs:comment "Proposed dosage is below suggested therapeutic levels";
  dcterms:description "Proposed dosage is below suggested therapeutic levels".

cs:ActCode\#DOSELINDA rdfs:subClassOf cs:ActCode\#DOSEL;
  rdfs:label "Low Dose for Age Alert";
  dc:title "Low Dose for Age Alert";
  rdfs:comment "Proposed dosage is below suggested therapeutic levels for the patient's age";
  dcterms:description "Proposed dosage is below suggested therapeutic levels for the patient's age".

cs:ActCode\#DOSELIND rdfs:subClassOf cs:ActCode\#DOSEL;
  rdfs:label "Low Dose for Indication Alert";
  dc:title "Low Dose for Indication Alert";
  rdfs:comment "Low Dose for Indication Alert";
  dcterms:description "Low Dose for Indication Alert".

cs:ActCode\#DOSELINDSA rdfs:subClassOf cs:ActCode\#DOSEL;
  rdfs:label "Low Dose for Height/Surface Area Alert";
  dc:title "Low Dose for Height/Surface Area Alert";
  rdfs:comment "Proposed dosage is below suggested therapeutic levels for the patient's height or body surface area";
  dcterms:description "Proposed dosage is below suggested therapeutic levels for the patient's height or body surface area".

cs:ActCode\#DOSELINDW rdfs:subClassOf cs:ActCode\#DOSEL;
  rdfs:label "Low Dose for Weight Alert";
  dc:title "Low Dose for Weight Alert";
  rdfs:comment "Proposed dosage is below suggested therapeutic levels for the patient's weight";
  dcterms:description "Proposed dosage is below suggested therapeutic levels for the patient's weight".

cs:ActCode\#MDOSE rdfs:subClassOf cs:ActCode\#DOSE;
  rdfs:label "maximum dosage reached";
  dc:title "maximum dosage reached";
  rdfs:comment "Description:The maximum quantity of this drug allowed to be administered within a particular time-range (month, year, lifetime) has been reached or exceeded.";
  dcterms:description "Description:The maximum quantity of this drug allowed to be administered within a particular time-range (month, year, lifetime) has been reached or exceeded.".

cs:ActCode\#OBSA rdfs:subClassOf cs:ActCode\#VALIDAT;
  rdfs:label "Observation Alert";
  dc:title "Observation Alert";
  rdfs:comment "Proposed therapy may be inappropriate or contraindicated due to conditions or characteristics of the patient";
  dcterms:description "Proposed therapy may be inappropriate or contraindicated due to conditions or characteristics of the patient".

cs:ActCode\#AGE rdfs:subClassOf cs:ActCode\#OBSA;
  rdfs:label "Age Alert";
  dc:title "Age Alert";
  rdfs:comment "Proposed therapy may be inappropriate or contraindicated due to patient age";
  dcterms:description "Proposed therapy may be inappropriate or contraindicated due to patient age".

cs:ActCode\#ADALRT rdfs:subClassOf cs:ActCode\#AGE;
  rdfs:label "adult alert";
  dc:title "adult alert";
  rdfs:comment "Proposed therapy is outside of the standard practice for an adult patient.";
  dcterms:description "Proposed therapy is outside of the standard practice for an adult patient.".

cs:ActCode\#GEALRT rdfs:subClassOf cs:ActCode\#AGE;
  rdfs:label "geriatric alert";
  dc:title "geriatric alert";
  rdfs:comment "Proposed therapy is outside of standard practice for a geriatric patient.";
  dcterms:description "Proposed therapy is outside of standard practice for a geriatric patient.".

cs:ActCode\#PEALRT rdfs:subClassOf cs:ActCode\#AGE;
  rdfs:label "pediatric alert";
  dc:title "pediatric alert";
  rdfs:comment "Proposed therapy is outside of the standard practice for a pediatric patient.";
  dcterms:description "Proposed therapy is outside of the standard practice for a pediatric patient.".

cs:ActCode\#COND rdfs:subClassOf cs:ActCode\#OBSA;
  rdfs:label "Condition Alert";
  dc:title "Condition Alert";
  rdfs:comment "Proposed therapy may be inappropriate or contraindicated due to an existing/recent patient condition or diagnosis";
  dcterms:description "Proposed therapy may be inappropriate or contraindicated due to an existing/recent patient condition or diagnosis".

cs:ActCode\#HGHT rdfs:subClassOf cs:ActCode\#COND.

cs:ActCode\#LACT rdfs:subClassOf cs:ActCode\#COND;
  rdfs:label "Lactation Alert";
  dc:title "Lactation Alert";
  rdfs:comment "Proposed therapy may be inappropriate or contraindicated when breast-feeding";
  dcterms:description "Proposed therapy may be inappropriate or contraindicated when breast-feeding".

cs:ActCode\#PREG rdfs:subClassOf cs:ActCode\#COND;
  rdfs:label "Pregnancy Alert";
  dc:title "Pregnancy Alert";
  rdfs:comment "Proposed therapy may be inappropriate or contraindicated during pregnancy";
  dcterms:description "Proposed therapy may be inappropriate or contraindicated during pregnancy".

cs:ActCode\#WGHT rdfs:subClassOf cs:ActCode\#COND.

cs:ActCode\#CREACT rdfs:subClassOf cs:ActCode\#OBSA;
  rdfs:label "common reaction alert";
  dc:title "common reaction alert";
  rdfs:comment "Description:Proposed therapy may be inappropriate or contraindicated because of a common but non-patient specific reaction to the product.\r\n\n                        \n                           Example:There is no record of a specific sensitivity for the patient, but the presence of the sensitivity is common and therefore caution is warranted.";
  dcterms:description "Description:Proposed therapy may be inappropriate or contraindicated because of a common but non-patient specific reaction to the product.\r\n\n                        \n                           Example:There is no record of a specific sensitivity for the patient, but the presence of the sensitivity is common and therefore caution is warranted.".

cs:ActCode\#GEN rdfs:subClassOf cs:ActCode\#OBSA;
  rdfs:label "Genetic Alert";
  dc:title "Genetic Alert";
  rdfs:comment "Proposed therapy may be inappropriate or contraindicated due to patient genetic indicators.";
  dcterms:description "Proposed therapy may be inappropriate or contraindicated due to patient genetic indicators.".

cs:ActCode\#GEND rdfs:subClassOf cs:ActCode\#OBSA;
  rdfs:label "Gender Alert";
  dc:title "Gender Alert";
  rdfs:comment "Proposed therapy may be inappropriate or contraindicated due to patient gender.";
  dcterms:description "Proposed therapy may be inappropriate or contraindicated due to patient gender.".

cs:ActCode\#LAB rdfs:subClassOf cs:ActCode\#OBSA;
  rdfs:label "Lab Alert";
  dc:title "Lab Alert";
  rdfs:comment "Proposed therapy may be inappropriate or contraindicated due to recent lab test results";
  dcterms:description "Proposed therapy may be inappropriate or contraindicated due to recent lab test results".

cs:ActCode\#REACT rdfs:subClassOf cs:ActCode\#OBSA;
  rdfs:label "Reaction Alert";
  dc:title "Reaction Alert";
  rdfs:comment "Proposed therapy may be inappropriate or contraindicated based on the potential for a patient reaction to the proposed product";
  dcterms:description "Proposed therapy may be inappropriate or contraindicated based on the potential for a patient reaction to the proposed product".

cs:ActCode\#ALGY rdfs:subClassOf cs:ActCode\#REACT;
  rdfs:label "Allergy Alert";
  dc:title "Allergy Alert";
  rdfs:comment "Proposed therapy may be inappropriate or contraindicated because of a recorded patient allergy to the proposed product.  (Allergies are immune based reactions.)";
  dcterms:description "Proposed therapy may be inappropriate or contraindicated because of a recorded patient allergy to the proposed product.  (Allergies are immune based reactions.)".

cs:ActCode\#INT rdfs:subClassOf cs:ActCode\#REACT;
  rdfs:label "Intolerance Alert";
  dc:title "Intolerance Alert";
  rdfs:comment "Proposed therapy may be inappropriate or contraindicated because of a recorded patient intolerance to the proposed product.  (Intolerances are non-immune based sensitivities.)";
  dcterms:description "Proposed therapy may be inappropriate or contraindicated because of a recorded patient intolerance to the proposed product.  (Intolerances are non-immune based sensitivities.)".

cs:ActCode\#RREACT rdfs:subClassOf cs:ActCode\#OBSA;
  rdfs:label "Related Reaction Alert";
  dc:title "Related Reaction Alert";
  rdfs:comment "Proposed therapy may be inappropriate or contraindicated because of a potential patient reaction to a cross-sensitivity related product.";
  dcterms:description "Proposed therapy may be inappropriate or contraindicated because of a potential patient reaction to a cross-sensitivity related product.".

cs:ActCode\#RALG rdfs:subClassOf cs:ActCode\#RREACT;
  rdfs:label "Related Allergy Alert";
  dc:title "Related Allergy Alert";
  rdfs:comment "Proposed therapy may be inappropriate or contraindicated because of a recorded patient allergy to a cross-sensitivity related product.  (Allergies are immune based reactions.)";
  dcterms:description "Proposed therapy may be inappropriate or contraindicated because of a recorded patient allergy to a cross-sensitivity related product.  (Allergies are immune based reactions.)".

cs:ActCode\#RAR rdfs:subClassOf cs:ActCode\#RREACT;
  rdfs:label "Related Prior Reaction Alert";
  dc:title "Related Prior Reaction Alert";
  rdfs:comment "Proposed therapy may be inappropriate or contraindicated because of a recorded prior adverse reaction to a cross-sensitivity related product.";
  dcterms:description "Proposed therapy may be inappropriate or contraindicated because of a recorded prior adverse reaction to a cross-sensitivity related product.".

cs:ActCode\#RINT rdfs:subClassOf cs:ActCode\#RREACT;
  rdfs:label "Related Intolerance Alert";
  dc:title "Related Intolerance Alert";
  rdfs:comment "Proposed therapy may be inappropriate or contraindicated because of a recorded patient intolerance to a cross-sensitivity related product.  (Intolerances are non-immune based sensitivities.)";
  dcterms:description "Proposed therapy may be inappropriate or contraindicated because of a recorded patient intolerance to a cross-sensitivity related product.  (Intolerances are non-immune based sensitivities.)".

cs:ActCode\#BUS rdfs:subClassOf cs:ActCode\#VALIDAT;
  rdfs:label "business constraint violation";
  dc:title "business constraint violation";
  rdfs:comment "Description:A local business rule relating multiple elements has been violated.";
  dcterms:description "Description:A local business rule relating multiple elements has been violated.".

cs:ActCode\#CODE%5fINVAL rdfs:subClassOf cs:ActCode\#VALIDAT;
  rdfs:label "code is not valid";
  dc:title "code is not valid";
  rdfs:comment "Description:The specified code is not valid against the list of codes allowed for the element.";
  dcterms:description "Description:The specified code is not valid against the list of codes allowed for the element.".

cs:ActCode\#CODE%5fDEPREC rdfs:subClassOf cs:ActCode\#CODE%5fINVAL;
  rdfs:label "code has been deprecated";
  dc:title "code has been deprecated";
  rdfs:comment "Description:The specified code has been deprecated and should no longer be used.  Select another code from the code system.";
  dcterms:description "Description:The specified code has been deprecated and should no longer be used.  Select another code from the code system.".

cs:ActCode\#FORMAT rdfs:subClassOf cs:ActCode\#VALIDAT;
  rdfs:label "invalid format";
  dc:title "invalid format";
  rdfs:comment "Description:The element does not follow the formatting or type rules defined for the field.";
  dcterms:description "Description:The element does not follow the formatting or type rules defined for the field.".

cs:ActCode\#ILLEGAL rdfs:subClassOf cs:ActCode\#VALIDAT;
  rdfs:label "illegal";
  dc:title "illegal";
  rdfs:comment "Description:The request is missing elements or contains elements which cause it to not meet the legal standards for actioning.";
  dcterms:description "Description:The request is missing elements or contains elements which cause it to not meet the legal standards for actioning.".

cs:ActCode\#LEN%5fRANGE rdfs:subClassOf cs:ActCode\#VALIDAT;
  rdfs:label "length out of range";
  dc:title "length out of range";
  rdfs:comment "Description:The length of the data specified falls out of the range defined for the element.";
  dcterms:description "Description:The length of the data specified falls out of the range defined for the element.".

cs:ActCode\#LEN%5fLONG rdfs:subClassOf cs:ActCode\#LEN%5fRANGE;
  rdfs:label "length is too long";
  dc:title "length is too long";
  rdfs:comment "Description:The length of the data specified is greater than the maximum length defined for the element.";
  dcterms:description "Description:The length of the data specified is greater than the maximum length defined for the element.".

cs:ActCode\#LEN%5fSHORT rdfs:subClassOf cs:ActCode\#LEN%5fRANGE;
  rdfs:label "length is too short";
  dc:title "length is too short";
  rdfs:comment "Description:The length of the data specified is less than the minimum length defined for the element.";
  dcterms:description "Description:The length of the data specified is less than the minimum length defined for the element.".

cs:ActCode\#MISSCOND rdfs:subClassOf cs:ActCode\#VALIDAT;
  rdfs:label "conditional element missing";
  dc:title "conditional element missing";
  rdfs:comment "Description:The specified element must be specified with a non-null value under certain conditions.  In this case, the conditions are true but the element is still missing or null.";
  dcterms:description "Description:The specified element must be specified with a non-null value under certain conditions.  In this case, the conditions are true but the element is still missing or null.".

cs:ActCode\#MISSMAND rdfs:subClassOf cs:ActCode\#VALIDAT;
  rdfs:label "mandatory element missing";
  dc:title "mandatory element missing";
  rdfs:comment "Description:The specified element is mandatory and was not included in the instance.";
  dcterms:description "Description:The specified element is mandatory and was not included in the instance.".

cs:ActCode\#NODUPS rdfs:subClassOf cs:ActCode\#VALIDAT;
  rdfs:label "duplicate values are not permitted";
  dc:title "duplicate values are not permitted";
  rdfs:comment "Description:More than one element with the same value exists in the set.  Duplicates not permission in this set in a set.";
  dcterms:description "Description:More than one element with the same value exists in the set.  Duplicates not permission in this set in a set.".

cs:ActCode\#NOPERSIST rdfs:subClassOf cs:ActCode\#VALIDAT;
  rdfs:label "element will not be persisted";
  dc:title "element will not be persisted";
  rdfs:comment "Description: Element in submitted message will not persist in data storage based on detected issue.";
  dcterms:description "Description: Element in submitted message will not persist in data storage based on detected issue.".

cs:ActCode\#REP%5fRANGE rdfs:subClassOf cs:ActCode\#VALIDAT;
  rdfs:label "repetitions out of range";
  dc:title "repetitions out of range";
  rdfs:comment "Description:The number of repeating elements falls outside the range of the allowed number of repetitions.";
  dcterms:description "Description:The number of repeating elements falls outside the range of the allowed number of repetitions.".

cs:ActCode\#MAXOCCURS rdfs:subClassOf cs:ActCode\#REP%5fRANGE;
  rdfs:label "repetitions above maximum";
  dc:title "repetitions above maximum";
  rdfs:comment "Description:The number of repeating elements is above the maximum number of repetitions allowed.";
  dcterms:description "Description:The number of repeating elements is above the maximum number of repetitions allowed.".

cs:ActCode\#MINOCCURS rdfs:subClassOf cs:ActCode\#REP%5fRANGE;
  rdfs:label "repetitions below minimum";
  dc:title "repetitions below minimum";
  rdfs:comment "Description:The number of repeating elements is below the minimum number of repetitions allowed.";
  dcterms:description "Description:The number of repeating elements is below the minimum number of repetitions allowed.".

cs:ActCode\#%5fActAdministrativeRuleDetectedIssueCode rdfs:subClassOf cs:ActCode\#%5fActAdministrativeDetectedIssueCode;
  rdfs:label "ActAdministrativeRuleDetectedIssueCode";
  dc:title "ActAdministrativeRuleDetectedIssueCode";
  rdfs:comment "ActAdministrativeRuleDetectedIssueCode";
  dcterms:description "ActAdministrativeRuleDetectedIssueCode".

cs:ActCode\#KEY206 rdfs:subClassOf cs:ActCode\#%5fActAdministrativeRuleDetectedIssueCode;
  rdfs:label "non-matching identification";
  dc:title "non-matching identification";
  rdfs:comment "Description: Metadata associated with the identification (e.g. name or gender) does not match the identification being verified.";
  dcterms:description "Description: Metadata associated with the identification (e.g. name or gender) does not match the identification being verified.".

cs:ActCode\#OBSOLETE rdfs:subClassOf cs:ActCode\#%5fActAdministrativeRuleDetectedIssueCode;
  rdfs:label "obsolete record returned";
  dc:title "obsolete record returned";
  rdfs:comment "Description: One or more records in the query response have a status of 'obsolete'.";
  dcterms:description "Description: One or more records in the query response have a status of 'obsolete'.".

cs:ActCode\#%5fActSuppliedItemDetectedIssueCode rdfs:subClassOf cs:ActCode\#ISSUE;
  rdfs:label "ActSuppliedItemDetectedIssueCode";
  dc:title "ActSuppliedItemDetectedIssueCode";
  rdfs:comment "Identifies types of detected issues regarding the administration or supply of an item to a patient.";
  dcterms:description "Identifies types of detected issues regarding the administration or supply of an item to a patient.".

cs:ActCode\#%5fAdministrationDetectedIssueCode rdfs:subClassOf cs:ActCode\#%5fActSuppliedItemDetectedIssueCode;
  rdfs:label "AdministrationDetectedIssueCode";
  dc:title "AdministrationDetectedIssueCode";
  rdfs:comment "Administration of the proposed therapy may be inappropriate or contraindicated as proposed";
  dcterms:description "Administration of the proposed therapy may be inappropriate or contraindicated as proposed".

cs:ActCode\#%5fAppropriatenessDetectedIssueCode rdfs:subClassOf cs:ActCode\#%5fAdministrationDetectedIssueCode;
  rdfs:label "AppropriatenessDetectedIssueCode";
  dc:title "AppropriatenessDetectedIssueCode";
  rdfs:comment "AppropriatenessDetectedIssueCode";
  dcterms:description "AppropriatenessDetectedIssueCode".

cs:ActCode\#%5fInteractionDetectedIssueCode rdfs:subClassOf cs:ActCode\#%5fAppropriatenessDetectedIssueCode;
  rdfs:label "InteractionDetectedIssueCode";
  dc:title "InteractionDetectedIssueCode";
  rdfs:comment "InteractionDetectedIssueCode";
  dcterms:description "InteractionDetectedIssueCode".

cs:ActCode\#FOOD rdfs:subClassOf cs:ActCode\#%5fInteractionDetectedIssueCode;
  rdfs:label "Food Interaction Alert";
  dc:title "Food Interaction Alert";
  rdfs:comment "Proposed therapy may interact with certain foods";
  dcterms:description "Proposed therapy may interact with certain foods".

cs:ActCode\#TPROD rdfs:subClassOf cs:ActCode\#%5fInteractionDetectedIssueCode;
  rdfs:label "Therapeutic Product Alert";
  dc:title "Therapeutic Product Alert";
  rdfs:comment "Proposed therapy may interact with an existing or recent therapeutic product";
  dcterms:description "Proposed therapy may interact with an existing or recent therapeutic product".

cs:ActCode\#DRG rdfs:subClassOf cs:ActCode\#TPROD;
  rdfs:label "Drug Interaction Alert";
  dc:title "Drug Interaction Alert";
  rdfs:comment "Proposed therapy may interact with an existing or recent drug therapy";
  dcterms:description "Proposed therapy may interact with an existing or recent drug therapy".

cs:ActCode\#NHP rdfs:subClassOf cs:ActCode\#TPROD;
  rdfs:label "Natural Health Product Alert";
  dc:title "Natural Health Product Alert";
  rdfs:comment "Proposed therapy may interact with existing or recent natural health product therapy";
  dcterms:description "Proposed therapy may interact with existing or recent natural health product therapy".

cs:ActCode\#NONRX rdfs:subClassOf cs:ActCode\#TPROD;
  rdfs:label "Non-Prescription Interaction Alert";
  dc:title "Non-Prescription Interaction Alert";
  rdfs:comment "Proposed therapy may interact with a non-prescription drug (e.g. alcohol, tobacco, Aspirin)";
  dcterms:description "Proposed therapy may interact with a non-prescription drug (e.g. alcohol, tobacco, Aspirin)".

cs:ActCode\#PREVINEF rdfs:subClassOf cs:ActCode\#%5fAppropriatenessDetectedIssueCode;
  rdfs:label "previously ineffective";
  dc:title "previously ineffective";
  rdfs:comment "Definition:The same or similar treatment has previously been attempted with the patient without achieving a positive effect.";
  dcterms:description "Definition:The same or similar treatment has previously been attempted with the patient without achieving a positive effect.".

cs:ActCode\#DACT rdfs:subClassOf cs:ActCode\#%5fAdministrationDetectedIssueCode;
  rdfs:label "drug action detected issue";
  dc:title "drug action detected issue";
  rdfs:comment "Description:Proposed therapy may be contraindicated or ineffective based on an existing or recent drug therapy.";
  dcterms:description "Description:Proposed therapy may be contraindicated or ineffective based on an existing or recent drug therapy.".

cs:ActCode\#TIME rdfs:subClassOf cs:ActCode\#%5fAdministrationDetectedIssueCode;
  rdfs:label "timing detected issue";
  dc:title "timing detected issue";
  rdfs:comment "Description:Proposed therapy may be inappropriate or ineffective based on the proposed start or end time.";
  dcterms:description "Description:Proposed therapy may be inappropriate or ineffective based on the proposed start or end time.".

cs:ActCode\#ALRTENDLATE rdfs:subClassOf cs:ActCode\#TIME;
  rdfs:label "end too late alert";
  dc:title "end too late alert";
  rdfs:comment "Definition:Proposed therapy may be inappropriate or ineffective because the end of administration is too close to another planned therapy.";
  dcterms:description "Definition:Proposed therapy may be inappropriate or ineffective because the end of administration is too close to another planned therapy.".

cs:ActCode\#ALRTSTRTLATE rdfs:subClassOf cs:ActCode\#TIME;
  rdfs:label "start too late alert";
  dc:title "start too late alert";
  rdfs:comment "Definition:Proposed therapy may be inappropriate or ineffective because the start of administration is too late after the onset of the condition.";
  dcterms:description "Definition:Proposed therapy may be inappropriate or ineffective because the start of administration is too late after the onset of the condition.".

cs:ActCode\#%5fTimingDetectedIssueCode rdfs:subClassOf cs:ActCode\#%5fAdministrationDetectedIssueCode;
  rdfs:label "TimingDetectedIssueCode";
  dc:title "TimingDetectedIssueCode";
  rdfs:comment "Proposed therapy may be inappropriate or ineffective based on the proposed start or end time.";
  dcterms:description "Proposed therapy may be inappropriate or ineffective based on the proposed start or end time.".

cs:ActCode\#ENDLATE rdfs:subClassOf cs:ActCode\#%5fTimingDetectedIssueCode;
  rdfs:label "End Too Late Alert";
  dc:title "End Too Late Alert";
  rdfs:comment "Proposed therapy may be inappropriate or ineffective because the end of administration is too close to another planned therapy";
  dcterms:description "Proposed therapy may be inappropriate or ineffective because the end of administration is too close to another planned therapy".

cs:ActCode\#STRTLATE rdfs:subClassOf cs:ActCode\#%5fTimingDetectedIssueCode;
  rdfs:label "Start Too Late Alert";
  dc:title "Start Too Late Alert";
  rdfs:comment "Proposed therapy may be inappropriate or ineffective because the start of administration is too late after the onset of the condition";
  dcterms:description "Proposed therapy may be inappropriate or ineffective because the start of administration is too late after the onset of the condition".

cs:ActCode\#%5fSupplyDetectedIssueCode rdfs:subClassOf cs:ActCode\#%5fActSuppliedItemDetectedIssueCode;
  rdfs:label "SupplyDetectedIssueCode";
  dc:title "SupplyDetectedIssueCode";
  rdfs:comment "Supplying the product at this time may be inappropriate or indicate compliance issues with the associated therapy";
  dcterms:description "Supplying the product at this time may be inappropriate or indicate compliance issues with the associated therapy".

cs:ActCode\#ALLDONE rdfs:subClassOf cs:ActCode\#%5fSupplyDetectedIssueCode;
  rdfs:label "already performed";
  dc:title "already performed";
  rdfs:comment "Definition:The requested action has already been performed and so this request has no effect";
  dcterms:description "Definition:The requested action has already been performed and so this request has no effect".

cs:ActCode\#FULFIL rdfs:subClassOf cs:ActCode\#%5fSupplyDetectedIssueCode;
  rdfs:label "fulfillment alert";
  dc:title "fulfillment alert";
  rdfs:comment "Definition:The therapy being performed is in some way out of alignment with the requested therapy.";
  dcterms:description "Definition:The therapy being performed is in some way out of alignment with the requested therapy.".

cs:ActCode\#NOTACTN rdfs:subClassOf cs:ActCode\#FULFIL;
  rdfs:label "no longer actionable";
  dc:title "no longer actionable";
  rdfs:comment "Definition:The status of the request being fulfilled has changed such that it is no longer actionable.  This may be because the request has expired, has already been completely fulfilled or has been otherwise stopped or disabled.  (Not used for 'suspended' orders.)";
  dcterms:description "Definition:The status of the request being fulfilled has changed such that it is no longer actionable.  This may be because the request has expired, has already been completely fulfilled or has been otherwise stopped or disabled.  (Not used for 'suspended' orders.)".

cs:ActCode\#NOTEQUIV rdfs:subClassOf cs:ActCode\#FULFIL;
  rdfs:label "not equivalent alert";
  dc:title "not equivalent alert";
  rdfs:comment "Definition:The therapy being performed is not sufficiently equivalent to the therapy which was requested.";
  dcterms:description "Definition:The therapy being performed is not sufficiently equivalent to the therapy which was requested.".

cs:ActCode\#NOTEQUIVGEN rdfs:subClassOf cs:ActCode\#NOTEQUIV;
  rdfs:label "not generically equivalent alert";
  dc:title "not generically equivalent alert";
  rdfs:comment "Definition:The therapy being performed is not generically equivalent (having the identical biological action) to the therapy which was requested.";
  dcterms:description "Definition:The therapy being performed is not generically equivalent (having the identical biological action) to the therapy which was requested.".

cs:ActCode\#NOTEQUIVTHER rdfs:subClassOf cs:ActCode\#NOTEQUIV;
  rdfs:label "not therapeutically equivalent alert";
  dc:title "not therapeutically equivalent alert";
  rdfs:comment "Definition:The therapy being performed is not therapeutically equivalent (having the same overall patient effect) to the therapy which was requested.";
  dcterms:description "Definition:The therapy being performed is not therapeutically equivalent (having the same overall patient effect) to the therapy which was requested.".

cs:ActCode\#TIMING rdfs:subClassOf cs:ActCode\#FULFIL;
  rdfs:label "event timing incorrect alert";
  dc:title "event timing incorrect alert";
  rdfs:comment "Definition:The therapy is being performed at a time which diverges from the time the therapy was requested";
  dcterms:description "Definition:The therapy is being performed at a time which diverges from the time the therapy was requested".

cs:ActCode\#INTERVAL rdfs:subClassOf cs:ActCode\#TIMING;
  rdfs:label "outside requested time";
  dc:title "outside requested time";
  rdfs:comment "Definition:The therapy action is being performed outside the bounds of the time period requested";
  dcterms:description "Definition:The therapy action is being performed outside the bounds of the time period requested".

cs:ActCode\#MINFREQ rdfs:subClassOf cs:ActCode\#TIMING;
  rdfs:label "too soon within frequency based on the usage";
  dc:title "too soon within frequency based on the usage";
  rdfs:comment "Definition:The therapy action is being performed too soon after the previous occurrence based on the requested frequency";
  dcterms:description "Definition:The therapy action is being performed too soon after the previous occurrence based on the requested frequency".

cs:ActCode\#HELD rdfs:subClassOf cs:ActCode\#%5fSupplyDetectedIssueCode;
  rdfs:label "held/suspended alert";
  dc:title "held/suspended alert";
  rdfs:comment "Definition:There should be no actions taken in fulfillment of a request that has been held or suspended.";
  dcterms:description "Definition:There should be no actions taken in fulfillment of a request that has been held or suspended.".

cs:ActCode\#TOOLATE rdfs:subClassOf cs:ActCode\#%5fSupplyDetectedIssueCode;
  rdfs:label "Refill Too Late Alert";
  dc:title "Refill Too Late Alert";
  rdfs:comment "The patient is receiving a subsequent fill significantly later than would be expected based on the amount previously supplied and the therapy dosage instructions";
  dcterms:description "The patient is receiving a subsequent fill significantly later than would be expected based on the amount previously supplied and the therapy dosage instructions".

cs:ActCode\#TOOSOON rdfs:subClassOf cs:ActCode\#%5fSupplyDetectedIssueCode;
  rdfs:label "Refill Too Soon Alert";
  dc:title "Refill Too Soon Alert";
  rdfs:comment "The patient is receiving a subsequent fill significantly earlier than would be expected based on the amount previously supplied and the therapy dosage instructions";
  dcterms:description "The patient is receiving a subsequent fill significantly earlier than would be expected based on the amount previously supplied and the therapy dosage instructions".

cs:ActCode\#HISTORIC rdfs:subClassOf cs:ActCode\#%5fActSuppliedItemDetectedIssueCode;
  rdfs:label "record recorded as historical";
  dc:title "record recorded as historical";
  rdfs:comment "Description: While the record was accepted in the repository, there is a more recent version of a record of this type.";
  dcterms:description "Description: While the record was accepted in the repository, there is a more recent version of a record of this type.".

cs:ActCode\#PATPREF rdfs:subClassOf cs:ActCode\#%5fActSuppliedItemDetectedIssueCode;
  rdfs:label "violates stated preferences";
  dc:title "violates stated preferences";
  rdfs:comment "Definition:The proposed therapy goes against preferences or consent constraints recorded in the patient's record.";
  dcterms:description "Definition:The proposed therapy goes against preferences or consent constraints recorded in the patient's record.".

cs:ActCode\#PATPREFALT rdfs:subClassOf cs:ActCode\#PATPREF;
  rdfs:label "violates stated preferences, alternate available";
  dc:title "violates stated preferences, alternate available";
  rdfs:comment "Definition:The proposed therapy goes against preferences or consent constraints recorded in the patient's record.  An alternate therapy meeting those constraints is available.";
  dcterms:description "Definition:The proposed therapy goes against preferences or consent constraints recorded in the patient's record.  An alternate therapy meeting those constraints is available.".

cs:ActCode\#KSUBJ rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "knowledge subject";
  dc:title "knowledge subject";
  rdfs:comment "Categorization of types of observation that capture the main clinical knowledge subject which may be a medication, a laboratory test, a disease.";
  dcterms:description "Categorization of types of observation that capture the main clinical knowledge subject which may be a medication, a laboratory test, a disease.".

cs:ActCode\#KSUBT rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "knowledge subtopic";
  dc:title "knowledge subtopic";
  rdfs:comment "Categorization of types of observation that capture a knowledge subtopic which might be treatment, etiology, or prognosis.";
  dcterms:description "Categorization of types of observation that capture a knowledge subtopic which might be treatment, etiology, or prognosis.".

cs:ActCode\#OINT rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "intolerance";
  dc:title "intolerance";
  rdfs:comment "Hypersensitivity resulting in an adverse reaction upon exposure to an agent.";
  dcterms:description "Hypersensitivity resulting in an adverse reaction upon exposure to an agent.".

cs:ActCode\#ALG rdfs:subClassOf cs:ActCode\#OINT;
  rdfs:label "Allergy";
  dc:title "Allergy";
  rdfs:comment "Hypersensitivity to an agent caused by an immunologic response to an initial exposure";
  dcterms:description "Hypersensitivity to an agent caused by an immunologic response to an initial exposure".

cs:ActCode\#DALG rdfs:subClassOf cs:ActCode\#ALG;
  rdfs:label "Drug Allergy";
  dc:title "Drug Allergy";
  rdfs:comment "An allergy to a pharmaceutical product.";
  dcterms:description "An allergy to a pharmaceutical product.".

cs:ActCode\#EALG rdfs:subClassOf cs:ActCode\#ALG;
  rdfs:label "Environmental Allergy";
  dc:title "Environmental Allergy";
  rdfs:comment "An allergy to a substance other than a drug or a food.  E.g. Latex, pollen, etc.";
  dcterms:description "An allergy to a substance other than a drug or a food.  E.g. Latex, pollen, etc.".

cs:ActCode\#FALG rdfs:subClassOf cs:ActCode\#ALG;
  rdfs:label "Food Allergy";
  dc:title "Food Allergy";
  rdfs:comment "An allergy to a substance generally consumed for nutritional purposes.";
  dcterms:description "An allergy to a substance generally consumed for nutritional purposes.".

cs:ActCode\#DINT rdfs:subClassOf cs:ActCode\#OINT;
  rdfs:label "Drug Intolerance";
  dc:title "Drug Intolerance";
  rdfs:comment "Hypersensitivity resulting in an adverse reaction upon exposure to a drug.";
  dcterms:description "Hypersensitivity resulting in an adverse reaction upon exposure to a drug.".

cs:ActCode\#DNAINT rdfs:subClassOf cs:ActCode\#DINT;
  rdfs:label "Drug Non-Allergy Intolerance";
  dc:title "Drug Non-Allergy Intolerance";
  rdfs:comment "Hypersensitivity to an agent caused by a mechanism other than an immunologic response to an initial exposure";
  dcterms:description "Hypersensitivity to an agent caused by a mechanism other than an immunologic response to an initial exposure".

cs:ActCode\#EINT rdfs:subClassOf cs:ActCode\#OINT;
  rdfs:label "Environmental Intolerance";
  dc:title "Environmental Intolerance";
  rdfs:comment "Hypersensitivity resulting in an adverse reaction upon exposure to environmental conditions.";
  dcterms:description "Hypersensitivity resulting in an adverse reaction upon exposure to environmental conditions.".

cs:ActCode\#ENAINT rdfs:subClassOf cs:ActCode\#EINT;
  rdfs:label "Environmental Non-Allergy Intolerance";
  dc:title "Environmental Non-Allergy Intolerance";
  rdfs:comment "Hypersensitivity to an agent caused by a mechanism other than an immunologic response to an initial exposure";
  dcterms:description "Hypersensitivity to an agent caused by a mechanism other than an immunologic response to an initial exposure".

cs:ActCode\#FINT rdfs:subClassOf cs:ActCode\#OINT;
  rdfs:label "Food Intolerance";
  dc:title "Food Intolerance";
  rdfs:comment "Hypersensitivity resulting in an adverse reaction upon exposure to food.";
  dcterms:description "Hypersensitivity resulting in an adverse reaction upon exposure to food.".

cs:ActCode\#FNAINT rdfs:subClassOf cs:ActCode\#FINT;
  rdfs:label "Food Non-Allergy Intolerance";
  dc:title "Food Non-Allergy Intolerance";
  rdfs:comment "Hypersensitivity to an agent caused by a mechanism other than an immunologic response to an initial exposure";
  dcterms:description "Hypersensitivity to an agent caused by a mechanism other than an immunologic response to an initial exposure".

cs:ActCode\#NAINT rdfs:subClassOf cs:ActCode\#OINT;
  rdfs:label "Non-Allergy Intolerance";
  dc:title "Non-Allergy Intolerance";
  rdfs:comment "Hypersensitivity to an agent caused by a mechanism other than an immunologic response to an initial exposure";
  dcterms:description "Hypersensitivity to an agent caused by a mechanism other than an immunologic response to an initial exposure".

cs:ActCode\#SEV rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "Severity Observation";
  dc:title "Severity Observation";
  rdfs:comment "A subjective evaluation of the seriousness or intensity associated with another observation.";
  dcterms:description "A subjective evaluation of the seriousness or intensity associated with another observation.".

cs:ActCode\#%5fFDALabelData rdfs:subClassOf cs:ActCode\#%5fObservationType;
  rdfs:label "FDALabelData";
  dc:title "FDALabelData";
  rdfs:comment "FDA label data";
  dcterms:description "FDA label data".

cs:ActCode\#FDACOATING rdfs:subClassOf cs:ActCode\#%5fFDALabelData;
  rdfs:label "coating";
  dc:title "coating";
  rdfs:comment "FDA label coating";
  dcterms:description "FDA label coating".

cs:ActCode\#FDACOLOR rdfs:subClassOf cs:ActCode\#%5fFDALabelData;
  rdfs:label "color";
  dc:title "color";
  rdfs:comment "FDA label color";
  dcterms:description "FDA label color".

cs:ActCode\#FDAIMPRINTCD rdfs:subClassOf cs:ActCode\#%5fFDALabelData;
  rdfs:label "imprint code";
  dc:title "imprint code";
  rdfs:comment "FDA label imprint code";
  dcterms:description "FDA label imprint code".

cs:ActCode\#FDALOGO rdfs:subClassOf cs:ActCode\#%5fFDALabelData;
  rdfs:label "logo";
  dc:title "logo";
  rdfs:comment "FDA label logo";
  dcterms:description "FDA label logo".

cs:ActCode\#FDASCORING rdfs:subClassOf cs:ActCode\#%5fFDALabelData;
  rdfs:label "scoring";
  dc:title "scoring";
  rdfs:comment "FDA label scoring";
  dcterms:description "FDA label scoring".

cs:ActCode\#FDASHAPE rdfs:subClassOf cs:ActCode\#%5fFDALabelData;
  rdfs:label "shape";
  dc:title "shape";
  rdfs:comment "FDA label shape";
  dcterms:description "FDA label shape".

cs:ActCode\#FDASIZE rdfs:subClassOf cs:ActCode\#%5fFDALabelData;
  rdfs:label "size";
  dc:title "size";
  rdfs:comment "FDA label size";
  dcterms:description "FDA label size".

cs:ActCode\#%5fROIOverlayShape rdfs:subClassOf cs:ActCode;
  rdfs:label "ROIOverlayShape";
  dc:title "ROIOverlayShape";
  rdfs:comment "Shape of the region on the object being referenced";
  dcterms:description "Shape of the region on the object being referenced".

cs:ActCode\#CIRCLE rdfs:subClassOf cs:ActCode\#%5fROIOverlayShape;
  rdfs:label "circle";
  dc:title "circle";
  rdfs:comment "A circle defined by two (column,row) pairs. The first point is the center of the circle and the second point is a point on the perimeter of the circle.";
  dcterms:description "A circle defined by two (column,row) pairs. The first point is the center of the circle and the second point is a point on the perimeter of the circle.".

cs:ActCode\#ELLIPSE rdfs:subClassOf cs:ActCode\#%5fROIOverlayShape;
  rdfs:label "ellipse";
  dc:title "ellipse";
  rdfs:comment "An ellipse defined by four (column,row) pairs, the first two points specifying the endpoints of the major axis and the second two points specifying the endpoints of the minor axis.";
  dcterms:description "An ellipse defined by four (column,row) pairs, the first two points specifying the endpoints of the major axis and the second two points specifying the endpoints of the minor axis.".

cs:ActCode\#POINT rdfs:subClassOf cs:ActCode\#%5fROIOverlayShape;
  rdfs:label "point";
  dc:title "point";
  rdfs:comment "A single point denoted by a single (column,row) pair, or multiple points each denoted by a (column,row) pair.";
  dcterms:description "A single point denoted by a single (column,row) pair, or multiple points each denoted by a (column,row) pair.".

cs:ActCode\#POLY rdfs:subClassOf cs:ActCode\#%5fROIOverlayShape;
  rdfs:label "polyline";
  dc:title "polyline";
  rdfs:comment "A series of connected line segments with ordered vertices denoted by (column,row) pairs; if the first and last vertices are the same, it is a closed polygon.";
  dcterms:description "A series of connected line segments with ordered vertices denoted by (column,row) pairs; if the first and last vertices are the same, it is a closed polygon.".

cs:ActCode\#C rdfs:subClassOf cs:ActCode;
  rdfs:label "corrected";
  dc:title "corrected";
  rdfs:comment "Description:Indicates that result data has been corrected.";
  dcterms:description "Description:Indicates that result data has been corrected.".

cs:ActCode\#DIET rdfs:subClassOf cs:ActCode;
  rdfs:label "Diet";
  dc:title "Diet";
  rdfs:comment "Code set to define specialized/allowed diets";
  dcterms:description "Code set to define specialized/allowed diets".

cs:ActCode\#BR rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "breikost (GE)";
  dc:title "breikost (GE)";
  rdfs:comment "A diet exclusively composed of oatmeal, semolina, or rice, to be extremely easy to eat and digest.";
  dcterms:description "A diet exclusively composed of oatmeal, semolina, or rice, to be extremely easy to eat and digest.".

cs:ActCode\#DM rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "diabetes mellitus diet";
  dc:title "diabetes mellitus diet";
  rdfs:comment "A diet that uses carbohydrates sparingly.  Typically with a restriction in daily energy content (e.g. 1600-2000 kcal).";
  dcterms:description "A diet that uses carbohydrates sparingly.  Typically with a restriction in daily energy content (e.g. 1600-2000 kcal).".

cs:ActCode\#FAST rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "fasting";
  dc:title "fasting";
  rdfs:comment "No enteral intake of foot or liquids  whatsoever, no smoking.  Typically 6 to 8 hours before anesthesia.";
  dcterms:description "No enteral intake of foot or liquids  whatsoever, no smoking.  Typically 6 to 8 hours before anesthesia.".

cs:ActCode\#FORMULA rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "formula diet";
  dc:title "formula diet";
  rdfs:comment "A diet consisting of a formula feeding, either for an infant or an adult, to provide nutrition either orally or through the gastrointestinal tract via tube, catheter or stoma.";
  dcterms:description "A diet consisting of a formula feeding, either for an infant or an adult, to provide nutrition either orally or through the gastrointestinal tract via tube, catheter or stoma.".

cs:ActCode\#GF rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "gluten free";
  dc:title "gluten free";
  rdfs:comment "Gluten free diet for celiac disease.";
  dcterms:description "Gluten free diet for celiac disease.".

cs:ActCode\#LF rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "low fat";
  dc:title "low fat";
  rdfs:comment "A diet low in fat, particularly to patients with hepatic diseases.";
  dcterms:description "A diet low in fat, particularly to patients with hepatic diseases.".

cs:ActCode\#LP rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "low protein";
  dc:title "low protein";
  rdfs:comment "A low protein diet for patients with renal failure.";
  dcterms:description "A low protein diet for patients with renal failure.".

cs:ActCode\#LQ rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "liquid";
  dc:title "liquid";
  rdfs:comment "A strictly liquid diet, that can be fully absorbed in the intestine, and therefore may not contain fiber.  Used before enteral surgeries.";
  dcterms:description "A strictly liquid diet, that can be fully absorbed in the intestine, and therefore may not contain fiber.  Used before enteral surgeries.".

cs:ActCode\#LS rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "low sodium";
  dc:title "low sodium";
  rdfs:comment "A diet low in sodium for patients with congestive heart failure and/or renal failure.";
  dcterms:description "A diet low in sodium for patients with congestive heart failure and/or renal failure.".

cs:ActCode\#N rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "normal diet";
  dc:title "normal diet";
  rdfs:comment "A normal diet, i.e. no special preparations or restrictions for medical reasons. This is notwithstanding any preferences the patient might have regarding special foods, such as vegetarian, kosher, etc.";
  dcterms:description "A normal diet, i.e. no special preparations or restrictions for medical reasons. This is notwithstanding any preferences the patient might have regarding special foods, such as vegetarian, kosher, etc.".

cs:ActCode\#NF rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "no fat";
  dc:title "no fat";
  rdfs:comment "A no fat diet for acute hepatic diseases.";
  dcterms:description "A no fat diet for acute hepatic diseases.".

cs:ActCode\#PAF rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "phenylalanine free";
  dc:title "phenylalanine free";
  rdfs:comment "Phenylketonuria diet.";
  dcterms:description "Phenylketonuria diet.".

cs:ActCode\#PAR rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "parenteral";
  dc:title "parenteral";
  rdfs:comment "Patient is supplied with parenteral nutrition, typically described in terms of i.v. medications.";
  dcterms:description "Patient is supplied with parenteral nutrition, typically described in terms of i.v. medications.".

cs:ActCode\#RD rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "reduction diet";
  dc:title "reduction diet";
  rdfs:comment "A diet that seeks to reduce body fat, typically low energy content (800-1600 kcal).";
  dcterms:description "A diet that seeks to reduce body fat, typically low energy content (800-1600 kcal).".

cs:ActCode\#SCH rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "schonkost (GE)";
  dc:title "schonkost (GE)";
  rdfs:comment "A diet that avoids ingredients that might cause digestion problems, e.g., avoid excessive fat, avoid too much fiber (cabbage, peas, beans).";
  dcterms:description "A diet that avoids ingredients that might cause digestion problems, e.g., avoid excessive fat, avoid too much fiber (cabbage, peas, beans).".

cs:ActCode\#SUPPLEMENT rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "nutritional supplement";
  dc:title "nutritional supplement";
  rdfs:comment "A diet that is not intended to be complete but is added to other diets.";
  dcterms:description "A diet that is not intended to be complete but is added to other diets.".

cs:ActCode\#T rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "tea only";
  dc:title "tea only";
  rdfs:comment "This is not really a diet, since it contains little nutritional value, but is essentially just water.  Used before coloscopy examinations.";
  dcterms:description "This is not really a diet, since it contains little nutritional value, but is essentially just water.  Used before coloscopy examinations.".

cs:ActCode\#VLI rdfs:subClassOf cs:ActCode\#DIET;
  rdfs:label "low valin, leucin, isoleucin";
  dc:title "low valin, leucin, isoleucin";
  rdfs:comment "Diet with low content of the amino-acids valin, leucin, and isoleucin, for \"maple syrup disease.\"";
  dcterms:description "Diet with low content of the amino-acids valin, leucin, and isoleucin, for \"maple syrup disease.\"".

cs:ActCode\#DRUGPRG rdfs:subClassOf cs:ActCode;
  rdfs:label "drug program";
  dc:title "drug program";
  rdfs:comment "Definition: A public or government health program that administers and funds coverage for prescription drugs to assist program eligible who meet financial and health status criteria.";
  dcterms:description "Definition: A public or government health program that administers and funds coverage for prescription drugs to assist program eligible who meet financial and health status criteria.".

cs:ActCode\#F rdfs:subClassOf cs:ActCode;
  rdfs:label "final";
  dc:title "final";
  rdfs:comment "Description:Indicates that a result is complete.  No further results are to come.  This maps to the 'complete' state in the observation result status code.";
  dcterms:description "Description:Indicates that a result is complete.  No further results are to come.  This maps to the 'complete' state in the observation result status code.".

cs:ActCode\#PRLMN rdfs:subClassOf cs:ActCode;
  rdfs:label "preliminary";
  dc:title "preliminary";
  rdfs:comment "Description:Indicates that a result is incomplete.  There are further results to come.  This maps to the 'active' state in the observation result status code.";
  dcterms:description "Description:Indicates that a result is incomplete.  There are further results to come.  This maps to the 'active' state in the observation result status code.".

cs:ActCode\#SECOBS rdfs:subClassOf cs:ActCode;
  rdfs:label "SecurityObservationType";
  dc:title "SecurityObservationType";
  rdfs:comment "An observation identifying security metadata about an IT resource (data, information object, service, or system capability), which may be used to make access control decisions.  Security metadata are used to name security labels.  \r\n\n                        \n                           Rationale: According to ISO/TS 22600-3:2009(E) A.9.1.7 SECURITY LABEL MATCHING, Security label matching compares the initiator's clearance to the target's security label.  All of the following must be true for authorization to be granted:\r\n\n                        \n                           The security policy identifiers shall be identical\n                           The classification level of the initiator shall be greater than or equal to that of the target (that is, there shall be at least one value in the classification list of the clearance greater than or equal to the classification of the target), and \n                           For each security category in the target label, there shall be a security category of the same type in the initiator's clearance and the initiator's classification level shall dominate that of the target.\n                        \n                        \n                           Examples: SecurityObservationType  security label fields include:\r\n\n                        \n                           Confidentiality classification\n                           Compartment category\n                           Sensitivity category\n                           Security mechanisms used to ensure data integrity or to perform authorized data transformation\n                           Indicators of an IT resource completeness, veracity, reliability, trustworthiness, or provenance.\n                        \n                        \n                           Usage Note: SecurityObservationType codes designate security label field types, which are valued with an applicable SecurityObservationValue code as the \"security label tag\".";
  dcterms:description "An observation identifying security metadata about an IT resource (data, information object, service, or system capability), which may be used to make access control decisions.  Security metadata are used to name security labels.  \r\n\n                        \n                           Rationale: According to ISO/TS 22600-3:2009(E) A.9.1.7 SECURITY LABEL MATCHING, Security label matching compares the initiator's clearance to the target's security label.  All of the following must be true for authorization to be granted:\r\n\n                        \n                           The security policy identifiers shall be identical\n                           The classification level of the initiator shall be greater than or equal to that of the target (that is, there shall be at least one value in the classification list of the clearance greater than or equal to the classification of the target), and \n                           For each security category in the target label, there shall be a security category of the same type in the initiator's clearance and the initiator's classification level shall dominate that of the target.\n                        \n                        \n                           Examples: SecurityObservationType  security label fields include:\r\n\n                        \n                           Confidentiality classification\n                           Compartment category\n                           Sensitivity category\n                           Security mechanisms used to ensure data integrity or to perform authorized data transformation\n                           Indicators of an IT resource completeness, veracity, reliability, trustworthiness, or provenance.\n                        \n                        \n                           Usage Note: SecurityObservationType codes designate security label field types, which are valued with an applicable SecurityObservationValue code as the \"security label tag\".".

cs:ActCode\#SECCATOBS rdfs:subClassOf cs:ActCode\#SECOBS;
  rdfs:label "security category observation";
  dc:title "security category observation";
  rdfs:comment "Type of security metadata observation made about the category of an IT resource (data, information object, service, or system capability), which may be used to make access control decisions. Security category metadata is defined by ISO/IEC 2382-8:1998(E/F)/ T-REC-X.812-1995 as: \"A nonhierarchical grouping of sensitive information used to control access to data more finely than with hierarchical security classification alone.\"\r\n\n                        \n                           Rationale: A security category observation supports requirement to specify the type of IT resource to facilitate application of appropriate levels of information security according to a range of levels of impact or consequences that might result from the unauthorized disclosure, modification, or use of the information or information system.  A resource is assigned to a specific category of information (e.g., privacy, medical, proprietary, financial, investigative, contractor sensitive, security management) defined by an organization or in some instances, by a specific law, Executive Order, directive, policy, or regulation. [FIPS 199]\r\n\n                        \n                           Examples: Types of security categories include:\r\n\n                        \n                           Compartment:  A division of data into isolated blocks with separate security controls for the purpose of reducing risk. (ISO 2382-8).  A security label tag that \"segments\" an IT resource by indicating that access and use is restricted to members of a defined community or project. (HL7 Healthcare Classification System)  \n                           Sensitivity:  The characteristic of an IT resource which implies its value or importance and may include its vulnerability. (ISO 7492-2)  Privacy metadata for information perceived as undesirable to share.  (HL7 Healthcare Classification System)";
  dcterms:description "Type of security metadata observation made about the category of an IT resource (data, information object, service, or system capability), which may be used to make access control decisions. Security category metadata is defined by ISO/IEC 2382-8:1998(E/F)/ T-REC-X.812-1995 as: \"A nonhierarchical grouping of sensitive information used to control access to data more finely than with hierarchical security classification alone.\"\r\n\n                        \n                           Rationale: A security category observation supports requirement to specify the type of IT resource to facilitate application of appropriate levels of information security according to a range of levels of impact or consequences that might result from the unauthorized disclosure, modification, or use of the information or information system.  A resource is assigned to a specific category of information (e.g., privacy, medical, proprietary, financial, investigative, contractor sensitive, security management) defined by an organization or in some instances, by a specific law, Executive Order, directive, policy, or regulation. [FIPS 199]\r\n\n                        \n                           Examples: Types of security categories include:\r\n\n                        \n                           Compartment:  A division of data into isolated blocks with separate security controls for the purpose of reducing risk. (ISO 2382-8).  A security label tag that \"segments\" an IT resource by indicating that access and use is restricted to members of a defined community or project. (HL7 Healthcare Classification System)  \n                           Sensitivity:  The characteristic of an IT resource which implies its value or importance and may include its vulnerability. (ISO 7492-2)  Privacy metadata for information perceived as undesirable to share.  (HL7 Healthcare Classification System)".

cs:ActCode\#SECCLASSOBS rdfs:subClassOf cs:ActCode\#SECOBS;
  rdfs:label "security classification observation";
  dc:title "security classification observation";
  rdfs:comment "Type of security metadata observation made about the classification of an IT resource (data, information object, service, or system capability), which may be used to make access control decisions.  Security classification is defined by ISO/IEC 2382-8:1998(E/F)/ T-REC-X.812-1995 as: \"The determination of which specific degree of protection against access the data or information requires, together with a designation of that degree of protection.\"  Security classification metadata is based on an analysis of applicable policies and the risk of financial, reputational, or other harm that could result from unauthorized disclosure.\r\n\n                        \n                           Rationale: A security classification observation may indicate that the confidentiality level indicated by an Act or Role confidentiality attribute has been overridden by the entity responsible for ascribing the SecurityClassificationObservationValue.  This supports the business requirement for increasing or decreasing the level of confidentiality (classification or declassification) based on parameters beyond the original assignment of an Act or Role confidentiality.\r\n\n                        \n                           Examples: Types of security classification include: HL7 Confidentiality Codes such as very restricted, unrestricted, and normal.  Intelligence community examples include top secret, secret, and confidential.\r\n\n                        \n                           Usage Note: Security classification observation type codes designate security label field types, which are valued with an applicable SecurityClassificationObservationValue code as the \"security label tag\".";
  dcterms:description "Type of security metadata observation made about the classification of an IT resource (data, information object, service, or system capability), which may be used to make access control decisions.  Security classification is defined by ISO/IEC 2382-8:1998(E/F)/ T-REC-X.812-1995 as: \"The determination of which specific degree of protection against access the data or information requires, together with a designation of that degree of protection.\"  Security classification metadata is based on an analysis of applicable policies and the risk of financial, reputational, or other harm that could result from unauthorized disclosure.\r\n\n                        \n                           Rationale: A security classification observation may indicate that the confidentiality level indicated by an Act or Role confidentiality attribute has been overridden by the entity responsible for ascribing the SecurityClassificationObservationValue.  This supports the business requirement for increasing or decreasing the level of confidentiality (classification or declassification) based on parameters beyond the original assignment of an Act or Role confidentiality.\r\n\n                        \n                           Examples: Types of security classification include: HL7 Confidentiality Codes such as very restricted, unrestricted, and normal.  Intelligence community examples include top secret, secret, and confidential.\r\n\n                        \n                           Usage Note: Security classification observation type codes designate security label field types, which are valued with an applicable SecurityClassificationObservationValue code as the \"security label tag\".".

cs:ActCode\#SECCONOBS rdfs:subClassOf cs:ActCode\#SECOBS;
  rdfs:label "security control observation";
  dc:title "security control observation";
  rdfs:comment "Type of security metadata observation made about the control of an IT resource (data, information object, service, or system capability), which may be used to make access control decisions.  Security control metadata convey instructions to users and receivers for secure distribution, transmission, and storage; dictate obligations or mandated actions; specify any action prohibited by refrain policy such as dissemination controls; and stipulate the permissible purpose of use of an IT resource.  \r\n\n                        \n                           Rationale: A security control observation supports requirement to specify applicable management, operational, and technical controls (i.e., safeguards or countermeasures) prescribed for an information system to protect the confidentiality, integrity, and availability of the system and its information. [FIPS 199]\r\n\n                        \n                           Examples: Types of security control metadata include: \r\n\n                        \n                           handling caveats\n                           dissemination controls\n                           obligations\n                           refrain policies\n                           purpose of use constraints";
  dcterms:description "Type of security metadata observation made about the control of an IT resource (data, information object, service, or system capability), which may be used to make access control decisions.  Security control metadata convey instructions to users and receivers for secure distribution, transmission, and storage; dictate obligations or mandated actions; specify any action prohibited by refrain policy such as dissemination controls; and stipulate the permissible purpose of use of an IT resource.  \r\n\n                        \n                           Rationale: A security control observation supports requirement to specify applicable management, operational, and technical controls (i.e., safeguards or countermeasures) prescribed for an information system to protect the confidentiality, integrity, and availability of the system and its information. [FIPS 199]\r\n\n                        \n                           Examples: Types of security control metadata include: \r\n\n                        \n                           handling caveats\n                           dissemination controls\n                           obligations\n                           refrain policies\n                           purpose of use constraints".

cs:ActCode\#SECINTOBS rdfs:subClassOf cs:ActCode\#SECOBS;
  rdfs:label "security integrity observation";
  dc:title "security integrity observation";
  rdfs:comment "Type of security metadata observation made about the integrity of an IT resource (data, information object, service, or system capability), which may be used to make access control decisions.\r\n\n                        \n                           Rationale: A security integrity observation supports the requirement to guard against improper information modification or destruction, and includes ensuring information non-repudiation and authenticity. (44 U.S.C., SEC. 3542)\r\n\n                        \n                           Examples: Types of security integrity metadata include: \r\n\n                        \n                           Integrity status, which indicates the completeness or workflow status of an IT resource (data, information object, service, or system capability)\n                           Integrity confidence, which indicates the reliability and trustworthiness of an IT resource\n                           Integrity control, which indicates pertinent handling caveats, obligations, refrain policies, and purpose of use for  the resource\n                           Data integrity, which indicate the security mechanisms used to ensure that the accuracy and consistency are preserved regardless of changes made (ISO/IEC DIS 2382-8)\n                           Alteration integrity, which indicate the security mechanisms used for authorized transformations of the resource\n                           Integrity provenance, which indicates the entity responsible for a report or assertion relayed \"second-hand\" about an IT resource";
  dcterms:description "Type of security metadata observation made about the integrity of an IT resource (data, information object, service, or system capability), which may be used to make access control decisions.\r\n\n                        \n                           Rationale: A security integrity observation supports the requirement to guard against improper information modification or destruction, and includes ensuring information non-repudiation and authenticity. (44 U.S.C., SEC. 3542)\r\n\n                        \n                           Examples: Types of security integrity metadata include: \r\n\n                        \n                           Integrity status, which indicates the completeness or workflow status of an IT resource (data, information object, service, or system capability)\n                           Integrity confidence, which indicates the reliability and trustworthiness of an IT resource\n                           Integrity control, which indicates pertinent handling caveats, obligations, refrain policies, and purpose of use for  the resource\n                           Data integrity, which indicate the security mechanisms used to ensure that the accuracy and consistency are preserved regardless of changes made (ISO/IEC DIS 2382-8)\n                           Alteration integrity, which indicate the security mechanisms used for authorized transformations of the resource\n                           Integrity provenance, which indicates the entity responsible for a report or assertion relayed \"second-hand\" about an IT resource".

cs:ActCode\#SECALTINTOBS rdfs:subClassOf cs:ActCode\#SECINTOBS;
  rdfs:label "security alteration integrity observation";
  dc:title "security alteration integrity observation";
  rdfs:comment "Type of security metadata observation made about the alteration integrity of an IT resource (data, information object, service, or system capability), which indicates the mechanism used for authorized transformations of the resource.\r\n\n                        \n                           Examples: Types of security alteration integrity observation metadata, which may value the observation with a code used to indicate the mechanism used for authorized transformation of an IT resource, including: \r\n\n                        \n                           translation\n                           syntactic transformation\n                           semantic mapping\n                           redaction\n                           masking\n                           pseudonymization\n                           anonymization";
  dcterms:description "Type of security metadata observation made about the alteration integrity of an IT resource (data, information object, service, or system capability), which indicates the mechanism used for authorized transformations of the resource.\r\n\n                        \n                           Examples: Types of security alteration integrity observation metadata, which may value the observation with a code used to indicate the mechanism used for authorized transformation of an IT resource, including: \r\n\n                        \n                           translation\n                           syntactic transformation\n                           semantic mapping\n                           redaction\n                           masking\n                           pseudonymization\n                           anonymization".

cs:ActCode\#SECDATINTOBS rdfs:subClassOf cs:ActCode\#SECINTOBS;
  rdfs:label "security data integrity observation";
  dc:title "security data integrity observation";
  rdfs:comment "Type of security metadata observation made about the data integrity of an IT resource (data, information object, service, or system capability), which indicates the security mechanism used to preserve resource accuracy and consistency.  Data integrity is defined by ISO 22600-23.3.21 as: \"The property that data has not been altered or destroyed in an unauthorized manner\", and by ISO/IEC 2382-8:  The property of data whose accuracy and consistency are preserved regardless of changes made.\"\r\n\n                        \n                           Examples: Types of security data integrity observation metadata, which may value the observation, include cryptographic hash function and digital signature.";
  dcterms:description "Type of security metadata observation made about the data integrity of an IT resource (data, information object, service, or system capability), which indicates the security mechanism used to preserve resource accuracy and consistency.  Data integrity is defined by ISO 22600-23.3.21 as: \"The property that data has not been altered or destroyed in an unauthorized manner\", and by ISO/IEC 2382-8:  The property of data whose accuracy and consistency are preserved regardless of changes made.\"\r\n\n                        \n                           Examples: Types of security data integrity observation metadata, which may value the observation, include cryptographic hash function and digital signature.".

cs:ActCode\#SECINTCONOBS rdfs:subClassOf cs:ActCode\#SECINTOBS;
  rdfs:label "security integrity confidence observation";
  dc:title "security integrity confidence observation";
  rdfs:comment "Type of security metadata observation made about the integrity confidence of an IT resource (data, information object, service, or system capability), which may be used to make access control decisions.\r\n\n                        \n                           Examples: Types of security integrity confidence observation metadata, which may value the observation, include highly reliable, uncertain reliability, and not reliable.\r\n\n                        \n                           Usage Note: A security integrity confidence observation on an Act may indicate that a valued Act.uncertaintycode attribute has been overridden by the entity responsible for ascribing the SecurityIntegrityConfidenceObservationValue.  This supports the business requirements for increasing or decreasing the assessment of the reliability or trustworthiness of an IT resource based on parameters beyond the original assignment of an Act statement level of uncertainty.";
  dcterms:description "Type of security metadata observation made about the integrity confidence of an IT resource (data, information object, service, or system capability), which may be used to make access control decisions.\r\n\n                        \n                           Examples: Types of security integrity confidence observation metadata, which may value the observation, include highly reliable, uncertain reliability, and not reliable.\r\n\n                        \n                           Usage Note: A security integrity confidence observation on an Act may indicate that a valued Act.uncertaintycode attribute has been overridden by the entity responsible for ascribing the SecurityIntegrityConfidenceObservationValue.  This supports the business requirements for increasing or decreasing the assessment of the reliability or trustworthiness of an IT resource based on parameters beyond the original assignment of an Act statement level of uncertainty.".

cs:ActCode\#SECINTPRVOBS rdfs:subClassOf cs:ActCode\#SECINTOBS;
  rdfs:label "security integrity provenance observation";
  dc:title "security integrity provenance observation";
  rdfs:comment "Type of security metadata observation made about the provenance integrity of an IT resource (data, information object, service, or system capability), which indicates the lifecycle completeness of an IT resource in terms of workflow status such as its creation, modification, suspension, and deletion; locations in which the resource has been collected or archived, from which it may be retrieved, and the history of its distribution and disclosure.  Integrity provenance metadata about an IT resource may be used to assess its veracity, reliability, and trustworthiness.\r\n\n                        \n                           Examples: Types of security integrity provenance observation metadata, which may value the observation about an IT resource, include: \r\n\n                        \n                           completeness or workflow status, such as authentication\n                           the entity responsible for original authoring or informing about an IT resource\n                           the entity responsible for a report or assertion about an IT resource relayed â€œsecond-handâ€?\n                           the entity responsible for excerpting, transforming, or compiling an IT resource";
  dcterms:description "Type of security metadata observation made about the provenance integrity of an IT resource (data, information object, service, or system capability), which indicates the lifecycle completeness of an IT resource in terms of workflow status such as its creation, modification, suspension, and deletion; locations in which the resource has been collected or archived, from which it may be retrieved, and the history of its distribution and disclosure.  Integrity provenance metadata about an IT resource may be used to assess its veracity, reliability, and trustworthiness.\r\n\n                        \n                           Examples: Types of security integrity provenance observation metadata, which may value the observation about an IT resource, include: \r\n\n                        \n                           completeness or workflow status, such as authentication\n                           the entity responsible for original authoring or informing about an IT resource\n                           the entity responsible for a report or assertion about an IT resource relayed â€œsecond-handâ€?\n                           the entity responsible for excerpting, transforming, or compiling an IT resource".

cs:ActCode\#SECINTPRVABOBS rdfs:subClassOf cs:ActCode\#SECINTPRVOBS;
  rdfs:label "security integrity provenance asserted by observation";
  dc:title "security integrity provenance asserted by observation";
  rdfs:comment "Type of security metadata observation made about the integrity provenance of an IT resource (data, information object, service, or system capability), which indicates the entity that made assertions about the resource.  The asserting entity may not be the original informant about the resource.\r\n\n                        \n                           Examples: Types of security integrity provenance asserted by observation metadata, which may value the observation, including: \r\n\n                        \n                           assertions about an IT resource by a patient\n                           assertions about an IT resource by a clinician\n                           assertions about an IT resource by a device";
  dcterms:description "Type of security metadata observation made about the integrity provenance of an IT resource (data, information object, service, or system capability), which indicates the entity that made assertions about the resource.  The asserting entity may not be the original informant about the resource.\r\n\n                        \n                           Examples: Types of security integrity provenance asserted by observation metadata, which may value the observation, including: \r\n\n                        \n                           assertions about an IT resource by a patient\n                           assertions about an IT resource by a clinician\n                           assertions about an IT resource by a device".

cs:ActCode\#SECINTPRVRBOBS rdfs:subClassOf cs:ActCode\#SECINTPRVOBS;
  rdfs:label "security integrity provenance reported by observation";
  dc:title "security integrity provenance reported by observation";
  rdfs:comment "Type of security metadata observation made about the integrity provenance of an IT resource (data, information object, service, or system capability), which indicates the entity that reported the existence of the resource.  The reporting entity may not be the original author of the resource.\r\n\n                        \n                           Examples: Types of security integrity provenance reported by observation metadata, which may value the observation, include: \r\n\n                        \n                           reports about an IT resource by a patient\n                           reports about an IT resource by a clinician\n                           reports about an IT resource by a device";
  dcterms:description "Type of security metadata observation made about the integrity provenance of an IT resource (data, information object, service, or system capability), which indicates the entity that reported the existence of the resource.  The reporting entity may not be the original author of the resource.\r\n\n                        \n                           Examples: Types of security integrity provenance reported by observation metadata, which may value the observation, include: \r\n\n                        \n                           reports about an IT resource by a patient\n                           reports about an IT resource by a clinician\n                           reports about an IT resource by a device".

cs:ActCode\#SECINTSTOBS rdfs:subClassOf cs:ActCode\#SECINTOBS;
  rdfs:label "security integrity status observation";
  dc:title "security integrity status observation";
  rdfs:comment "Type of security metadata observation made about the integrity status of an IT resource (data, information object, service, or system capability), which may be used to make access control decisions.  Indicates the completeness of an IT resource in terms of workflow status, which may impact users that are authorized to access and use the resource.\r\n\n                        \n                           Examples: Types of security integrity status observation metadata, which may value the observation, include codes from the HL7 DocumentCompletion code system such as legally authenticated, in progress, and incomplete.";
  dcterms:description "Type of security metadata observation made about the integrity status of an IT resource (data, information object, service, or system capability), which may be used to make access control decisions.  Indicates the completeness of an IT resource in terms of workflow status, which may impact users that are authorized to access and use the resource.\r\n\n                        \n                           Examples: Types of security integrity status observation metadata, which may value the observation, include codes from the HL7 DocumentCompletion code system such as legally authenticated, in progress, and incomplete.".

cs:ActCode\#SECTRSTOBS rdfs:subClassOf cs:ActCode\#SECOBS;
  rdfs:label "SECTRSTOBS";
  dc:title "SECTRSTOBS";
  rdfs:comment "An observation identifying trust metadata about an IT resource (data, information object, service, or system capability), which may be used as a trust attribute to populate a computable trust policy, trust credential, trust assertion, or trust label field in a security label or trust policy, which are principally used for authentication, authorization, and access control decisions.";
  dcterms:description "An observation identifying trust metadata about an IT resource (data, information object, service, or system capability), which may be used as a trust attribute to populate a computable trust policy, trust credential, trust assertion, or trust label field in a security label or trust policy, which are principally used for authentication, authorization, and access control decisions.".

cs:ActCode\#TRSTACCRDOBS rdfs:subClassOf cs:ActCode\#SECTRSTOBS;
  rdfs:label "trust accreditation observation";
  dc:title "trust accreditation observation";
  rdfs:comment "Type of security metadata observation made about the formal declaration by an authority or neutral third party that validates the technical, security, trust, and business practice conformance of Trust Agents to facilitate security, interoperability, and trust among participants within a security domain or trust framework.";
  dcterms:description "Type of security metadata observation made about the formal declaration by an authority or neutral third party that validates the technical, security, trust, and business practice conformance of Trust Agents to facilitate security, interoperability, and trust among participants within a security domain or trust framework.".

cs:ActCode\#TRSTAGREOBS rdfs:subClassOf cs:ActCode\#SECTRSTOBS;
  rdfs:label "trust agreement observation";
  dc:title "trust agreement observation";
  rdfs:comment "Type of security metadata observation made about privacy and security requirements with which a security domain must comply. [ISO IEC 10181-1]";
  dcterms:description "Type of security metadata observation made about privacy and security requirements with which a security domain must comply. [ISO IEC 10181-1]".

cs:ActCode\#TRSTCERTOBS rdfs:subClassOf cs:ActCode\#SECTRSTOBS;
  rdfs:label "trust certificate observation";
  dc:title "trust certificate observation";
  rdfs:comment "Type of security metadata observation made about a set of security-relevant data issued by a security authority or trusted third party, together with security information which is used to provide the integrity and data origin authentication services for an IT resource (data, information object, service, or system capability). [Based on ISO IEC 10181-1]\r\n\n                        \n                           For example,\n                        \r\n\n                        \n                           A Certificate Policy (CP), which is a named set of rules that indicates the applicability of a certificate to a particular community and/or class of application with common security requirements. For example, a particular Certificate Policy might indicate the applicability of a type of certificate to the authentication of electronic data interchange transactions for the trading of goods within a given price range. [Trust Service Principles and Criteria for Certification Authorities Version 2.0 March 2011 Copyright 2011 by Canadian Institute of Chartered Accountants.\n                           A Certificate Practice Statement (CSP), which is a statement of the practices which an Authority employs in issuing and managing certificates. [Trust Service Principles and Criteria for Certification Authorities Version 2.0 March 2011 Copyright 2011 by Canadian Institute of Chartered Accountants.]";
  dcterms:description "Type of security metadata observation made about a set of security-relevant data issued by a security authority or trusted third party, together with security information which is used to provide the integrity and data origin authentication services for an IT resource (data, information object, service, or system capability). [Based on ISO IEC 10181-1]\r\n\n                        \n                           For example,\n                        \r\n\n                        \n                           A Certificate Policy (CP), which is a named set of rules that indicates the applicability of a certificate to a particular community and/or class of application with common security requirements. For example, a particular Certificate Policy might indicate the applicability of a type of certificate to the authentication of electronic data interchange transactions for the trading of goods within a given price range. [Trust Service Principles and Criteria for Certification Authorities Version 2.0 March 2011 Copyright 2011 by Canadian Institute of Chartered Accountants.\n                           A Certificate Practice Statement (CSP), which is a statement of the practices which an Authority employs in issuing and managing certificates. [Trust Service Principles and Criteria for Certification Authorities Version 2.0 March 2011 Copyright 2011 by Canadian Institute of Chartered Accountants.]".

cs:ActCode\#TRSTFWKOBS rdfs:subClassOf cs:ActCode\#SECTRSTOBS;
  rdfs:label "trust framework observation";
  dc:title "trust framework observation";
  rdfs:comment "Type of security metadata observation made about a complete set of contracts, regulations or commitments that enable participating actors to rely on certain assertions by other actors to fulfill their information security requirements. [Kantara Initiative]";
  dcterms:description "Type of security metadata observation made about a complete set of contracts, regulations or commitments that enable participating actors to rely on certain assertions by other actors to fulfill their information security requirements. [Kantara Initiative]".

cs:ActCode\#TRSTLOAOBS rdfs:subClassOf cs:ActCode\#SECTRSTOBS;
  rdfs:label "trust assurance observation";
  dc:title "trust assurance observation";
  rdfs:comment "Type of security metadata observation made about the digital quality or reliability of a trust assertion, activity, capability, information exchange, mechanism, process, or protocol.";
  dcterms:description "Type of security metadata observation made about the digital quality or reliability of a trust assertion, activity, capability, information exchange, mechanism, process, or protocol.".

cs:ActCode\#TRSTMECOBS rdfs:subClassOf cs:ActCode\#SECTRSTOBS;
  rdfs:label "trust mechanism observation";
  dc:title "trust mechanism observation";
  rdfs:comment "Type of security metadata observation made about a security architecture system component that supports enforcement of security policies.";
  dcterms:description "Type of security metadata observation made about a security architecture system component that supports enforcement of security policies.".

cs:ActCode\#SUBSIDFFS rdfs:subClassOf cs:ActCode;
  rdfs:label "subsidized fee for service program";
  dc:title "subsidized fee for service program";
  rdfs:comment "Definition: A government health program that provides coverage on a fee for service basis for health services to persons meeting eligibility criteria such as income, location of residence, access to other coverages, health condition, and age, the cost of which is to some extent subsidized by public funds.\r\n\n                        \n                           Discussion: The structure and business processes for underwriting and administering a subsidized fee for service program is further specified by the Underwriter and Payer Role.class and Role.code.";
  dcterms:description "Definition: A government health program that provides coverage on a fee for service basis for health services to persons meeting eligibility criteria such as income, location of residence, access to other coverages, health condition, and age, the cost of which is to some extent subsidized by public funds.\r\n\n                        \n                           Discussion: The structure and business processes for underwriting and administering a subsidized fee for service program is further specified by the Underwriter and Payer Role.class and Role.code.".

cs:ActCode\#WRKCOMP rdfs:subClassOf cs:ActCode;
  rdfs:label "(workers compensation program";
  dc:title "(workers compensation program";
  rdfs:comment "Definition: Government mandated program providing coverage, disability income, and vocational rehabilitation for injuries sustained in the work place or in the course of employment.  Employers may either self-fund the program, purchase commercial coverage, or pay a premium to a government entity that administers the program.  Employees may be required to pay premiums toward the cost of coverage as well.";
  dcterms:description "Definition: Government mandated program providing coverage, disability income, and vocational rehabilitation for injuries sustained in the work place or in the course of employment.  Employers may either self-fund the program, purchase commercial coverage, or pay a premium to a government entity that administers the program.  Employees may be required to pay premiums toward the cost of coverage as well.".

cs:ActCode\#%5fActProcedureCode rdfs:subClassOf cs:ActCode;
  rdfs:label "ActProcedureCode";
  dc:title "ActProcedureCode";
  rdfs:comment "An identifying code for healthcare interventions/procedures.";
  dcterms:description "An identifying code for healthcare interventions/procedures.".

cs:ActCode\#%5fActBillableServiceCode rdfs:subClassOf cs:ActCode\#%5fActProcedureCode;
  rdfs:label "ActBillableServiceCode";
  dc:title "ActBillableServiceCode";
  rdfs:comment "Definition: An identifying code for billable services, as opposed to codes for similar services used to identify them for functional purposes.";
  dcterms:description "Definition: An identifying code for billable services, as opposed to codes for similar services used to identify them for functional purposes.".

cs:ActCode\#%5fHL7DefinedActCodes rdfs:subClassOf cs:ActCode;
  rdfs:label "HL7DefinedActCodes";
  dc:title "HL7DefinedActCodes";
  rdfs:comment "Domain provides the root for HL7-defined detailed or rich codes for the Act classes.";
  dcterms:description "Domain provides the root for HL7-defined detailed or rich codes for the Act classes.".

cs:ActCode\#COPAY rdfs:subClassOf cs:ActCode.

cs:ActCode\#DEDUCT rdfs:subClassOf cs:ActCode.

cs:ActCode\#DOSEIND rdfs:subClassOf cs:ActCode.

cs:ActCode\#PRA rdfs:subClassOf cs:ActCode.

cs:ActCode\#STORE rdfs:subClassOf cs:ActCode;
  rdfs:label "Storage";
  dc:title "Storage";
  rdfs:comment "The act of putting something away for safe keeping. The \"something\" may be physical object such as a specimen, or information, such as observations regarding a specimen.";
  dcterms:description "The act of putting something away for safe keeping. The \"something\" may be physical object such as a specimen, or information, such as observations regarding a specimen.".

# - vs:v3-ActConsentType -------------------------------------------------------

vs:v3-ActConsentType a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "ActConsentType";
  dc:title "ActConsentType";
  rdfs:comment "  Definition:\r\nThe type of consent directive, e.g., to consent or dissent to collect, access, or use in specific ways within an EHRS or for health information exchange; or to disclose  health information  for purposes such as research.";
  dcterms:description "  Definition:\r\nThe type of consent directive, e.g., to consent or dissent to collect, access, or use in specific ways within an EHRS or for health information exchange; or to disclose  health information  for purposes such as research.";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-ActCoverageTypeCode --------------------------------------------------

vs:v3-ActCoverageTypeCode a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "ActCoverageTypeCode";
  dc:title "ActCoverageTypeCode";
  rdfs:comment "  Definition:\r\nSet of codes indicating the type of insurance policy or program that pays for the cost of benefits provided to covered parties.";
  dcterms:description "  Definition:\r\nSet of codes indicating the type of insurance policy or program that pays for the cost of benefits provided to covered parties.";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-ActExposureLevelCode -------------------------------------------------

vs:v3-ActExposureLevelCode a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActExposureLevelCode";
  dc:title "v3 Code System ActExposureLevelCode";
  rdfs:comment " A qualitative measure of the degree of exposure to the causative agent.  This includes concepts such as \"low\", \"medium\" and \"high\".  This quantifies how the quantity that was available to be administered to the target differs from typical or background levels of the substance.";
  dcterms:description " A qualitative measure of the degree of exposure to the causative agent.  This includes concepts such as \"low\", \"medium\" and \"high\".  This quantifies how the quantity that was available to be administered to the target differs from typical or background levels of the substance.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActExposureLevelCode.

cs:ActExposureLevelCode.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActExposureLevelCode";
  dc:title "v3 Code System ActExposureLevelCode";
  rdfs:comment " A qualitative measure of the degree of exposure to the causative agent.  This includes concepts such as \"low\", \"medium\" and \"high\".  This quantifies how the quantity that was available to be administered to the target differs from typical or background levels of the substance.";
  dcterms:description " A qualitative measure of the degree of exposure to the causative agent.  This includes concepts such as \"low\", \"medium\" and \"high\".  This quantifies how the quantity that was available to be administered to the target differs from typical or background levels of the substance.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActExposureLevelCode a fhir:Concept.

cs:ActExposureLevelCode\#%5fActExposureLevelCode rdfs:subClassOf cs:ActExposureLevelCode;
  rdfs:label "ActExposureLevelCode";
  dc:title "ActExposureLevelCode";
  rdfs:comment "A qualitative measure of the degree of exposure to the causative agent.  This includes concepts such as \"low\", \"medium\" and \"high\".  This quantifies how the quantity that was available to be administered to the target differs from typical or background levels of the substance.";
  dcterms:description "A qualitative measure of the degree of exposure to the causative agent.  This includes concepts such as \"low\", \"medium\" and \"high\".  This quantifies how the quantity that was available to be administered to the target differs from typical or background levels of the substance.".

cs:ActExposureLevelCode\#HIGH rdfs:subClassOf cs:ActExposureLevelCode\#%5fActExposureLevelCode;
  rdfs:label "high";
  dc:title "high";
  rdfs:comment "Description: Exposure to an agent at a relatively high level above background.";
  dcterms:description "Description: Exposure to an agent at a relatively high level above background.".

cs:ActExposureLevelCode\#LOW rdfs:subClassOf cs:ActExposureLevelCode\#%5fActExposureLevelCode;
  rdfs:label "low";
  dc:title "low";
  rdfs:comment "Description: Exposure to an agent at a relatively low level above background.";
  dcterms:description "Description: Exposure to an agent at a relatively low level above background.".

cs:ActExposureLevelCode\#MEDIUM rdfs:subClassOf cs:ActExposureLevelCode\#%5fActExposureLevelCode;
  rdfs:label "medium";
  dc:title "medium";
  rdfs:comment "Description: Exposure to an agent at a relatively moderate level above background.A";
  dcterms:description "Description: Exposure to an agent at a relatively moderate level above background.A".

# - vs:v3-ActIncidentCode ------------------------------------------------------

vs:v3-ActIncidentCode a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "ActIncidentCode";
  dc:title "ActIncidentCode";
  rdfs:comment " Set of codes indicating the type of incident or accident.";
  dcterms:description " Set of codes indicating the type of incident or accident.";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-ActInvoiceElementModifier --------------------------------------------

vs:v3-ActInvoiceElementModifier a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActInvoiceElementModifier";
  dc:title "v3 Code System ActInvoiceElementModifier";
  rdfs:comment " Processing consideration and clarification codes.";
  dcterms:description " Processing consideration and clarification codes.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActInvoiceElementModifier.

cs:ActInvoiceElementModifier.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActInvoiceElementModifier";
  dc:title "v3 Code System ActInvoiceElementModifier";
  rdfs:comment " Processing consideration and clarification codes.";
  dcterms:description " Processing consideration and clarification codes.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActInvoiceElementModifier a fhir:Concept.

cs:ActInvoiceElementModifier\#EFORM rdfs:subClassOf cs:ActInvoiceElementModifier;
  rdfs:label "Electronic Form To Follow";
  dc:title "Electronic Form To Follow";
  rdfs:comment "Electronic form with supporting information to follow.";
  dcterms:description "Electronic form with supporting information to follow.".

cs:ActInvoiceElementModifier\#FAX rdfs:subClassOf cs:ActInvoiceElementModifier;
  rdfs:label "Fax To Follow";
  dc:title "Fax To Follow";
  rdfs:comment "Fax with supporting information to follow.";
  dcterms:description "Fax with supporting information to follow.".

cs:ActInvoiceElementModifier\#LINV rdfs:subClassOf cs:ActInvoiceElementModifier;
  rdfs:label "Last Invoice";
  dc:title "Last Invoice";
  rdfs:comment "Represents the last invoice from the perspective of the provider.";
  dcterms:description "Represents the last invoice from the perspective of the provider.".

cs:ActInvoiceElementModifier\#PAPER rdfs:subClassOf cs:ActInvoiceElementModifier;
  rdfs:label "Paper Documentation To Follow";
  dc:title "Paper Documentation To Follow";
  rdfs:comment "Paper documentation (or other physical format) with supporting information to follow.";
  dcterms:description "Paper documentation (or other physical format) with supporting information to follow.".

# - vs:v3-ActInvoiceGroupCode --------------------------------------------------

vs:v3-ActInvoiceGroupCode a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "ActInvoiceGroupCode";
  dc:title "ActInvoiceGroupCode";
  rdfs:comment " Type of invoice element that is used to assist in describing an Invoice that is either submitted for adjudication or for which is returned on adjudication results. Invoice elements of this type signify a grouping of one or more children (detail) invoice elements.  They do not have intrinsic costing associated with them, but merely reflect the sum of all costing for it's immediate children invoice elements.";
  dcterms:description " Type of invoice element that is used to assist in describing an Invoice that is either submitted for adjudication or for which is returned on adjudication results. Invoice elements of this type signify a grouping of one or more children (detail) invoice elements.  They do not have intrinsic costing associated with them, but merely reflect the sum of all costing for it's immediate children invoice elements.";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-ActMood --------------------------------------------------------------

vs:v3-ActMood a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActMood";
  dc:title "v3 Code System ActMood";
  rdfs:comment " OpenIssue:  In Ballot 2009May, a strong Negative vote was lodged against several of the concept definitions in the vocabulary used for Act.moodCode. The vote was found \"Persuasive With Mod\", with the understanding that M and M would undertake a detailed review of these concept definitions for a future release of the RIM.";
  dcterms:description " OpenIssue:  In Ballot 2009May, a strong Negative vote was lodged against several of the concept definitions in the vocabulary used for Act.moodCode. The vote was found \"Persuasive With Mod\", with the understanding that M and M would undertake a detailed review of these concept definitions for a future release of the RIM.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActMood.

cs:ActMood.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActMood";
  dc:title "v3 Code System ActMood";
  rdfs:comment " OpenIssue:  In Ballot 2009May, a strong Negative vote was lodged against several of the concept definitions in the vocabulary used for Act.moodCode. The vote was found \"Persuasive With Mod\", with the understanding that M and M would undertake a detailed review of these concept definitions for a future release of the RIM.";
  dcterms:description " OpenIssue:  In Ballot 2009May, a strong Negative vote was lodged against several of the concept definitions in the vocabulary used for Act.moodCode. The vote was found \"Persuasive With Mod\", with the understanding that M and M would undertake a detailed review of these concept definitions for a future release of the RIM.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActMood a fhir:Concept.

cs:ActMood\#%5fActMoodCompletionTrack rdfs:subClassOf cs:ActMood;
  rdfs:label "ActMoodCompletionTrack";
  dc:title "ActMoodCompletionTrack";
  rdfs:comment "These are moods describing activities as they progress in the business cycle, from defined, through planned and ordered to completed.";
  dcterms:description "These are moods describing activities as they progress in the business cycle, from defined, through planned and ordered to completed.".

cs:ActMood\#%5fActMoodPotential rdfs:subClassOf cs:ActMood\#%5fActMoodCompletionTrack;
  rdfs:label "potential";
  dc:title "potential";
  rdfs:comment "Definition: A possible act.";
  dcterms:description "Definition: A possible act.".

cs:ActMood\#DEF rdfs:subClassOf cs:ActMood\#%5fActMoodPotential;
  rdfs:label "definition";
  dc:title "definition";
  rdfs:comment "Definition: A definition of a kind of act that can occur .\r\n\n                        \n                           OpenIssue: The semantic constructs embodied in DEF and CRT moods seem indistinguishable, and their uses can readily be determined by the context in which these are used. Therefore, this OpenIssue has been created to declare that it is likely that ActMood.DEF will be \"retired\" in the future in favor of the more general ActMood.CRT.";
  dcterms:description "Definition: A definition of a kind of act that can occur .\r\n\n                        \n                           OpenIssue: The semantic constructs embodied in DEF and CRT moods seem indistinguishable, and their uses can readily be determined by the context in which these are used. Therefore, this OpenIssue has been created to declare that it is likely that ActMood.DEF will be \"retired\" in the future in favor of the more general ActMood.CRT.".

cs:ActMood\#PERM rdfs:subClassOf cs:ActMood\#%5fActMoodPotential;
  rdfs:label "permission";
  dc:title "permission";
  rdfs:comment "Definition: A kind of act that defines a permission that has been granted.";
  dcterms:description "Definition: A kind of act that defines a permission that has been granted.".

cs:ActMood\#SLOT rdfs:subClassOf cs:ActMood\#%5fActMoodPotential;
  rdfs:label "resource slot";
  dc:title "resource slot";
  rdfs:comment "Definition: A kind of act that may occur during the specified time period.";
  dcterms:description "Definition: A kind of act that may occur during the specified time period.".

cs:ActMood\#EVN rdfs:subClassOf cs:ActMood\#%5fActMoodCompletionTrack;
  rdfs:label "event (occurrence)";
  dc:title "event (occurrence)";
  rdfs:comment "Definition: An act that actually happens (may be an ongoing act or a documentation of a past act).";
  dcterms:description "Definition: An act that actually happens (may be an ongoing act or a documentation of a past act).".

cs:ActMood\#INT rdfs:subClassOf cs:ActMood\#%5fActMoodCompletionTrack;
  rdfs:label "intent";
  dc:title "intent";
  rdfs:comment "Definition: An intention or plan for an act. \r\n\n                        \n                           >UsageNotes: The final outcome of the intent, the act that is intended to occur, is always an event. However the final outcome may be reached indirectly via steps through other intents, such as promise, permission request, or an appointment that may lead to an actual event to occur. Alternatively, the intended act may never occur.";
  dcterms:description "Definition: An intention or plan for an act. \r\n\n                        \n                           >UsageNotes: The final outcome of the intent, the act that is intended to occur, is always an event. However the final outcome may be reached indirectly via steps through other intents, such as promise, permission request, or an appointment that may lead to an actual event to occur. Alternatively, the intended act may never occur.".

cs:ActMood\#%5fActMoodDesire rdfs:subClassOf cs:ActMood\#INT;
  rdfs:label "desire";
  dc:title "desire";
  rdfs:comment "Definition:  A desire to have an act occur.";
  dcterms:description "Definition:  A desire to have an act occur.".

cs:ActMood\#%5fActMoodActRequest rdfs:subClassOf cs:ActMood\#%5fActMoodDesire;
  rdfs:label "act request";
  dc:title "act request";
  rdfs:comment "Definition: A request (or order) for an act that is part of a defined request/fulfillment cycle.\r\n\n                        \n                           UsageNotes: Use of an HL7 defined request/fulfillment framework is not required to use this mood code.";
  dcterms:description "Definition: A request (or order) for an act that is part of a defined request/fulfillment cycle.\r\n\n                        \n                           UsageNotes: Use of an HL7 defined request/fulfillment framework is not required to use this mood code.".

cs:ActMood\#ARQ rdfs:subClassOf cs:ActMood\#%5fActMoodActRequest;
  rdfs:label "appointment request";
  dc:title "appointment request";
  rdfs:comment "Definition: A request act that is specialized for the appointment scheduling request/fulfillment cycle. An appointment request is fulfilled only and completely by an appointment (APT), i.e., all that the appointment request intends is to create an appointment (the actual act may well not happen if that is the professional decision during the appointment).";
  dcterms:description "Definition: A request act that is specialized for the appointment scheduling request/fulfillment cycle. An appointment request is fulfilled only and completely by an appointment (APT), i.e., all that the appointment request intends is to create an appointment (the actual act may well not happen if that is the professional decision during the appointment).".

cs:ActMood\#PERMRQ rdfs:subClassOf cs:ActMood\#%5fActMoodActRequest;
  rdfs:label "permission request";
  dc:title "permission request";
  rdfs:comment "Definition: A request for a permission to perform the act. Typically a payer (or possibly a supervisor) is being requested to give permission to perform the act. As opposed to the RQO, the requestee is not asked to perform or cause to perform the act but only to give the permission.";
  dcterms:description "Definition: A request for a permission to perform the act. Typically a payer (or possibly a supervisor) is being requested to give permission to perform the act. As opposed to the RQO, the requestee is not asked to perform or cause to perform the act but only to give the permission.".

cs:ActMood\#RQO rdfs:subClassOf cs:ActMood\#%5fActMoodActRequest;
  rdfs:label "request";
  dc:title "request";
  rdfs:comment "Definition: A request act that is specialized for an event request/fulfillment cycle. \r\n\n                        \n                           UsageNotes: The fulfillment cycle may involve intermediary fulfilling acts in moods such as PRMS, APT, or even another RQO before being fulfilled by the final event. \r\n\n                        \n                           UsageNotes: The concepts of a \"request\" and an \"order\" are viewed as different, because there is an implication of a mandate associated with order.  In practice, however, this distinction has no general functional value in the inter-operation of health care computing.  \"Orders\" are commonly refused for a variety of clinical and business reasons, and the notion of a \"request\" obligates the recipient (the fulfiller) to respond to the sender (the author).  Indeed, in many regions, including Australia and Europe, the common term used is \"request.\"\r\n\n                        Thus, the concept embodies both notions, as there is no useful distinction to be made.  If a mandate is to be associated with a request, this will be embodied in the \"local\" business rules applied to the transactions.  Should HL7 desire to provide a distinction between these in the future, the individual concepts could be added as specializations of this concept.\r\n\n                        The critical distinction here, is the difference between this concept and an \"intent\", of which it is a specialization.  An intent involves decisions by a single party, the author.  A request, however, involves decisions by two parties, the author and the fulfiller, with an obligation on the part of the fulfiller to respond to the request indicating that the fulfiller will indeed fulfill the request.";
  dcterms:description "Definition: A request act that is specialized for an event request/fulfillment cycle. \r\n\n                        \n                           UsageNotes: The fulfillment cycle may involve intermediary fulfilling acts in moods such as PRMS, APT, or even another RQO before being fulfilled by the final event. \r\n\n                        \n                           UsageNotes: The concepts of a \"request\" and an \"order\" are viewed as different, because there is an implication of a mandate associated with order.  In practice, however, this distinction has no general functional value in the inter-operation of health care computing.  \"Orders\" are commonly refused for a variety of clinical and business reasons, and the notion of a \"request\" obligates the recipient (the fulfiller) to respond to the sender (the author).  Indeed, in many regions, including Australia and Europe, the common term used is \"request.\"\r\n\n                        Thus, the concept embodies both notions, as there is no useful distinction to be made.  If a mandate is to be associated with a request, this will be embodied in the \"local\" business rules applied to the transactions.  Should HL7 desire to provide a distinction between these in the future, the individual concepts could be added as specializations of this concept.\r\n\n                        The critical distinction here, is the difference between this concept and an \"intent\", of which it is a specialization.  An intent involves decisions by a single party, the author.  A request, however, involves decisions by two parties, the author and the fulfiller, with an obligation on the part of the fulfiller to respond to the request indicating that the fulfiller will indeed fulfill the request.".

cs:ActMood\#PRP rdfs:subClassOf cs:ActMood\#%5fActMoodDesire;
  rdfs:label "proposal";
  dc:title "proposal";
  rdfs:comment "Definition: A suggestion that an act might be performed. Not an explicit request, and professional responsibility may or may not be present.";
  dcterms:description "Definition: A suggestion that an act might be performed. Not an explicit request, and professional responsibility may or may not be present.".

cs:ActMood\#RMD rdfs:subClassOf cs:ActMood\#PRP;
  rdfs:label "recommendation";
  dc:title "recommendation";
  rdfs:comment "Definition: A suggestion that an act should be performed with an acceptance of some degree of professional responsibility for the resulting act. Not an explicit request. .\r\n\n                        \n                           UsageNotes: Where there is no clear definition or applicable concept of \"professional responsibilityâ€?, RMD becomes indistinguishable from PRP. .";
  dcterms:description "Definition: A suggestion that an act should be performed with an acceptance of some degree of professional responsibility for the resulting act. Not an explicit request. .\r\n\n                        \n                           UsageNotes: Where there is no clear definition or applicable concept of \"professional responsibilityâ€?, RMD becomes indistinguishable from PRP. .".

cs:ActMood\#PRMS rdfs:subClassOf cs:ActMood\#INT;
  rdfs:label "promise";
  dc:title "promise";
  rdfs:comment "Definition: A commitment to perform an act (may be either solicited or unsolicited). The committer becomes responsible to the other party for executing the act, and, as a consequence, the other party may rely on the first party to perform or cause to perform the act.\r\n\n                        \n                           UsageNotes: Commitments may be retracted or cancelled.";
  dcterms:description "Definition: A commitment to perform an act (may be either solicited or unsolicited). The committer becomes responsible to the other party for executing the act, and, as a consequence, the other party may rely on the first party to perform or cause to perform the act.\r\n\n                        \n                           UsageNotes: Commitments may be retracted or cancelled.".

cs:ActMood\#APT rdfs:subClassOf cs:ActMood\#PRMS;
  rdfs:label "appointment";
  dc:title "appointment";
  rdfs:comment "Definition: An act that has been scheduled to be performed at a specific place and time.";
  dcterms:description "Definition: An act that has been scheduled to be performed at a specific place and time.".

cs:ActMood\#%5fActMoodPredicate rdfs:subClassOf cs:ActMood;
  rdfs:label "ActMoodPredicate";
  dc:title "ActMoodPredicate";
  rdfs:comment "Definition: An act that expresses condition statements for other acts.";
  dcterms:description "Definition: An act that expresses condition statements for other acts.".

cs:ActMood\#CRT rdfs:subClassOf cs:ActMood\#%5fActMoodPredicate;
  rdfs:label "criterion";
  dc:title "criterion";
  rdfs:comment "Deprecation Comment: \n                           This concept This codes should no longer be used.  Instead, set attribute Act.isCriterionInd to \"true\" and use the desired mood for your criterion.\r\n\n                        \n                           Definition: A condition that must be true for the source act to be considered.";
  dcterms:description "Deprecation Comment: \n                           This concept This codes should no longer be used.  Instead, set attribute Act.isCriterionInd to \"true\" and use the desired mood for your criterion.\r\n\n                        \n                           Definition: A condition that must be true for the source act to be considered.".

cs:ActMood\#EVN.CRT rdfs:subClassOf cs:ActMood\#CRT;
  rdfs:label "event criterion";
  dc:title "event criterion";
  rdfs:comment "Deprecation Comment: \n                           This concept This codes should no longer be used.  Instead, set attribute Act.isCriterionInd to \"true\" and use the desired mood for your criterion.\r\n\n                        \n                           Definition: A criterion (CRT) that has_match = an event (EVN).";
  dcterms:description "Deprecation Comment: \n                           This concept This codes should no longer be used.  Instead, set attribute Act.isCriterionInd to \"true\" and use the desired mood for your criterion.\r\n\n                        \n                           Definition: A criterion (CRT) that has_match = an event (EVN).".

cs:ActMood\#GOL.CRT rdfs:subClassOf cs:ActMood\#CRT;
  rdfs:label "goal criterion";
  dc:title "goal criterion";
  rdfs:comment "A criterion expressed over goals (ActMood.GOL).";
  dcterms:description "A criterion expressed over goals (ActMood.GOL).".

cs:ActMood\#INT.CRT rdfs:subClassOf cs:ActMood\#CRT;
  rdfs:label "intent criterion";
  dc:title "intent criterion";
  rdfs:comment "A criterion expressed over intents (ActMood.INT).";
  dcterms:description "A criterion expressed over intents (ActMood.INT).".

cs:ActMood\#PRMS.CRT rdfs:subClassOf cs:ActMood\#INT.CRT;
  rdfs:label "promise criterion";
  dc:title "promise criterion";
  rdfs:comment "A criterion expressed over promises (ActMood.PRMS).";
  dcterms:description "A criterion expressed over promises (ActMood.PRMS).".

cs:ActMood\#RQO.CRT rdfs:subClassOf cs:ActMood\#INT.CRT;
  rdfs:label "request criterion";
  dc:title "request criterion";
  rdfs:comment "A criterion expressed over requests or orders (ActMood.RQO).";
  dcterms:description "A criterion expressed over requests or orders (ActMood.RQO).".

cs:ActMood\#RSK.CRT rdfs:subClassOf cs:ActMood\#CRT;
  rdfs:label "risk criterion";
  dc:title "risk criterion";
  rdfs:comment "A criterion expressed over risks (ActMood.RSK).";
  dcterms:description "A criterion expressed over risks (ActMood.RSK).".

cs:ActMood\#EXPEC rdfs:subClassOf cs:ActMood\#%5fActMoodPredicate;
  rdfs:label "expectation";
  dc:title "expectation";
  rdfs:comment "Definition: An act that is considered to have some noteworthy likelihood of occurring in the future (has_match = event).\r\n\n                        \n                           Examples:Prognosis of a condition, Expected date of discharge from hospital, patient will likely need an emergency decompression of the intracranial pressure by morning.\r\n\n                        \n                           UsageNotes:INT (intent) reflects a plan for the future, which is a declaration to do something. This contrasts with expectation, which is a prediction that something will happen in the future. GOL (goal) reflects a hope rather than a prediction. RSK (risk) reflects a potential negative event that may or may not be expected to happen.";
  dcterms:description "Definition: An act that is considered to have some noteworthy likelihood of occurring in the future (has_match = event).\r\n\n                        \n                           Examples:Prognosis of a condition, Expected date of discharge from hospital, patient will likely need an emergency decompression of the intracranial pressure by morning.\r\n\n                        \n                           UsageNotes:INT (intent) reflects a plan for the future, which is a declaration to do something. This contrasts with expectation, which is a prediction that something will happen in the future. GOL (goal) reflects a hope rather than a prediction. RSK (risk) reflects a potential negative event that may or may not be expected to happen.".

cs:ActMood\#GOL rdfs:subClassOf cs:ActMood\#EXPEC;
  rdfs:label "Goal";
  dc:title "Goal";
  rdfs:comment "Definition: An expectation that is considered to be desirable to occur in the future \r\n\n                        \n                           Examples:Target weight below 80Kg, Stop smoking, Regain ability to walk, goal is to administer thrombolytics to candidate patients presenting with acute myocardial infarction.\r\n\n                        \n                           UsageNotes: INT (intent) reflects a plan for the future, which is a declaration to do something.  This contrasts with goal which doesn't represent an intention to act, merely a hope for an eventual result.  A goal is distinct from the intended actions to reach that goal.  \"I will reduce the dose of drug x to 20mg\" is an intent.  \"I hope to be able to get the patient to the point where I can reduce the dose of drug x to 20mg\" is a goal. EXPEC (expectation) reflects a prediction rather than a hope. RSK (risk) reflects a potential negative event rather than a hope.";
  dcterms:description "Definition: An expectation that is considered to be desirable to occur in the future \r\n\n                        \n                           Examples:Target weight below 80Kg, Stop smoking, Regain ability to walk, goal is to administer thrombolytics to candidate patients presenting with acute myocardial infarction.\r\n\n                        \n                           UsageNotes: INT (intent) reflects a plan for the future, which is a declaration to do something.  This contrasts with goal which doesn't represent an intention to act, merely a hope for an eventual result.  A goal is distinct from the intended actions to reach that goal.  \"I will reduce the dose of drug x to 20mg\" is an intent.  \"I hope to be able to get the patient to the point where I can reduce the dose of drug x to 20mg\" is a goal. EXPEC (expectation) reflects a prediction rather than a hope. RSK (risk) reflects a potential negative event rather than a hope.".

cs:ActMood\#RSK rdfs:subClassOf cs:ActMood\#EXPEC;
  rdfs:label "risk";
  dc:title "risk";
  rdfs:comment "Definition:An act that may occur in the future and which is regarded as undesirable \r\n\n                        \n                           Examples:Increased risk of DVT, at risk for sub-acute bacterial endocarditis.\r\n\n                        \n                           UsageNotes:Note: An observation in RSK mood expresses the undesirable act, and not the underlying risk factor. A risk factor that is present (e.g. obesity, smoking, etc) should be expressed in event mood. INT (intent) reflects a plan for the future, which is a declaration to do something. This contrasts with RSK (risk), which is the potential that something negative will occur that may or may not ever happen. GOL (goal) reflects a hope to achieve something. EXPEC (expectation) is the prediction of a positive or negative event. This contrasts with RSK (risk), which is the potential that something negative will occur that may or may not ever happen, and may not be expected to happen.";
  dcterms:description "Definition:An act that may occur in the future and which is regarded as undesirable \r\n\n                        \n                           Examples:Increased risk of DVT, at risk for sub-acute bacterial endocarditis.\r\n\n                        \n                           UsageNotes:Note: An observation in RSK mood expresses the undesirable act, and not the underlying risk factor. A risk factor that is present (e.g. obesity, smoking, etc) should be expressed in event mood. INT (intent) reflects a plan for the future, which is a declaration to do something. This contrasts with RSK (risk), which is the potential that something negative will occur that may or may not ever happen. GOL (goal) reflects a hope to achieve something. EXPEC (expectation) is the prediction of a positive or negative event. This contrasts with RSK (risk), which is the potential that something negative will occur that may or may not ever happen, and may not be expected to happen.".

cs:ActMood\#OPT rdfs:subClassOf cs:ActMood\#%5fActMoodPredicate;
  rdfs:label "option";
  dc:title "option";
  rdfs:comment "Definition: One of a set of acts that specify an option for the property values that the parent act may have. Typically used in definitions or orders to describe alternatives. An option can only be used as a group, that is, all assigned values must be used together. The actual mood of the act is the same as the parent act, and they must be linked by an actrelationship with type = OPTN.";
  dcterms:description "Definition: One of a set of acts that specify an option for the property values that the parent act may have. Typically used in definitions or orders to describe alternatives. An option can only be used as a group, that is, all assigned values must be used together. The actual mood of the act is the same as the parent act, and they must be linked by an actrelationship with type = OPTN.".

# - vs:v3-ActPharmacySupplyType ------------------------------------------------

vs:v3-ActPharmacySupplyType a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "ActPharmacySupplyType";
  dc:title "ActPharmacySupplyType";
  rdfs:comment " Identifies types of dispensing events";
  dcterms:description " Identifies types of dispensing events";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-ActPriority ----------------------------------------------------------

vs:v3-ActPriority a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActPriority";
  dc:title "v3 Code System ActPriority";
  rdfs:comment " A set of codes (e.g., for routine, emergency), specifying the urgency under which the Act happened, can happen, is happening, is intended to happen, or is requested/demanded to happen.";
  dcterms:description " A set of codes (e.g., for routine, emergency), specifying the urgency under which the Act happened, can happen, is happening, is intended to happen, or is requested/demanded to happen.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActPriority.

cs:ActPriority.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActPriority";
  dc:title "v3 Code System ActPriority";
  rdfs:comment " A set of codes (e.g., for routine, emergency), specifying the urgency under which the Act happened, can happen, is happening, is intended to happen, or is requested/demanded to happen.";
  dcterms:description " A set of codes (e.g., for routine, emergency), specifying the urgency under which the Act happened, can happen, is happening, is intended to happen, or is requested/demanded to happen.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActPriority a fhir:Concept.

cs:ActPriority\#A rdfs:subClassOf cs:ActPriority;
  rdfs:label "ASAP";
  dc:title "ASAP";
  rdfs:comment "As soon as possible, next highest priority after stat.";
  dcterms:description "As soon as possible, next highest priority after stat.".

cs:ActPriority\#CR rdfs:subClassOf cs:ActPriority;
  rdfs:label "callback results";
  dc:title "callback results";
  rdfs:comment "Filler should contact the placer as soon as results are available, even for preliminary results.  (Was \"C\" in HL7 verion 2.3's reporting priority.)";
  dcterms:description "Filler should contact the placer as soon as results are available, even for preliminary results.  (Was \"C\" in HL7 verion 2.3's reporting priority.)".

cs:ActPriority\#CS rdfs:subClassOf cs:ActPriority;
  rdfs:label "callback for scheduling";
  dc:title "callback for scheduling";
  rdfs:comment "Filler should contact the placer (or target) to schedule the service.  (Was \"C\" in HL7 version 2.3's TQ-priority component.)";
  dcterms:description "Filler should contact the placer (or target) to schedule the service.  (Was \"C\" in HL7 version 2.3's TQ-priority component.)".

cs:ActPriority\#CSP rdfs:subClassOf cs:ActPriority\#CS;
  rdfs:label "callback placer for scheduling";
  dc:title "callback placer for scheduling";
  rdfs:comment "Filler should contact the placer to schedule the service.  (Was \"C\" in HL7 version 2.3's TQ-priority component.)";
  dcterms:description "Filler should contact the placer to schedule the service.  (Was \"C\" in HL7 version 2.3's TQ-priority component.)".

cs:ActPriority\#CSR rdfs:subClassOf cs:ActPriority\#CS;
  rdfs:label "contact recipient for scheduling";
  dc:title "contact recipient for scheduling";
  rdfs:comment "Filler should contact the service recipient (target) to schedule the service.  (Was \"C\" in HL7 version 2.3's TQ-priority component.)";
  dcterms:description "Filler should contact the service recipient (target) to schedule the service.  (Was \"C\" in HL7 version 2.3's TQ-priority component.)".

cs:ActPriority\#EL rdfs:subClassOf cs:ActPriority;
  rdfs:label "elective";
  dc:title "elective";
  rdfs:comment "Beneficial to the patient but not essential for survival.";
  dcterms:description "Beneficial to the patient but not essential for survival.".

cs:ActPriority\#EM rdfs:subClassOf cs:ActPriority;
  rdfs:label "emergency";
  dc:title "emergency";
  rdfs:comment "An unforeseen combination of circumstances or the resulting state that calls for immediate action.";
  dcterms:description "An unforeseen combination of circumstances or the resulting state that calls for immediate action.".

cs:ActPriority\#P rdfs:subClassOf cs:ActPriority;
  rdfs:label "preop";
  dc:title "preop";
  rdfs:comment "Used to indicate that a service is to be performed prior to a scheduled surgery.  When ordering a service and using the pre-op priority, a check is done to see the amount of time that must be allowed for performance of the service.  When the order is placed, a message can be generated indicating the time needed for the service so that it is not ordered in conflict with a scheduled operation.";
  dcterms:description "Used to indicate that a service is to be performed prior to a scheduled surgery.  When ordering a service and using the pre-op priority, a check is done to see the amount of time that must be allowed for performance of the service.  When the order is placed, a message can be generated indicating the time needed for the service so that it is not ordered in conflict with a scheduled operation.".

cs:ActPriority\#PRN rdfs:subClassOf cs:ActPriority;
  rdfs:label "as needed";
  dc:title "as needed";
  rdfs:comment "An \"as needed\" order should be accompanied by a description of what constitutes a need. This description is represented by an observation service predicate as a precondition.";
  dcterms:description "An \"as needed\" order should be accompanied by a description of what constitutes a need. This description is represented by an observation service predicate as a precondition.".

cs:ActPriority\#R rdfs:subClassOf cs:ActPriority;
  rdfs:label "routine";
  dc:title "routine";
  rdfs:comment "Routine service, do at usual work hours.";
  dcterms:description "Routine service, do at usual work hours.".

cs:ActPriority\#RR rdfs:subClassOf cs:ActPriority;
  rdfs:label "rush reporting";
  dc:title "rush reporting";
  rdfs:comment "A report should be prepared and sent as quickly as possible.";
  dcterms:description "A report should be prepared and sent as quickly as possible.".

cs:ActPriority\#S rdfs:subClassOf cs:ActPriority;
  rdfs:label "stat";
  dc:title "stat";
  rdfs:comment "With highest priority (e.g., emergency).";
  dcterms:description "With highest priority (e.g., emergency).".

cs:ActPriority\#T rdfs:subClassOf cs:ActPriority;
  rdfs:label "timing critical";
  dc:title "timing critical";
  rdfs:comment "It is critical to come as close as possible to the requested time (e.g., for a through antimicrobial level).";
  dcterms:description "It is critical to come as close as possible to the requested time (e.g., for a through antimicrobial level).".

cs:ActPriority\#UD rdfs:subClassOf cs:ActPriority;
  rdfs:label "use as directed";
  dc:title "use as directed";
  rdfs:comment "Drug is to be used as directed by the prescriber.";
  dcterms:description "Drug is to be used as directed by the prescriber.".

cs:ActPriority\#UR rdfs:subClassOf cs:ActPriority;
  rdfs:label "urgent";
  dc:title "urgent";
  rdfs:comment "Calls for prompt action.";
  dcterms:description "Calls for prompt action.".

# - vs:v3-ActReason ------------------------------------------------------------

vs:v3-ActReason a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActReason";
  dc:title "v3 Code System ActReason";
  rdfs:comment " A set of codes specifying the motivation, cause, or rationale of an Act, when such rationale is not reasonably represented as an ActRelationship of type \"has reason\" linking to another Act.  Examples:\r\nExample reasons that might qualify for being coded in this field might be: \"routine requirement\", \"infectious disease reporting requirement\", \"on patient request\", \"required by law\".";
  dcterms:description " A set of codes specifying the motivation, cause, or rationale of an Act, when such rationale is not reasonably represented as an ActRelationship of type \"has reason\" linking to another Act.  Examples:\r\nExample reasons that might qualify for being coded in this field might be: \"routine requirement\", \"infectious disease reporting requirement\", \"on patient request\", \"required by law\".";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActReason.

cs:ActReason.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActReason";
  dc:title "v3 Code System ActReason";
  rdfs:comment " A set of codes specifying the motivation, cause, or rationale of an Act, when such rationale is not reasonably represented as an ActRelationship of type \"has reason\" linking to another Act.  Examples:\r\nExample reasons that might qualify for being coded in this field might be: \"routine requirement\", \"infectious disease reporting requirement\", \"on patient request\", \"required by law\".";
  dcterms:description " A set of codes specifying the motivation, cause, or rationale of an Act, when such rationale is not reasonably represented as an ActRelationship of type \"has reason\" linking to another Act.  Examples:\r\nExample reasons that might qualify for being coded in this field might be: \"routine requirement\", \"infectious disease reporting requirement\", \"on patient request\", \"required by law\".";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActReason a fhir:Concept.

cs:ActReason\#%5fActAccommodationReason rdfs:subClassOf cs:ActReason;
  rdfs:label "ActAccommodationReason";
  dc:title "ActAccommodationReason";
  rdfs:comment "Identifies the reason the patient is assigned to this accommodation type";
  dcterms:description "Identifies the reason the patient is assigned to this accommodation type".

cs:ActReason\#ACCREQNA rdfs:subClassOf cs:ActReason\#%5fActAccommodationReason;
  rdfs:label "Accommodation Requested Not Available";
  dc:title "Accommodation Requested Not Available";
  rdfs:comment "Accommodation requested is not available.";
  dcterms:description "Accommodation requested is not available.".

cs:ActReason\#FLRCNV rdfs:subClassOf cs:ActReason\#%5fActAccommodationReason;
  rdfs:label "Floor Convenience";
  dc:title "Floor Convenience";
  rdfs:comment "Accommodation is assigned for floor convenience.";
  dcterms:description "Accommodation is assigned for floor convenience.".

cs:ActReason\#MEDNEC rdfs:subClassOf cs:ActReason\#%5fActAccommodationReason;
  rdfs:label "Medical Necessity";
  dc:title "Medical Necessity";
  rdfs:comment "Required for medical reasons(s).";
  dcterms:description "Required for medical reasons(s).".

cs:ActReason\#PAT rdfs:subClassOf cs:ActReason\#%5fActAccommodationReason;
  rdfs:label "Patient request";
  dc:title "Patient request";
  rdfs:comment "The Patient requested the action";
  dcterms:description "The Patient requested the action".

cs:ActReason\#%5fActCoverageReason rdfs:subClassOf cs:ActReason;
  rdfs:label "ActCoverageReason";
  dc:title "ActCoverageReason";
  rdfs:comment "Description:Codes used to specify reasons or criteria relating to coverage provided under a policy or program.  May be used to convey reasons pertaining to coverage contractual provisions, including criteria for eligibility, coverage limitations, coverage maximums, or financial participation required of covered parties.";
  dcterms:description "Description:Codes used to specify reasons or criteria relating to coverage provided under a policy or program.  May be used to convey reasons pertaining to coverage contractual provisions, including criteria for eligibility, coverage limitations, coverage maximums, or financial participation required of covered parties.".

cs:ActReason\#%5fEligibilityActReasonCode rdfs:subClassOf cs:ActReason\#%5fActCoverageReason;
  rdfs:label "EligibilityActReasonCode";
  dc:title "EligibilityActReasonCode";
  rdfs:comment "Identifies the reason or rational for why a person is eligibile for benefits under an insurance policy or progam. \r\n\n                        \n                           Examples:  A person is a claimant under an automobile insurance policy are client deceased & adopted client has been given a new policy identifier.  A new employee is eligible for health insurance as an employment benefit.  A person meets a government program eligibility criteria for financial, age or health status.";
  dcterms:description "Identifies the reason or rational for why a person is eligibile for benefits under an insurance policy or progam. \r\n\n                        \n                           Examples:  A person is a claimant under an automobile insurance policy are client deceased & adopted client has been given a new policy identifier.  A new employee is eligible for health insurance as an employment benefit.  A person meets a government program eligibility criteria for financial, age or health status.".

cs:ActReason\#%5fActIneligibilityReason rdfs:subClassOf cs:ActReason\#%5fEligibilityActReasonCode;
  rdfs:label "ActIneligibilityReason";
  dc:title "ActIneligibilityReason";
  rdfs:comment "Identifies the reason or rational for why a person is not eligibile for benefits under an insurance policy.\r\n\n                        Examples are client deceased & adopted client has been given a new policy identifier.";
  dcterms:description "Identifies the reason or rational for why a person is not eligibile for benefits under an insurance policy.\r\n\n                        Examples are client deceased & adopted client has been given a new policy identifier.".

cs:ActReason\#COVSUS rdfs:subClassOf cs:ActReason\#%5fActIneligibilityReason;
  rdfs:label "coverage suspended";
  dc:title "coverage suspended";
  rdfs:comment "When a client has no contact with the health system for an extended period, coverage is suspended.  Client will be reinstated to original start date upon proof of identification, residency etc.\r\n\n                        Example: Coverage may be suspended during a strike situation, when employer benefits for employees are not covered (i.e. not in effect).";
  dcterms:description "When a client has no contact with the health system for an extended period, coverage is suspended.  Client will be reinstated to original start date upon proof of identification, residency etc.\r\n\n                        Example: Coverage may be suspended during a strike situation, when employer benefits for employees are not covered (i.e. not in effect).".

cs:ActReason\#DECSD rdfs:subClassOf cs:ActReason\#%5fActIneligibilityReason;
  rdfs:label "deceased";
  dc:title "deceased";
  rdfs:comment "Client deceased.";
  dcterms:description "Client deceased.".

cs:ActReason\#REGERR rdfs:subClassOf cs:ActReason\#%5fActIneligibilityReason;
  rdfs:label "registered in error";
  dc:title "registered in error";
  rdfs:comment "Client was registered in error.";
  dcterms:description "Client was registered in error.".

cs:ActReason\#%5fCoverageEligibilityReason rdfs:subClassOf cs:ActReason\#%5fEligibilityActReasonCode;
  rdfs:label "CoverageEligibilityReason";
  dc:title "CoverageEligibilityReason";
  rdfs:comment "Definition: Identifies the reason or rational for why a person is eligibile for benefits under an insurance policy or progam. \r\n\n                        \n                           Examples:  A person is a claimant under an automobile insurance policy are client deceased & adopted client has been given a new policy identifier.  A new employee is eligible for health insurance as an employment benefit.  A person meets a government program eligibility criteria for financial, age or health status.";
  dcterms:description "Definition: Identifies the reason or rational for why a person is eligibile for benefits under an insurance policy or progam. \r\n\n                        \n                           Examples:  A person is a claimant under an automobile insurance policy are client deceased & adopted client has been given a new policy identifier.  A new employee is eligible for health insurance as an employment benefit.  A person meets a government program eligibility criteria for financial, age or health status.".

cs:ActReason\#AGE rdfs:subClassOf cs:ActReason\#%5fCoverageEligibilityReason;
  rdfs:label "age eligibility";
  dc:title "age eligibility";
  rdfs:comment "A person becomes eligible for a program based on age.\r\n\n                        \n                           Example:  In the U.S., a person who is 65 years of age or older is eligible for Medicare.";
  dcterms:description "A person becomes eligible for a program based on age.\r\n\n                        \n                           Example:  In the U.S., a person who is 65 years of age or older is eligible for Medicare.".

cs:ActReason\#CRIME rdfs:subClassOf cs:ActReason\#%5fCoverageEligibilityReason;
  rdfs:label "crime victim";
  dc:title "crime victim";
  rdfs:comment "A person becomes eligible for insurance or a program because of crime related health condition or injury. \r\n\n                        \n                           Example:  A person is a claimant under the U.S. Crime Victims Compensation program.";
  dcterms:description "A person becomes eligible for insurance or a program because of crime related health condition or injury. \r\n\n                        \n                           Example:  A person is a claimant under the U.S. Crime Victims Compensation program.".

cs:ActReason\#DIS rdfs:subClassOf cs:ActReason\#%5fCoverageEligibilityReason;
  rdfs:label "disability";
  dc:title "disability";
  rdfs:comment "A person becomes a claimant under a disability income insurance policy or a disability rehabilitation program because of a health condition or injury which limits the person's ability to earn an income or function without institutionalization.";
  dcterms:description "A person becomes a claimant under a disability income insurance policy or a disability rehabilitation program because of a health condition or injury which limits the person's ability to earn an income or function without institutionalization.".

cs:ActReason\#EMPLOY rdfs:subClassOf cs:ActReason\#%5fCoverageEligibilityReason;
  rdfs:label "employment benefit";
  dc:title "employment benefit";
  rdfs:comment "A person becomes eligible for insurance provided as an employment benefit based on employment status.";
  dcterms:description "A person becomes eligible for insurance provided as an employment benefit based on employment status.".

cs:ActReason\#FINAN rdfs:subClassOf cs:ActReason\#%5fCoverageEligibilityReason;
  rdfs:label "financial eligibility";
  dc:title "financial eligibility";
  rdfs:comment "A person becomes eligible for a program based on financial criteria.\r\n\n                        \n                           Example:  A person whose family income is below a financial threshold for eligibility for Medicaid or SCHIP.";
  dcterms:description "A person becomes eligible for a program based on financial criteria.\r\n\n                        \n                           Example:  A person whose family income is below a financial threshold for eligibility for Medicaid or SCHIP.".

cs:ActReason\#HEALTH rdfs:subClassOf cs:ActReason\#%5fCoverageEligibilityReason;
  rdfs:label "health status";
  dc:title "health status";
  rdfs:comment "A person becomes eligible for a program because of a qualifying health condition or injury. \r\n\n                        \n                           Examples:  A person is determined to have a qualifying health conditions include pregnancy, HIV/AIDs, tuberculosis, end stage renal disease, breast or cervical cancer, or other condition requiring specialized health services, hospice, institutional or community based care provided under a program";
  dcterms:description "A person becomes eligible for a program because of a qualifying health condition or injury. \r\n\n                        \n                           Examples:  A person is determined to have a qualifying health conditions include pregnancy, HIV/AIDs, tuberculosis, end stage renal disease, breast or cervical cancer, or other condition requiring specialized health services, hospice, institutional or community based care provided under a program".

cs:ActReason\#MULTI rdfs:subClassOf cs:ActReason\#%5fCoverageEligibilityReason;
  rdfs:label "multiple criteria eligibility";
  dc:title "multiple criteria eligibility";
  rdfs:comment "A person becomes eligible for a program based on more than one criterion.\r\n\n                        \n                           Examples:  In the U.S., a child whose familiy income meets Medicaid financial thresholds and whose age is less than 18 is eligible for the Early and Periodic Screening, Diagnostic, and Treatment program (EPSDT).  A person whose family income meets Medicaid financial thresholds and whose age is 65 years or older is eligible for Medicaid and Medicare, and are referred to as dual eligibles.";
  dcterms:description "A person becomes eligible for a program based on more than one criterion.\r\n\n                        \n                           Examples:  In the U.S., a child whose familiy income meets Medicaid financial thresholds and whose age is less than 18 is eligible for the Early and Periodic Screening, Diagnostic, and Treatment program (EPSDT).  A person whose family income meets Medicaid financial thresholds and whose age is 65 years or older is eligible for Medicaid and Medicare, and are referred to as dual eligibles.".

cs:ActReason\#PNC rdfs:subClassOf cs:ActReason\#%5fCoverageEligibilityReason;
  rdfs:label "property and casualty condition";
  dc:title "property and casualty condition";
  rdfs:comment "A person becomes a claimant under a property and casualty insurance policy because of a related health condition or injury resulting from a circumstance covered under the terms of the policy. \r\n\n                        \n                           Example:  A person is a claimant under a homeowners insurance policy because of an injury sustained on the policyholderaTMs premises.";
  dcterms:description "A person becomes a claimant under a property and casualty insurance policy because of a related health condition or injury resulting from a circumstance covered under the terms of the policy. \r\n\n                        \n                           Example:  A person is a claimant under a homeowners insurance policy because of an injury sustained on the policyholderaTMs premises.".

cs:ActReason\#STATUTORY rdfs:subClassOf cs:ActReason\#%5fCoverageEligibilityReason;
  rdfs:label "statutory eligibility";
  dc:title "statutory eligibility";
  rdfs:comment "A person becomes eligible for a program based on statutory criteria.\r\n\n                        \n                           Examples:  A person is a member of an indigenous group, a veteran of military service, or  in the U.S., a recipient of adoption assistance and foster care under Title IV-E of the Social Security.";
  dcterms:description "A person becomes eligible for a program based on statutory criteria.\r\n\n                        \n                           Examples:  A person is a member of an indigenous group, a veteran of military service, or  in the U.S., a recipient of adoption assistance and foster care under Title IV-E of the Social Security.".

cs:ActReason\#VEHIC rdfs:subClassOf cs:ActReason\#%5fCoverageEligibilityReason;
  rdfs:label "motor vehicle accident victim";
  dc:title "motor vehicle accident victim";
  rdfs:comment "A person becomes a claimant under a motor vehicle accident insurance because of a motor vehicle accident related health condition or injury.";
  dcterms:description "A person becomes a claimant under a motor vehicle accident insurance because of a motor vehicle accident related health condition or injury.".

cs:ActReason\#WORK rdfs:subClassOf cs:ActReason\#%5fCoverageEligibilityReason;
  rdfs:label "work related";
  dc:title "work related";
  rdfs:comment "A person becomes eligible for insurance or a program because of a work related health condition or injury. \r\n\n                        \n                           Example:  A person is a claimant under the U.S. Black Lung Program.";
  dcterms:description "A person becomes eligible for insurance or a program because of a work related health condition or injury. \r\n\n                        \n                           Example:  A person is a claimant under the U.S. Black Lung Program.".

cs:ActReason\#%5fActInformationManagementReason rdfs:subClassOf cs:ActReason;
  rdfs:label "ActInformationManagementReason";
  dc:title "ActInformationManagementReason";
  rdfs:comment "Description:The rationale or purpose for an act relating to information management, such as archiving information for the purpose of complying with an enterprise data retention policy.";
  dcterms:description "Description:The rationale or purpose for an act relating to information management, such as archiving information for the purpose of complying with an enterprise data retention policy.".

cs:ActReason\#%5fActHealthInformationManagementReason rdfs:subClassOf cs:ActReason\#%5fActInformationManagementReason;
  rdfs:label "ActHealthInformationManagementReason";
  dc:title "ActHealthInformationManagementReason";
  rdfs:comment "Description:The rationale or purpose for an act relating to health information management, such as archiving information for the purpose of complying with an organization policy or jurisdictional law relating to  data retention.";
  dcterms:description "Description:The rationale or purpose for an act relating to health information management, such as archiving information for the purpose of complying with an organization policy or jurisdictional law relating to  data retention.".

cs:ActReason\#%5fActConsentInformationAccessOverrideReason rdfs:subClassOf cs:ActReason\#%5fActHealthInformationManagementReason;
  rdfs:label "ActConsentInformationAccessOverrideReason";
  dc:title "ActConsentInformationAccessOverrideReason";
  rdfs:comment "To perform one or more operations on information to which the patient has not consented as deemed necessary by authorized entities for providing care in the best interest of the patient; providing immediately needed health care for an emergent condition;  or for protecting public or third party safety.\r\n\n                        \n                           Usage Notes: Used to convey the reason that a provider or other entity may or has accessed personal healthcare information.  Typically, this involves overriding the subject's consent directives.";
  dcterms:description "To perform one or more operations on information to which the patient has not consented as deemed necessary by authorized entities for providing care in the best interest of the patient; providing immediately needed health care for an emergent condition;  or for protecting public or third party safety.\r\n\n                        \n                           Usage Notes: Used to convey the reason that a provider or other entity may or has accessed personal healthcare information.  Typically, this involves overriding the subject's consent directives.".

cs:ActReason\#OVRER rdfs:subClassOf cs:ActReason\#%5fActConsentInformationAccessOverrideReason;
  rdfs:label "emergency treatment override";
  dc:title "emergency treatment override";
  rdfs:comment "To perform one or more operations on information to which the patient has not consented by authorized entities for treating a condition which poses an immediate threat to the patient's health and which requires immediate medical intervention.\r\n\n                        \n                           Usage Notes: The patient is unable to provide consent, but the provider determines they have an urgent healthcare related reason to access the record.";
  dcterms:description "To perform one or more operations on information to which the patient has not consented by authorized entities for treating a condition which poses an immediate threat to the patient's health and which requires immediate medical intervention.\r\n\n                        \n                           Usage Notes: The patient is unable to provide consent, but the provider determines they have an urgent healthcare related reason to access the record.".

cs:ActReason\#OVRPJ rdfs:subClassOf cs:ActReason\#%5fActConsentInformationAccessOverrideReason;
  rdfs:label "professional judgment override";
  dc:title "professional judgment override";
  rdfs:comment "To perform one or more operations on information to which the patient declined to consent for providing health care.\r\n\n                        \n                           Usage Notes: The patient, while able to give consent, has not.  However the provider believes it is in the patient's interest to access the record without patient consent.";
  dcterms:description "To perform one or more operations on information to which the patient declined to consent for providing health care.\r\n\n                        \n                           Usage Notes: The patient, while able to give consent, has not.  However the provider believes it is in the patient's interest to access the record without patient consent.".

cs:ActReason\#OVRPS rdfs:subClassOf cs:ActReason\#%5fActConsentInformationAccessOverrideReason;
  rdfs:label "public safety override";
  dc:title "public safety override";
  rdfs:comment "To perform one or more operations on information to which the patient has not consented for public safety reasons.\r\n\n                        \n                           Usage Notes: The patient, while able to give consent, has not.  However, the provider believes that access to masked patient information is justified because of concerns related to public safety.";
  dcterms:description "To perform one or more operations on information to which the patient has not consented for public safety reasons.\r\n\n                        \n                           Usage Notes: The patient, while able to give consent, has not.  However, the provider believes that access to masked patient information is justified because of concerns related to public safety.".

cs:ActReason\#OVRTPS rdfs:subClassOf cs:ActReason\#%5fActConsentInformationAccessOverrideReason;
  rdfs:label "third party safety override";
  dc:title "third party safety override";
  rdfs:comment "To perform one or more operations on information to which the patient has not consented for third party safety.  \r\n\n                        \n                           Usage Notes: The patient, while able to give consent, has not.  However, the provider believes that access to masked patient information is justified because of concerns related to the health and safety of one or more third parties.";
  dcterms:description "To perform one or more operations on information to which the patient has not consented for third party safety.  \r\n\n                        \n                           Usage Notes: The patient, while able to give consent, has not.  However, the provider believes that access to masked patient information is justified because of concerns related to the health and safety of one or more third parties.".

cs:ActReason\#PurposeOfUse rdfs:subClassOf cs:ActReason\#%5fActHealthInformationManagementReason;
  rdfs:label "purpose of use";
  dc:title "purpose of use";
  rdfs:comment "Reason for performing one or more operations on information, which may be permitted by source system's security policy in accordance with one or more privacy policies and consent directives.\r\n\n                        \n                           Usage Notes: The rationale or purpose for an act relating to the management of personal health information, such as collecting personal health information for research or public health purposes.";
  dcterms:description "Reason for performing one or more operations on information, which may be permitted by source system's security policy in accordance with one or more privacy policies and consent directives.\r\n\n                        \n                           Usage Notes: The rationale or purpose for an act relating to the management of personal health information, such as collecting personal health information for research or public health purposes.".

cs:ActReason\#HMARKT rdfs:subClassOf cs:ActReason\#PurposeOfUse;
  rdfs:label "healthcare marketing";
  dc:title "healthcare marketing";
  rdfs:comment "To perform one or more operations on information for marketing services and products related to health care.";
  dcterms:description "To perform one or more operations on information for marketing services and products related to health care.".

cs:ActReason\#HOPERAT rdfs:subClassOf cs:ActReason\#PurposeOfUse;
  rdfs:label "healthcare operations";
  dc:title "healthcare operations";
  rdfs:comment "To perform one or more operations on information used for conducting administrative and contractual activities related to the provision of health care.";
  dcterms:description "To perform one or more operations on information used for conducting administrative and contractual activities related to the provision of health care.".

cs:ActReason\#DONAT rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "donation";
  dc:title "donation";
  rdfs:comment "To perform one or more operations on information used for cadaveric organ, eye or tissue donation.";
  dcterms:description "To perform one or more operations on information used for cadaveric organ, eye or tissue donation.".

cs:ActReason\#FRAUD rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "fraud";
  dc:title "fraud";
  rdfs:comment "To perform one or more operations on information used for fraud detection and prevention processes.";
  dcterms:description "To perform one or more operations on information used for fraud detection and prevention processes.".

cs:ActReason\#GOV rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "government";
  dc:title "government";
  rdfs:comment "To perform one or more operations on information used within government processes.";
  dcterms:description "To perform one or more operations on information used within government processes.".

cs:ActReason\#HACCRED rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "health accreditation";
  dc:title "health accreditation";
  rdfs:comment "To perform one or more operations on information for conducting activities related to meeting accreditation criteria.";
  dcterms:description "To perform one or more operations on information for conducting activities related to meeting accreditation criteria.".

cs:ActReason\#HCOMPL rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "health compliance";
  dc:title "health compliance";
  rdfs:comment "To perform one or more operations on information used for conducting activities required to meet a mandate.";
  dcterms:description "To perform one or more operations on information used for conducting activities required to meet a mandate.".

cs:ActReason\#HDECD rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "decedent";
  dc:title "decedent";
  rdfs:comment "To perform one or more operations on information used for handling deceased patient matters.";
  dcterms:description "To perform one or more operations on information used for handling deceased patient matters.".

cs:ActReason\#HDIRECT rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "directory";
  dc:title "directory";
  rdfs:comment "To perform one or more operation operations on information used to manage a patient directory.\r\n\n                        \n                           Examples: \n                        \r\n\n                        \n                           facility\n                           enterprise\n                           payer\n                           health information exchange patient directory";
  dcterms:description "To perform one or more operation operations on information used to manage a patient directory.\r\n\n                        \n                           Examples: \n                        \r\n\n                        \n                           facility\n                           enterprise\n                           payer\n                           health information exchange patient directory".

cs:ActReason\#HLEGAL rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "legal";
  dc:title "legal";
  rdfs:comment "To perform one or more operations on information for conducting activities required by legal proceeding.";
  dcterms:description "To perform one or more operations on information for conducting activities required by legal proceeding.".

cs:ActReason\#HOUTCOMS rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "health outcome measure";
  dc:title "health outcome measure";
  rdfs:comment "To perform one or more operations on information used for assessing results and comparative effectiveness achieved by health care practices and interventions.";
  dcterms:description "To perform one or more operations on information used for assessing results and comparative effectiveness achieved by health care practices and interventions.".

cs:ActReason\#HPRGRP rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "health program reporting";
  dc:title "health program reporting";
  rdfs:comment "To perform one or more operations on information used for conducting activities to meet program accounting requirements.";
  dcterms:description "To perform one or more operations on information used for conducting activities to meet program accounting requirements.".

cs:ActReason\#HQUALIMP rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "health quality improvement";
  dc:title "health quality improvement";
  rdfs:comment "To perform one or more operations on information used for conducting administrative activities to improve health care quality.";
  dcterms:description "To perform one or more operations on information used for conducting administrative activities to improve health care quality.".

cs:ActReason\#HSYSADMIN rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "health system administration";
  dc:title "health system administration";
  rdfs:comment "To perform one or more operations on information to administer the electronic systems used for the delivery of health care.";
  dcterms:description "To perform one or more operations on information to administer the electronic systems used for the delivery of health care.".

cs:ActReason\#MEMADMIN rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "member administration";
  dc:title "member administration";
  rdfs:comment "To perform one or more operations on information to administer health care coverage to an enrollee under a policy or program.";
  dcterms:description "To perform one or more operations on information to administer health care coverage to an enrollee under a policy or program.".

cs:ActReason\#PATADMIN rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "patient administration";
  dc:title "patient administration";
  rdfs:comment "To perform one or more operations on information used for operational activities conducted to administer the delivery of health care to a patient.";
  dcterms:description "To perform one or more operations on information used for operational activities conducted to administer the delivery of health care to a patient.".

cs:ActReason\#PATSFTY rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "patient safety";
  dc:title "patient safety";
  rdfs:comment "To perform one or more operations on information in processes related to ensuring the safety of health care.";
  dcterms:description "To perform one or more operations on information in processes related to ensuring the safety of health care.".

cs:ActReason\#PERFMSR rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "performance measure";
  dc:title "performance measure";
  rdfs:comment "To perform one or more operations on information used for monitoring performance of recommended health care practices and interventions.";
  dcterms:description "To perform one or more operations on information used for monitoring performance of recommended health care practices and interventions.".

cs:ActReason\#RECORDMGT rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "records management";
  dc:title "records management";
  rdfs:comment "To perform one or more operations on information used within the health records management process.";
  dcterms:description "To perform one or more operations on information used within the health records management process.".

cs:ActReason\#TRAIN rdfs:subClassOf cs:ActReason\#HOPERAT;
  rdfs:label "training";
  dc:title "training";
  rdfs:comment "To perform one or more operations on information used in training and education.";
  dcterms:description "To perform one or more operations on information used in training and education.".

cs:ActReason\#HPAYMT rdfs:subClassOf cs:ActReason\#PurposeOfUse;
  rdfs:label "healthcare payment";
  dc:title "healthcare payment";
  rdfs:comment "To perform one or more operations on information for conducting financial or contractual activities related to payment for provision of health care.";
  dcterms:description "To perform one or more operations on information for conducting financial or contractual activities related to payment for provision of health care.".

cs:ActReason\#CLMATTCH rdfs:subClassOf cs:ActReason\#HPAYMT;
  rdfs:label "claim attachment";
  dc:title "claim attachment";
  rdfs:comment "To perform one or more operations on information for provision of additional clinical evidence in support of a request for coverage or payment for health services.";
  dcterms:description "To perform one or more operations on information for provision of additional clinical evidence in support of a request for coverage or payment for health services.".

cs:ActReason\#COVAUTH rdfs:subClassOf cs:ActReason\#HPAYMT;
  rdfs:label "coverage authorization";
  dc:title "coverage authorization";
  rdfs:comment "To perform one or more operations on information for conducting prior authorization or predetermination of coverage for services.";
  dcterms:description "To perform one or more operations on information for conducting prior authorization or predetermination of coverage for services.".

cs:ActReason\#COVERAGE rdfs:subClassOf cs:ActReason\#HPAYMT;
  rdfs:label "coverage under policy or program";
  dc:title "coverage under policy or program";
  rdfs:comment "To perform one or more operations on information for conducting activities related to coverage under a program or policy.";
  dcterms:description "To perform one or more operations on information for conducting activities related to coverage under a program or policy.".

cs:ActReason\#ELIGDTRM rdfs:subClassOf cs:ActReason\#COVERAGE;
  rdfs:label "eligibility determination";
  dc:title "eligibility determination";
  rdfs:comment "To perform one or more operations on information used for conducting eligibility determination for coverage in a program or policy.  May entail review of financial status or disability assessment.";
  dcterms:description "To perform one or more operations on information used for conducting eligibility determination for coverage in a program or policy.  May entail review of financial status or disability assessment.".

cs:ActReason\#ELIGVER rdfs:subClassOf cs:ActReason\#COVERAGE;
  rdfs:label "eligibility verification";
  dc:title "eligibility verification";
  rdfs:comment "To perform one or more operations on information used for conducting eligibility verification of coverage in a program or policy.  May entail provider contacting coverage source (e.g., government health program such as workers compensation or health plan) for confirmation of enrollment, eligibility for specific services, and any applicable copays.";
  dcterms:description "To perform one or more operations on information used for conducting eligibility verification of coverage in a program or policy.  May entail provider contacting coverage source (e.g., government health program such as workers compensation or health plan) for confirmation of enrollment, eligibility for specific services, and any applicable copays.".

cs:ActReason\#ENROLLM rdfs:subClassOf cs:ActReason\#COVERAGE;
  rdfs:label "enrollment";
  dc:title "enrollment";
  rdfs:comment "To perform one or more operations on information used for enrolling a covered party in a program or policy.  May entail recording of covered party's and any dependent's demographic information and benefit choices.";
  dcterms:description "To perform one or more operations on information used for enrolling a covered party in a program or policy.  May entail recording of covered party's and any dependent's demographic information and benefit choices.".

cs:ActReason\#REMITADV rdfs:subClassOf cs:ActReason\#HPAYMT;
  rdfs:label "remittance advice";
  dc:title "remittance advice";
  rdfs:comment "To perform one or more operations on information about the amount remitted for a health care claim.";
  dcterms:description "To perform one or more operations on information about the amount remitted for a health care claim.".

cs:ActReason\#HRESCH rdfs:subClassOf cs:ActReason\#PurposeOfUse;
  rdfs:label "healthcare research";
  dc:title "healthcare research";
  rdfs:comment "To perform one or more operations on information for conducting scientific investigations to obtain health care knowledge.";
  dcterms:description "To perform one or more operations on information for conducting scientific investigations to obtain health care knowledge.".

cs:ActReason\#CLINTRCH rdfs:subClassOf cs:ActReason\#HRESCH;
  rdfs:label "clinical trial research";
  dc:title "clinical trial research";
  rdfs:comment "To perform one or more operations on information for conducting scientific investigations in accordance with clinical trial protocols to obtain health care knowledge.";
  dcterms:description "To perform one or more operations on information for conducting scientific investigations in accordance with clinical trial protocols to obtain health care knowledge.".

cs:ActReason\#PATRQT rdfs:subClassOf cs:ActReason\#PurposeOfUse;
  rdfs:label "patient requested";
  dc:title "patient requested";
  rdfs:comment "To perform one or more operations on information in response to a patient's request.";
  dcterms:description "To perform one or more operations on information in response to a patient's request.".

cs:ActReason\#FAMRQT rdfs:subClassOf cs:ActReason\#PATRQT;
  rdfs:label "family requested";
  dc:title "family requested";
  rdfs:comment "To perform one or more operations on information in response to a request by a family member authorized by the patient.";
  dcterms:description "To perform one or more operations on information in response to a request by a family member authorized by the patient.".

cs:ActReason\#PWATRNY rdfs:subClassOf cs:ActReason\#PATRQT;
  rdfs:label "power of attorney";
  dc:title "power of attorney";
  rdfs:comment "To perform one or more operations on information in response to a request by a person appointed as the patient's legal representative.";
  dcterms:description "To perform one or more operations on information in response to a request by a person appointed as the patient's legal representative.".

cs:ActReason\#SUPNWK rdfs:subClassOf cs:ActReason\#PATRQT;
  rdfs:label "support network";
  dc:title "support network";
  rdfs:comment "To perform one or more operations on information in response to a request by a person authorized by the patient.";
  dcterms:description "To perform one or more operations on information in response to a request by a person authorized by the patient.".

cs:ActReason\#PUBHLTH rdfs:subClassOf cs:ActReason\#PurposeOfUse;
  rdfs:label "public health";
  dc:title "public health";
  rdfs:comment "To perform one or more operations on information for conducting public health activities, such as the reporting of notifiable conditions.";
  dcterms:description "To perform one or more operations on information for conducting public health activities, such as the reporting of notifiable conditions.".

cs:ActReason\#DISASTER rdfs:subClassOf cs:ActReason\#PUBHLTH;
  rdfs:label "disaster";
  dc:title "disaster";
  rdfs:comment "To perform one or more operations on information used for provision of immediately needed health care to a population of living subjects located in a disaster zone.";
  dcterms:description "To perform one or more operations on information used for provision of immediately needed health care to a population of living subjects located in a disaster zone.".

cs:ActReason\#THREAT rdfs:subClassOf cs:ActReason\#PUBHLTH;
  rdfs:label "threat";
  dc:title "threat";
  rdfs:comment "To perform one or more operations on information used to prevent injury or disease to living subjects who may be the target of violence.";
  dcterms:description "To perform one or more operations on information used to prevent injury or disease to living subjects who may be the target of violence.".

cs:ActReason\#TREAT rdfs:subClassOf cs:ActReason\#PurposeOfUse;
  rdfs:label "treatment";
  dc:title "treatment";
  rdfs:comment "To perform one or more operations on information for provision of health care.";
  dcterms:description "To perform one or more operations on information for provision of health care.".

cs:ActReason\#CAREMGT rdfs:subClassOf cs:ActReason\#TREAT;
  rdfs:label "Care Management";
  dc:title "Care Management";
  rdfs:comment "To perform one or more operations on information for provision of health care coordination.";
  dcterms:description "To perform one or more operations on information for provision of health care coordination.".

cs:ActReason\#CLINTRL rdfs:subClassOf cs:ActReason\#TREAT;
  rdfs:label "clinical trial";
  dc:title "clinical trial";
  rdfs:comment "To perform health care as part of the clinical trial protocol.";
  dcterms:description "To perform health care as part of the clinical trial protocol.".

cs:ActReason\#ETREAT rdfs:subClassOf cs:ActReason\#TREAT;
  rdfs:label "Emergency Treatment";
  dc:title "Emergency Treatment";
  rdfs:comment "To perform one or more operations on information for provision of immediately needed health care for an emergent condition.";
  dcterms:description "To perform one or more operations on information for provision of immediately needed health care for an emergent condition.".

cs:ActReason\#POPHLTH rdfs:subClassOf cs:ActReason\#TREAT;
  rdfs:label "population health";
  dc:title "population health";
  rdfs:comment "To perform one or more operations on information for provision of health care to a population of living subjects, e.g., needle exchange program.";
  dcterms:description "To perform one or more operations on information for provision of health care to a population of living subjects, e.g., needle exchange program.".

cs:ActReason\#%5fActInformationPrivacyReason rdfs:subClassOf cs:ActReason\#%5fActInformationManagementReason;
  rdfs:label "ActInformationPrivacyReason";
  dc:title "ActInformationPrivacyReason";
  rdfs:comment "Description:The rationale or purpose for an act relating to the management of personal information, such as disclosing personal tax information for the purpose of complying with a court order.";
  dcterms:description "Description:The rationale or purpose for an act relating to the management of personal information, such as disclosing personal tax information for the purpose of complying with a court order.".

cs:ActReason\#MARKT rdfs:subClassOf cs:ActReason\#%5fActInformationPrivacyReason;
  rdfs:label "marketing";
  dc:title "marketing";
  rdfs:comment "Description:";
  dcterms:description "Description:".

cs:ActReason\#OPERAT rdfs:subClassOf cs:ActReason\#%5fActInformationPrivacyReason;
  rdfs:label "operations";
  dc:title "operations";
  rdfs:comment "Description:Administrative and contractual processes required to support an activity, product, or service";
  dcterms:description "Description:Administrative and contractual processes required to support an activity, product, or service".

cs:ActReason\#LEGAL rdfs:subClassOf cs:ActReason\#OPERAT;
  rdfs:label "subpoena";
  dc:title "subpoena";
  rdfs:comment "Definition:To provide information as a result of a subpoena.";
  dcterms:description "Definition:To provide information as a result of a subpoena.".

cs:ActReason\#ACCRED rdfs:subClassOf cs:ActReason\#OPERAT;
  rdfs:label "accreditation";
  dc:title "accreditation";
  rdfs:comment "Description:Operational activities conducted for the purposes of meeting of criteria defined by an accrediting entity for an activity, product, or service";
  dcterms:description "Description:Operational activities conducted for the purposes of meeting of criteria defined by an accrediting entity for an activity, product, or service".

cs:ActReason\#COMPL rdfs:subClassOf cs:ActReason\#OPERAT;
  rdfs:label "compliance";
  dc:title "compliance";
  rdfs:comment "Description:Operational activities required to meet a mandate related to an activity, product, or service";
  dcterms:description "Description:Operational activities required to meet a mandate related to an activity, product, or service".

cs:ActReason\#ENADMIN rdfs:subClassOf cs:ActReason\#OPERAT;
  rdfs:label "entity administration";
  dc:title "entity administration";
  rdfs:comment "Description:Operational activities conducted to administer information relating to entities involves with an activity, product, or service";
  dcterms:description "Description:Operational activities conducted to administer information relating to entities involves with an activity, product, or service".

cs:ActReason\#OUTCOMS rdfs:subClassOf cs:ActReason\#OPERAT;
  rdfs:label "outcome measure";
  dc:title "outcome measure";
  rdfs:comment "Description:Operational activities conducted for the purposes of assessing the results of an activity, product, or service";
  dcterms:description "Description:Operational activities conducted for the purposes of assessing the results of an activity, product, or service".

cs:ActReason\#PRGRPT rdfs:subClassOf cs:ActReason\#OPERAT;
  rdfs:label "program reporting";
  dc:title "program reporting";
  rdfs:comment "Description:Operational activities conducted to meet program accounting requirements related to an activity, product, or service";
  dcterms:description "Description:Operational activities conducted to meet program accounting requirements related to an activity, product, or service".

cs:ActReason\#QUALIMP rdfs:subClassOf cs:ActReason\#OPERAT;
  rdfs:label "quality improvement";
  dc:title "quality improvement";
  rdfs:comment "Description:Operational activities conducted for the purposes of improving the quality of an activity, product, or service";
  dcterms:description "Description:Operational activities conducted for the purposes of improving the quality of an activity, product, or service".

cs:ActReason\#SYSADMN rdfs:subClassOf cs:ActReason\#OPERAT;
  rdfs:label "system administration";
  dc:title "system administration";
  rdfs:comment "Description:Operational activities conducted to administer the electronic systems used for an activity, product, or service";
  dcterms:description "Description:Operational activities conducted to administer the electronic systems used for an activity, product, or service".

cs:ActReason\#PAYMT rdfs:subClassOf cs:ActReason\#%5fActInformationPrivacyReason;
  rdfs:label "payment";
  dc:title "payment";
  rdfs:comment "Description:Administrative, financial, and contractual processes related to payment for an activity, product, or service";
  dcterms:description "Description:Administrative, financial, and contractual processes related to payment for an activity, product, or service".

cs:ActReason\#RESCH rdfs:subClassOf cs:ActReason\#%5fActInformationPrivacyReason;
  rdfs:label "research";
  dc:title "research";
  rdfs:comment "Description:Investigative activities conducted for the purposes of obtaining knowledge";
  dcterms:description "Description:Investigative activities conducted for the purposes of obtaining knowledge".

cs:ActReason\#SRVC rdfs:subClassOf cs:ActReason\#%5fActInformationPrivacyReason;
  rdfs:label "service";
  dc:title "service";
  rdfs:comment "Description:Provision of a service, product, or capability to an individual or organization";
  dcterms:description "Description:Provision of a service, product, or capability to an individual or organization".

cs:ActReason\#%5fActInvalidReason rdfs:subClassOf cs:ActReason;
  rdfs:label "ActInvalidReason";
  dc:title "ActInvalidReason";
  rdfs:comment "Description: Types of reasons why a substance is invalid for use.";
  dcterms:description "Description: Types of reasons why a substance is invalid for use.".

cs:ActReason\#ADVSTORAGE rdfs:subClassOf cs:ActReason\#%5fActInvalidReason;
  rdfs:label "adverse storage condition";
  dc:title "adverse storage condition";
  rdfs:comment "Description: Storage conditions caused the substance to be ineffective.";
  dcterms:description "Description: Storage conditions caused the substance to be ineffective.".

cs:ActReason\#COLDCHNBRK rdfs:subClassOf cs:ActReason\#ADVSTORAGE;
  rdfs:label "cold chain break";
  dc:title "cold chain break";
  rdfs:comment "Description: Cold chain was not maintained for the substance.";
  dcterms:description "Description: Cold chain was not maintained for the substance.".

cs:ActReason\#EXPLOT rdfs:subClassOf cs:ActReason\#%5fActInvalidReason;
  rdfs:label "expired lot";
  dc:title "expired lot";
  rdfs:comment "Description: The lot from which the substance was drawn was expired.";
  dcterms:description "Description: The lot from which the substance was drawn was expired.".

cs:ActReason\#OUTSIDESCHED rdfs:subClassOf cs:ActReason\#%5fActInvalidReason;
  rdfs:label "administered outside recommended schedule or practice";
  dc:title "administered outside recommended schedule or practice";
  rdfs:comment "The substance was administered outside of the recommended schedule or practice.";
  dcterms:description "The substance was administered outside of the recommended schedule or practice.".

cs:ActReason\#PRODRECALL rdfs:subClassOf cs:ActReason\#%5fActInvalidReason;
  rdfs:label "product recall";
  dc:title "product recall";
  rdfs:comment "Description: The substance was recalled by the manufacturer.";
  dcterms:description "Description: The substance was recalled by the manufacturer.".

cs:ActReason\#%5fActInvoiceCancelReason rdfs:subClassOf cs:ActReason;
  rdfs:label "ActInvoiceCancelReason";
  dc:title "ActInvoiceCancelReason";
  rdfs:comment "Domain specifies the codes used to describe reasons why a Provider is cancelling an Invoice or Invoice Grouping.";
  dcterms:description "Domain specifies the codes used to describe reasons why a Provider is cancelling an Invoice or Invoice Grouping.".

cs:ActReason\#INCCOVPTY rdfs:subClassOf cs:ActReason\#%5fActInvoiceCancelReason;
  rdfs:label "incorrect covered party as patient";
  dc:title "incorrect covered party as patient";
  rdfs:comment "The covered party (patient) specified with the Invoice is not correct.";
  dcterms:description "The covered party (patient) specified with the Invoice is not correct.".

cs:ActReason\#INCINVOICE rdfs:subClassOf cs:ActReason\#%5fActInvoiceCancelReason;
  rdfs:label "incorrect billing";
  dc:title "incorrect billing";
  rdfs:comment "The billing information, specified in the Invoice Elements, is not correct.  This could include incorrect costing for items included in the Invoice.";
  dcterms:description "The billing information, specified in the Invoice Elements, is not correct.  This could include incorrect costing for items included in the Invoice.".

cs:ActReason\#INCPOLICY rdfs:subClassOf cs:ActReason\#%5fActInvoiceCancelReason;
  rdfs:label "incorrect policy";
  dc:title "incorrect policy";
  rdfs:comment "The policy specified with the Invoice is not correct.  For example, it may belong to another Adjudicator or Covered Party.";
  dcterms:description "The policy specified with the Invoice is not correct.  For example, it may belong to another Adjudicator or Covered Party.".

cs:ActReason\#INCPROV rdfs:subClassOf cs:ActReason\#%5fActInvoiceCancelReason;
  rdfs:label "incorrect provider";
  dc:title "incorrect provider";
  rdfs:comment "The provider specified with the Invoice is not correct.";
  dcterms:description "The provider specified with the Invoice is not correct.".

cs:ActReason\#%5fActNoImmunizationReason rdfs:subClassOf cs:ActReason;
  rdfs:label "ActNoImmunizationReason";
  dc:title "ActNoImmunizationReason";
  rdfs:comment "A coded description of the reason for why a patient did not receive a scheduled immunization.\r\n\n                        (important for public health strategy";
  dcterms:description "A coded description of the reason for why a patient did not receive a scheduled immunization.\r\n\n                        (important for public health strategy".

cs:ActReason\#IMMUNE rdfs:subClassOf cs:ActReason\#%5fActNoImmunizationReason;
  rdfs:label "immunity";
  dc:title "immunity";
  rdfs:comment "Definition:Testing has shown that the patient already has immunity to the agent targeted by the immunization.";
  dcterms:description "Definition:Testing has shown that the patient already has immunity to the agent targeted by the immunization.".

cs:ActReason\#MEDPREC rdfs:subClassOf cs:ActReason\#%5fActNoImmunizationReason;
  rdfs:label "medical precaution";
  dc:title "medical precaution";
  rdfs:comment "Definition:The patient currently has a medical condition for which the vaccine is contraindicated or for which precaution is warranted.";
  dcterms:description "Definition:The patient currently has a medical condition for which the vaccine is contraindicated or for which precaution is warranted.".

cs:ActReason\#OSTOCK rdfs:subClassOf cs:ActReason\#%5fActNoImmunizationReason;
  rdfs:label "product out of stock";
  dc:title "product out of stock";
  rdfs:comment "Definition:There was no supply of the product on hand to perform the service.";
  dcterms:description "Definition:There was no supply of the product on hand to perform the service.".

cs:ActReason\#PATOBJ rdfs:subClassOf cs:ActReason\#%5fActNoImmunizationReason;
  rdfs:label "patient objection";
  dc:title "patient objection";
  rdfs:comment "Definition:The patient or their guardian objects to receiving the vaccine.";
  dcterms:description "Definition:The patient or their guardian objects to receiving the vaccine.".

cs:ActReason\#PHILISOP rdfs:subClassOf cs:ActReason\#%5fActNoImmunizationReason;
  rdfs:label "philosophical objection";
  dc:title "philosophical objection";
  rdfs:comment "Definition:The patient or their guardian objects to receiving the vaccine because of philosophical beliefs.";
  dcterms:description "Definition:The patient or their guardian objects to receiving the vaccine because of philosophical beliefs.".

cs:ActReason\#RELIG rdfs:subClassOf cs:ActReason\#%5fActNoImmunizationReason;
  rdfs:label "religious objection";
  dc:title "religious objection";
  rdfs:comment "Definition:The patient or their guardian objects to receiving the vaccine on religious grounds.";
  dcterms:description "Definition:The patient or their guardian objects to receiving the vaccine on religious grounds.".

cs:ActReason\#VACEFF rdfs:subClassOf cs:ActReason\#%5fActNoImmunizationReason;
  rdfs:label "vaccine efficacy concerns";
  dc:title "vaccine efficacy concerns";
  rdfs:comment "Definition:The intended vaccine has expired or is otherwise believed to no longer be effective.\r\n\n                        \n                           Example:Due to temperature exposure.";
  dcterms:description "Definition:The intended vaccine has expired or is otherwise believed to no longer be effective.\r\n\n                        \n                           Example:Due to temperature exposure.".

cs:ActReason\#VACSAF rdfs:subClassOf cs:ActReason\#%5fActNoImmunizationReason;
  rdfs:label "vaccine safety concerns";
  dc:title "vaccine safety concerns";
  rdfs:comment "Definition:The patient or their guardian objects to receiving the vaccine because of concerns over its safety.";
  dcterms:description "Definition:The patient or their guardian objects to receiving the vaccine because of concerns over its safety.".

cs:ActReason\#%5fActSupplyFulfillmentRefusalReason rdfs:subClassOf cs:ActReason;
  rdfs:label "ActSupplyFulfillmentRefusalReason";
  dc:title "ActSupplyFulfillmentRefusalReason";
  rdfs:comment "Indicates why a fulfiller refused to fulfill a supply order, and considered it important to notify other providers of their decision.  E.g. \"Suspect fraud\", \"Possible abuse\", \"Contraindicated\".\r\n\n                        (used when capturing 'refusal to fill' annotations)";
  dcterms:description "Indicates why a fulfiller refused to fulfill a supply order, and considered it important to notify other providers of their decision.  E.g. \"Suspect fraud\", \"Possible abuse\", \"Contraindicated\".\r\n\n                        (used when capturing 'refusal to fill' annotations)".

cs:ActReason\#FRR01 rdfs:subClassOf cs:ActReason\#%5fActSupplyFulfillmentRefusalReason;
  rdfs:label "order stopped";
  dc:title "order stopped";
  rdfs:comment "Definition:The order has been stopped by the prescriber but this fact has not necessarily captured electronically.\r\n\n                        \n                           Example:A verbal stop, a fax, etc.";
  dcterms:description "Definition:The order has been stopped by the prescriber but this fact has not necessarily captured electronically.\r\n\n                        \n                           Example:A verbal stop, a fax, etc.".

cs:ActReason\#FRR02 rdfs:subClassOf cs:ActReason\#%5fActSupplyFulfillmentRefusalReason;
  rdfs:label "stale-dated order";
  dc:title "stale-dated order";
  rdfs:comment "Definition:Order has not been fulfilled within a reasonable amount of time, and may not be current.";
  dcterms:description "Definition:Order has not been fulfilled within a reasonable amount of time, and may not be current.".

cs:ActReason\#FRR03 rdfs:subClassOf cs:ActReason\#%5fActSupplyFulfillmentRefusalReason;
  rdfs:label "incomplete data";
  dc:title "incomplete data";
  rdfs:comment "Definition:Data needed to safely act on the order which was expected to become available independent of the order is not yet available\r\n\n                        \n                           Example:Lab results, diagnostic imaging, etc.";
  dcterms:description "Definition:Data needed to safely act on the order which was expected to become available independent of the order is not yet available\r\n\n                        \n                           Example:Lab results, diagnostic imaging, etc.".

cs:ActReason\#FRR04 rdfs:subClassOf cs:ActReason\#%5fActSupplyFulfillmentRefusalReason;
  rdfs:label "product unavailable";
  dc:title "product unavailable";
  rdfs:comment "Definition:Product not available or manufactured. Cannot supply.";
  dcterms:description "Definition:Product not available or manufactured. Cannot supply.".

cs:ActReason\#FRR05 rdfs:subClassOf cs:ActReason\#%5fActSupplyFulfillmentRefusalReason;
  rdfs:label "ethical/religious";
  dc:title "ethical/religious";
  rdfs:comment "Definition:The dispenser has ethical, religious or moral objections to fulfilling the order/dispensing the product.";
  dcterms:description "Definition:The dispenser has ethical, religious or moral objections to fulfilling the order/dispensing the product.".

cs:ActReason\#FRR06 rdfs:subClassOf cs:ActReason\#%5fActSupplyFulfillmentRefusalReason;
  rdfs:label "unable to provide care";
  dc:title "unable to provide care";
  rdfs:comment "Definition:Fulfiller not able to provide appropriate care associated with fulfilling the order.\r\n\n                        \n                           Example:Therapy requires ongoing monitoring by fulfiller and fulfiller will be ending practice, leaving town, unable to schedule necessary time, etc.";
  dcterms:description "Definition:Fulfiller not able to provide appropriate care associated with fulfilling the order.\r\n\n                        \n                           Example:Therapy requires ongoing monitoring by fulfiller and fulfiller will be ending practice, leaving town, unable to schedule necessary time, etc.".

cs:ActReason\#%5fClinicalResearchEventReason rdfs:subClassOf cs:ActReason;
  rdfs:label "ClinicalResearchEventReason";
  dc:title "ClinicalResearchEventReason";
  rdfs:comment "Definition:Specifies the reason that an event occurred in a clinical research study.";
  dcterms:description "Definition:Specifies the reason that an event occurred in a clinical research study.".

cs:ActReason\#RET rdfs:subClassOf cs:ActReason\#%5fClinicalResearchEventReason;
  rdfs:label "retest";
  dc:title "retest";
  rdfs:comment "Definition:The event occurred so that a test or observation performed at a prior event could be performed again due to conditions set forth in the protocol.";
  dcterms:description "Definition:The event occurred so that a test or observation performed at a prior event could be performed again due to conditions set forth in the protocol.".

cs:ActReason\#SCH rdfs:subClassOf cs:ActReason\#%5fClinicalResearchEventReason;
  rdfs:label "scheduled";
  dc:title "scheduled";
  rdfs:comment "Definition:The event occurred due to it being scheduled in the research protocol.";
  dcterms:description "Definition:The event occurred due to it being scheduled in the research protocol.".

cs:ActReason\#TRM rdfs:subClassOf cs:ActReason\#%5fClinicalResearchEventReason;
  rdfs:label "termination";
  dc:title "termination";
  rdfs:comment "Definition:The event occurred in order to terminate the subject's participation in the study.";
  dcterms:description "Definition:The event occurred in order to terminate the subject's participation in the study.".

cs:ActReason\#UNS rdfs:subClassOf cs:ActReason\#%5fClinicalResearchEventReason;
  rdfs:label "unscheduled";
  dc:title "unscheduled";
  rdfs:comment "Definition:The event that occurred was initiated by a study participant (e.g. the subject or the investigator), and did not occur for protocol reasons.";
  dcterms:description "Definition:The event that occurred was initiated by a study participant (e.g. the subject or the investigator), and did not occur for protocol reasons.".

cs:ActReason\#%5fClinicalResearchObservationReason rdfs:subClassOf cs:ActReason;
  rdfs:label "ClinicalResearchObservationReason";
  dc:title "ClinicalResearchObservationReason";
  rdfs:comment "Definition:SSpecifies the reason that a test was performed or observation collected in a clinical research study.\r\n\n                        \n                           Note:This set of codes are not strictly reasons, but are used in the currently Normative standard.  Future revisions of the specification will model these as ActRelationships and thes codes may subsequently be retired.  Thus, these codes should not be used for new specifications.";
  dcterms:description "Definition:SSpecifies the reason that a test was performed or observation collected in a clinical research study.\r\n\n                        \n                           Note:This set of codes are not strictly reasons, but are used in the currently Normative standard.  Future revisions of the specification will model these as ActRelationships and thes codes may subsequently be retired.  Thus, these codes should not be used for new specifications.".

cs:ActReason\#NPT rdfs:subClassOf cs:ActReason\#%5fClinicalResearchObservationReason;
  rdfs:label "non-protocol";
  dc:title "non-protocol";
  rdfs:comment "Definition:The observation or test was neither defined or scheduled in the study protocol.";
  dcterms:description "Definition:The observation or test was neither defined or scheduled in the study protocol.".

cs:ActReason\#PPT rdfs:subClassOf cs:ActReason\#%5fClinicalResearchObservationReason;
  rdfs:label "per protocol";
  dc:title "per protocol";
  rdfs:comment "Definition:The observation or test occurred due to it being defined in the research protocol, and during an activity or event that was scheduled in the protocol.";
  dcterms:description "Definition:The observation or test occurred due to it being defined in the research protocol, and during an activity or event that was scheduled in the protocol.".

cs:ActReason\#UPT rdfs:subClassOf cs:ActReason\#%5fClinicalResearchObservationReason;
  rdfs:label "per definition";
  dc:title "per definition";
  rdfs:comment ":The observation or test occurred as defined in the research protocol, but at a point in time not specified in the study protocol.";
  dcterms:description ":The observation or test occurred as defined in the research protocol, but at a point in time not specified in the study protocol.".

cs:ActReason\#%5fCombinedPharmacyOrderSuspendReasonCode rdfs:subClassOf cs:ActReason;
  rdfs:label "CombinedPharmacyOrderSuspendReasonCode";
  dc:title "CombinedPharmacyOrderSuspendReasonCode";
  rdfs:comment "Description:Indicates why the prescription should be suspended.";
  dcterms:description "Description:Indicates why the prescription should be suspended.".

cs:ActReason\#ALTCHOICE rdfs:subClassOf cs:ActReason\#%5fCombinedPharmacyOrderSuspendReasonCode;
  rdfs:label "try another treatment first";
  dc:title "try another treatment first";
  rdfs:comment "Description:This therapy has been ordered as a backup to a preferred therapy.  This order will be released when and if the preferred therapy is unsuccessful.";
  dcterms:description "Description:This therapy has been ordered as a backup to a preferred therapy.  This order will be released when and if the preferred therapy is unsuccessful.".

cs:ActReason\#CLARIF rdfs:subClassOf cs:ActReason\#%5fCombinedPharmacyOrderSuspendReasonCode;
  rdfs:label "prescription requires clarification";
  dc:title "prescription requires clarification";
  rdfs:comment "Description:Clarification is required before the order can be acted upon.";
  dcterms:description "Description:Clarification is required before the order can be acted upon.".

cs:ActReason\#DRUGHIGH rdfs:subClassOf cs:ActReason\#%5fCombinedPharmacyOrderSuspendReasonCode;
  rdfs:label "drug level too high";
  dc:title "drug level too high";
  rdfs:comment "Description:The current level of the medication in the patient's system is too high.  The medication is suspended to allow the level to subside to a safer level.";
  dcterms:description "Description:The current level of the medication in the patient's system is too high.  The medication is suspended to allow the level to subside to a safer level.".

cs:ActReason\#HOSPADM rdfs:subClassOf cs:ActReason\#%5fCombinedPharmacyOrderSuspendReasonCode;
  rdfs:label "admission to hospital";
  dc:title "admission to hospital";
  rdfs:comment "Description:The patient has been admitted to a care facility and their community medications are suspended until hospital discharge.";
  dcterms:description "Description:The patient has been admitted to a care facility and their community medications are suspended until hospital discharge.".

cs:ActReason\#LABINT rdfs:subClassOf cs:ActReason\#%5fCombinedPharmacyOrderSuspendReasonCode;
  rdfs:label "lab interference issues";
  dc:title "lab interference issues";
  rdfs:comment "Description:The therapy would interfere with a planned lab test and the therapy is being withdrawn until the test is completed.";
  dcterms:description "Description:The therapy would interfere with a planned lab test and the therapy is being withdrawn until the test is completed.".

cs:ActReason\#NON%2dAVAIL rdfs:subClassOf cs:ActReason\#%5fCombinedPharmacyOrderSuspendReasonCode;
  rdfs:label "patient not-available";
  dc:title "patient not-available";
  rdfs:comment "Description:Patient not available for a period of time due to a scheduled therapy, leave of absence or other reason.";
  dcterms:description "Description:Patient not available for a period of time due to a scheduled therapy, leave of absence or other reason.".

cs:ActReason\#PREG rdfs:subClassOf cs:ActReason\#%5fCombinedPharmacyOrderSuspendReasonCode;
  rdfs:label "parent is pregnant/breast feeding";
  dc:title "parent is pregnant/breast feeding";
  rdfs:comment "Description:The patient is pregnant or breast feeding.  The therapy will be resumed when the pregnancy is complete and the patient is no longer breastfeeding.";
  dcterms:description "Description:The patient is pregnant or breast feeding.  The therapy will be resumed when the pregnancy is complete and the patient is no longer breastfeeding.".

cs:ActReason\#SALG rdfs:subClassOf cs:ActReason\#%5fCombinedPharmacyOrderSuspendReasonCode;
  rdfs:label "allergy";
  dc:title "allergy";
  rdfs:comment "Description:The patient is believed to be allergic to a substance that is part of the therapy and the therapy is being temporarily withdrawn to confirm.";
  dcterms:description "Description:The patient is believed to be allergic to a substance that is part of the therapy and the therapy is being temporarily withdrawn to confirm.".

cs:ActReason\#SDDI rdfs:subClassOf cs:ActReason\#%5fCombinedPharmacyOrderSuspendReasonCode;
  rdfs:label "drug interacts with another drug";
  dc:title "drug interacts with another drug";
  rdfs:comment "Description:The drug interacts with a short-term treatment that is more urgently required.  This order will be resumed when the short-term treatment is complete.";
  dcterms:description "Description:The drug interacts with a short-term treatment that is more urgently required.  This order will be resumed when the short-term treatment is complete.".

cs:ActReason\#SDUPTHER rdfs:subClassOf cs:ActReason\#%5fCombinedPharmacyOrderSuspendReasonCode;
  rdfs:label "duplicate therapy";
  dc:title "duplicate therapy";
  rdfs:comment "Description:Another short-term co-occurring therapy fulfills the same purpose as this therapy.  This therapy will be resumed when the co-occuring therapy is complete.";
  dcterms:description "Description:Another short-term co-occurring therapy fulfills the same purpose as this therapy.  This therapy will be resumed when the co-occuring therapy is complete.".

cs:ActReason\#SINTOL rdfs:subClassOf cs:ActReason\#%5fCombinedPharmacyOrderSuspendReasonCode;
  rdfs:label "suspected intolerance";
  dc:title "suspected intolerance";
  rdfs:comment "Description:The patient is believed to have an intolerance to a substance that is part of the therapy and the therapy is being temporarily withdrawn to confirm.";
  dcterms:description "Description:The patient is believed to have an intolerance to a substance that is part of the therapy and the therapy is being temporarily withdrawn to confirm.".

cs:ActReason\#SURG rdfs:subClassOf cs:ActReason\#%5fCombinedPharmacyOrderSuspendReasonCode;
  rdfs:label "patient scheduled for surgery";
  dc:title "patient scheduled for surgery";
  rdfs:comment "Description:The drug is contraindicated for patients receiving surgery and the patient is scheduled to be admitted for surgery in the near future.  The drug will be resumed when the patient has sufficiently recovered from the surgery.";
  dcterms:description "Description:The drug is contraindicated for patients receiving surgery and the patient is scheduled to be admitted for surgery in the near future.  The drug will be resumed when the patient has sufficiently recovered from the surgery.".

cs:ActReason\#WASHOUT rdfs:subClassOf cs:ActReason\#%5fCombinedPharmacyOrderSuspendReasonCode;
  rdfs:label "waiting for old drug to wash out";
  dc:title "waiting for old drug to wash out";
  rdfs:comment "Description:The patient was previously receiving a medication contraindicated with the current medication.  The current medication will remain on hold until the prior medication has been cleansed from their system.";
  dcterms:description "Description:The patient was previously receiving a medication contraindicated with the current medication.  The current medication will remain on hold until the prior medication has been cleansed from their system.".

cs:ActReason\#%5fControlActNullificationReasonCode rdfs:subClassOf cs:ActReason;
  rdfs:label "ControlActNullificationReasonCode";
  dc:title "ControlActNullificationReasonCode";
  rdfs:comment "Description:Identifies reasons for nullifying (retracting) a particular control act.";
  dcterms:description "Description:Identifies reasons for nullifying (retracting) a particular control act.".

cs:ActReason\#ALTD rdfs:subClassOf cs:ActReason\#%5fControlActNullificationReasonCode;
  rdfs:label "altered decision";
  dc:title "altered decision";
  rdfs:comment "Description:The decision on which the recorded information was based was changed before the decision had an effect.\r\n\n                        \n                           Example:Aborted prescription before patient left office, released prescription before suspend took effect.";
  dcterms:description "Description:The decision on which the recorded information was based was changed before the decision had an effect.\r\n\n                        \n                           Example:Aborted prescription before patient left office, released prescription before suspend took effect.".

cs:ActReason\#EIE rdfs:subClassOf cs:ActReason\#%5fControlActNullificationReasonCode;
  rdfs:label "entered in error";
  dc:title "entered in error";
  rdfs:comment "Description:The information was recorded incorrectly or was recorded in the wrong record.";
  dcterms:description "Description:The information was recorded incorrectly or was recorded in the wrong record.".

cs:ActReason\#NORECMTCH rdfs:subClassOf cs:ActReason\#%5fControlActNullificationReasonCode;
  rdfs:label "no record match";
  dc:title "no record match";
  rdfs:comment "Description: There is no match for the record in the database.";
  dcterms:description "Description: There is no match for the record in the database.".

cs:ActReason\#%5fControlActNullificationRefusalReasonType rdfs:subClassOf cs:ActReason;
  rdfs:label "ControlActNullificationRefusalReasonType";
  dc:title "ControlActNullificationRefusalReasonType";
  rdfs:comment "Description: Reasons to refuse a transaction to be undone.";
  dcterms:description "Description: Reasons to refuse a transaction to be undone.".

cs:ActReason\#INRQSTATE rdfs:subClassOf cs:ActReason\#%5fControlActNullificationRefusalReasonType;
  rdfs:label "in requested state";
  dc:title "in requested state";
  rdfs:comment "The record is already in the requested state.";
  dcterms:description "The record is already in the requested state.".

cs:ActReason\#NOMATCH rdfs:subClassOf cs:ActReason\#%5fControlActNullificationRefusalReasonType;
  rdfs:label "no match";
  dc:title "no match";
  rdfs:comment "Description: There is no match.";
  dcterms:description "Description: There is no match.".

cs:ActReason\#NOPRODMTCH rdfs:subClassOf cs:ActReason\#NOMATCH;
  rdfs:label "no product match";
  dc:title "no product match";
  rdfs:comment "Description: There is no match for the product in the master file repository.";
  dcterms:description "Description: There is no match for the product in the master file repository.".

cs:ActReason\#NOSERMTCH rdfs:subClassOf cs:ActReason\#NOMATCH;
  rdfs:label "no service match";
  dc:title "no service match";
  rdfs:comment "Description: There is no match for the service in the master file repository.";
  dcterms:description "Description: There is no match for the service in the master file repository.".

cs:ActReason\#NOVERMTCH rdfs:subClassOf cs:ActReason\#NOMATCH;
  rdfs:label "no version match";
  dc:title "no version match";
  rdfs:comment "Description: There is no match for the record and version.";
  dcterms:description "Description: There is no match for the record and version.".

cs:ActReason\#NOPERM rdfs:subClassOf cs:ActReason\#%5fControlActNullificationRefusalReasonType;
  rdfs:label "no permission";
  dc:title "no permission";
  rdfs:comment "Description: There is no permission.";
  dcterms:description "Description: There is no permission.".

cs:ActReason\#NOUSERPERM rdfs:subClassOf cs:ActReason\#NOPERM;
  rdfs:label "no user permission";
  dc:title "no user permission";
  rdfs:comment "Definition:The user does not have permission";
  dcterms:description "Definition:The user does not have permission".

cs:ActReason\#NOAGNTPERM rdfs:subClassOf cs:ActReason\#NOPERM;
  rdfs:label "no agent permission";
  dc:title "no agent permission";
  rdfs:comment "Description: The agent does not have permission.";
  dcterms:description "Description: The agent does not have permission.".

cs:ActReason\#NOUSRPERM rdfs:subClassOf cs:ActReason\#NOPERM;
  rdfs:label "no user permission";
  dc:title "no user permission";
  rdfs:comment "Description: The user does not have permission.";
  dcterms:description "Description: The user does not have permission.".

cs:ActReason\#WRNGVER rdfs:subClassOf cs:ActReason\#%5fControlActNullificationRefusalReasonType;
  rdfs:label "wrong version";
  dc:title "wrong version";
  rdfs:comment "Description: The record and version requested to update is not the current version.";
  dcterms:description "Description: The record and version requested to update is not the current version.".

cs:ActReason\#%5fControlActReason rdfs:subClassOf cs:ActReason;
  rdfs:label "ControlActReason";
  dc:title "ControlActReason";
  rdfs:comment "Identifies why a specific query, request, or other trigger event occurred.";
  dcterms:description "Identifies why a specific query, request, or other trigger event occurred.".

cs:ActReason\#%5fMedicationOrderAbortReasonCode rdfs:subClassOf cs:ActReason\#%5fControlActReason;
  rdfs:label "medication order abort reason";
  dc:title "medication order abort reason";
  rdfs:comment "Description:Indicates the reason the medication order should be aborted.";
  dcterms:description "Description:Indicates the reason the medication order should be aborted.".

cs:ActReason\#DISCONT rdfs:subClassOf cs:ActReason\#%5fMedicationOrderAbortReasonCode;
  rdfs:label "product discontinued";
  dc:title "product discontinued";
  rdfs:comment "Description:The medication is no longer being manufactured or is otherwise no longer available.";
  dcterms:description "Description:The medication is no longer being manufactured or is otherwise no longer available.".

cs:ActReason\#INEFFECT rdfs:subClassOf cs:ActReason\#%5fMedicationOrderAbortReasonCode;
  rdfs:label "ineffective";
  dc:title "ineffective";
  rdfs:comment "Description:The therapy has been found to not have the desired therapeutic benefit on the patient.";
  dcterms:description "Description:The therapy has been found to not have the desired therapeutic benefit on the patient.".

cs:ActReason\#MONIT rdfs:subClassOf cs:ActReason\#%5fMedicationOrderAbortReasonCode;
  rdfs:label "response to monitoring";
  dc:title "response to monitoring";
  rdfs:comment "Description:Monitoring the patient while taking the medication, the decision has been made that the therapy is no longer appropriate.";
  dcterms:description "Description:Monitoring the patient while taking the medication, the decision has been made that the therapy is no longer appropriate.".

cs:ActReason\#NOREQ rdfs:subClassOf cs:ActReason\#%5fMedicationOrderAbortReasonCode;
  rdfs:label "no longer required for treatment";
  dc:title "no longer required for treatment";
  rdfs:comment "Description:The underlying condition has been resolved or has evolved such that a different treatment is no longer needed.";
  dcterms:description "Description:The underlying condition has been resolved or has evolved such that a different treatment is no longer needed.".

cs:ActReason\#NOTCOVER rdfs:subClassOf cs:ActReason\#%5fMedicationOrderAbortReasonCode;
  rdfs:label "not covered";
  dc:title "not covered";
  rdfs:comment "Description:The product does not have (or no longer has) coverage under the patientaTMs insurance policy.";
  dcterms:description "Description:The product does not have (or no longer has) coverage under the patientaTMs insurance policy.".

cs:ActReason\#PREFUS rdfs:subClassOf cs:ActReason\#%5fMedicationOrderAbortReasonCode;
  rdfs:label "patient refuse";
  dc:title "patient refuse";
  rdfs:comment "Description:The patient refused to take the product.";
  dcterms:description "Description:The patient refused to take the product.".

cs:ActReason\#RECALL rdfs:subClassOf cs:ActReason\#%5fMedicationOrderAbortReasonCode;
  rdfs:label "product recalled";
  dc:title "product recalled";
  rdfs:comment "Description:The manufacturer or other agency has requested that stocks of a medication be removed from circulation.";
  dcterms:description "Description:The manufacturer or other agency has requested that stocks of a medication be removed from circulation.".

cs:ActReason\#REPLACE rdfs:subClassOf cs:ActReason\#%5fMedicationOrderAbortReasonCode;
  rdfs:label "change in order";
  dc:title "change in order";
  rdfs:comment "Description:Item in current order is no longer in use as requested and a new one has/will be created to replace it.";
  dcterms:description "Description:Item in current order is no longer in use as requested and a new one has/will be created to replace it.".

cs:ActReason\#DOSECHG rdfs:subClassOf cs:ActReason\#REPLACE;
  rdfs:label "change in medication/dose";
  dc:title "change in medication/dose";
  rdfs:comment "Description:The medication is being re-prescribed at a different dosage.";
  dcterms:description "Description:The medication is being re-prescribed at a different dosage.".

cs:ActReason\#REPLACEFIX rdfs:subClassOf cs:ActReason\#%5fMedicationOrderAbortReasonCode;
  rdfs:label "error in order";
  dc:title "error in order";
  rdfs:comment "Description:Current order was issued with incorrect data and a new order has/will be created to replace it.";
  dcterms:description "Description:Current order was issued with incorrect data and a new order has/will be created to replace it.".

cs:ActReason\#UNABLE rdfs:subClassOf cs:ActReason\#%5fMedicationOrderAbortReasonCode;
  rdfs:label "unable to use";
  dc:title "unable to use";
  rdfs:comment "Description:<The patient is not (or is no longer) able to use the medication in a manner prescribed.\r\n\n                        \n                           Example:CanaTMt swallow.";
  dcterms:description "Description:<The patient is not (or is no longer) able to use the medication in a manner prescribed.\r\n\n                        \n                           Example:CanaTMt swallow.".

cs:ActReason\#%5fMedicationOrderReleaseReasonCode rdfs:subClassOf cs:ActReason\#%5fControlActReason;
  rdfs:label "medication order release reason";
  dc:title "medication order release reason";
  rdfs:comment "Definition:A collection of concepts that indicate why the prescription should be released from suspended state.";
  dcterms:description "Definition:A collection of concepts that indicate why the prescription should be released from suspended state.".

cs:ActReason\#HOLDDONE rdfs:subClassOf cs:ActReason\#%5fMedicationOrderReleaseReasonCode;
  rdfs:label "suspend reason no longer applies";
  dc:title "suspend reason no longer applies";
  rdfs:comment "Definition:The original reason for suspending the medication has ended.";
  dcterms:description "Definition:The original reason for suspending the medication has ended.".

cs:ActReason\#HOLDINAP rdfs:subClassOf cs:ActReason\#%5fMedicationOrderReleaseReasonCode;
  rdfs:label "suspend reason inappropriate";
  dc:title "suspend reason inappropriate";
  rdfs:comment "Definition:";
  dcterms:description "Definition:".

cs:ActReason\#%5fModifyPrescriptionReasonType rdfs:subClassOf cs:ActReason\#%5fControlActReason;
  rdfs:label "ModifyPrescriptionReasonType";
  dc:title "ModifyPrescriptionReasonType";
  rdfs:comment "Types of reason why a prescription is being changed.";
  dcterms:description "Types of reason why a prescription is being changed.".

cs:ActReason\#ADMINERROR rdfs:subClassOf cs:ActReason\#%5fModifyPrescriptionReasonType;
  rdfs:label "administrative error in order";
  dc:title "administrative error in order";
  rdfs:comment "Order was created with incorrect data and is changed to reflect the intended accuracy of the order.";
  dcterms:description "Order was created with incorrect data and is changed to reflect the intended accuracy of the order.".

cs:ActReason\#CLINMOD rdfs:subClassOf cs:ActReason\#%5fModifyPrescriptionReasonType;
  rdfs:label "clinical modification";
  dc:title "clinical modification";
  rdfs:comment "Order is changed based on a clinical reason.";
  dcterms:description "Order is changed based on a clinical reason.".

cs:ActReason\#%5fPharmacySupplyEventAbortReason rdfs:subClassOf cs:ActReason\#%5fControlActReason;
  rdfs:label "PharmacySupplyEventAbortReason";
  dc:title "PharmacySupplyEventAbortReason";
  rdfs:comment "Definition:Identifies why the dispense event was not completed.";
  dcterms:description "Definition:Identifies why the dispense event was not completed.".

cs:ActReason\#CONTRA rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyEventAbortReason;
  rdfs:label "contraindication";
  dc:title "contraindication";
  rdfs:comment "Definition:Contraindication identified";
  dcterms:description "Definition:Contraindication identified".

cs:ActReason\#FOABORT rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyEventAbortReason;
  rdfs:label "order aborted";
  dc:title "order aborted";
  rdfs:comment "Definition:Order to be fulfilled was aborted";
  dcterms:description "Definition:Order to be fulfilled was aborted".

cs:ActReason\#FOSUSP rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyEventAbortReason;
  rdfs:label "order suspended";
  dc:title "order suspended";
  rdfs:comment "Definition:Order to be fulfilled was suspended";
  dcterms:description "Definition:Order to be fulfilled was suspended".

cs:ActReason\#NOPICK rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyEventAbortReason;
  rdfs:label "not picked up";
  dc:title "not picked up";
  rdfs:comment "Definition:Patient did not come to get medication";
  dcterms:description "Definition:Patient did not come to get medication".

cs:ActReason\#PATDEC rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyEventAbortReason;
  rdfs:label "patient changed mind";
  dc:title "patient changed mind";
  rdfs:comment "Definition:Patient changed their mind regarding obtaining medication";
  dcterms:description "Definition:Patient changed their mind regarding obtaining medication".

cs:ActReason\#QUANTCHG rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyEventAbortReason;
  rdfs:label "change supply quantity";
  dc:title "change supply quantity";
  rdfs:comment "Definition:Patient requested a revised quantity of medication";
  dcterms:description "Definition:Patient requested a revised quantity of medication".

cs:ActReason\#%5fPharmacySupplyEventStockReasonCode rdfs:subClassOf cs:ActReason\#%5fControlActReason;
  rdfs:label "pharmacy supply event stock reason";
  dc:title "pharmacy supply event stock reason";
  rdfs:comment "Definition:A collection of concepts that indicates the reason for a \"bulk supply\" of medication.";
  dcterms:description "Definition:A collection of concepts that indicates the reason for a \"bulk supply\" of medication.".

cs:ActReason\#FLRSTCK rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyEventStockReasonCode;
  rdfs:label "floor stock";
  dc:title "floor stock";
  rdfs:comment "Definition:The bulk supply is issued to replenish a ward for local dispensing.  (Includes both mobile and fixed-location ward stocks.)";
  dcterms:description "Definition:The bulk supply is issued to replenish a ward for local dispensing.  (Includes both mobile and fixed-location ward stocks.)".

cs:ActReason\#LTC rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyEventStockReasonCode;
  rdfs:label "long term care use";
  dc:title "long term care use";
  rdfs:comment "Definition:The bulk supply will be administered within a long term care facility.";
  dcterms:description "Definition:The bulk supply will be administered within a long term care facility.".

cs:ActReason\#OFFICE rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyEventStockReasonCode;
  rdfs:label "office use";
  dc:title "office use";
  rdfs:comment "Definition:The bulk supply is intended for general clinician office use.";
  dcterms:description "Definition:The bulk supply is intended for general clinician office use.".

cs:ActReason\#PHARM rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyEventStockReasonCode;
  rdfs:label "pharmacy transfer";
  dc:title "pharmacy transfer";
  rdfs:comment "Definition:The bulk supply is being transferred to another dispensing facility to.\r\n\n                        \n                           Example:Alleviate a temporary shortage.";
  dcterms:description "Definition:The bulk supply is being transferred to another dispensing facility to.\r\n\n                        \n                           Example:Alleviate a temporary shortage.".

cs:ActReason\#PROG rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyEventStockReasonCode;
  rdfs:label "program use";
  dc:title "program use";
  rdfs:comment "Definition:The bulk supply is intended for dispensing according to a specific program.\r\n\n                        \n                           Example:Mass immunization.";
  dcterms:description "Definition:The bulk supply is intended for dispensing according to a specific program.\r\n\n                        \n                           Example:Mass immunization.".

cs:ActReason\#%5fPharmacySupplyRequestRenewalRefusalReasonCode rdfs:subClassOf cs:ActReason\#%5fControlActReason;
  rdfs:label "pharmacy supply request renewal refusal reason";
  dc:title "pharmacy supply request renewal refusal reason";
  rdfs:comment "Definition:A collection of concepts that identifies why a renewal prescription has been refused.";
  dcterms:description "Definition:A collection of concepts that identifies why a renewal prescription has been refused.".

cs:ActReason\#ALREADYRX rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyRequestRenewalRefusalReasonCode;
  rdfs:label "new prescription exists";
  dc:title "new prescription exists";
  rdfs:comment "Definition:Patient has already been given a new (renewal) prescription.";
  dcterms:description "Definition:Patient has already been given a new (renewal) prescription.".

cs:ActReason\#FAMPHYS rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyRequestRenewalRefusalReasonCode;
  rdfs:label "family physician must authorize further fills";
  dc:title "family physician must authorize further fills";
  rdfs:comment "Definition:Request for further authorization must be done through patient's family physician.";
  dcterms:description "Definition:Request for further authorization must be done through patient's family physician.".

cs:ActReason\#MODIFY rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyRequestRenewalRefusalReasonCode;
  rdfs:label "modified prescription exists";
  dc:title "modified prescription exists";
  rdfs:comment "Definition:Therapy has been changed and new prescription issued";
  dcterms:description "Definition:Therapy has been changed and new prescription issued".

cs:ActReason\#NEEDAPMT rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyRequestRenewalRefusalReasonCode;
  rdfs:label "patient must make appointment";
  dc:title "patient must make appointment";
  rdfs:comment "Definition:Patient must see prescriber prior to further fills.";
  dcterms:description "Definition:Patient must see prescriber prior to further fills.".

cs:ActReason\#NOTAVAIL rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyRequestRenewalRefusalReasonCode;
  rdfs:label "prescriber not available";
  dc:title "prescriber not available";
  rdfs:comment "Definition:Original prescriber is no longer available to prescribe and no other prescriber has taken responsibility for the patient.";
  dcterms:description "Definition:Original prescriber is no longer available to prescribe and no other prescriber has taken responsibility for the patient.".

cs:ActReason\#NOTPAT rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyRequestRenewalRefusalReasonCode;
  rdfs:label "patient no longer in this practice";
  dc:title "patient no longer in this practice";
  rdfs:comment "Definition:Patient no longer or has never been under this prescribers care.";
  dcterms:description "Definition:Patient no longer or has never been under this prescribers care.".

cs:ActReason\#ONHOLD rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyRequestRenewalRefusalReasonCode;
  rdfs:label "medication on hold";
  dc:title "medication on hold";
  rdfs:comment "Definition:This medication is on hold.";
  dcterms:description "Definition:This medication is on hold.".

cs:ActReason\#PRNA rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyRequestRenewalRefusalReasonCode;
  rdfs:label "product not available";
  dc:title "product not available";
  rdfs:comment "Description:This product is not available or manufactured.";
  dcterms:description "Description:This product is not available or manufactured.".

cs:ActReason\#STOPMED rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyRequestRenewalRefusalReasonCode;
  rdfs:label "prescriber stopped medication for patient";
  dc:title "prescriber stopped medication for patient";
  rdfs:comment "Renewing or original prescriber informed patient to stop using the medication.";
  dcterms:description "Renewing or original prescriber informed patient to stop using the medication.".

cs:ActReason\#TOOEARLY rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyRequestRenewalRefusalReasonCode;
  rdfs:label "too early";
  dc:title "too early";
  rdfs:comment "Definition:The patient should have medication remaining.";
  dcterms:description "Definition:The patient should have medication remaining.".

cs:ActReason\#%5fSupplyOrderAbortReasonCode rdfs:subClassOf cs:ActReason\#%5fControlActReason;
  rdfs:label "supply order abort reason";
  dc:title "supply order abort reason";
  rdfs:comment "Definition:A collection of concepts that indicates why the prescription should no longer be allowed to be dispensed (but can still administer what is already being dispensed).";
  dcterms:description "Definition:A collection of concepts that indicates why the prescription should no longer be allowed to be dispensed (but can still administer what is already being dispensed).".

cs:ActReason\#IMPROV rdfs:subClassOf cs:ActReason\#%5fSupplyOrderAbortReasonCode;
  rdfs:label "condition improved";
  dc:title "condition improved";
  rdfs:comment "Definition:The patient's medical condition has nearly abated.";
  dcterms:description "Definition:The patient's medical condition has nearly abated.".

cs:ActReason\#INTOL rdfs:subClassOf cs:ActReason\#%5fSupplyOrderAbortReasonCode;
  rdfs:label "intolerance";
  dc:title "intolerance";
  rdfs:comment "Description:The patient has an intolerance to the medication.";
  dcterms:description "Description:The patient has an intolerance to the medication.".

cs:ActReason\#NEWSTR rdfs:subClassOf cs:ActReason\#%5fSupplyOrderAbortReasonCode;
  rdfs:label "new strength";
  dc:title "new strength";
  rdfs:comment "Definition:The current medication will be replaced by a new strength of the same medication.";
  dcterms:description "Definition:The current medication will be replaced by a new strength of the same medication.".

cs:ActReason\#NEWTHER rdfs:subClassOf cs:ActReason\#%5fSupplyOrderAbortReasonCode;
  rdfs:label "new therapy";
  dc:title "new therapy";
  rdfs:comment "Definition:A new therapy will be commenced when current supply exhausted.";
  dcterms:description "Definition:A new therapy will be commenced when current supply exhausted.".

cs:ActReason\#%5fGenericUpdateReasonCode rdfs:subClassOf cs:ActReason;
  rdfs:label "GenericUpdateReasonCode";
  dc:title "GenericUpdateReasonCode";
  rdfs:comment "Description:Identifies why a change is being made to a  record.";
  dcterms:description "Description:Identifies why a change is being made to a  record.".

cs:ActReason\#CHGDATA rdfs:subClassOf cs:ActReason\#%5fGenericUpdateReasonCode;
  rdfs:label "information change";
  dc:title "information change";
  rdfs:comment "Description:Information has changed since the record was created.";
  dcterms:description "Description:Information has changed since the record was created.".

cs:ActReason\#FIXDATA rdfs:subClassOf cs:ActReason\#%5fGenericUpdateReasonCode;
  rdfs:label "error correction";
  dc:title "error correction";
  rdfs:comment "Description:Previously recorded information was erroneous and is being corrected.";
  dcterms:description "Description:Previously recorded information was erroneous and is being corrected.".

cs:ActReason\#MDATA rdfs:subClassOf cs:ActReason\#%5fGenericUpdateReasonCode;
  rdfs:label "merge data";
  dc:title "merge data";
  rdfs:comment "Information is combined into the record.";
  dcterms:description "Information is combined into the record.".

cs:ActReason\#NEWDATA rdfs:subClassOf cs:ActReason\#%5fGenericUpdateReasonCode;
  rdfs:label "new information";
  dc:title "new information";
  rdfs:comment "Description:New information has become available to supplement the record.";
  dcterms:description "Description:New information has become available to supplement the record.".

cs:ActReason\#UMDATA rdfs:subClassOf cs:ActReason\#%5fGenericUpdateReasonCode;
  rdfs:label "unmerge data";
  dc:title "unmerge data";
  rdfs:comment "Information is separated from the record.";
  dcterms:description "Information is separated from the record.".

cs:ActReason\#%5fPatientProfileQueryReasonCode rdfs:subClassOf cs:ActReason;
  rdfs:label "patient profile query reason";
  dc:title "patient profile query reason";
  rdfs:comment "Definition:A collection of concepts identifying why the patient's profile is being queried.";
  dcterms:description "Definition:A collection of concepts identifying why the patient's profile is being queried.".

cs:ActReason\#ADMREV rdfs:subClassOf cs:ActReason\#%5fPatientProfileQueryReasonCode;
  rdfs:label "administrative review";
  dc:title "administrative review";
  rdfs:comment "Definition: To evaluate for service authorization, payment, reporting, or performance/outcome measures.";
  dcterms:description "Definition: To evaluate for service authorization, payment, reporting, or performance/outcome measures.".

cs:ActReason\#PATCAR rdfs:subClassOf cs:ActReason\#%5fPatientProfileQueryReasonCode;
  rdfs:label "patient care";
  dc:title "patient care";
  rdfs:comment "Definition:To obtain records as part of patient care.";
  dcterms:description "Definition:To obtain records as part of patient care.".

cs:ActReason\#PATREQ rdfs:subClassOf cs:ActReason\#%5fPatientProfileQueryReasonCode;
  rdfs:label "patient request query";
  dc:title "patient request query";
  rdfs:comment "Definition:Patient requests information from their profile.";
  dcterms:description "Definition:Patient requests information from their profile.".

cs:ActReason\#PRCREV rdfs:subClassOf cs:ActReason\#%5fPatientProfileQueryReasonCode;
  rdfs:label "practice review";
  dc:title "practice review";
  rdfs:comment "Definition:To evaluate the provider's current practice for professional-improvement reasons.";
  dcterms:description "Definition:To evaluate the provider's current practice for professional-improvement reasons.".

cs:ActReason\#REGUL rdfs:subClassOf cs:ActReason\#%5fPatientProfileQueryReasonCode;
  rdfs:label "regulatory review";
  dc:title "regulatory review";
  rdfs:comment "Description:Review for the purpose of regulatory compliance.";
  dcterms:description "Description:Review for the purpose of regulatory compliance.".

cs:ActReason\#RSRCH rdfs:subClassOf cs:ActReason\#%5fPatientProfileQueryReasonCode;
  rdfs:label "research";
  dc:title "research";
  rdfs:comment "Definition:To provide research data, as authorized by the patient.";
  dcterms:description "Definition:To provide research data, as authorized by the patient.".

cs:ActReason\#VALIDATION rdfs:subClassOf cs:ActReason\#%5fPatientProfileQueryReasonCode;
  rdfs:label "validation review";
  dc:title "validation review";
  rdfs:comment "Description:To validate the patient's record.\r\n\n                        \n                           Example:Merging or unmerging records.";
  dcterms:description "Description:To validate the patient's record.\r\n\n                        \n                           Example:Merging or unmerging records.".

cs:ActReason\#%5fPharmacySupplyRequestFulfillerRevisionRefusalReasonCode rdfs:subClassOf cs:ActReason;
  rdfs:label "PharmacySupplyRequestFulfillerRevisionRefusalReasonCode";
  dc:title "PharmacySupplyRequestFulfillerRevisionRefusalReasonCode";
  rdfs:comment "Definition:Indicates why the request to transfer a prescription from one dispensing facility to another has been refused.";
  dcterms:description "Definition:Indicates why the request to transfer a prescription from one dispensing facility to another has been refused.".

cs:ActReason\#LOCKED rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyRequestFulfillerRevisionRefusalReasonCode;
  rdfs:label "locked";
  dc:title "locked";
  rdfs:comment "Definition:The prescription may not be reassigned from the original pharmacy.";
  dcterms:description "Definition:The prescription may not be reassigned from the original pharmacy.".

cs:ActReason\#UNKWNTARGET rdfs:subClassOf cs:ActReason\#%5fPharmacySupplyRequestFulfillerRevisionRefusalReasonCode;
  rdfs:label "unknown target";
  dc:title "unknown target";
  rdfs:comment "Definition:The target facility does not recognize the dispensing facility.";
  dcterms:description "Definition:The target facility does not recognize the dispensing facility.".

cs:ActReason\#%5fRefusalReasonCode rdfs:subClassOf cs:ActReason;
  rdfs:label "RefusalReasonCode";
  dc:title "RefusalReasonCode";
  rdfs:comment "Description: Identifies why a request to add (or activate) a record is being refused.  Examples include the receiving system not able to match the identifier and find that record in the receiving system, having no permission, or a detected issue exists which precludes the requested action.";
  dcterms:description "Description: Identifies why a request to add (or activate) a record is being refused.  Examples include the receiving system not able to match the identifier and find that record in the receiving system, having no permission, or a detected issue exists which precludes the requested action.".

cs:ActReason\#%5fSchedulingActReason rdfs:subClassOf cs:ActReason;
  rdfs:label "SchedulingActReason";
  dc:title "SchedulingActReason";
  rdfs:comment "Reasons for cancelling or rescheduling an Appointment";
  dcterms:description "Reasons for cancelling or rescheduling an Appointment".

cs:ActReason\#BLK rdfs:subClassOf cs:ActReason\#%5fSchedulingActReason;
  rdfs:label "Unexpected Block (of Schedule)";
  dc:title "Unexpected Block (of Schedule)";
  rdfs:comment "The time slots previously allocated are now blocked and no longer available for booking Appointments";
  dcterms:description "The time slots previously allocated are now blocked and no longer available for booking Appointments".

cs:ActReason\#DEC rdfs:subClassOf cs:ActReason\#%5fSchedulingActReason;
  rdfs:label "Patient Deceased";
  dc:title "Patient Deceased";
  rdfs:comment "The Patient is deceased";
  dcterms:description "The Patient is deceased".

cs:ActReason\#FIN rdfs:subClassOf cs:ActReason\#%5fSchedulingActReason;
  rdfs:label "No Financial Backing";
  dc:title "No Financial Backing";
  rdfs:comment "Patient unable to pay and not covered by insurance";
  dcterms:description "Patient unable to pay and not covered by insurance".

cs:ActReason\#MED rdfs:subClassOf cs:ActReason\#%5fSchedulingActReason;
  rdfs:label "Medical Status Altered";
  dc:title "Medical Status Altered";
  rdfs:comment "The medical condition of the Patient has changed";
  dcterms:description "The medical condition of the Patient has changed".

cs:ActReason\#MTG rdfs:subClassOf cs:ActReason\#%5fSchedulingActReason;
  rdfs:label "In an outside meeting";
  dc:title "In an outside meeting";
  rdfs:comment "The Physician is in a meeting.  For example, he/she may request administrative time to talk to family after appointment";
  dcterms:description "The Physician is in a meeting.  For example, he/she may request administrative time to talk to family after appointment".

cs:ActReason\#PHY rdfs:subClassOf cs:ActReason\#%5fSchedulingActReason;
  rdfs:label "Physician request";
  dc:title "Physician request";
  rdfs:comment "The Physician requested the action";
  dcterms:description "The Physician requested the action".

cs:ActReason\#%5fStatusRevisionRefusalReasonCode rdfs:subClassOf cs:ActReason;
  rdfs:label "StatusRevisionRefusalReasonCode";
  dc:title "StatusRevisionRefusalReasonCode";
  rdfs:comment "Indicates why the act revision (status update) is being refused.";
  dcterms:description "Indicates why the act revision (status update) is being refused.".

cs:ActReason\#FILLED rdfs:subClassOf cs:ActReason\#%5fStatusRevisionRefusalReasonCode;
  rdfs:label "fully filled";
  dc:title "fully filled";
  rdfs:comment "Ordered quantity has already been completely fulfilled.";
  dcterms:description "Ordered quantity has already been completely fulfilled.".

cs:ActReason\#%5fSubstanceAdministrationPermissionRefusalReasonCode rdfs:subClassOf cs:ActReason;
  rdfs:label "SubstanceAdministrationPermissionRefusalReasonCode";
  dc:title "SubstanceAdministrationPermissionRefusalReasonCode";
  rdfs:comment "Definition:Indicates why the requested authorization to prescribe or dispense a medication has been refused.";
  dcterms:description "Definition:Indicates why the requested authorization to prescribe or dispense a medication has been refused.".

cs:ActReason\#PATINELIG rdfs:subClassOf cs:ActReason\#%5fSubstanceAdministrationPermissionRefusalReasonCode;
  rdfs:label "patient not eligible";
  dc:title "patient not eligible";
  rdfs:comment "Definition:Patient not eligible for drug";
  dcterms:description "Definition:Patient not eligible for drug".

cs:ActReason\#PROTUNMET rdfs:subClassOf cs:ActReason\#%5fSubstanceAdministrationPermissionRefusalReasonCode;
  rdfs:label "protocol not met";
  dc:title "protocol not met";
  rdfs:comment "Definition:Patient does not meet required protocol";
  dcterms:description "Definition:Patient does not meet required protocol".

cs:ActReason\#PROVUNAUTH rdfs:subClassOf cs:ActReason\#%5fSubstanceAdministrationPermissionRefusalReasonCode;
  rdfs:label "provider not authorized";
  dc:title "provider not authorized";
  rdfs:comment "Definition:Provider is not authorized to prescribe or dispense";
  dcterms:description "Definition:Provider is not authorized to prescribe or dispense".

cs:ActReason\#%5fSubstanceAdminSubstitutionNotAllowedReason rdfs:subClassOf cs:ActReason;
  rdfs:label "SubstanceAdminSubstitutionNotAllowedReason";
  dc:title "SubstanceAdminSubstitutionNotAllowedReason";
  rdfs:comment "Reasons why substitution of a substance administration request is not permitted.";
  dcterms:description "Reasons why substitution of a substance administration request is not permitted.".

cs:ActReason\#ALGINT rdfs:subClassOf cs:ActReason\#%5fSubstanceAdminSubstitutionNotAllowedReason;
  rdfs:label "allergy intolerance";
  dc:title "allergy intolerance";
  rdfs:comment "Definition: Patient has had a prior allergic intolerance response to alternate product or one of its components.";
  dcterms:description "Definition: Patient has had a prior allergic intolerance response to alternate product or one of its components.".

cs:ActReason\#COMPCON rdfs:subClassOf cs:ActReason\#%5fSubstanceAdminSubstitutionNotAllowedReason;
  rdfs:label "compliance concern";
  dc:title "compliance concern";
  rdfs:comment "Definition: Patient has compliance issues with medication such as differing appearance, flavor, size, shape or consistency.";
  dcterms:description "Definition: Patient has compliance issues with medication such as differing appearance, flavor, size, shape or consistency.".

cs:ActReason\#THERCHAR rdfs:subClassOf cs:ActReason\#%5fSubstanceAdminSubstitutionNotAllowedReason;
  rdfs:label "therapeutic characteristics";
  dc:title "therapeutic characteristics";
  rdfs:comment "The prescribed product has specific clinical release or other therapeutic characteristics not shared by other substitutable medications.";
  dcterms:description "The prescribed product has specific clinical release or other therapeutic characteristics not shared by other substitutable medications.".

cs:ActReason\#TRIAL rdfs:subClassOf cs:ActReason\#%5fSubstanceAdminSubstitutionNotAllowedReason;
  rdfs:label "clinical trial drug";
  dc:title "clinical trial drug";
  rdfs:comment "Definition: The specific manufactured drug is part of a clinical trial.";
  dcterms:description "Definition: The specific manufactured drug is part of a clinical trial.".

cs:ActReason\#%5fSubstanceAdminSubstitutionReason rdfs:subClassOf cs:ActReason;
  rdfs:label "SubstanceAdminSubstitutionReason";
  dc:title "SubstanceAdminSubstitutionReason";
  rdfs:comment "SubstanceAdminSubstitutionReason";
  dcterms:description "SubstanceAdminSubstitutionReason".

cs:ActReason\#CT rdfs:subClassOf cs:ActReason\#%5fSubstanceAdminSubstitutionReason;
  rdfs:label "continuing therapy";
  dc:title "continuing therapy";
  rdfs:comment "Indicates that the decision to substitute or to not substitute was driven by a desire to maintain consistency with a pre-existing therapy.  I.e. The performer provided the same item/service as had been previously provided rather than providing exactly what was ordered, or rather than substituting with a lower-cost equivalent.";
  dcterms:description "Indicates that the decision to substitute or to not substitute was driven by a desire to maintain consistency with a pre-existing therapy.  I.e. The performer provided the same item/service as had been previously provided rather than providing exactly what was ordered, or rather than substituting with a lower-cost equivalent.".

cs:ActReason\#FP rdfs:subClassOf cs:ActReason\#%5fSubstanceAdminSubstitutionReason;
  rdfs:label "formulary policy";
  dc:title "formulary policy";
  rdfs:comment "Indicates that the decision to substitute or to not substitute was driven by a policy expressed within the formulary.";
  dcterms:description "Indicates that the decision to substitute or to not substitute was driven by a policy expressed within the formulary.".

cs:ActReason\#OS rdfs:subClassOf cs:ActReason\#%5fSubstanceAdminSubstitutionReason;
  rdfs:label "out of stock";
  dc:title "out of stock";
  rdfs:comment "In the case of 'substitution', indicates that the substitution occurred because the ordered item was not in stock.  In the case of 'no substitution', indicates that a cheaper equivalent was not substituted because it was not in stock.";
  dcterms:description "In the case of 'substitution', indicates that the substitution occurred because the ordered item was not in stock.  In the case of 'no substitution', indicates that a cheaper equivalent was not substituted because it was not in stock.".

cs:ActReason\#RR rdfs:subClassOf cs:ActReason\#%5fSubstanceAdminSubstitutionReason;
  rdfs:label "regulatory requirement";
  dc:title "regulatory requirement";
  rdfs:comment "Indicates that the decision to substitute or to not substitute was driven by a jurisdictional regulatory requirement mandating or prohibiting substitution.";
  dcterms:description "Indicates that the decision to substitute or to not substitute was driven by a jurisdictional regulatory requirement mandating or prohibiting substitution.".

cs:ActReason\#%5fTransferActReason rdfs:subClassOf cs:ActReason;
  rdfs:label "TransferActReason";
  dc:title "TransferActReason";
  rdfs:comment "The explanation for why a patient is moved from one location to another within the organization";
  dcterms:description "The explanation for why a patient is moved from one location to another within the organization".

cs:ActReason\#ER rdfs:subClassOf cs:ActReason\#%5fTransferActReason;
  rdfs:label "Error";
  dc:title "Error";
  rdfs:comment "Moved to an error in placing the patient in the original location.";
  dcterms:description "Moved to an error in placing the patient in the original location.".

cs:ActReason\#RQ rdfs:subClassOf cs:ActReason\#%5fTransferActReason;
  rdfs:label "Request";
  dc:title "Request";
  rdfs:comment "Moved at the request of the patient.";
  dcterms:description "Moved at the request of the patient.".

cs:ActReason\#%5fActBillableServiceReason rdfs:subClassOf cs:ActReason;
  rdfs:label "ActBillableServiceReason";
  dc:title "ActBillableServiceReason";
  rdfs:comment "Definition: This domain is used to document reasons for providing a billable service; the billable services may include both clinical services and social services.";
  dcterms:description "Definition: This domain is used to document reasons for providing a billable service; the billable services may include both clinical services and social services.".

cs:ActReason\#%5fActBillableClinicalServiceReason rdfs:subClassOf cs:ActReason\#%5fActBillableServiceReason;
  rdfs:label "ActBillableClinicalServiceReason";
  dc:title "ActBillableClinicalServiceReason";
  rdfs:comment "Reason for Clinical Service being performed.\r\n\n                        This domain excludes reasons specified by diagnosed conditions.\r\n\n                        Examples of values from this domain include duplicate therapy and fraudulent prescription.";
  dcterms:description "Reason for Clinical Service being performed.\r\n\n                        This domain excludes reasons specified by diagnosed conditions.\r\n\n                        Examples of values from this domain include duplicate therapy and fraudulent prescription.".

cs:ActReason\#BONUS rdfs:subClassOf cs:ActReason.

cs:ActReason\#CHD rdfs:subClassOf cs:ActReason;
  rdfs:label "Children only";
  dc:title "Children only";
  rdfs:comment "Description:The level of coverage under the policy or program is available only to children";
  dcterms:description "Description:The level of coverage under the policy or program is available only to children".

cs:ActReason\#DEP rdfs:subClassOf cs:ActReason;
  rdfs:label "Dependents only";
  dc:title "Dependents only";
  rdfs:comment "Description:The level of coverage under the policy or program is available only to a subscriber's dependents.";
  dcterms:description "Description:The level of coverage under the policy or program is available only to a subscriber's dependents.".

cs:ActReason\#ECH rdfs:subClassOf cs:ActReason;
  rdfs:label "Employee and children";
  dc:title "Employee and children";
  rdfs:comment "Description:The level of coverage under the policy or program is available to an employee and his or her children.";
  dcterms:description "Description:The level of coverage under the policy or program is available to an employee and his or her children.".

cs:ActReason\#EDU rdfs:subClassOf cs:ActReason.

cs:ActReason\#EMP rdfs:subClassOf cs:ActReason;
  rdfs:label "Employee only";
  dc:title "Employee only";
  rdfs:comment "Description:The level of coverage under the policy or program is available only to an employee.";
  dcterms:description "Description:The level of coverage under the policy or program is available only to an employee.".

cs:ActReason\#ESP rdfs:subClassOf cs:ActReason;
  rdfs:label "Employee and spouse";
  dc:title "Employee and spouse";
  rdfs:comment "Description:The level of coverage under the policy or program is available to an employee and his or her spouse.";
  dcterms:description "Description:The level of coverage under the policy or program is available to an employee and his or her spouse.".

cs:ActReason\#FAM rdfs:subClassOf cs:ActReason;
  rdfs:label "Family";
  dc:title "Family";
  rdfs:comment "Description:The level of coverage under the policy or program is available to a subscriber's family.";
  dcterms:description "Description:The level of coverage under the policy or program is available to a subscriber's family.".

cs:ActReason\#IND rdfs:subClassOf cs:ActReason;
  rdfs:label "Individual";
  dc:title "Individual";
  rdfs:comment "Description:The level of coverage under the policy or program is available to an individual.";
  dcterms:description "Description:The level of coverage under the policy or program is available to an individual.".

cs:ActReason\#INVOICE rdfs:subClassOf cs:ActReason.

cs:ActReason\#PROA rdfs:subClassOf cs:ActReason.

cs:ActReason\#RECOV rdfs:subClassOf cs:ActReason.

cs:ActReason\#RETRO rdfs:subClassOf cs:ActReason.

cs:ActReason\#SPC rdfs:subClassOf cs:ActReason;
  rdfs:label "Spouse and children";
  dc:title "Spouse and children";
  rdfs:comment "Description:The level of coverage under the policy or program is available to a subscriber's spouse and children";
  dcterms:description "Description:The level of coverage under the policy or program is available to a subscriber's spouse and children".

cs:ActReason\#SPO rdfs:subClassOf cs:ActReason;
  rdfs:label "Spouse only";
  dc:title "Spouse only";
  rdfs:comment "Description:The level of coverage under the policy or program is available only to a subscribers spouse";
  dcterms:description "Description:The level of coverage under the policy or program is available only to a subscribers spouse".

cs:ActReason\#TRAN rdfs:subClassOf cs:ActReason.

# - vs:v3-ActRelationshipCheckpoint --------------------------------------------

vs:v3-ActRelationshipCheckpoint a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActRelationshipCheckpoint";
  dc:title "v3 Code System ActRelationshipCheckpoint";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActRelationshipCheckpoint.

cs:ActRelationshipCheckpoint.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActRelationshipCheckpoint";
  dc:title "v3 Code System ActRelationshipCheckpoint";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActRelationshipCheckpoint a fhir:Concept.

cs:ActRelationshipCheckpoint\#B rdfs:subClassOf cs:ActRelationshipCheckpoint;
  rdfs:label "beginning";
  dc:title "beginning";
  rdfs:comment "Condition is tested every time before execution of the service (WHILE condition DO service).";
  dcterms:description "Condition is tested every time before execution of the service (WHILE condition DO service).".

cs:ActRelationshipCheckpoint\#E rdfs:subClassOf cs:ActRelationshipCheckpoint;
  rdfs:label "end";
  dc:title "end";
  rdfs:comment "Condition is tested at the end of a repeated service execution.  The service is repeated only if the condition is true (DO service WHILE condition).";
  dcterms:description "Condition is tested at the end of a repeated service execution.  The service is repeated only if the condition is true (DO service WHILE condition).".

cs:ActRelationshipCheckpoint\#S rdfs:subClassOf cs:ActRelationshipCheckpoint;
  rdfs:label "entry";
  dc:title "entry";
  rdfs:comment "Condition is tested once before the service is executed (IF condition THEN service).";
  dcterms:description "Condition is tested once before the service is executed (IF condition THEN service).".

cs:ActRelationshipCheckpoint\#T rdfs:subClassOf cs:ActRelationshipCheckpoint;
  rdfs:label "through";
  dc:title "through";
  rdfs:comment "Condition must be true throughout the execution and the service is interrupted (asynchronously) as soon as the condition turns false (asynchronous WHILE loop).  The service must be interruptible.";
  dcterms:description "Condition must be true throughout the execution and the service is interrupted (asynchronously) as soon as the condition turns false (asynchronous WHILE loop).  The service must be interruptible.".

cs:ActRelationshipCheckpoint\#X rdfs:subClassOf cs:ActRelationshipCheckpoint;
  rdfs:label "exit";
  dc:title "exit";
  rdfs:comment "Condition is a loop checkpoint, i.e. it is a step of an activity plan and, if negative causes the containing loop to exit.";
  dcterms:description "Condition is a loop checkpoint, i.e. it is a step of an activity plan and, if negative causes the containing loop to exit.".

# - vs:v3-ActRelationshipJoin --------------------------------------------------

vs:v3-ActRelationshipJoin a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActRelationshipJoin";
  dc:title "v3 Code System ActRelationshipJoin";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActRelationshipJoin.

cs:ActRelationshipJoin.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActRelationshipJoin";
  dc:title "v3 Code System ActRelationshipJoin";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActRelationshipJoin a fhir:Concept.

cs:ActRelationshipJoin\#D rdfs:subClassOf cs:ActRelationshipJoin;
  rdfs:label "detached";
  dc:title "detached";
  rdfs:comment "Detach this branch from the other branches so it will not be resynchronized with the other branches.";
  dcterms:description "Detach this branch from the other branches so it will not be resynchronized with the other branches.".

cs:ActRelationshipJoin\#K rdfs:subClassOf cs:ActRelationshipJoin;
  rdfs:label "kill";
  dc:title "kill";
  rdfs:comment "When all other concurrent branches are terminated, interrupt and discontinue this branch.";
  dcterms:description "When all other concurrent branches are terminated, interrupt and discontinue this branch.".

cs:ActRelationshipJoin\#W rdfs:subClassOf cs:ActRelationshipJoin;
  rdfs:label "wait";
  dc:title "wait";
  rdfs:comment "Wait for this branch to terminate.";
  dcterms:description "Wait for this branch to terminate.".

cs:ActRelationshipJoin\#X rdfs:subClassOf cs:ActRelationshipJoin;
  rdfs:label "exclusive wait";
  dc:title "exclusive wait";
  rdfs:comment "Wait for any one of the branches in the set of exclusive wait branches to terminate, then discontinue all the other exclusive wait branches.";
  dcterms:description "Wait for any one of the branches in the set of exclusive wait branches to terminate, then discontinue all the other exclusive wait branches.".

# - vs:v3-ActRelationshipSplit -------------------------------------------------

vs:v3-ActRelationshipSplit a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActRelationshipSplit";
  dc:title "v3 Code System ActRelationshipSplit";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActRelationshipSplit.

cs:ActRelationshipSplit.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActRelationshipSplit";
  dc:title "v3 Code System ActRelationshipSplit";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActRelationshipSplit a fhir:Concept.

cs:ActRelationshipSplit\#E1 rdfs:subClassOf cs:ActRelationshipSplit;
  rdfs:label "exclusive try once";
  dc:title "exclusive try once";
  rdfs:comment "The pre-condition associated with the branch is evaluated once and if true the branch may be entered. All other exclusive branches compete with each other and only one will be selected. This implements a COND, IF and CASE conditionals, or \"XOR-split.\" The order in which the branches are considered may be specified in the priorityNumber attribute.";
  dcterms:description "The pre-condition associated with the branch is evaluated once and if true the branch may be entered. All other exclusive branches compete with each other and only one will be selected. This implements a COND, IF and CASE conditionals, or \"XOR-split.\" The order in which the branches are considered may be specified in the priorityNumber attribute.".

cs:ActRelationshipSplit\#EW rdfs:subClassOf cs:ActRelationshipSplit;
  rdfs:label "exclusive wait";
  dc:title "exclusive wait";
  rdfs:comment "A branch is selected as soon as the pre-condition associated with the branch evaluates to true.  If the condition is false, the branch may be entered later, when the condition turns true.  All other exclusive branches compete with each other and only one will be selected.  Each waiting branch executes in parallel with the default join code wait  (see below). The order in which the branches are considered may be specified in the Service_relationship.priority_nmb.";
  dcterms:description "A branch is selected as soon as the pre-condition associated with the branch evaluates to true.  If the condition is false, the branch may be entered later, when the condition turns true.  All other exclusive branches compete with each other and only one will be selected.  Each waiting branch executes in parallel with the default join code wait  (see below). The order in which the branches are considered may be specified in the Service_relationship.priority_nmb.".

cs:ActRelationshipSplit\#I1 rdfs:subClassOf cs:ActRelationshipSplit;
  rdfs:label "inclusive try once";
  dc:title "inclusive try once";
  rdfs:comment "A branch is executed if its associated preconditions permit. If associated preconditions do not permit, the branch is dropped.  Inclusive branches are not suppressed and do not suppress other branches.";
  dcterms:description "A branch is executed if its associated preconditions permit. If associated preconditions do not permit, the branch is dropped.  Inclusive branches are not suppressed and do not suppress other branches.".

cs:ActRelationshipSplit\#IW rdfs:subClassOf cs:ActRelationshipSplit;
  rdfs:label "inclusive wait";
  dc:title "inclusive wait";
  rdfs:comment "A branch is executed as soon as its associated conditions permit.  If the condition is false, the branch may be entered later, when the condition turns true.  Inclusive branches are not suppressed and do not suppress other branches.  Each waiting branch executes in parallel with the default join code wait  (see below).";
  dcterms:description "A branch is executed as soon as its associated conditions permit.  If the condition is false, the branch may be entered later, when the condition turns true.  Inclusive branches are not suppressed and do not suppress other branches.  Each waiting branch executes in parallel with the default join code wait  (see below).".

# - vs:v3-ActRelationshipSubset ------------------------------------------------

vs:v3-ActRelationshipSubset a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActRelationshipSubset";
  dc:title "v3 Code System ActRelationshipSubset";
  rdfs:comment " <ns1:p>Used to indicate that the target of the relationship will be a filtered subset of the total related set of targets.</ns1:p><ns1:p>Used when there is a need to limit the number of components to the first, the last, the next, the total, the average or some other filtered or calculated subset.</ns1:p>";
  dcterms:description " <ns1:p>Used to indicate that the target of the relationship will be a filtered subset of the total related set of targets.</ns1:p><ns1:p>Used when there is a need to limit the number of components to the first, the last, the next, the total, the average or some other filtered or calculated subset.</ns1:p>";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActRelationshipSubset.

cs:ActRelationshipSubset.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActRelationshipSubset";
  dc:title "v3 Code System ActRelationshipSubset";
  rdfs:comment " <ns1:p>Used to indicate that the target of the relationship will be a filtered subset of the total related set of targets.</ns1:p><ns1:p>Used when there is a need to limit the number of components to the first, the last, the next, the total, the average or some other filtered or calculated subset.</ns1:p>";
  dcterms:description " <ns1:p>Used to indicate that the target of the relationship will be a filtered subset of the total related set of targets.</ns1:p><ns1:p>Used when there is a need to limit the number of components to the first, the last, the next, the total, the average or some other filtered or calculated subset.</ns1:p>";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActRelationshipSubset a fhir:Concept.

cs:ActRelationshipSubset\#%5fParticipationSubset rdfs:subClassOf cs:ActRelationshipSubset;
  rdfs:label "ParticipationSubset";
  dc:title "ParticipationSubset";
  rdfs:comment "Used to indicate that the participation is a filtered subset of the total participations of the same type owned by the Act. \r\n\n                        Used when there is a need to limit the participations to the first, the last, the next or some other filtered subset.";
  dcterms:description "Used to indicate that the participation is a filtered subset of the total participations of the same type owned by the Act. \r\n\n                        Used when there is a need to limit the participations to the first, the last, the next or some other filtered subset.".

cs:ActRelationshipSubset\#FUTURE rdfs:subClassOf cs:ActRelationshipSubset\#%5fParticipationSubset;
  rdfs:label "expected future";
  dc:title "expected future";
  rdfs:comment "An occurrence that is scheduled to occur in the future. An Act whose effective time is greater than 'now', where 'now' is the time the instance is authored.";
  dcterms:description "An occurrence that is scheduled to occur in the future. An Act whose effective time is greater than 'now', where 'now' is the time the instance is authored.".

cs:ActRelationshipSubset\#FUTSUM rdfs:subClassOf cs:ActRelationshipSubset\#FUTURE;
  rdfs:label "future summary";
  dc:title "future summary";
  rdfs:comment "Represents a 'summary' of all acts that are scheduled to occur in the future (whose effective time is greater than 'now' where is the time the instance is authored.). The effectiveTime represents the outer boundary of all occurrences, repeatNumber represents the total number of repetitions, etc.";
  dcterms:description "Represents a 'summary' of all acts that are scheduled to occur in the future (whose effective time is greater than 'now' where is the time the instance is authored.). The effectiveTime represents the outer boundary of all occurrences, repeatNumber represents the total number of repetitions, etc.".

cs:ActRelationshipSubset\#LAST rdfs:subClassOf cs:ActRelationshipSubset\#FUTURE;
  rdfs:label "expected last";
  dc:title "expected last";
  rdfs:comment "Restricted to the latest known occurrence that is scheduled to occur. The Act with the highest known effective time.";
  dcterms:description "Restricted to the latest known occurrence that is scheduled to occur. The Act with the highest known effective time.".

cs:ActRelationshipSubset\#NEXT rdfs:subClassOf cs:ActRelationshipSubset\#FUTURE;
  rdfs:label "expected next";
  dc:title "expected next";
  rdfs:comment "Restricted to the nearest recent known occurrence scheduled to occur in the future. The Act with the lowest effective time, still greater than 'now'. ('now' is the time the instance is authored.)";
  dcterms:description "Restricted to the nearest recent known occurrence scheduled to occur in the future. The Act with the lowest effective time, still greater than 'now'. ('now' is the time the instance is authored.)".

cs:ActRelationshipSubset\#PAST rdfs:subClassOf cs:ActRelationshipSubset\#%5fParticipationSubset;
  rdfs:label "previous";
  dc:title "previous";
  rdfs:comment "An occurrence that occurred or was scheduled to occur in the past. An Act whose effective time is less than 'now'. ('now' is the time the instance is authored.)";
  dcterms:description "An occurrence that occurred or was scheduled to occur in the past. An Act whose effective time is less than 'now'. ('now' is the time the instance is authored.)".

cs:ActRelationshipSubset\#FIRST rdfs:subClassOf cs:ActRelationshipSubset\#PAST;
  rdfs:label "first known";
  dc:title "first known";
  rdfs:comment "Restricted to the earliest known occurrence that occurred or was scheduled to occur in the past. The Act with the lowest effective time. ('now' is the time the instance is authored.)";
  dcterms:description "Restricted to the earliest known occurrence that occurred or was scheduled to occur in the past. The Act with the lowest effective time. ('now' is the time the instance is authored.)".

cs:ActRelationshipSubset\#PREVSUM rdfs:subClassOf cs:ActRelationshipSubset\#PAST;
  rdfs:label "previous summary";
  dc:title "previous summary";
  rdfs:comment "Represents a 'summary' of all acts that previously occurred or were scheduled to occur. The effectiveTime represents the outer boundary of all occurrences, repeatNumber represents the total number of repetitions, etc. ('now' is the time the instance is authored.)";
  dcterms:description "Represents a 'summary' of all acts that previously occurred or were scheduled to occur. The effectiveTime represents the outer boundary of all occurrences, repeatNumber represents the total number of repetitions, etc. ('now' is the time the instance is authored.)".

cs:ActRelationshipSubset\#RECENT rdfs:subClassOf cs:ActRelationshipSubset\#PAST;
  rdfs:label "most recent";
  dc:title "most recent";
  rdfs:comment "Restricted to the most recent known occurrence that occurred or was scheduled to occur in the past. The Act with the most recent effective time, still less than 'now'. ('now' is the time the instance is authored.)";
  dcterms:description "Restricted to the most recent known occurrence that occurred or was scheduled to occur in the past. The Act with the most recent effective time, still less than 'now'. ('now' is the time the instance is authored.)".

cs:ActRelationshipSubset\#SUM rdfs:subClassOf cs:ActRelationshipSubset\#%5fParticipationSubset;
  rdfs:label "summary";
  dc:title "summary";
  rdfs:comment "Represents a 'summary' of all acts that have occurred or were scheduled to occur and which are scheduled to occur in the future. The effectiveTime represents the outer boundary of all occurrences, repeatNumber represents the total number of repetitions, etc.";
  dcterms:description "Represents a 'summary' of all acts that have occurred or were scheduled to occur and which are scheduled to occur in the future. The effectiveTime represents the outer boundary of all occurrences, repeatNumber represents the total number of repetitions, etc.".

cs:ActRelationshipSubset\#ActRelationshipExpectedSubset rdfs:subClassOf cs:ActRelationshipSubset;
  rdfs:label "ActRelationshipExpectedSubset";
  dc:title "ActRelationshipExpectedSubset";
  rdfs:comment "ActRelationshipExpectedSubset";
  dcterms:description "ActRelationshipExpectedSubset".

cs:ActRelationshipSubset\#ActRelationshipPastSubset rdfs:subClassOf cs:ActRelationshipSubset;
  rdfs:label "ActRelationshipPastSubset";
  dc:title "ActRelationshipPastSubset";
  rdfs:comment "ActRelationshipPastSubset";
  dcterms:description "ActRelationshipPastSubset".

cs:ActRelationshipSubset\#MAX rdfs:subClassOf cs:ActRelationshipSubset;
  rdfs:label "maximum";
  dc:title "maximum";
  rdfs:comment "The occurrence whose value attribute is greater than all other occurrences at the time the instance is created.";
  dcterms:description "The occurrence whose value attribute is greater than all other occurrences at the time the instance is created.".

cs:ActRelationshipSubset\#MIN rdfs:subClassOf cs:ActRelationshipSubset;
  rdfs:label "minimum";
  dc:title "minimum";
  rdfs:comment "The occurrence whose value attribute is less than all other occurrences at the time the instance is created.";
  dcterms:description "The occurrence whose value attribute is less than all other occurrences at the time the instance is created.".

# - vs:v3-ActRelationshipType --------------------------------------------------

vs:v3-ActRelationshipType a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActRelationshipType";
  dc:title "v3 Code System ActRelationshipType";
  rdfs:comment " The source is an excerpt from the target.";
  dcterms:description " The source is an excerpt from the target.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActRelationshipType.

cs:ActRelationshipType.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActRelationshipType";
  dc:title "v3 Code System ActRelationshipType";
  rdfs:comment " The source is an excerpt from the target.";
  dcterms:description " The source is an excerpt from the target.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActRelationshipType a fhir:Concept.

cs:ActRelationshipType\#ART rdfs:subClassOf cs:ActRelationshipType;
  rdfs:label "act relationship type";
  dc:title "act relationship type";
  rdfs:comment "Description: A directed association between a source Act and a target Act.\r\n\n                        \n                           Usage Note: This code should never be transmitted in an instance as the value of ActRelationship.typeCode (attribute)";
  dcterms:description "Description: A directed association between a source Act and a target Act.\r\n\n                        \n                           Usage Note: This code should never be transmitted in an instance as the value of ActRelationship.typeCode (attribute)".

cs:ActRelationshipType\#%5fActClassTemporallyPertains rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "ActClassTemporallyPertains";
  dc:title "ActClassTemporallyPertains";
  rdfs:comment "ActClassTemporallyPertains";
  dcterms:description "ActClassTemporallyPertains".

cs:ActRelationshipType\#%5fActRelationshipAccounting rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "ActRelationshipAccounting";
  dc:title "ActRelationshipAccounting";
  rdfs:comment "Codes that describe the relationship between an Act and a financial instrument such as a financial transaction, account or invoice element.";
  dcterms:description "Codes that describe the relationship between an Act and a financial instrument such as a financial transaction, account or invoice element.".

cs:ActRelationshipType\#%5fActRelationshipCostTracking rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipAccounting;
  rdfs:label "ActRelationshipCostTracking";
  dc:title "ActRelationshipCostTracking";
  rdfs:comment "Expresses values for describing the relationship relationship between an InvoiceElement or InvoiceElementGroup and a billable act.";
  dcterms:description "Expresses values for describing the relationship relationship between an InvoiceElement or InvoiceElementGroup and a billable act.".

cs:ActRelationshipType\#CHRG rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipCostTracking;
  rdfs:label "has charge";
  dc:title "has charge";
  rdfs:comment "A relationship that provides an ability to associate a financial transaction (target) as a charge to a clinical act (source).  A clinical act may have a charge associated with the execution or delivery of the service.\r\n\n                        The financial transaction will define the charge (bill) for delivery or performance of the service.\r\n\n                        Charges and costs are distinct terms.  A charge defines what is charged or billed to another organization or entity within an organization.  The cost defines what it costs an organization to perform or deliver a service or product.";
  dcterms:description "A relationship that provides an ability to associate a financial transaction (target) as a charge to a clinical act (source).  A clinical act may have a charge associated with the execution or delivery of the service.\r\n\n                        The financial transaction will define the charge (bill) for delivery or performance of the service.\r\n\n                        Charges and costs are distinct terms.  A charge defines what is charged or billed to another organization or entity within an organization.  The cost defines what it costs an organization to perform or deliver a service or product.".

cs:ActRelationshipType\#COST rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipCostTracking;
  rdfs:label "has cost";
  dc:title "has cost";
  rdfs:comment "A relationship that provides an ability to associate a financial transaction (target) as a cost to a clinical act (source).  A clinical act may have an inherit cost associated with the execution or delivery of the service.\r\n\n                        The financial transaction will define the cost of delivery or performance of the service.\r\n\n                        Charges and costs are distinct terms.  A charge defines what is charged or billed to another organization or entity within an organization.  The cost defines what it costs an organization to perform or deliver a service or product.";
  dcterms:description "A relationship that provides an ability to associate a financial transaction (target) as a cost to a clinical act (source).  A clinical act may have an inherit cost associated with the execution or delivery of the service.\r\n\n                        The financial transaction will define the cost of delivery or performance of the service.\r\n\n                        Charges and costs are distinct terms.  A charge defines what is charged or billed to another organization or entity within an organization.  The cost defines what it costs an organization to perform or deliver a service or product.".

cs:ActRelationshipType\#%5fActRelationshipPosting rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipAccounting;
  rdfs:label "ActRelationshipPosting";
  dc:title "ActRelationshipPosting";
  rdfs:comment "Expresses values for describing the relationship between a FinancialTransaction and an Account.";
  dcterms:description "Expresses values for describing the relationship between a FinancialTransaction and an Account.".

cs:ActRelationshipType\#CREDIT rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipPosting;
  rdfs:label "has credit";
  dc:title "has credit";
  rdfs:comment "A credit relationship ties a financial transaction (target) to an account (source). A credit, once applied (posted), may have either a positive or negative effect on the account balance, depending on the type of account. An asset account credit will decrease the account balance. A non-asset account credit will decrease the account balance.";
  dcterms:description "A credit relationship ties a financial transaction (target) to an account (source). A credit, once applied (posted), may have either a positive or negative effect on the account balance, depending on the type of account. An asset account credit will decrease the account balance. A non-asset account credit will decrease the account balance.".

cs:ActRelationshipType\#DEBIT rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipPosting;
  rdfs:label "has debit";
  dc:title "has debit";
  rdfs:comment "A debit relationship ties a financial transaction (target) to an account (source).  A debit, once applied (posted), may have either a positive or negative effect on the account balance, depending on the type of account.  An asset account debit will increase the account balance.  A non-asset account debit will decrease the account balance.";
  dcterms:description "A debit relationship ties a financial transaction (target) to an account (source).  A debit, once applied (posted), may have either a positive or negative effect on the account balance, depending on the type of account.  An asset account debit will increase the account balance.  A non-asset account debit will decrease the account balance.".

cs:ActRelationshipType\#%5fActRelationshipConditional rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "ActRelationshipConditional";
  dc:title "ActRelationshipConditional";
  rdfs:comment "Specifies under what circumstances (target Act) the source-Act may, must, must not or has occurred";
  dcterms:description "Specifies under what circumstances (target Act) the source-Act may, must, must not or has occurred".

cs:ActRelationshipType\#CIND rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipConditional;
  rdfs:label "has contra-indication";
  dc:title "has contra-indication";
  rdfs:comment "A contraindication is just a negation of a reason, i.e. it gives a condition under which the action is not to be done. Both, source and target can be any kind of service; target service is in criterion mood. How the strength of a contraindication is expressed (e.g., relative, absolute) is left as an open issue. The priorityNumber attribute could be used.";
  dcterms:description "A contraindication is just a negation of a reason, i.e. it gives a condition under which the action is not to be done. Both, source and target can be any kind of service; target service is in criterion mood. How the strength of a contraindication is expressed (e.g., relative, absolute) is left as an open issue. The priorityNumber attribute could be used.".

cs:ActRelationshipType\#PRCN rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipConditional;
  rdfs:label "has pre-condition";
  dc:title "has pre-condition";
  rdfs:comment "A requirement to be true before a service is performed. The target can be any service in criterion mood.  For multiple pre-conditions a conjunction attribute (AND, OR, XOR) is applicable.";
  dcterms:description "A requirement to be true before a service is performed. The target can be any service in criterion mood.  For multiple pre-conditions a conjunction attribute (AND, OR, XOR) is applicable.".

cs:ActRelationshipType\#RSON rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipConditional;
  rdfs:label "has reason";
  dc:title "has reason";
  rdfs:comment "Description: The reason or rationale for a service. A reason link is weaker than a trigger, it only suggests that some service may be or might have been a reason for some action, but not that this reason requires/required the action to be taken. Also, as opposed to the trigger, there is no strong timely relation between the reason and the action.  As well as providing various types of information about the rationale for a service, the RSON act relationship is routinely used between a SBADM act and an OBS act to describe the indication for use of a medication.  Child concepts may be used to describe types of indication. \r\n\n                        \n                           Discussion: In prior releases, the code \"SUGG\" (suggests) was expressed as \"an inversion of the reason link.\" That code has been retired in favor of the inversion indicator that is an attribute of ActRelationship.";
  dcterms:description "Description: The reason or rationale for a service. A reason link is weaker than a trigger, it only suggests that some service may be or might have been a reason for some action, but not that this reason requires/required the action to be taken. Also, as opposed to the trigger, there is no strong timely relation between the reason and the action.  As well as providing various types of information about the rationale for a service, the RSON act relationship is routinely used between a SBADM act and an OBS act to describe the indication for use of a medication.  Child concepts may be used to describe types of indication. \r\n\n                        \n                           Discussion: In prior releases, the code \"SUGG\" (suggests) was expressed as \"an inversion of the reason link.\" That code has been retired in favor of the inversion indicator that is an attribute of ActRelationship.".

cs:ActRelationshipType\#BLOCK rdfs:subClassOf cs:ActRelationshipType\#RSON;
  rdfs:label "blocks";
  dc:title "blocks";
  rdfs:comment "Definition: The source act is performed to block the effects of the target act.  This act relationship should be used when describing near miss type incidents where potential harm could have occurred, but the action described in the source act blocked the potential harmful effects of the incident actually occurring.";
  dcterms:description "Definition: The source act is performed to block the effects of the target act.  This act relationship should be used when describing near miss type incidents where potential harm could have occurred, but the action described in the source act blocked the potential harmful effects of the incident actually occurring.".

cs:ActRelationshipType\#DIAG rdfs:subClassOf cs:ActRelationshipType\#RSON;
  rdfs:label "diagnoses";
  dc:title "diagnoses";
  rdfs:comment "Description: The source act is intended to help establish the presence of a (an adverse) situation described by the target act. This is not limited to diseases but can apply to any adverse situation or condition of medical or technical nature.";
  dcterms:description "Description: The source act is intended to help establish the presence of a (an adverse) situation described by the target act. This is not limited to diseases but can apply to any adverse situation or condition of medical or technical nature.".

cs:ActRelationshipType\#IMM rdfs:subClassOf cs:ActRelationshipType\#RSON;
  rdfs:label "immunization against";
  dc:title "immunization against";
  rdfs:comment "Description: The source act is intented to provide immunity against the effects of the target act (the target act describes an infectious disease)";
  dcterms:description "Description: The source act is intented to provide immunity against the effects of the target act (the target act describes an infectious disease)".

cs:ActRelationshipType\#ACTIMM rdfs:subClassOf cs:ActRelationshipType\#IMM;
  rdfs:label "active immunization against";
  dc:title "active immunization against";
  rdfs:comment "Description: The source act is intended to provide active immunity against the effects of the target act (the target act describes an infectious disease)";
  dcterms:description "Description: The source act is intended to provide active immunity against the effects of the target act (the target act describes an infectious disease)".

cs:ActRelationshipType\#PASSIMM rdfs:subClassOf cs:ActRelationshipType\#IMM;
  rdfs:label "passive immunization against";
  dc:title "passive immunization against";
  rdfs:comment "Description: The source act is intended to provide passive immunity against the effects of the target act (the target act describes an infectious disease).";
  dcterms:description "Description: The source act is intended to provide passive immunity against the effects of the target act (the target act describes an infectious disease).".

cs:ActRelationshipType\#MITGT rdfs:subClassOf cs:ActRelationshipType\#RSON;
  rdfs:label "mitigates";
  dc:title "mitigates";
  rdfs:comment "The source act removes or lessens the occurrence or effect of the target act.";
  dcterms:description "The source act removes or lessens the occurrence or effect of the target act.".

cs:ActRelationshipType\#RCVY rdfs:subClassOf cs:ActRelationshipType\#MITGT;
  rdfs:label "recovers";
  dc:title "recovers";
  rdfs:comment "Definition: The source act is performed to recover from the effects of the target act.";
  dcterms:description "Definition: The source act is performed to recover from the effects of the target act.".

cs:ActRelationshipType\#PRYLX rdfs:subClassOf cs:ActRelationshipType\#RSON;
  rdfs:label "prophylaxis of";
  dc:title "prophylaxis of";
  rdfs:comment "Description: The source act is intended to reduce the risk of of an adverse situation to emerge as described by the target act. This is not limited to diseases but can apply to any adverse situation or condition of medical or technical nature.";
  dcterms:description "Description: The source act is intended to reduce the risk of of an adverse situation to emerge as described by the target act. This is not limited to diseases but can apply to any adverse situation or condition of medical or technical nature.".

cs:ActRelationshipType\#TREAT rdfs:subClassOf cs:ActRelationshipType\#RSON;
  rdfs:label "treats";
  dc:title "treats";
  rdfs:comment "Description: The source act is intended to improve a pre-existing adverse situation described by the target act. This is not limited to diseases but can apply to any adverse situation or condition of medical or technical nature.";
  dcterms:description "Description: The source act is intended to improve a pre-existing adverse situation described by the target act. This is not limited to diseases but can apply to any adverse situation or condition of medical or technical nature.".

cs:ActRelationshipType\#ADJUNCT rdfs:subClassOf cs:ActRelationshipType\#TREAT;
  rdfs:label "adjunctive treatment";
  dc:title "adjunctive treatment";
  rdfs:comment "Description: The source act is intended to offer an additional treatment for the management or cure of a pre-existing adverse situation described by the target act. This is not limited to diseases but can apply to any adverse situation or condition of medical or technical nature.  It is not a requirement that the non-adjunctive treatment is explicitly specified.";
  dcterms:description "Description: The source act is intended to offer an additional treatment for the management or cure of a pre-existing adverse situation described by the target act. This is not limited to diseases but can apply to any adverse situation or condition of medical or technical nature.  It is not a requirement that the non-adjunctive treatment is explicitly specified.".

cs:ActRelationshipType\#MTREAT rdfs:subClassOf cs:ActRelationshipType\#TREAT;
  rdfs:label "maintenance treatment";
  dc:title "maintenance treatment";
  rdfs:comment "Description: The source act is intended to provide long term maintenance improvement or management of a pre-existing adverse situation described by the target act. This is not limited to diseases but can apply to any adverse situation or condition of medical or technical nature.";
  dcterms:description "Description: The source act is intended to provide long term maintenance improvement or management of a pre-existing adverse situation described by the target act. This is not limited to diseases but can apply to any adverse situation or condition of medical or technical nature.".

cs:ActRelationshipType\#PALLTREAT rdfs:subClassOf cs:ActRelationshipType\#TREAT;
  rdfs:label "palliates";
  dc:title "palliates";
  rdfs:comment "Description: The source act is intended to provide palliation for the effects of the target act.";
  dcterms:description "Description: The source act is intended to provide palliation for the effects of the target act.".

cs:ActRelationshipType\#SYMP rdfs:subClassOf cs:ActRelationshipType\#TREAT;
  rdfs:label "symptomatic relief";
  dc:title "symptomatic relief";
  rdfs:comment "Description: The source act is intented to provide symptomatic relief for the effects of the target act.";
  dcterms:description "Description: The source act is intented to provide symptomatic relief for the effects of the target act.".

cs:ActRelationshipType\#TRIG rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipConditional;
  rdfs:label "has trigger";
  dc:title "has trigger";
  rdfs:comment "A pre-condition that if true should result in the source Act being executed.  The target is in typically in criterion mood.  When reported after the fact (i.e. the criterion has been met) it may be in Event mood.  A delay between the trigger and the triggered action can be specified.\r\n\n                        \n                           Discussion: This includes the concept of a  required act for a service or financial instrument such as an insurance plan or policy. In such cases, the trigger is the occurrence of a specific condition such as coverage limits being exceeded.";
  dcterms:description "A pre-condition that if true should result in the source Act being executed.  The target is in typically in criterion mood.  When reported after the fact (i.e. the criterion has been met) it may be in Event mood.  A delay between the trigger and the triggered action can be specified.\r\n\n                        \n                           Discussion: This includes the concept of a  required act for a service or financial instrument such as an insurance plan or policy. In such cases, the trigger is the occurrence of a specific condition such as coverage limits being exceeded.".

cs:ActRelationshipType\#%5fActRelationshipTemporallyPertains rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "ActRelationshipTemporallyPertains";
  dc:title "ActRelationshipTemporallyPertains";
  rdfs:comment "Abstract collector for ActRelationhsip types that relate two acts by their timing.";
  dcterms:description "Abstract collector for ActRelationhsip types that relate two acts by their timing.".

cs:ActRelationshipType\#%5fActRelationshipTemporallyPertainsApproximates rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipTemporallyPertains;
  rdfs:label "ActRelationshipTemporallyPertainsApproximates";
  dc:title "ActRelationshipTemporallyPertainsApproximates";
  rdfs:comment "Abstract collector for ActRelationship types that relate two acts by their approximate timing.";
  dcterms:description "Abstract collector for ActRelationship types that relate two acts by their approximate timing.".

cs:ActRelationshipType\#ENE rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipTemporallyPertainsApproximates;
  rdfs:label "ends near end";
  dc:title "ends near end";
  rdfs:comment "A relationship in which the source act's effective time ends near the end of the target act's effective time. Near is defined separately as a time interval.\r\n\n                        \n                           Usage Note: Inverse code is ENS";
  dcterms:description "A relationship in which the source act's effective time ends near the end of the target act's effective time. Near is defined separately as a time interval.\r\n\n                        \n                           Usage Note: Inverse code is ENS".

cs:ActRelationshipType\#ECW rdfs:subClassOf cs:ActRelationshipType\#ENE;
  rdfs:label "ends concurrent with";
  dc:title "ends concurrent with";
  rdfs:comment "A relationship in which the source act's effective time ends with the end of the target act's effective time.\r\n\n                        \n                           UsageNote: This code is reflexive.  Therefore its inverse code is itself.";
  dcterms:description "A relationship in which the source act's effective time ends with the end of the target act's effective time.\r\n\n                        \n                           UsageNote: This code is reflexive.  Therefore its inverse code is itself.".

cs:ActRelationshipType\#CONCURRENT rdfs:subClassOf cs:ActRelationshipType\#ECW;
  rdfs:label "concurrent with";
  dc:title "concurrent with";
  rdfs:comment "A relationship in which the source act's effective time is the same as the target act's effective time.\r\n\n                        \n                           UsageNote: This code is reflexive.  Therefore its inverse code is itself.";
  dcterms:description "A relationship in which the source act's effective time is the same as the target act's effective time.\r\n\n                        \n                           UsageNote: This code is reflexive.  Therefore its inverse code is itself.".

cs:ActRelationshipType\#SBSECWE rdfs:subClassOf cs:ActRelationshipType\#ECW;
  rdfs:label "starts before start of, ends with";
  dc:title "starts before start of, ends with";
  rdfs:comment "The source Act starts before the start of the target Act, and ends with the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SASECWE";
  dcterms:description "The source Act starts before the start of the target Act, and ends with the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SASECWE".

cs:ActRelationshipType\#ENS rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipTemporallyPertainsApproximates;
  rdfs:label "ends near start";
  dc:title "ends near start";
  rdfs:comment "A relationship in which the source act's effective time ends near the start of the target act's effective time. Near is defined separately as a time interval.\r\n\n                        \n                           Usage Note: Inverse code is ENE";
  dcterms:description "A relationship in which the source act's effective time ends near the start of the target act's effective time. Near is defined separately as a time interval.\r\n\n                        \n                           Usage Note: Inverse code is ENE".

cs:ActRelationshipType\#ECWS rdfs:subClassOf cs:ActRelationshipType\#ENS;
  rdfs:label "ends concurrent with start of";
  dc:title "ends concurrent with start of";
  rdfs:comment "The source Act ends when the target act starts (i.e. if we say \"ActOne ECWS ActTwo\", it means that ActOne ends when ActTwo starts, therefore ActOne is the source and ActTwo is the target).\r\n\n                        \n                           UsageNote: Inverse code is SCWE";
  dcterms:description "The source Act ends when the target act starts (i.e. if we say \"ActOne ECWS ActTwo\", it means that ActOne ends when ActTwo starts, therefore ActOne is the source and ActTwo is the target).\r\n\n                        \n                           UsageNote: Inverse code is SCWE".

cs:ActRelationshipType\#SNE rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipTemporallyPertainsApproximates;
  rdfs:label "starts near end";
  dc:title "starts near end";
  rdfs:comment "A relationship in which the source act's effective time starts near the end of the target act's effective time. Near is defined separately as a time interval.\r\n\n                        \n                           Usage Note: Inverse code is SNS";
  dcterms:description "A relationship in which the source act's effective time starts near the end of the target act's effective time. Near is defined separately as a time interval.\r\n\n                        \n                           Usage Note: Inverse code is SNS".

cs:ActRelationshipType\#SCWE rdfs:subClassOf cs:ActRelationshipType\#SNE;
  rdfs:label "starts concurrent with end of";
  dc:title "starts concurrent with end of";
  rdfs:comment "The source Act starts when the target act ends (i.e. if we say \"ActOne SCWE ActTwo\", it means that ActOne starts when ActTwo ends, therefore ActOne is the source and ActTwo is the target).\r\n\n                        \n                           UsageNote: Inverse code is SBSECWS";
  dcterms:description "The source Act starts when the target act ends (i.e. if we say \"ActOne SCWE ActTwo\", it means that ActOne starts when ActTwo ends, therefore ActOne is the source and ActTwo is the target).\r\n\n                        \n                           UsageNote: Inverse code is SBSECWS".

cs:ActRelationshipType\#SNS rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipTemporallyPertainsApproximates;
  rdfs:label "starts near start";
  dc:title "starts near start";
  rdfs:comment "A relationship in which the source act's effective time starts near the start of the target act's effective time. Near is defined separately as a time interval.\r\n\n                        \n                           Usage Note: Inverse code is SNE";
  dcterms:description "A relationship in which the source act's effective time starts near the start of the target act's effective time. Near is defined separately as a time interval.\r\n\n                        \n                           Usage Note: Inverse code is SNE".

cs:ActRelationshipType\#SCW rdfs:subClassOf cs:ActRelationshipType\#SNS;
  rdfs:label "starts concurrent with";
  dc:title "starts concurrent with";
  rdfs:comment "A relationship in which the source act's effective time starts with the start of the target act's effective time.\r\n\n                        \n                           UsageNote: This code is reflexive.  Therefore its inverse code is itself.";
  dcterms:description "A relationship in which the source act's effective time starts with the start of the target act's effective time.\r\n\n                        \n                           UsageNote: This code is reflexive.  Therefore its inverse code is itself.".

cs:ActRelationshipType\#SCWSEBE rdfs:subClassOf cs:ActRelationshipType\#SCW;
  rdfs:label "starts with. ends before end of";
  dc:title "starts with. ends before end of";
  rdfs:comment "The source Act starts with.the target Act and ends before the end of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SCWSEAE";
  dcterms:description "The source Act starts with.the target Act and ends before the end of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SCWSEAE".

cs:ActRelationshipType\#SCWSEAE rdfs:subClassOf cs:ActRelationshipType\#SCW;
  rdfs:label "starts with, ends after end of";
  dc:title "starts with, ends after end of";
  rdfs:comment "The source Act starts with the target Act, and ends after the end of the target Act.";
  dcterms:description "The source Act starts with the target Act, and ends after the end of the target Act.".

cs:ActRelationshipType\#EAS rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipTemporallyPertains;
  rdfs:label "ends after start of";
  dc:title "ends after start of";
  rdfs:comment "A relationship in which the source act ends after the target act starts.\r\n\n                        \n                           UsageNote: Inverse code is SBE";
  dcterms:description "A relationship in which the source act ends after the target act starts.\r\n\n                        \n                           UsageNote: Inverse code is SBE".

cs:ActRelationshipType\#EAE rdfs:subClassOf cs:ActRelationshipType\#EAS;
  rdfs:label "ends after end of";
  dc:title "ends after end of";
  rdfs:comment "A relationship in which the source act ends after the target act ends.\r\n\n                        \n                           UsageNote: Inverse code is EBE";
  dcterms:description "A relationship in which the source act ends after the target act ends.\r\n\n                        \n                           UsageNote: Inverse code is EBE".

cs:ActRelationshipType\#SASEAE rdfs:subClassOf cs:ActRelationshipType\#EAE;
  rdfs:label "starts after start of, ends after end of";
  dc:title "starts after start of, ends after end of";
  rdfs:comment "The source Act starts after start of the target Act and ends after end of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SBSEBE";
  dcterms:description "The source Act starts after start of the target Act and ends after end of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SBSEBE".

cs:ActRelationshipType\#SBEEAE rdfs:subClassOf cs:ActRelationshipType\#SASEAE;
  rdfs:label "contains end of";
  dc:title "contains end of";
  rdfs:comment "The source Act contains the end of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is EDU";
  dcterms:description "The source Act contains the end of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is EDU".

cs:ActRelationshipType\#SASSBEEAS rdfs:subClassOf cs:ActRelationshipType\#SBEEAE;
  rdfs:label "start after start of, contains end of";
  dc:title "start after start of, contains end of";
  rdfs:comment "The source Act start after the start of the target Act, and contains the end of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SBSEASEBE";
  dcterms:description "The source Act start after the start of the target Act, and contains the end of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SBSEASEBE".

cs:ActRelationshipType\#SBSEAE rdfs:subClassOf cs:ActRelationshipType\#SBEEAE;
  rdfs:label "contains time of";
  dc:title "contains time of";
  rdfs:comment "The source Act contains the time of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is DURING";
  dcterms:description "The source Act contains the time of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is DURING".

cs:ActRelationshipType\#SAS rdfs:subClassOf cs:ActRelationshipType\#EAS;
  rdfs:label "starts after start of";
  dc:title "starts after start of";
  rdfs:comment "The source Act starts after the start of the target Act (i.e. if we say \"ActOne SAS ActTwo\", it means that ActOne starts after the start of ActTwo, therefore ActOne is the source and ActTwo is the target).\r\n\n                        \n                           UsageNote: Inverse code is SBS";
  dcterms:description "The source Act starts after the start of the target Act (i.e. if we say \"ActOne SAS ActTwo\", it means that ActOne starts after the start of ActTwo, therefore ActOne is the source and ActTwo is the target).\r\n\n                        \n                           UsageNote: Inverse code is SBS".

cs:ActRelationshipType\#SAE rdfs:subClassOf cs:ActRelationshipType\#SAS;
  rdfs:label "starts after end of";
  dc:title "starts after end of";
  rdfs:comment "A relationship in which the source act starts after the target act ends.\r\n\n                        \n                           UsageNote: Inverse code is EBS";
  dcterms:description "A relationship in which the source act starts after the target act ends.\r\n\n                        \n                           UsageNote: Inverse code is EBS".

cs:ActRelationshipType\#DURING rdfs:subClassOf cs:ActRelationshipType\#SAS;
  rdfs:label "occurs during";
  dc:title "occurs during";
  rdfs:comment "A relationship in which the source act's effective time is wholly within the target act's effective time (including end points, as defined in the act's effective times)\r\n\n                        \n                           UsageNote: Inverse code is SBSEAE";
  dcterms:description "A relationship in which the source act's effective time is wholly within the target act's effective time (including end points, as defined in the act's effective times)\r\n\n                        \n                           UsageNote: Inverse code is SBSEAE".

cs:ActRelationshipType\#SASECWE rdfs:subClassOf cs:ActRelationshipType\#SAS;
  rdfs:label "starts after start of, ends with";
  dc:title "starts after start of, ends with";
  rdfs:comment "The source Act starts after start of the target Act, and ends with the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SBSECWE";
  dcterms:description "The source Act starts after start of the target Act, and ends with the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SBSECWE".

cs:ActRelationshipType\#EASORECWS rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipTemporallyPertains;
  rdfs:label "ends after or concurrent with start of";
  dc:title "ends after or concurrent with start of";
  rdfs:comment "A relationship in which the source act's effective time ends after or concurrent with the start of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is EBSORECWS";
  dcterms:description "A relationship in which the source act's effective time ends after or concurrent with the start of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is EBSORECWS".

cs:ActRelationshipType\#EAEORECW rdfs:subClassOf cs:ActRelationshipType\#EASORECWS;
  rdfs:label "ends after or concurrent with end of";
  dc:title "ends after or concurrent with end of";
  rdfs:comment "A relationship in which the source act's effective time ends after or concurrent with the end of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is EBEORECW";
  dcterms:description "A relationship in which the source act's effective time ends after or concurrent with the end of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is EBEORECW".

cs:ActRelationshipType\#INDEPENDENT rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipTemporallyPertains;
  rdfs:label "independent of time of";
  dc:title "independent of time of";
  rdfs:comment "The source Act is independent of the time of the target Act.\r\n\n                        \n                           UsageNote: This code is reflexive.  Therefore its inverse code is itself.";
  dcterms:description "The source Act is independent of the time of the target Act.\r\n\n                        \n                           UsageNote: This code is reflexive.  Therefore its inverse code is itself.".

cs:ActRelationshipType\#SAEORSCWE rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipTemporallyPertains;
  rdfs:label "starts after or concurrent with end of";
  dc:title "starts after or concurrent with end of";
  rdfs:comment "A relationship in which the source act's effective time starts after or concurrent with the end of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is SBEORSCWE";
  dcterms:description "A relationship in which the source act's effective time starts after or concurrent with the end of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is SBEORSCWE".

cs:ActRelationshipType\#SASORSCW rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipTemporallyPertains;
  rdfs:label "starts after or concurrent with start of";
  dc:title "starts after or concurrent with start of";
  rdfs:comment "A relationship in which the source act's effective time starts after or concurrent with the start of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is SBSORSCW";
  dcterms:description "A relationship in which the source act's effective time starts after or concurrent with the start of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is SBSORSCW".

cs:ActRelationshipType\#SBEORSCWE rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationshipTemporallyPertains;
  rdfs:label "starts before or concurrent with end of";
  dc:title "starts before or concurrent with end of";
  rdfs:comment "A relationship in which the source act's effective time starts before or concurrent with the end of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is SAEORSCWE";
  dcterms:description "A relationship in which the source act's effective time starts before or concurrent with the end of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is SAEORSCWE".

cs:ActRelationshipType\#OVERLAP rdfs:subClassOf cs:ActRelationshipType\#SBEORSCWE;
  rdfs:label "overlaps with";
  dc:title "overlaps with";
  rdfs:comment "A relationship in which the source act's effective time overlaps the target act's effective time in any way.\r\n\n                        \n                           UsageNote: This code is reflexive.  Therefore its inverse code is itself.";
  dcterms:description "A relationship in which the source act's effective time overlaps the target act's effective time in any way.\r\n\n                        \n                           UsageNote: This code is reflexive.  Therefore its inverse code is itself.".

cs:ActRelationshipType\#EDU rdfs:subClassOf cs:ActRelationshipType\#OVERLAP;
  rdfs:label "ends during";
  dc:title "ends during";
  rdfs:comment "A relationship in which the source act ends within the target act's effective time (including end points, as defined in the act's effective times)\r\n\n                        \n                           UsageNote: Inverse code is SBEEAE";
  dcterms:description "A relationship in which the source act ends within the target act's effective time (including end points, as defined in the act's effective times)\r\n\n                        \n                           UsageNote: Inverse code is SBEEAE".

cs:ActRelationshipType\#SBSEASEBE rdfs:subClassOf cs:ActRelationshipType\#EDU;
  rdfs:label "contains start of, ends before end of";
  dc:title "contains start of, ends before end of";
  rdfs:comment "The source Act contains the start of the target Act,  and ends before the end of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SASSBEEAS";
  dcterms:description "The source Act contains the start of the target Act,  and ends before the end of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SASSBEEAS".

cs:ActRelationshipType\#SBSEAS rdfs:subClassOf cs:ActRelationshipType\#OVERLAP;
  rdfs:label "contains start of";
  dc:title "contains start of";
  rdfs:comment "The source Act contains the start of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SDU";
  dcterms:description "The source Act contains the start of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SDU".

cs:ActRelationshipType\#SDU rdfs:subClassOf cs:ActRelationshipType\#OVERLAP;
  rdfs:label "starts during";
  dc:title "starts during";
  rdfs:comment "A relationship in which the source act starts within the target act's effective time (including end points, as defined in the act's effective times)\r\n\n                        \n                           UsageNote: Inverse code is SBSEAS";
  dcterms:description "A relationship in which the source act starts within the target act's effective time (including end points, as defined in the act's effective times)\r\n\n                        \n                           UsageNote: Inverse code is SBSEAS".

cs:ActRelationshipType\#SBE rdfs:subClassOf cs:ActRelationshipType\#SBEORSCWE;
  rdfs:label "starts before end of";
  dc:title "starts before end of";
  rdfs:comment "The source Act starts before the end of the target Act (i.e. if we say \"ActOne SBE ActTwo\", it means that ActOne starts before the end of ActTwo, therefore ActOne is the source and ActTwo is the target).\r\n\n                        \n                           UsageNote: Inverse code is EAS";
  dcterms:description "The source Act starts before the end of the target Act (i.e. if we say \"ActOne SBE ActTwo\", it means that ActOne starts before the end of ActTwo, therefore ActOne is the source and ActTwo is the target).\r\n\n                        \n                           UsageNote: Inverse code is EAS".

cs:ActRelationshipType\#EBE rdfs:subClassOf cs:ActRelationshipType\#SBE;
  rdfs:label "ends before end of";
  dc:title "ends before end of";
  rdfs:comment "The source Act ends before the end of the target Act (i.e. if we say \"ActOne EBE ActTwo\", it means that ActOne ends before the end of ActTwo, therefore ActOne is the source and ActTwo is the target).\r\n\n                        \n                           UsageNote: Inverse code is EAE";
  dcterms:description "The source Act ends before the end of the target Act (i.e. if we say \"ActOne EBE ActTwo\", it means that ActOne ends before the end of ActTwo, therefore ActOne is the source and ActTwo is the target).\r\n\n                        \n                           UsageNote: Inverse code is EAE".

cs:ActRelationshipType\#SBSEBE rdfs:subClassOf cs:ActRelationshipType\#EBE;
  rdfs:label "starts before start of, ends before end of";
  dc:title "starts before start of, ends before end of";
  rdfs:comment "The source Act starts before the start of the target Act, and ends before the end of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SASEAE";
  dcterms:description "The source Act starts before the start of the target Act, and ends before the end of the target Act.\r\n\n                        \n                           UsageNote: Inverse code is SASEAE".

cs:ActRelationshipType\#EBSORECWS rdfs:subClassOf cs:ActRelationshipType\#SBSEBE;
  rdfs:label "ends before or concurrent with start of";
  dc:title "ends before or concurrent with start of";
  rdfs:comment "A relationship in which the source act's effective time ends before or concurrent with the start of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is EASORECWS";
  dcterms:description "A relationship in which the source act's effective time ends before or concurrent with the start of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is EASORECWS".

cs:ActRelationshipType\#EBS rdfs:subClassOf cs:ActRelationshipType\#EBSORECWS;
  rdfs:label "ends before start of";
  dc:title "ends before start of";
  rdfs:comment "A relationship in which the source act ends before the target act starts.\r\n\n                        \n                           UsageNote: Inverse code is SAE";
  dcterms:description "A relationship in which the source act ends before the target act starts.\r\n\n                        \n                           UsageNote: Inverse code is SAE".

cs:ActRelationshipType\#EBEORECW rdfs:subClassOf cs:ActRelationshipType\#SBE;
  rdfs:label "ends before or concurrent with end of";
  dc:title "ends before or concurrent with end of";
  rdfs:comment "A relationship in which the source act's effective time ends before or concurrent with the end of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is EAEORECW";
  dcterms:description "A relationship in which the source act's effective time ends before or concurrent with the end of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is EAEORECW".

cs:ActRelationshipType\#SBSORSCW rdfs:subClassOf cs:ActRelationshipType\#SBE;
  rdfs:label "starts before or concurrent with start of";
  dc:title "starts before or concurrent with start of";
  rdfs:comment "A relationship in which the source act's effective time starts before or concurrent with the start of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is SASORSCW";
  dcterms:description "A relationship in which the source act's effective time starts before or concurrent with the start of the target act's effective time.\r\n\n                        \n                           Usage Note: Inverse code is SASORSCW".

cs:ActRelationshipType\#SBS rdfs:subClassOf cs:ActRelationshipType\#SBSORSCW;
  rdfs:label "starts before start of";
  dc:title "starts before start of";
  rdfs:comment "A relationship in which the source act begins before the target act begins.\r\n\n                        \n                           UsageNote: Inverse code is SAS";
  dcterms:description "A relationship in which the source act begins before the target act begins.\r\n\n                        \n                           UsageNote: Inverse code is SAS".

cs:ActRelationshipType\#AUTH rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "authorized by";
  dc:title "authorized by";
  rdfs:comment "A relationship in which the target act authorizes or certifies the source act.";
  dcterms:description "A relationship in which the target act authorizes or certifies the source act.".

cs:ActRelationshipType\#CAUS rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "is etiology for";
  dc:title "is etiology for";
  rdfs:comment "Description: An assertion that an act was the cause of another act.This is stronger and more specific than the support link. The source (cause) is typically an observation, but may be any act, while the target may be any act.\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           a growth of Staphylococcus aureus may be considered the cause of an abscess\n                           contamination of the infusion bag was deemed to be the cause of the infection that the patient experienced\n                           lack of staff on the shift was deemed to be a supporting factor (proximal factor) causing the patient safety incident where the patient fell out of bed because the  bed-sides had not been put up which caused the night patient to fall out of bed";
  dcterms:description "Description: An assertion that an act was the cause of another act.This is stronger and more specific than the support link. The source (cause) is typically an observation, but may be any act, while the target may be any act.\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           a growth of Staphylococcus aureus may be considered the cause of an abscess\n                           contamination of the infusion bag was deemed to be the cause of the infection that the patient experienced\n                           lack of staff on the shift was deemed to be a supporting factor (proximal factor) causing the patient safety incident where the patient fell out of bed because the  bed-sides had not been put up which caused the night patient to fall out of bed".

cs:ActRelationshipType\#COMP rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "has component";
  dc:title "has component";
  rdfs:comment "The target act is a component of the source act, with no semantics regarding composition or aggregation implied.";
  dcterms:description "The target act is a component of the source act, with no semantics regarding composition or aggregation implied.".

cs:ActRelationshipType\#CTRLV rdfs:subClassOf cs:ActRelationshipType\#COMP;
  rdfs:label "has control variable";
  dc:title "has control variable";
  rdfs:comment "A relationship from an Act to a Control Variable.  For example, if a Device makes an Observation, this relates the Observation to its Control Variables documenting  the device's settings that influenced the observation.";
  dcterms:description "A relationship from an Act to a Control Variable.  For example, if a Device makes an Observation, this relates the Observation to its Control Variables documenting  the device's settings that influenced the observation.".

cs:ActRelationshipType\#MBR rdfs:subClassOf cs:ActRelationshipType\#COMP;
  rdfs:label "has member";
  dc:title "has member";
  rdfs:comment "The target Acts are aggregated by the source Act.  Target Acts may have independent existence, participate in multiple ActRelationships, and do not contribute to the meaning of the source.\r\n\n                        \n                           UsageNotes: This explicitly represents the conventional notion of aggregation.  The target Act is part of a collection of Acts (no implication is made of cardinality, a source of Acts may contain zero, one, or more member target Acts).\r\n\n                        It is expected that this will be primarily used with _ActClassRecordOrganizer, BATTERY, and LIST";
  dcterms:description "The target Acts are aggregated by the source Act.  Target Acts may have independent existence, participate in multiple ActRelationships, and do not contribute to the meaning of the source.\r\n\n                        \n                           UsageNotes: This explicitly represents the conventional notion of aggregation.  The target Act is part of a collection of Acts (no implication is made of cardinality, a source of Acts may contain zero, one, or more member target Acts).\r\n\n                        It is expected that this will be primarily used with _ActClassRecordOrganizer, BATTERY, and LIST".

cs:ActRelationshipType\#STEP rdfs:subClassOf cs:ActRelationshipType\#MBR;
  rdfs:label "has step";
  dc:title "has step";
  rdfs:comment "A collection of sub-services as steps or subtasks performed for the source service. Services may be performed sequentially or concurrently.\r\n\n                        \n                           UsageNotes: Sequence of steps may be indicated by use of _ActRelationshipTemporallyPertains, as well as via  ActRelationship.sequenceNumber, ActRelationship.pauseQuantity, Target.priorityCode.\r\n\n                        \n                           OpenIssue: Need Additional guidelines on when each approach should be used.";
  dcterms:description "A collection of sub-services as steps or subtasks performed for the source service. Services may be performed sequentially or concurrently.\r\n\n                        \n                           UsageNotes: Sequence of steps may be indicated by use of _ActRelationshipTemporallyPertains, as well as via  ActRelationship.sequenceNumber, ActRelationship.pauseQuantity, Target.priorityCode.\r\n\n                        \n                           OpenIssue: Need Additional guidelines on when each approach should be used.".

cs:ActRelationshipType\#ARR rdfs:subClassOf cs:ActRelationshipType\#STEP;
  rdfs:label "arrival";
  dc:title "arrival";
  rdfs:comment "The relationship that links to a Transportation Act (target) from another Act (source) indicating that the subject of the source Act entered into the source Act by means of the target Transportation act.";
  dcterms:description "The relationship that links to a Transportation Act (target) from another Act (source) indicating that the subject of the source Act entered into the source Act by means of the target Transportation act.".

cs:ActRelationshipType\#DEP rdfs:subClassOf cs:ActRelationshipType\#STEP;
  rdfs:label "departure";
  dc:title "departure";
  rdfs:comment "The relationship that links to a Transportation Act (target) from another Act (source) indicating that the subject of the source Act departed from the source Act by means of the target Transportation act.";
  dcterms:description "The relationship that links to a Transportation Act (target) from another Act (source) indicating that the subject of the source Act departed from the source Act by means of the target Transportation act.".

cs:ActRelationshipType\#PART rdfs:subClassOf cs:ActRelationshipType\#COMP;
  rdfs:label "has part";
  dc:title "has part";
  rdfs:comment "The source Act is a composite of the target Acts. The target Acts do not have an existence independent of the source Act.\r\n\n                        \n                           UsageNote: In UML 1.1, this is a \"composition\" defined as: \n                           \"A form of aggregation with strong ownership and coincident lifetime as part of the whole. Parts with non-fixed multiplicity may be created after the composite itself, but once created they live and die with it (i.e., they share lifetimes). Such parts can also be explicitly removed before the death of the composite. Composition may be recursive.\"";
  dcterms:description "The source Act is a composite of the target Acts. The target Acts do not have an existence independent of the source Act.\r\n\n                        \n                           UsageNote: In UML 1.1, this is a \"composition\" defined as: \n                           \"A form of aggregation with strong ownership and coincident lifetime as part of the whole. Parts with non-fixed multiplicity may be created after the composite itself, but once created they live and die with it (i.e., they share lifetimes). Such parts can also be explicitly removed before the death of the composite. Composition may be recursive.\"".

cs:ActRelationshipType\#COVBY rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "covered by";
  dc:title "covered by";
  rdfs:comment "A relationship in which the source act is covered by or is under the authority of a target act.  A financial instrument such as an Invoice Element is covered by one or more specific instances of an Insurance Policy.";
  dcterms:description "A relationship in which the source act is covered by or is under the authority of a target act.  A financial instrument such as an Invoice Element is covered by one or more specific instances of an Insurance Policy.".

cs:ActRelationshipType\#DRIV rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "is derived from";
  dc:title "is derived from";
  rdfs:comment "Associates a derived Act with its input parameters. E.G., an anion-gap observation can be associated as being derived from given sodium-, (potassium-,), chloride-, and bicarbonate-observations. The narrative content (Act.text) of a source act is wholly machine-derived from the collection of target acts.";
  dcterms:description "Associates a derived Act with its input parameters. E.G., an anion-gap observation can be associated as being derived from given sodium-, (potassium-,), chloride-, and bicarbonate-observations. The narrative content (Act.text) of a source act is wholly machine-derived from the collection of target acts.".

cs:ActRelationshipType\#ELNK rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "episodeLink";
  dc:title "episodeLink";
  rdfs:comment "Expresses an association that links two instances of the same act over time, indicating that the instance are part of the same episode, e.g. linking two condition nodes for episode of illness; linking two encounters for episode of encounter.";
  dcterms:description "Expresses an association that links two instances of the same act over time, indicating that the instance are part of the same episode, e.g. linking two condition nodes for episode of illness; linking two encounters for episode of encounter.".

cs:ActRelationshipType\#EVID rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "provides evidence for";
  dc:title "provides evidence for";
  rdfs:comment "Indicates that the target Act provides evidence in support of the action represented by the source Act. The target is not a 'reason' for the source act, but rather gives supporting information on why the source act is an appropriate course of action. Possible targets might be clinical trial results, journal articles, similar successful therapies, etc.\r\n\n                        \n                           Rationale: Provides a mechanism for conveying clinical justification for non-approved or otherwise non-traditional therapies.";
  dcterms:description "Indicates that the target Act provides evidence in support of the action represented by the source Act. The target is not a 'reason' for the source act, but rather gives supporting information on why the source act is an appropriate course of action. Possible targets might be clinical trial results, journal articles, similar successful therapies, etc.\r\n\n                        \n                           Rationale: Provides a mechanism for conveying clinical justification for non-approved or otherwise non-traditional therapies.".

cs:ActRelationshipType\#EXACBY rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "exacerbated by";
  dc:title "exacerbated by";
  rdfs:comment "Description:The source act is aggravated by the target act. (Example \"chest pain\" EXACBY \"exercise\")";
  dcterms:description "Description:The source act is aggravated by the target act. (Example \"chest pain\" EXACBY \"exercise\")".

cs:ActRelationshipType\#EXPL rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "has explanation";
  dc:title "has explanation";
  rdfs:comment "This is the inversion of support.  Used to indicate that a given observation is explained by another observation or condition.";
  dcterms:description "This is the inversion of support.  Used to indicate that a given observation is explained by another observation or condition.".

cs:ActRelationshipType\#INTF rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "interfered by";
  dc:title "interfered by";
  rdfs:comment "the target act documents a set of circumstances (events, risks) which prevent successful completion, or degradation of quality of, the source Act.\r\n\n                        \n                           UsageNote: This provides the semantics to document barriers to care";
  dcterms:description "the target act documents a set of circumstances (events, risks) which prevent successful completion, or degradation of quality of, the source Act.\r\n\n                        \n                           UsageNote: This provides the semantics to document barriers to care".

cs:ActRelationshipType\#ITEMSLOC rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "items located";
  dc:title "items located";
  rdfs:comment "Items located";
  dcterms:description "Items located".

cs:ActRelationshipType\#LIMIT rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "limited by";
  dc:title "limited by";
  rdfs:comment "A relationship that limits or restricts the source act by the elements of the target act.  For example, an authorization may be limited by a financial amount (up to $500). Target Act must be in EVN.CRIT mood.";
  dcterms:description "A relationship that limits or restricts the source act by the elements of the target act.  For example, an authorization may be limited by a financial amount (up to $500). Target Act must be in EVN.CRIT mood.".

cs:ActRelationshipType\#META rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "has metadata";
  dc:title "has metadata";
  rdfs:comment "Definition: Indicates that the attributes and associations of the target act provide metadata (for example, identifiers, authorship, etc.) for the source act.\r\n\n                        \n                           Constraint:  Source act must have either a mood code that is not \"EVN\" (event) or its \"isCriterion\" attribute must set to \"true\".  Target act must be an Act with a mood code of EVN and with isCriterionInd attribute set to \"true\".";
  dcterms:description "Definition: Indicates that the attributes and associations of the target act provide metadata (for example, identifiers, authorship, etc.) for the source act.\r\n\n                        \n                           Constraint:  Source act must have either a mood code that is not \"EVN\" (event) or its \"isCriterion\" attribute must set to \"true\".  Target act must be an Act with a mood code of EVN and with isCriterionInd attribute set to \"true\".".

cs:ActRelationshipType\#MFST rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "is manifestation of";
  dc:title "is manifestation of";
  rdfs:comment "An assertion that a new observation may be the manifestation of another existing observation or action.  This assumption is attributed to the same actor who asserts the manifestation.  This is stronger and more specific than an inverted support link.  For example, an agitated appearance can be asserted to be the manifestation (effect) of a known hyperthyroxia.  This expresses that one might not have realized a symptom if it would not be a common manifestation of a known condition.  The target (cause) may be any service, while the source (manifestation) must be an observation.";
  dcterms:description "An assertion that a new observation may be the manifestation of another existing observation or action.  This assumption is attributed to the same actor who asserts the manifestation.  This is stronger and more specific than an inverted support link.  For example, an agitated appearance can be asserted to be the manifestation (effect) of a known hyperthyroxia.  This expresses that one might not have realized a symptom if it would not be a common manifestation of a known condition.  The target (cause) may be any service, while the source (manifestation) must be an observation.".

cs:ActRelationshipType\#NAME rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "assigns name";
  dc:title "assigns name";
  rdfs:comment "Used to assign a \"name\" to a condition thread. Source is a condition node, target can be any service.";
  dcterms:description "Used to assign a \"name\" to a condition thread. Source is a condition node, target can be any service.".

cs:ActRelationshipType\#OUTC rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "has outcome";
  dc:title "has outcome";
  rdfs:comment "An observation that should follow or does actually follow as a result or consequence of a condition or action (sometimes called \"post-conditional\".) Target must be an observation as a goal, risk or any criterion. For complex outcomes a conjunction attribute (AND, OR, XOR) can be used.  An outcome link is often inverted to describe an outcome assessment.";
  dcterms:description "An observation that should follow or does actually follow as a result or consequence of a condition or action (sometimes called \"post-conditional\".) Target must be an observation as a goal, risk or any criterion. For complex outcomes a conjunction attribute (AND, OR, XOR) can be used.  An outcome link is often inverted to describe an outcome assessment.".

cs:ActRelationshipType\#%5fActRelationsipObjective rdfs:subClassOf cs:ActRelationshipType\#OUTC;
  rdfs:label "Act Relationsip Objective";
  dc:title "Act Relationsip Objective";
  rdfs:comment "The target act is a desired outcome of the source act. Source is any act (typically an intervention). Target must be an observation in criterion mood.";
  dcterms:description "The target act is a desired outcome of the source act. Source is any act (typically an intervention). Target must be an observation in criterion mood.".

cs:ActRelationshipType\#OBJC rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationsipObjective;
  rdfs:label "has continuing objective";
  dc:title "has continuing objective";
  rdfs:comment "A desired state that a service action aims to maintain.  E.g., keep systolic blood pressure between 90 and 110 mm Hg.  Source is an intervention service.  Target must be an observation in criterion mood.";
  dcterms:description "A desired state that a service action aims to maintain.  E.g., keep systolic blood pressure between 90 and 110 mm Hg.  Source is an intervention service.  Target must be an observation in criterion mood.".

cs:ActRelationshipType\#OBJF rdfs:subClassOf cs:ActRelationshipType\#%5fActRelationsipObjective;
  rdfs:label "has final objective";
  dc:title "has final objective";
  rdfs:comment "A desired outcome that a service action aims to meet finally.  Source is any service (typically an intervention).  Target must be an observation in criterion mood.";
  dcterms:description "A desired outcome that a service action aims to meet finally.  Source is any service (typically an intervention).  Target must be an observation in criterion mood.".

cs:ActRelationshipType\#GOAL rdfs:subClassOf cs:ActRelationshipType\#OUTC;
  rdfs:label "has goal";
  dc:title "has goal";
  rdfs:comment "A goal that one defines given a patient's health condition.  Subsequently planned actions aim to meet that goal.  Source is an observation or condition node, target must be an observation in goal mood.";
  dcterms:description "A goal that one defines given a patient's health condition.  Subsequently planned actions aim to meet that goal.  Source is an observation or condition node, target must be an observation in goal mood.".

cs:ActRelationshipType\#RISK rdfs:subClassOf cs:ActRelationshipType\#OUTC;
  rdfs:label "has risk";
  dc:title "has risk";
  rdfs:comment "A noteworthy undesired outcome of a patient's condition that is either likely enough to become an issue or is less likely but dangerous enough to be addressed.";
  dcterms:description "A noteworthy undesired outcome of a patient's condition that is either likely enough to become an issue or is less likely but dangerous enough to be addressed.".

cs:ActRelationshipType\#PERT rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "has pertinent information";
  dc:title "has pertinent information";
  rdfs:comment "This is a very unspecific relationship from one item of clinical information to another.  It does not judge about the role the pertinent information plays.";
  dcterms:description "This is a very unspecific relationship from one item of clinical information to another.  It does not judge about the role the pertinent information plays.".

cs:ActRelationshipType\#PREV rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "has previous instance";
  dc:title "has previous instance";
  rdfs:comment "A relationship in which the target act is a predecessor instance to the source act.  Generally each of these instances is similar, but no identical.  In healthcare coverage it is used to link a claim item to a previous claim item that might have claimed for the same set of services.";
  dcterms:description "A relationship in which the target act is a predecessor instance to the source act.  Generally each of these instances is similar, but no identical.  In healthcare coverage it is used to link a claim item to a previous claim item that might have claimed for the same set of services.".

cs:ActRelationshipType\#REFR rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "refers to";
  dc:title "refers to";
  rdfs:comment "A relationship in which the target act is referred to by the source act.  This permits a simple reference relationship that distinguishes between the referent and the referee.";
  dcterms:description "A relationship in which the target act is referred to by the source act.  This permits a simple reference relationship that distinguishes between the referent and the referee.".

cs:ActRelationshipType\#USE rdfs:subClassOf cs:ActRelationshipType\#REFR;
  rdfs:label "uses";
  dc:title "uses";
  rdfs:comment "Indicates that the source act makes use of (or will make use of) the information content of the target act.\r\n\n                        \n                           UsageNotes: A usage relationship only makes sense if the target act is authored and occurs independently of the source act.  Otherwise a simpler relationship such as COMP would be appropriate.\r\n\n                        \n                           Rationale: There is a need when defining a clinical trial protocol to indicate that the protocol makes use of other protocol or treatment specifications.  This is stronger than the assertion of \"references\".  References may exist without usage, and in a clinical trial protocol is common to assert both: what other specifications does this trial use and what other specifications does it merely reference.";
  dcterms:description "Indicates that the source act makes use of (or will make use of) the information content of the target act.\r\n\n                        \n                           UsageNotes: A usage relationship only makes sense if the target act is authored and occurs independently of the source act.  Otherwise a simpler relationship such as COMP would be appropriate.\r\n\n                        \n                           Rationale: There is a need when defining a clinical trial protocol to indicate that the protocol makes use of other protocol or treatment specifications.  This is stronger than the assertion of \"references\".  References may exist without usage, and in a clinical trial protocol is common to assert both: what other specifications does this trial use and what other specifications does it merely reference.".

cs:ActRelationshipType\#REFV rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "has reference values";
  dc:title "has reference values";
  rdfs:comment "Reference ranges are essentially descriptors of a class of result values assumed to be \"normal\", \"abnormal\", or \"critical.\"  Those can vary by sex, age, or any other criterion. Source and target are observations, the target is in criterion mood.  This link type can act as a trigger in case of alarms being triggered by critical results.";
  dcterms:description "Reference ranges are essentially descriptors of a class of result values assumed to be \"normal\", \"abnormal\", or \"critical.\"  Those can vary by sex, age, or any other criterion. Source and target are observations, the target is in criterion mood.  This link type can act as a trigger in case of alarms being triggered by critical results.".

cs:ActRelationshipType\#RELVBY rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "relieved by";
  dc:title "relieved by";
  rdfs:comment "Description:The source act is wholly or partially alleviated by the target act. (Example \"chest pain\" RELVBY \"sublingual nitroglycerin administration\")";
  dcterms:description "Description:The source act is wholly or partially alleviated by the target act. (Example \"chest pain\" RELVBY \"sublingual nitroglycerin administration\")".

cs:ActRelationshipType\#SEQL rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "is sequel";
  dc:title "is sequel";
  rdfs:comment "An act relationship indicating that the source act follows the target act. The source act should in principle represent the same kind of act as the target. Source and target need not have the same mood code (mood will often differ). The target of a sequel is called antecedent. Examples for sequel relationships are: revision, transformation, derivation from a prototype (as a specialization is a derivation of a generalization), followup, realization, instantiation.";
  dcterms:description "An act relationship indicating that the source act follows the target act. The source act should in principle represent the same kind of act as the target. Source and target need not have the same mood code (mood will often differ). The target of a sequel is called antecedent. Examples for sequel relationships are: revision, transformation, derivation from a prototype (as a specialization is a derivation of a generalization), followup, realization, instantiation.".

cs:ActRelationshipType\#APND rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "is appendage";
  dc:title "is appendage";
  rdfs:comment "An addendum (source) to an existing service object (target), containing supplemental information.  The addendum is itself an original service object linked to the supplemented service object.  The supplemented service object remains in place and its content and status are unaltered.";
  dcterms:description "An addendum (source) to an existing service object (target), containing supplemental information.  The addendum is itself an original service object linked to the supplemented service object.  The supplemented service object remains in place and its content and status are unaltered.".

cs:ActRelationshipType\#BSLN rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "has baseline";
  dc:title "has baseline";
  rdfs:comment "Indicates that the target observation(s) provide an initial reference for the source observation or observation group.\r\n\n                        \n                           UsageConstraints: Both source and target must be Observations or specializations thereof.";
  dcterms:description "Indicates that the target observation(s) provide an initial reference for the source observation or observation group.\r\n\n                        \n                           UsageConstraints: Both source and target must be Observations or specializations thereof.".

cs:ActRelationshipType\#COMPLY rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "complies with";
  dc:title "complies with";
  rdfs:comment "Description:The source act complies with, adheres to, conforms to, or is permissible under (in whole or in part) the policy, contract, agreement, law, conformance criteria, certification guidelines or requirement conveyed by the target act.\r\n\n                        Examples for compliance relationships are: audits of adherence with a security policy, certificate of conformance to system certification requirements, or consent directive in compliance with or permissible under a privacy policy.";
  dcterms:description "Description:The source act complies with, adheres to, conforms to, or is permissible under (in whole or in part) the policy, contract, agreement, law, conformance criteria, certification guidelines or requirement conveyed by the target act.\r\n\n                        Examples for compliance relationships are: audits of adherence with a security policy, certificate of conformance to system certification requirements, or consent directive in compliance with or permissible under a privacy policy.".

cs:ActRelationshipType\#DOC rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "documents";
  dc:title "documents";
  rdfs:comment "The source act documents the target act.";
  dcterms:description "The source act documents the target act.".

cs:ActRelationshipType\#FLFS rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "fulfills";
  dc:title "fulfills";
  rdfs:comment "The source act fulfills (in whole or in part) the target act. Source act must be in a mood equal or more actual than the target act.";
  dcterms:description "The source act fulfills (in whole or in part) the target act. Source act must be in a mood equal or more actual than the target act.".

cs:ActRelationshipType\#OCCR rdfs:subClassOf cs:ActRelationshipType\#FLFS;
  rdfs:label "occurrence";
  dc:title "occurrence";
  rdfs:comment "The source act is a single occurrence of a repeatable target act. The source and target act can be in any mood on the \"completion track\" but the source act must be as far as or further along the track than the target act (i.e., the occurrence of an intent can be an event but not vice versa).";
  dcterms:description "The source act is a single occurrence of a repeatable target act. The source and target act can be in any mood on the \"completion track\" but the source act must be as far as or further along the track than the target act (i.e., the occurrence of an intent can be an event but not vice versa).".

cs:ActRelationshipType\#OREF rdfs:subClassOf cs:ActRelationshipType\#FLFS;
  rdfs:label "references order";
  dc:title "references order";
  rdfs:comment "Relates either an appointment request or an appointment to the order for the service being scheduled.";
  dcterms:description "Relates either an appointment request or an appointment to the order for the service being scheduled.".

cs:ActRelationshipType\#SCH rdfs:subClassOf cs:ActRelationshipType\#FLFS;
  rdfs:label "schedules request";
  dc:title "schedules request";
  rdfs:comment "Associates a specific time (and associated resources) with a scheduling request or other intent.";
  dcterms:description "Associates a specific time (and associated resources) with a scheduling request or other intent.".

cs:ActRelationshipType\#GEN rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "has generalization";
  dc:title "has generalization";
  rdfs:comment "The generalization relationship can be used to express categorical knowledge about services (e.g., amilorid, triamterene, and spironolactone have the common generalization potassium sparing diuretic).";
  dcterms:description "The generalization relationship can be used to express categorical knowledge about services (e.g., amilorid, triamterene, and spironolactone have the common generalization potassium sparing diuretic).".

cs:ActRelationshipType\#GEVL rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "evaluates (goal)";
  dc:title "evaluates (goal)";
  rdfs:comment "A goal-evaluation links an observation (intent or actual) to a goal to indicate that the observation evaluates the goal. Given the goal and the observation, a \"goal distance\" (e.g., goal to observation) can be \"calculated\" and need not be sent explicitly.";
  dcterms:description "A goal-evaluation links an observation (intent or actual) to a goal to indicate that the observation evaluates the goal. Given the goal and the observation, a \"goal distance\" (e.g., goal to observation) can be \"calculated\" and need not be sent explicitly.".

cs:ActRelationshipType\#INST rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "instantiates (master)";
  dc:title "instantiates (master)";
  rdfs:comment "Used to capture the link between a potential service (\"master\" or plan) and an actual service, where the actual service instantiates the potential service. The instantiation may override the master's defaults.";
  dcterms:description "Used to capture the link between a potential service (\"master\" or plan) and an actual service, where the actual service instantiates the potential service. The instantiation may override the master's defaults.".

cs:ActRelationshipType\#MOD rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "modifies";
  dc:title "modifies";
  rdfs:comment "Definition: Used to link a newer version or 'snapshot' of a business object (source) to an older version or 'snapshot' of the same business object (target).\r\n\n                        \n                           Usage:The identifier of the Act should be the same for both source and target. If the identifiers are distinct, RPLC should be used instead.\r\n\n                        Name from source to target = \"modifiesPrior\"\r\n\n                        Name from target to source = \"modifiesByNew\"";
  dcterms:description "Definition: Used to link a newer version or 'snapshot' of a business object (source) to an older version or 'snapshot' of the same business object (target).\r\n\n                        \n                           Usage:The identifier of the Act should be the same for both source and target. If the identifiers are distinct, RPLC should be used instead.\r\n\n                        Name from source to target = \"modifiesPrior\"\r\n\n                        Name from target to source = \"modifiesByNew\"".

cs:ActRelationshipType\#MTCH rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "matches (trigger)";
  dc:title "matches (trigger)";
  rdfs:comment "A trigger-match links an actual service (e.g., an observation or procedure that took place) with a service in criterion mood.  For example if the trigger is \"observation of pain\" and pain is actually observed, and if that pain-observation caused the trigger to fire, that pain-observation can be linked with the trigger.";
  dcterms:description "A trigger-match links an actual service (e.g., an observation or procedure that took place) with a service in criterion mood.  For example if the trigger is \"observation of pain\" and pain is actually observed, and if that pain-observation caused the trigger to fire, that pain-observation can be linked with the trigger.".

cs:ActRelationshipType\#OPTN rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "has option";
  dc:title "has option";
  rdfs:comment "A relationship between a source Act that provides more detailed properties to the target Act.\r\n\n                        The source act thus is a specialization of the target act, but instead of mentioning all the inherited properties it only mentions new property bindings or refinements.\r\n\n                        The typical use case is to specify certain alternative variants of one kind of Act. The priorityNumber attribute is used to weigh refinements as preferred over other alternative refinements.\r\n\n                        Example: several routing options for a drug are specified as one SubstanceAdministration for the general treatment with attached refinements for the various routing options.";
  dcterms:description "A relationship between a source Act that provides more detailed properties to the target Act.\r\n\n                        The source act thus is a specialization of the target act, but instead of mentioning all the inherited properties it only mentions new property bindings or refinements.\r\n\n                        The typical use case is to specify certain alternative variants of one kind of Act. The priorityNumber attribute is used to weigh refinements as preferred over other alternative refinements.\r\n\n                        Example: several routing options for a drug are specified as one SubstanceAdministration for the general treatment with attached refinements for the various routing options.".

cs:ActRelationshipType\#RCHAL rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "re-challenge";
  dc:title "re-challenge";
  rdfs:comment "Description:A relationship in which the target act is carried out to determine whether an effect attributed to the source act can be recreated.";
  dcterms:description "Description:A relationship in which the target act is carried out to determine whether an effect attributed to the source act can be recreated.".

cs:ActRelationshipType\#REV rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "reverses";
  dc:title "reverses";
  rdfs:comment "A relationship between a source Act that seeks to reverse or undo the action of the prior target Act.\r\n\n                        Example: A posted financial transaction (e.g., a debit transaction) was applied in error and must be reversed (e.g., by a credit transaction) the credit transaction is identified as an undo (or reversal) of the prior target transaction.\r\n\n                        Constraints: the \"completion track\" mood of the target Act must be equally or more \"actual\" than the source act. I.e., when the target act is EVN the source act can be EVN, or any INT. If the target act is INT, the source act can be INT.";
  dcterms:description "A relationship between a source Act that seeks to reverse or undo the action of the prior target Act.\r\n\n                        Example: A posted financial transaction (e.g., a debit transaction) was applied in error and must be reversed (e.g., by a credit transaction) the credit transaction is identified as an undo (or reversal) of the prior target transaction.\r\n\n                        Constraints: the \"completion track\" mood of the target Act must be equally or more \"actual\" than the source act. I.e., when the target act is EVN the source act can be EVN, or any INT. If the target act is INT, the source act can be INT.".

cs:ActRelationshipType\#RPLC rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "replaces";
  dc:title "replaces";
  rdfs:comment "A replacement source act replaces an existing target act. The state of the target act being replaced becomes obselete, but the act is typically still retained in the system for historical reference.  The source and target must be of the same type.";
  dcterms:description "A replacement source act replaces an existing target act. The state of the target act being replaced becomes obselete, but the act is typically still retained in the system for historical reference.  The source and target must be of the same type.".

cs:ActRelationshipType\#SUCC rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "succeeds";
  dc:title "succeeds";
  rdfs:comment "Definition:  A new act that carries forward the intention of the original act, but does not completely replace it.  The status of the predecessor act must be 'completed'.  The original act is the target act and the successor is the source act.";
  dcterms:description "Definition:  A new act that carries forward the intention of the original act, but does not completely replace it.  The status of the predecessor act must be 'completed'.  The original act is the target act and the successor is the source act.".

cs:ActRelationshipType\#UPDT rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "updates (condition)";
  dc:title "updates (condition)";
  rdfs:comment "A condition thread relationship specifically links condition nodes together to form a condition thread. The source is the new condition node and the target links to the most recent node of the existing condition thread.";
  dcterms:description "A condition thread relationship specifically links condition nodes together to form a condition thread. The source is the new condition node and the target links to the most recent node of the existing condition thread.".

cs:ActRelationshipType\#XCRPT rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "Excerpts";
  dc:title "Excerpts";
  rdfs:comment "The source is an excerpt from the target.";
  dcterms:description "The source is an excerpt from the target.".

cs:ActRelationshipType\#VRXCRPT rdfs:subClassOf cs:ActRelationshipType\#XCRPT;
  rdfs:label "Excerpt verbatim";
  dc:title "Excerpt verbatim";
  rdfs:comment "The source is a direct quote from the target.";
  dcterms:description "The source is a direct quote from the target.".

cs:ActRelationshipType\#XFRM rdfs:subClassOf cs:ActRelationshipType\#SEQL;
  rdfs:label "transformation";
  dc:title "transformation";
  rdfs:comment "Used when the target Act is a transformation of the source Act. (For instance, used to show that a CDA document is a transformation of a DICOM SR document.)";
  dcterms:description "Used when the target Act is a transformation of the source Act. (For instance, used to show that a CDA document is a transformation of a DICOM SR document.)".

cs:ActRelationshipType\#SPRT rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "has support";
  dc:title "has support";
  rdfs:comment "Used to indicate that an existing service is suggesting evidence for a new observation. The assumption of support is attributed to the same actor who asserts the observation. Source must be an observation, target may be any service  (e.g., to indicate a status post).";
  dcterms:description "Used to indicate that an existing service is suggesting evidence for a new observation. The assumption of support is attributed to the same actor who asserts the observation. Source must be an observation, target may be any service  (e.g., to indicate a status post).".

cs:ActRelationshipType\#SPRTBND rdfs:subClassOf cs:ActRelationshipType\#SPRT;
  rdfs:label "has bounded support";
  dc:title "has bounded support";
  rdfs:comment "A specialization of \"has support\" (SPRT), used to relate a secondary observation to a Region of Interest on a multidimensional observation, if the ROI specifies the true boundaries of the secondary observation as opposed to only marking the approximate area.  For example, if the start and end of an ST elevation episode is visible in an EKG, this relation would indicate the ROI bounds the  \"ST elevation\" observation -- the ROI defines the true beginning and ending of the episode.  Conversely, if a ROI simply contains ST elevation, but it does not define the bounds (start and end) of the episode, the more general \"has support\" relation is used.  Likewise, if a ROI on an image defines the true bounds of a \"1st degree burn\", the relation \"has bounded support\" is used; but if the ROI only points to the approximate area of the burn, the general \"has support\" relation is used.";
  dcterms:description "A specialization of \"has support\" (SPRT), used to relate a secondary observation to a Region of Interest on a multidimensional observation, if the ROI specifies the true boundaries of the secondary observation as opposed to only marking the approximate area.  For example, if the start and end of an ST elevation episode is visible in an EKG, this relation would indicate the ROI bounds the  \"ST elevation\" observation -- the ROI defines the true beginning and ending of the episode.  Conversely, if a ROI simply contains ST elevation, but it does not define the bounds (start and end) of the episode, the more general \"has support\" relation is used.  Likewise, if a ROI on an image defines the true bounds of a \"1st degree burn\", the relation \"has bounded support\" is used; but if the ROI only points to the approximate area of the burn, the general \"has support\" relation is used.".

cs:ActRelationshipType\#SUBJ rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "has subject";
  dc:title "has subject";
  rdfs:comment "Relates an Act to its subject Act that the first Act is primarily concerned with.\r\n\n                        Examples\r\n\n                        \n                           \n                              The first Act may be a ControlAct manipulating the subject Act \r\n\n                           \n                           \n                              The first act is a region of interest (ROI) that defines a region within the subject Act.\r\n\n                           \n                           \n                              The first act is a reporting or notification Act, that echos the subject Act for a specific new purpose.\r\n\n                           \n                        \n                        Constraints\r\n\n                        An Act may have multiple subject acts.\r\n\n                        Rationale\r\n\n                        The ActRelationshipType \"has subject\" is similar to the ParticipationType \"subject\", Acts that primarily operate on physical subjects use the Participation, those Acts that primarily operate on other Acts (other information) use the ActRelationship.";
  dcterms:description "Relates an Act to its subject Act that the first Act is primarily concerned with.\r\n\n                        Examples\r\n\n                        \n                           \n                              The first Act may be a ControlAct manipulating the subject Act \r\n\n                           \n                           \n                              The first act is a region of interest (ROI) that defines a region within the subject Act.\r\n\n                           \n                           \n                              The first act is a reporting or notification Act, that echos the subject Act for a specific new purpose.\r\n\n                           \n                        \n                        Constraints\r\n\n                        An Act may have multiple subject acts.\r\n\n                        Rationale\r\n\n                        The ActRelationshipType \"has subject\" is similar to the ParticipationType \"subject\", Acts that primarily operate on physical subjects use the Participation, those Acts that primarily operate on other Acts (other information) use the ActRelationship.".

cs:ActRelationshipType\#QUALF rdfs:subClassOf cs:ActRelationshipType\#SUBJ;
  rdfs:label "has qualifier";
  dc:title "has qualifier";
  rdfs:comment "The target observation qualifies (refines) the semantics of the source observation.\r\n\n                        \n                           UsageNote: This is not intended to replace concept refinement and qualification via vocabulary.  It is used when there are multiple components which together provide the complete understanding of the source Act.";
  dcterms:description "The target observation qualifies (refines) the semantics of the source observation.\r\n\n                        \n                           UsageNote: This is not intended to replace concept refinement and qualification via vocabulary.  It is used when there are multiple components which together provide the complete understanding of the source Act.".

cs:ActRelationshipType\#SUMM rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "summarized by";
  dc:title "summarized by";
  rdfs:comment "An act that contains summary values for a list or set of subordinate acts.  For example, a summary of transactions for a particular accounting period.";
  dcterms:description "An act that contains summary values for a list or set of subordinate acts.  For example, a summary of transactions for a particular accounting period.".

cs:ActRelationshipType\#VALUE rdfs:subClassOf cs:ActRelationshipType\#ART;
  rdfs:label "has value";
  dc:title "has value";
  rdfs:comment "Description:Indicates that the target Act represents the result of the source observation Act.\r\n\n                        \n                           FormalConstraint: Source Act must be an Observation or specialization there-of. Source Act must not have the value attribute specified\r\n\n                        \n                           UsageNote: This relationship allows the result of an observation to be fully expressed as RIM acts as opposed to being embedded in the value attribute.  For example, sending a Document act as the result of an imaging observation, sending a list of Procedures and/or other acts as the result of a medical history observation.\r\n\n                        The valueNegationInd attribute on the source Act has the same semantics of \"negated finding\" when it applies to the target of a VALUE ActRelationship as it does to the value attribute.  On the other hand, if the ActRelationship.negationInd is true for a VALUE ActRelationship, that means the specified observation does not have the indicated value but does not imply a negated finding.  Because the semantics are extremely close, it is recommended that Observation.valueNegationInd be used, not ActRelationship.negationInd.\r\n\n                        \n                           OpenIssue: The implications of negationInd on ActRelationship and the valueNegationind on Observation.";
  dcterms:description "Description:Indicates that the target Act represents the result of the source observation Act.\r\n\n                        \n                           FormalConstraint: Source Act must be an Observation or specialization there-of. Source Act must not have the value attribute specified\r\n\n                        \n                           UsageNote: This relationship allows the result of an observation to be fully expressed as RIM acts as opposed to being embedded in the value attribute.  For example, sending a Document act as the result of an imaging observation, sending a list of Procedures and/or other acts as the result of a medical history observation.\r\n\n                        The valueNegationInd attribute on the source Act has the same semantics of \"negated finding\" when it applies to the target of a VALUE ActRelationship as it does to the value attribute.  On the other hand, if the ActRelationship.negationInd is true for a VALUE ActRelationship, that means the specified observation does not have the indicated value but does not imply a negated finding.  Because the semantics are extremely close, it is recommended that Observation.valueNegationInd be used, not ActRelationship.negationInd.\r\n\n                        \n                           OpenIssue: The implications of negationInd on ActRelationship and the valueNegationind on Observation.".

cs:ActRelationshipType\#CURE rdfs:subClassOf cs:ActRelationshipType;
  rdfs:label "curative indication";
  dc:title "curative indication";
  rdfs:comment "curative indication";
  dcterms:description "curative indication".

cs:ActRelationshipType\#CURE.ADJ rdfs:subClassOf cs:ActRelationshipType;
  rdfs:label "adjunct curative indication";
  dc:title "adjunct curative indication";
  rdfs:comment "adjunct curative indication";
  dcterms:description "adjunct curative indication".

cs:ActRelationshipType\#MTGT.ADJ rdfs:subClassOf cs:ActRelationshipType;
  rdfs:label "adjunct mitigation";
  dc:title "adjunct mitigation";
  rdfs:comment "adjunct mitigation";
  dcterms:description "adjunct mitigation".

cs:ActRelationshipType\#RACT rdfs:subClassOf cs:ActRelationshipType.

cs:ActRelationshipType\#SUGG rdfs:subClassOf cs:ActRelationshipType.

# - vs:v3-ActSite --------------------------------------------------------------

vs:v3-ActSite a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActSite";
  dc:title "v3 Code System ActSite";
  rdfs:comment " An anatomical location on an organism which can be the focus of an act.";
  dcterms:description " An anatomical location on an organism which can be the focus of an act.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActSite.

cs:ActSite.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActSite";
  dc:title "v3 Code System ActSite";
  rdfs:comment " An anatomical location on an organism which can be the focus of an act.";
  dcterms:description " An anatomical location on an organism which can be the focus of an act.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActSite a fhir:Concept.

cs:ActSite\#%5fHumanActSite rdfs:subClassOf cs:ActSite;
  rdfs:label "HumanActSite";
  dc:title "HumanActSite";
  rdfs:comment "An anatomical location on a human which can be the focus of an act.";
  dcterms:description "An anatomical location on a human which can be the focus of an act.".

cs:ActSite\#%5fHumanSubstanceAdministrationSite rdfs:subClassOf cs:ActSite\#%5fHumanActSite;
  rdfs:label "HumanSubstanceAdministrationSite";
  dc:title "HumanSubstanceAdministrationSite";
  rdfs:comment "The set of body locations to or through which a drug product may be administered.";
  dcterms:description "The set of body locations to or through which a drug product may be administered.".

cs:ActSite\#BE rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "bilateral ears";
  dc:title "bilateral ears";
  rdfs:comment "bilateral ears";
  dcterms:description "bilateral ears".

cs:ActSite\#BN rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "bilateral nares";
  dc:title "bilateral nares";
  rdfs:comment "bilateral nares";
  dcterms:description "bilateral nares".

cs:ActSite\#BU rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "buttock";
  dc:title "buttock";
  rdfs:comment "buttock";
  dcterms:description "buttock".

cs:ActSite\#LA rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left arm";
  dc:title "left arm";
  rdfs:comment "left arm";
  dcterms:description "left arm".

cs:ActSite\#LAC rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left anterior chest";
  dc:title "left anterior chest";
  rdfs:comment "left anterior chest";
  dcterms:description "left anterior chest".

cs:ActSite\#LACF rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left antecubital fossa";
  dc:title "left antecubital fossa";
  rdfs:comment "left antecubital fossa";
  dcterms:description "left antecubital fossa".

cs:ActSite\#LD rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left deltoid";
  dc:title "left deltoid";
  rdfs:comment "left deltoid";
  dcterms:description "left deltoid".

cs:ActSite\#LE rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left ear";
  dc:title "left ear";
  rdfs:comment "left ear";
  dcterms:description "left ear".

cs:ActSite\#LEJ rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left external jugular";
  dc:title "left external jugular";
  rdfs:comment "left external jugular";
  dcterms:description "left external jugular".

cs:ActSite\#LF rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left foot";
  dc:title "left foot";
  rdfs:comment "left foot";
  dcterms:description "left foot".

cs:ActSite\#LG rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left gluteus medius";
  dc:title "left gluteus medius";
  rdfs:comment "left gluteus medius";
  dcterms:description "left gluteus medius".

cs:ActSite\#LH rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left hand";
  dc:title "left hand";
  rdfs:comment "left hand";
  dcterms:description "left hand".

cs:ActSite\#LIJ rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left internal jugular";
  dc:title "left internal jugular";
  rdfs:comment "left internal jugular";
  dcterms:description "left internal jugular".

cs:ActSite\#LLAQ rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left lower abd quadrant";
  dc:title "left lower abd quadrant";
  rdfs:comment "left lower abd quadrant";
  dcterms:description "left lower abd quadrant".

cs:ActSite\#LLFA rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left lower forearm";
  dc:title "left lower forearm";
  rdfs:comment "left lower forearm";
  dcterms:description "left lower forearm".

cs:ActSite\#LMFA rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left mid forearm";
  dc:title "left mid forearm";
  rdfs:comment "left mid forearm";
  dcterms:description "left mid forearm".

cs:ActSite\#LN rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left naris";
  dc:title "left naris";
  rdfs:comment "left naris";
  dcterms:description "left naris".

cs:ActSite\#LPC rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left posterior chest";
  dc:title "left posterior chest";
  rdfs:comment "left posterior chest";
  dcterms:description "left posterior chest".

cs:ActSite\#LSC rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left subclavian";
  dc:title "left subclavian";
  rdfs:comment "left subclavian";
  dcterms:description "left subclavian".

cs:ActSite\#LT rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left thigh";
  dc:title "left thigh";
  rdfs:comment "left thigh";
  dcterms:description "left thigh".

cs:ActSite\#LUA rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left upper arm";
  dc:title "left upper arm";
  rdfs:comment "left upper arm";
  dcterms:description "left upper arm".

cs:ActSite\#LUAQ rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left upper abd quadrant";
  dc:title "left upper abd quadrant";
  rdfs:comment "left upper abd quadrant";
  dcterms:description "left upper abd quadrant".

cs:ActSite\#LUFA rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left upper forearm";
  dc:title "left upper forearm";
  rdfs:comment "left upper forearm";
  dcterms:description "left upper forearm".

cs:ActSite\#LVG rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left ventragluteal";
  dc:title "left ventragluteal";
  rdfs:comment "left ventragluteal";
  dcterms:description "left ventragluteal".

cs:ActSite\#LVL rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left vastus lateralis";
  dc:title "left vastus lateralis";
  rdfs:comment "left vastus lateralis";
  dcterms:description "left vastus lateralis".

cs:ActSite\#OD rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right eye";
  dc:title "right eye";
  rdfs:comment "right eye";
  dcterms:description "right eye".

cs:ActSite\#OS rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "left eye";
  dc:title "left eye";
  rdfs:comment "left eye";
  dcterms:description "left eye".

cs:ActSite\#OU rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "bilateral eyes";
  dc:title "bilateral eyes";
  rdfs:comment "bilateral eyes";
  dcterms:description "bilateral eyes".

cs:ActSite\#PA rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "perianal";
  dc:title "perianal";
  rdfs:comment "perianal";
  dcterms:description "perianal".

cs:ActSite\#PERIN rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "perineal";
  dc:title "perineal";
  rdfs:comment "perineal";
  dcterms:description "perineal".

cs:ActSite\#RA rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right arm";
  dc:title "right arm";
  rdfs:comment "right arm";
  dcterms:description "right arm".

cs:ActSite\#RAC rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right anterior chest";
  dc:title "right anterior chest";
  rdfs:comment "right anterior chest";
  dcterms:description "right anterior chest".

cs:ActSite\#RACF rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right antecubital fossa";
  dc:title "right antecubital fossa";
  rdfs:comment "right antecubital fossa";
  dcterms:description "right antecubital fossa".

cs:ActSite\#RD rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right deltoid";
  dc:title "right deltoid";
  rdfs:comment "right deltoid";
  dcterms:description "right deltoid".

cs:ActSite\#RE rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right ear";
  dc:title "right ear";
  rdfs:comment "right ear";
  dcterms:description "right ear".

cs:ActSite\#REJ rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right external jugular";
  dc:title "right external jugular";
  rdfs:comment "right external jugular";
  dcterms:description "right external jugular".

cs:ActSite\#RF rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right foot";
  dc:title "right foot";
  rdfs:comment "right foot";
  dcterms:description "right foot".

cs:ActSite\#RG rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right gluteus medius";
  dc:title "right gluteus medius";
  rdfs:comment "right gluteus medius";
  dcterms:description "right gluteus medius".

cs:ActSite\#RH rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right hand";
  dc:title "right hand";
  rdfs:comment "right hand";
  dcterms:description "right hand".

cs:ActSite\#RIJ rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right internal jugular";
  dc:title "right internal jugular";
  rdfs:comment "right internal jugular";
  dcterms:description "right internal jugular".

cs:ActSite\#RLAQ rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right lower abd quadrant";
  dc:title "right lower abd quadrant";
  rdfs:comment "right lower abd quadrant";
  dcterms:description "right lower abd quadrant".

cs:ActSite\#RLFA rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right lower forearm";
  dc:title "right lower forearm";
  rdfs:comment "right lower forearm";
  dcterms:description "right lower forearm".

cs:ActSite\#RMFA rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right mid forearm";
  dc:title "right mid forearm";
  rdfs:comment "right mid forearm";
  dcterms:description "right mid forearm".

cs:ActSite\#RN rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right naris";
  dc:title "right naris";
  rdfs:comment "right naris";
  dcterms:description "right naris".

cs:ActSite\#RPC rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right posterior chest";
  dc:title "right posterior chest";
  rdfs:comment "right posterior chest";
  dcterms:description "right posterior chest".

cs:ActSite\#RSC rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right subclavian";
  dc:title "right subclavian";
  rdfs:comment "right subclavian";
  dcterms:description "right subclavian".

cs:ActSite\#RT rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right thigh";
  dc:title "right thigh";
  rdfs:comment "right thigh";
  dcterms:description "right thigh".

cs:ActSite\#RUA rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right upper arm";
  dc:title "right upper arm";
  rdfs:comment "right upper arm";
  dcterms:description "right upper arm".

cs:ActSite\#RUAQ rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right upper abd quadrant";
  dc:title "right upper abd quadrant";
  rdfs:comment "right upper abd quadrant";
  dcterms:description "right upper abd quadrant".

cs:ActSite\#RUFA rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right upper forearm";
  dc:title "right upper forearm";
  rdfs:comment "right upper forearm";
  dcterms:description "right upper forearm".

cs:ActSite\#RVG rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right ventragluteal";
  dc:title "right ventragluteal";
  rdfs:comment "right ventragluteal";
  dcterms:description "right ventragluteal".

cs:ActSite\#RVL rdfs:subClassOf cs:ActSite\#%5fHumanSubstanceAdministrationSite;
  rdfs:label "right vastus lateralis";
  dc:title "right vastus lateralis";
  rdfs:comment "right vastus lateralis";
  dcterms:description "right vastus lateralis".

# - vs:v3-ActStatus ------------------------------------------------------------

vs:v3-ActStatus a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActStatus";
  dc:title "v3 Code System ActStatus";
  rdfs:comment " Codes representing the defined possible states of an Act, as defined by the Act class state machine.";
  dcterms:description " Codes representing the defined possible states of an Act, as defined by the Act class state machine.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActStatus.

cs:ActStatus.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActStatus";
  dc:title "v3 Code System ActStatus";
  rdfs:comment " Codes representing the defined possible states of an Act, as defined by the Act class state machine.";
  dcterms:description " Codes representing the defined possible states of an Act, as defined by the Act class state machine.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActStatus a fhir:Concept.

cs:ActStatus\#normal rdfs:subClassOf cs:ActStatus;
  rdfs:label "normal";
  dc:title "normal";
  rdfs:comment "Encompasses the expected states of an Act, but excludes \"nullified\" and \"obsolete\" which represent unusual terminal states for the life-cycle.";
  dcterms:description "Encompasses the expected states of an Act, but excludes \"nullified\" and \"obsolete\" which represent unusual terminal states for the life-cycle.".

cs:ActStatus\#aborted rdfs:subClassOf cs:ActStatus\#normal;
  rdfs:label "aborted";
  dc:title "aborted";
  rdfs:comment "The Act has been terminated prior to the originally intended completion.";
  dcterms:description "The Act has been terminated prior to the originally intended completion.".

cs:ActStatus\#active rdfs:subClassOf cs:ActStatus\#normal;
  rdfs:label "active";
  dc:title "active";
  rdfs:comment "The Act can be performed or is being performed";
  dcterms:description "The Act can be performed or is being performed".

cs:ActStatus\#cancelled rdfs:subClassOf cs:ActStatus\#normal;
  rdfs:label "cancelled";
  dc:title "cancelled";
  rdfs:comment "The Act has been abandoned before activation.";
  dcterms:description "The Act has been abandoned before activation.".

cs:ActStatus\#completed rdfs:subClassOf cs:ActStatus\#normal;
  rdfs:label "completed";
  dc:title "completed";
  rdfs:comment "An Act that has terminated normally after all of its constituents have been performed.";
  dcterms:description "An Act that has terminated normally after all of its constituents have been performed.".

cs:ActStatus\#held rdfs:subClassOf cs:ActStatus\#normal;
  rdfs:label "held";
  dc:title "held";
  rdfs:comment "An Act that is still in the preparatory stages has been put aside.  No action can occur until the Act is released.";
  dcterms:description "An Act that is still in the preparatory stages has been put aside.  No action can occur until the Act is released.".

cs:ActStatus\#new rdfs:subClassOf cs:ActStatus\#normal;
  rdfs:label "new";
  dc:title "new";
  rdfs:comment "An Act that is in the preparatory stages and may not yet be acted upon";
  dcterms:description "An Act that is in the preparatory stages and may not yet be acted upon".

cs:ActStatus\#suspended rdfs:subClassOf cs:ActStatus\#normal;
  rdfs:label "suspended";
  dc:title "suspended";
  rdfs:comment "An Act that has been activated (actions could or have been performed against it), but has been temporarily disabled.  No further action should be taken against it until it is released";
  dcterms:description "An Act that has been activated (actions could or have been performed against it), but has been temporarily disabled.  No further action should be taken against it until it is released".

cs:ActStatus\#nullified rdfs:subClassOf cs:ActStatus;
  rdfs:label "nullified";
  dc:title "nullified";
  rdfs:comment "This Act instance was created in error and has been 'removed' and is treated as though it never existed.  A record is retained for audit purposes only.";
  dcterms:description "This Act instance was created in error and has been 'removed' and is treated as though it never existed.  A record is retained for audit purposes only.".

cs:ActStatus\#obsolete rdfs:subClassOf cs:ActStatus;
  rdfs:label "obsolete";
  dc:title "obsolete";
  rdfs:comment "This Act instance has been replaced by a new instance.";
  dcterms:description "This Act instance has been replaced by a new instance.".

# - vs:v3-ActSubstanceAdminSubstitutionCode ------------------------------------

vs:v3-ActSubstanceAdminSubstitutionCode a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "ActSubstanceAdminSubstitutionCode";
  dc:title "ActSubstanceAdminSubstitutionCode";
  rdfs:comment "No Description Provided";
  dcterms:description "No Description Provided";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-ActUSPrivacyLaw ------------------------------------------------------

vs:v3-ActUSPrivacyLaw a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActUSPrivacyLaw";
  dc:title "v3 Code System ActUSPrivacyLaw";
  rdfs:comment "  Description:\r\nA jurisdictional mandate in the US relating to privacy.";
  dcterms:description "  Description:\r\nA jurisdictional mandate in the US relating to privacy.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActUSPrivacyLaw.

cs:ActUSPrivacyLaw.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActUSPrivacyLaw";
  dc:title "v3 Code System ActUSPrivacyLaw";
  rdfs:comment "  Description:\r\nA jurisdictional mandate in the US relating to privacy.";
  dcterms:description "  Description:\r\nA jurisdictional mandate in the US relating to privacy.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActUSPrivacyLaw a fhir:Concept.

cs:ActUSPrivacyLaw\#%5fActUSPrivacyLaw rdfs:subClassOf cs:ActUSPrivacyLaw;
  rdfs:label "ActUSPrivacyLaw";
  dc:title "ActUSPrivacyLaw";
  rdfs:comment "Definition: A jurisdictional mandate in the U.S. relating to privacy.\r\n\n                        \n                           Usage Note: ActPrivacyLaw codes may be associated with an Act or a Role to indicate the legal provision to which the assignment of an Act.confidentialityCode or Role.confidentialtyCode complies.  May be used to further specify rationale for assignment of other ActPrivacyPolicy codes in the US realm, e.g., ETH and 42CFRPart2 can be differentiated from ETH and Title38Part1.";
  dcterms:description "Definition: A jurisdictional mandate in the U.S. relating to privacy.\r\n\n                        \n                           Usage Note: ActPrivacyLaw codes may be associated with an Act or a Role to indicate the legal provision to which the assignment of an Act.confidentialityCode or Role.confidentialtyCode complies.  May be used to further specify rationale for assignment of other ActPrivacyPolicy codes in the US realm, e.g., ETH and 42CFRPart2 can be differentiated from ETH and Title38Part1.".

cs:ActUSPrivacyLaw\#42CFRPart2 rdfs:subClassOf cs:ActUSPrivacyLaw\#%5fActUSPrivacyLaw;
  rdfs:label "42 CFR Part2";
  dc:title "42 CFR Part2";
  rdfs:comment "42 CFR Part 2 stipulates the right of an individual who has applied for or been given diagnosis or treatment for alcohol or drug abuse at a federally assisted program.\r\n\n                        \n                           Definition: Non-disclosure of health information relating to health care paid for by a federally assisted substance abuse program without patient consent.\r\n\n                        \n                           Usage Note: May be associated with an Act or a Role to indicate the legal provision to which the assignment of an Act.confidentialityCode or Role.confidentialityCode complies.";
  dcterms:description "42 CFR Part 2 stipulates the right of an individual who has applied for or been given diagnosis or treatment for alcohol or drug abuse at a federally assisted program.\r\n\n                        \n                           Definition: Non-disclosure of health information relating to health care paid for by a federally assisted substance abuse program without patient consent.\r\n\n                        \n                           Usage Note: May be associated with an Act or a Role to indicate the legal provision to which the assignment of an Act.confidentialityCode or Role.confidentialityCode complies.".

cs:ActUSPrivacyLaw\#CommonRule rdfs:subClassOf cs:ActUSPrivacyLaw\#%5fActUSPrivacyLaw;
  rdfs:label "Common Rule";
  dc:title "Common Rule";
  rdfs:comment "U.S. Federal regulations governing the protection of human subjects in research (codified at Subpart A of 45 CFR part 46) that has been adopted by 15 U.S. Federal departments and agencies in an effort to promote uniformity, understanding, and compliance with human subject protections. Existing regulations governing the protection of human subjects in Food and Drug Administration (FDA)-regulated research (21 CFR parts 50, 56, 312, and 812) are separate from the Common Rule but include similar requirements.\r\n\n                        \n                           Definition: U.S. federal laws governing research-related privacy policies.\r\n\n                        \n                           Usage Note: May be associated with an Act or a Role to indicate the legal provision to which the assignment of an Act.confidentialityCode or Role.confidentialtyCode complies.";
  dcterms:description "U.S. Federal regulations governing the protection of human subjects in research (codified at Subpart A of 45 CFR part 46) that has been adopted by 15 U.S. Federal departments and agencies in an effort to promote uniformity, understanding, and compliance with human subject protections. Existing regulations governing the protection of human subjects in Food and Drug Administration (FDA)-regulated research (21 CFR parts 50, 56, 312, and 812) are separate from the Common Rule but include similar requirements.\r\n\n                        \n                           Definition: U.S. federal laws governing research-related privacy policies.\r\n\n                        \n                           Usage Note: May be associated with an Act or a Role to indicate the legal provision to which the assignment of an Act.confidentialityCode or Role.confidentialtyCode complies.".

cs:ActUSPrivacyLaw\#HIPAANOPP rdfs:subClassOf cs:ActUSPrivacyLaw\#%5fActUSPrivacyLaw;
  rdfs:label "HIPAA notice of privacy practices";
  dc:title "HIPAA notice of privacy practices";
  rdfs:comment "The U.S. Public Law 104-191 Health Insurance Portability and Accountability Act (HIPAA) Privacy Rule (45 CFR Part 164 Subpart E) permits access, use and disclosure of certain personal health information (PHI as defined under the law) for purposes of Treatment, Payment, and Operations, and requires that the provider ask that patients acknowledge the Provider's Notice of Privacy Practices as permitted conduct under the law.\r\n\n                        \n                           Definition: Notification of HIPAA Privacy Practices.\r\n\n                        \n                           Usage Note: May be associated with an Act or a Role to indicate the legal provision to which the assignment of an Act.confidentialityCode or Role.confidentialtyCode complies.";
  dcterms:description "The U.S. Public Law 104-191 Health Insurance Portability and Accountability Act (HIPAA) Privacy Rule (45 CFR Part 164 Subpart E) permits access, use and disclosure of certain personal health information (PHI as defined under the law) for purposes of Treatment, Payment, and Operations, and requires that the provider ask that patients acknowledge the Provider's Notice of Privacy Practices as permitted conduct under the law.\r\n\n                        \n                           Definition: Notification of HIPAA Privacy Practices.\r\n\n                        \n                           Usage Note: May be associated with an Act or a Role to indicate the legal provision to which the assignment of an Act.confidentialityCode or Role.confidentialtyCode complies.".

cs:ActUSPrivacyLaw\#HIPAAPsyNotes rdfs:subClassOf cs:ActUSPrivacyLaw\#%5fActUSPrivacyLaw;
  rdfs:label "HIPAA psychotherapy notes";
  dc:title "HIPAA psychotherapy notes";
  rdfs:comment "The U.S. Public Law 104-191 Health Insurance Portability and Accountability Act (HIPAA) Privacy Rule (45 CFR Part 164 Section 164.508) requires authorization for certain uses and disclosure of psychotherapy notes.\r\n\n                        \n                           Definition: Authorization that must be obtained for disclosure of psychotherapy notes.\r\n\n                        \n                           Usage Note: May be associated with an Act or a Role to indicate the legal provision to which the assignment of an Act.confidentialityCode or Role.confidentialityCode complies.";
  dcterms:description "The U.S. Public Law 104-191 Health Insurance Portability and Accountability Act (HIPAA) Privacy Rule (45 CFR Part 164 Section 164.508) requires authorization for certain uses and disclosure of psychotherapy notes.\r\n\n                        \n                           Definition: Authorization that must be obtained for disclosure of psychotherapy notes.\r\n\n                        \n                           Usage Note: May be associated with an Act or a Role to indicate the legal provision to which the assignment of an Act.confidentialityCode or Role.confidentialityCode complies.".

cs:ActUSPrivacyLaw\#HIPAASelfPay rdfs:subClassOf cs:ActUSPrivacyLaw\#%5fActUSPrivacyLaw;
  rdfs:label "HIPAA self-pay";
  dc:title "HIPAA self-pay";
  rdfs:comment "Section 13405(a) of the Health Information Technology for Economic and Clinical Health Act (HITECH) stipulates the right of an individual to have disclosures regarding certain health care items or services for which the individual pays out of pocket in full restricted from a health plan.\r\n\n                        \n                           Definition: Non-disclosure of health information to a health plan relating to health care items or services for which an individual pays out of pocket in full.\r\n\n                        \n                           Usage Note: May be associated with an Act or a Role to indicate the legal provision to which the assignment of an Act.confidentialityCode or Role.confidentialityCode complies.";
  dcterms:description "Section 13405(a) of the Health Information Technology for Economic and Clinical Health Act (HITECH) stipulates the right of an individual to have disclosures regarding certain health care items or services for which the individual pays out of pocket in full restricted from a health plan.\r\n\n                        \n                           Definition: Non-disclosure of health information to a health plan relating to health care items or services for which an individual pays out of pocket in full.\r\n\n                        \n                           Usage Note: May be associated with an Act or a Role to indicate the legal provision to which the assignment of an Act.confidentialityCode or Role.confidentialityCode complies.".

cs:ActUSPrivacyLaw\#Title38Section7332 rdfs:subClassOf cs:ActUSPrivacyLaw\#%5fActUSPrivacyLaw;
  rdfs:label "Title 38 Section 7332";
  dc:title "Title 38 Section 7332";
  rdfs:comment "Title 38 Part 1-protected information may only be disclosed to a third party with the special written consent of the patient except where expressly authorized by 38 USC 7332. VA may disclose this information for specific purposes to: VA employees on a need to know basis - more restrictive than Privacy Act need to know; contractors who need the information in order to perform or fulfill the duties of the contract; and researchers who provide assurances that the information will not be identified in any report.  This information may also be disclosed without consent where patient lacks decision-making capacity; in a medical emergency for the purpose of treating a condition which poses an immediate threat to the health of any individual and which requires immediate medical intervention; for eye, tissue, or organ donation purposes; and disclosure of HIV information for public health purposes.\r\n\n                        \n                           Definition: Title 38 Part 1 - Â§1.462 Confidentiality restrictions.\r\n\n                        \n(a) General. The patient records to which Â§Â§1.460 through 1.499 of this part apply may be disclosed or used only as permitted by these regulations and may not otherwise be disclosed or used in any civil, criminal, administrative, or legislative proceedings conducted by any Federal, State, or local authority. Any disclosure made under these regulations must be limited to that information which is necessary to carry out the purpose of the disclosure. SUBCHAPTER III--PROTECTION OF PATIENT RIGHTS Sec. 7332. Confidentiality of certain medical records (a)(1) Records of the identity, diagnosis, prognosis, or treatment of any patient or subject which are maintained in connection with the performance of any program or activity (including education, training, treatment, rehabilitation, or research) relating to drug abuse, alcoholism or alcohol abuse, infection with the human immunodeficiency virus, or sickle cell anemia which is carried out by or for the Department under this title shall, except as provided in subsections (e) and (f), be confidential, and (section 5701 of this title to the contrary notwithstanding) such records may be disclosed only for the purposes and under the circumstances expressly authorized under subsection (b).\r\n\n                        \n                           Usage Note: May be associated with an Act or a Role to indicate the legal provision to which the assignment of an Act.confidentialityCode or Role.confidentialityCode complies.";
  dcterms:description "Title 38 Part 1-protected information may only be disclosed to a third party with the special written consent of the patient except where expressly authorized by 38 USC 7332. VA may disclose this information for specific purposes to: VA employees on a need to know basis - more restrictive than Privacy Act need to know; contractors who need the information in order to perform or fulfill the duties of the contract; and researchers who provide assurances that the information will not be identified in any report.  This information may also be disclosed without consent where patient lacks decision-making capacity; in a medical emergency for the purpose of treating a condition which poses an immediate threat to the health of any individual and which requires immediate medical intervention; for eye, tissue, or organ donation purposes; and disclosure of HIV information for public health purposes.\r\n\n                        \n                           Definition: Title 38 Part 1 - Â§1.462 Confidentiality restrictions.\r\n\n                        \n(a) General. The patient records to which Â§Â§1.460 through 1.499 of this part apply may be disclosed or used only as permitted by these regulations and may not otherwise be disclosed or used in any civil, criminal, administrative, or legislative proceedings conducted by any Federal, State, or local authority. Any disclosure made under these regulations must be limited to that information which is necessary to carry out the purpose of the disclosure. SUBCHAPTER III--PROTECTION OF PATIENT RIGHTS Sec. 7332. Confidentiality of certain medical records (a)(1) Records of the identity, diagnosis, prognosis, or treatment of any patient or subject which are maintained in connection with the performance of any program or activity (including education, training, treatment, rehabilitation, or research) relating to drug abuse, alcoholism or alcohol abuse, infection with the human immunodeficiency virus, or sickle cell anemia which is carried out by or for the Department under this title shall, except as provided in subsections (e) and (f), be confidential, and (section 5701 of this title to the contrary notwithstanding) such records may be disclosed only for the purposes and under the circumstances expressly authorized under subsection (b).\r\n\n                        \n                           Usage Note: May be associated with an Act or a Role to indicate the legal provision to which the assignment of an Act.confidentialityCode or Role.confidentialityCode complies.".

# - vs:v3-ActUncertainty -------------------------------------------------------

vs:v3-ActUncertainty a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ActUncertainty";
  dc:title "v3 Code System ActUncertainty";
  rdfs:comment "  OpenIssue:\r\nMissing Description";
  dcterms:description "  OpenIssue:\r\nMissing Description";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ActUncertainty.

cs:ActUncertainty.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ActUncertainty";
  dc:title "v3 Code System ActUncertainty";
  rdfs:comment "  OpenIssue:\r\nMissing Description";
  dcterms:description "  OpenIssue:\r\nMissing Description";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ActUncertainty a fhir:Concept.

cs:ActUncertainty\#N rdfs:subClassOf cs:ActUncertainty;
  rdfs:label "stated with no assertion of uncertainty";
  dc:title "stated with no assertion of uncertainty";
  rdfs:comment "Specifies that the act statement is made without explicit tagging of uncertainty. This is the normal statement, meaning that it is not free of errors and uncertainty may still exist.";
  dcterms:description "Specifies that the act statement is made without explicit tagging of uncertainty. This is the normal statement, meaning that it is not free of errors and uncertainty may still exist.".

cs:ActUncertainty\#U rdfs:subClassOf cs:ActUncertainty;
  rdfs:label "stated with uncertainty";
  dc:title "stated with uncertainty";
  rdfs:comment "Specifies that the originator of the Act statement does not have full confidence in the applicability (i.e., in event mood: factual truth) of the statement.";
  dcterms:description "Specifies that the originator of the Act statement does not have full confidence in the applicability (i.e., in event mood: factual truth) of the statement.".

# - vs:v3-AddressPartType ------------------------------------------------------

vs:v3-AddressPartType a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System AddressPartType";
  dc:title "v3 Code System AddressPartType";
  rdfs:comment "  Description:\r\nCode that specifies whether an address part names the street, city, country, postal code, post box, etc. Discussion: The hierarchical nature of these concepts shows composition.  E.g. \"Street Name\" is part of \"Street Address Line\"";
  dcterms:description "  Description:\r\nCode that specifies whether an address part names the street, city, country, postal code, post box, etc. Discussion: The hierarchical nature of these concepts shows composition.  E.g. \"Street Name\" is part of \"Street Address Line\"";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:AddressPartType.

cs:AddressPartType.system a fhir:CodeSystem;
  rdfs:label "v3 Code System AddressPartType";
  dc:title "v3 Code System AddressPartType";
  rdfs:comment "  Description:\r\nCode that specifies whether an address part names the street, city, country, postal code, post box, etc. Discussion: The hierarchical nature of these concepts shows composition.  E.g. \"Street Name\" is part of \"Street Address Line\"";
  dcterms:description "  Description:\r\nCode that specifies whether an address part names the street, city, country, postal code, post box, etc. Discussion: The hierarchical nature of these concepts shows composition.  E.g. \"Street Name\" is part of \"Street Address Line\"";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:AddressPartType a fhir:Concept.

cs:AddressPartType\#ADL rdfs:subClassOf cs:AddressPartType;
  rdfs:label "additional locator";
  dc:title "additional locator";
  rdfs:comment "This can be a unit designator, such as apartment number, suite number, or floor. There may be several unit designators in an address (e.g., \"3rd floor, Appt. 342\"). This can also be a designator pointing away from the location, rather than specifying a smaller location within some larger one (e.g., Dutch \"t.o.\" means \"opposite to\" for house boats located across the street facing houses).";
  dcterms:description "This can be a unit designator, such as apartment number, suite number, or floor. There may be several unit designators in an address (e.g., \"3rd floor, Appt. 342\"). This can also be a designator pointing away from the location, rather than specifying a smaller location within some larger one (e.g., Dutch \"t.o.\" means \"opposite to\" for house boats located across the street facing houses).".

cs:AddressPartType\#AL rdfs:subClassOf cs:AddressPartType;
  rdfs:label "address line";
  dc:title "address line";
  rdfs:comment "Description: An address line is for either an additional locator, a delivery address or a street address.";
  dcterms:description "Description: An address line is for either an additional locator, a delivery address or a street address.".

cs:AddressPartType\#DAL rdfs:subClassOf cs:AddressPartType\#AL;
  rdfs:label "delivery address line";
  dc:title "delivery address line";
  rdfs:comment "A delivery address line is frequently used instead of breaking out delivery mode, delivery installation, etc.  An address generally has only a delivery address line or a street address line, but not both.";
  dcterms:description "A delivery address line is frequently used instead of breaking out delivery mode, delivery installation, etc.  An address generally has only a delivery address line or a street address line, but not both.".

cs:AddressPartType\#SAL rdfs:subClassOf cs:AddressPartType\#AL;
  rdfs:label "street address line";
  dc:title "street address line";
  rdfs:comment "Description: A street address line is frequently used instead of breaking out build number, street name, street type, etc. An address generally has only a delivery address line or a street address line, but not both.";
  dcterms:description "Description: A street address line is frequently used instead of breaking out build number, street name, street type, etc. An address generally has only a delivery address line or a street address line, but not both.".

cs:AddressPartType\#BNN rdfs:subClassOf cs:AddressPartType;
  rdfs:label "building number numeric";
  dc:title "building number numeric";
  rdfs:comment "The numeric portion of a building number";
  dcterms:description "The numeric portion of a building number".

cs:AddressPartType\#BNR rdfs:subClassOf cs:AddressPartType;
  rdfs:label "building number";
  dc:title "building number";
  rdfs:comment "The number of a building, house or lot alongside the street.  Also known as \"primary street number\".  This does not number the street but rather the building.";
  dcterms:description "The number of a building, house or lot alongside the street.  Also known as \"primary street number\".  This does not number the street but rather the building.".

cs:AddressPartType\#BNS rdfs:subClassOf cs:AddressPartType;
  rdfs:label "building number suffix";
  dc:title "building number suffix";
  rdfs:comment "Any alphabetic character, fraction or other text that may appear after the numeric portion of a building number";
  dcterms:description "Any alphabetic character, fraction or other text that may appear after the numeric portion of a building number".

cs:AddressPartType\#CAR rdfs:subClassOf cs:AddressPartType;
  rdfs:label "care of";
  dc:title "care of";
  rdfs:comment "The name of the party who will take receipt at the specified address, and will take on responsibility for ensuring delivery to the target recipient";
  dcterms:description "The name of the party who will take receipt at the specified address, and will take on responsibility for ensuring delivery to the target recipient".

cs:AddressPartType\#CEN rdfs:subClassOf cs:AddressPartType;
  rdfs:label "census tract";
  dc:title "census tract";
  rdfs:comment "A geographic sub-unit delineated for demographic purposes.";
  dcterms:description "A geographic sub-unit delineated for demographic purposes.".

cs:AddressPartType\#CNT rdfs:subClassOf cs:AddressPartType;
  rdfs:label "country";
  dc:title "country";
  rdfs:comment "Country";
  dcterms:description "Country".

cs:AddressPartType\#CPA rdfs:subClassOf cs:AddressPartType;
  rdfs:label "county or parish";
  dc:title "county or parish";
  rdfs:comment "A sub-unit of a state or province. (49 of the United States of America use the term \"county;\" Louisiana uses the term \"parish\".)";
  dcterms:description "A sub-unit of a state or province. (49 of the United States of America use the term \"county;\" Louisiana uses the term \"parish\".)".

cs:AddressPartType\#CTY rdfs:subClassOf cs:AddressPartType;
  rdfs:label "municipality";
  dc:title "municipality";
  rdfs:comment "The name of the city, town, village, or other community or delivery center";
  dcterms:description "The name of the city, town, village, or other community or delivery center".

cs:AddressPartType\#DEL rdfs:subClassOf cs:AddressPartType;
  rdfs:label "delimiter";
  dc:title "delimiter";
  rdfs:comment "Delimiters are printed without framing white space.  If no value component is provided, the delimiter appears as a line break.";
  dcterms:description "Delimiters are printed without framing white space.  If no value component is provided, the delimiter appears as a line break.".

cs:AddressPartType\#DINST rdfs:subClassOf cs:AddressPartType;
  rdfs:label "delivery installation type";
  dc:title "delivery installation type";
  rdfs:comment "Indicates the type of delivery installation (the facility to which the mail will be delivered prior to final shipping via the delivery mode.) Example: post office, letter carrier depot, community mail center, station, etc.";
  dcterms:description "Indicates the type of delivery installation (the facility to which the mail will be delivered prior to final shipping via the delivery mode.) Example: post office, letter carrier depot, community mail center, station, etc.".

cs:AddressPartType\#DINSTA rdfs:subClassOf cs:AddressPartType;
  rdfs:label "delivery installation area";
  dc:title "delivery installation area";
  rdfs:comment "The location of the delivery installation, usually a town or city, and is only required if the area is different from the municipality. Area to which mail delivery service is provided from any postal facility or service such as an individual letter carrier, rural route, or postal route.";
  dcterms:description "The location of the delivery installation, usually a town or city, and is only required if the area is different from the municipality. Area to which mail delivery service is provided from any postal facility or service such as an individual letter carrier, rural route, or postal route.".

cs:AddressPartType\#DINSTQ rdfs:subClassOf cs:AddressPartType;
  rdfs:label "delivery installation qualifier";
  dc:title "delivery installation qualifier";
  rdfs:comment "A number, letter or name identifying a delivery installation.  E.g., for Station A, the delivery installation qualifier would be 'A'.";
  dcterms:description "A number, letter or name identifying a delivery installation.  E.g., for Station A, the delivery installation qualifier would be 'A'.".

cs:AddressPartType\#DIR rdfs:subClassOf cs:AddressPartType;
  rdfs:label "direction";
  dc:title "direction";
  rdfs:comment "Direction (e.g., N, S, W, E)";
  dcterms:description "Direction (e.g., N, S, W, E)".

cs:AddressPartType\#DMOD rdfs:subClassOf cs:AddressPartType;
  rdfs:label "delivery mode";
  dc:title "delivery mode";
  rdfs:comment "Indicates the type of service offered, method of delivery.  For example: post office box, rural route, general delivery, etc.";
  dcterms:description "Indicates the type of service offered, method of delivery.  For example: post office box, rural route, general delivery, etc.".

cs:AddressPartType\#DMODID rdfs:subClassOf cs:AddressPartType;
  rdfs:label "delivery mode identifier";
  dc:title "delivery mode identifier";
  rdfs:comment "Represents the routing information such as a letter carrier route number.  It is the identifying number of the designator (the box number or rural route number).";
  dcterms:description "Represents the routing information such as a letter carrier route number.  It is the identifying number of the designator (the box number or rural route number).".

cs:AddressPartType\#DPID rdfs:subClassOf cs:AddressPartType;
  rdfs:label "delivery point identifier";
  dc:title "delivery point identifier";
  rdfs:comment "A value that uniquely identifies the postal address.";
  dcterms:description "A value that uniquely identifies the postal address.".

cs:AddressPartType\#INT rdfs:subClassOf cs:AddressPartType;
  rdfs:label "intersection";
  dc:title "intersection";
  rdfs:comment "Description:An intersection denotes that the actual address is located AT or CLOSE TO the intersection OF two or more streets.";
  dcterms:description "Description:An intersection denotes that the actual address is located AT or CLOSE TO the intersection OF two or more streets.".

cs:AddressPartType\#POB rdfs:subClassOf cs:AddressPartType;
  rdfs:label "post box";
  dc:title "post box";
  rdfs:comment "A numbered box located in a post station.";
  dcterms:description "A numbered box located in a post station.".

cs:AddressPartType\#PRE rdfs:subClassOf cs:AddressPartType;
  rdfs:label "precinct";
  dc:title "precinct";
  rdfs:comment "A subsection of a municipality";
  dcterms:description "A subsection of a municipality".

cs:AddressPartType\#STA rdfs:subClassOf cs:AddressPartType;
  rdfs:label "state or province";
  dc:title "state or province";
  rdfs:comment "A sub-unit of a country with limited sovereignty in a federally organized country.";
  dcterms:description "A sub-unit of a country with limited sovereignty in a federally organized country.".

cs:AddressPartType\#STB rdfs:subClassOf cs:AddressPartType;
  rdfs:label "street name base";
  dc:title "street name base";
  rdfs:comment "The base name of a roadway or artery recognized by a municipality (excluding street type and direction)";
  dcterms:description "The base name of a roadway or artery recognized by a municipality (excluding street type and direction)".

cs:AddressPartType\#STR rdfs:subClassOf cs:AddressPartType;
  rdfs:label "street name";
  dc:title "street name";
  rdfs:comment "street name";
  dcterms:description "street name".

cs:AddressPartType\#STTYP rdfs:subClassOf cs:AddressPartType;
  rdfs:label "street type";
  dc:title "street type";
  rdfs:comment "The designation given to the street.  (e.g. Street, Avenue, Crescent, etc.)";
  dcterms:description "The designation given to the street.  (e.g. Street, Avenue, Crescent, etc.)".

cs:AddressPartType\#UNID rdfs:subClassOf cs:AddressPartType;
  rdfs:label "unit identifier";
  dc:title "unit identifier";
  rdfs:comment "The number or name of a specific unit contained within a building or complex, as assigned by that building or complex.";
  dcterms:description "The number or name of a specific unit contained within a building or complex, as assigned by that building or complex.".

cs:AddressPartType\#UNIT rdfs:subClassOf cs:AddressPartType;
  rdfs:label "unit designator";
  dc:title "unit designator";
  rdfs:comment "Indicates the type of specific unit contained within a building or complex.  E.g. Appartment, Floor";
  dcterms:description "Indicates the type of specific unit contained within a building or complex.  E.g. Appartment, Floor".

cs:AddressPartType\#ZIP rdfs:subClassOf cs:AddressPartType;
  rdfs:label "postal code";
  dc:title "postal code";
  rdfs:comment "A postal code designating a region defined by the postal service.";
  dcterms:description "A postal code designating a region defined by the postal service.".

# - vs:v3-AddressUse -----------------------------------------------------------

vs:v3-AddressUse a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System AddressUse";
  dc:title "v3 Code System AddressUse";
  rdfs:comment " Codes that provide guidance around the circumstances in which a given address should be used.";
  dcterms:description " Codes that provide guidance around the circumstances in which a given address should be used.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:AddressUse.

cs:AddressUse.system a fhir:CodeSystem;
  rdfs:label "v3 Code System AddressUse";
  dc:title "v3 Code System AddressUse";
  rdfs:comment " Codes that provide guidance around the circumstances in which a given address should be used.";
  dcterms:description " Codes that provide guidance around the circumstances in which a given address should be used.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:AddressUse a fhir:Concept.

cs:AddressUse\#%5fGeneralAddressUse rdfs:subClassOf cs:AddressUse;
  rdfs:label "_GeneralAddressUse";
  dc:title "_GeneralAddressUse";
  rdfs:comment "Description: Address uses that can apply to both postal and telecommunication addresses.";
  dcterms:description "Description: Address uses that can apply to both postal and telecommunication addresses.".

cs:AddressUse\#BAD rdfs:subClassOf cs:AddressUse\#%5fGeneralAddressUse;
  rdfs:label "bad address";
  dc:title "bad address";
  rdfs:comment "Description: A flag indicating that the address is bad, in fact, useless.";
  dcterms:description "Description: A flag indicating that the address is bad, in fact, useless.".

cs:AddressUse\#CONF rdfs:subClassOf cs:AddressUse\#%5fGeneralAddressUse;
  rdfs:label "confidential address";
  dc:title "confidential address";
  rdfs:comment "Description: Indicates that the address is considered sensitive and should only be shared or published in accordance with organizational controls governing patient demographic information with increased sensitivity. Uses of Addresses.   Lloyd to supply more complete description.";
  dcterms:description "Description: Indicates that the address is considered sensitive and should only be shared or published in accordance with organizational controls governing patient demographic information with increased sensitivity. Uses of Addresses.   Lloyd to supply more complete description.".

cs:AddressUse\#H rdfs:subClassOf cs:AddressUse\#%5fGeneralAddressUse;
  rdfs:label "home address";
  dc:title "home address";
  rdfs:comment "Description: A communication address at a home, attempted contacts for business purposes might intrude privacy and chances are one will contact family or other household members instead of the person one wishes to call. Typically used with urgent cases, or if no other contacts are available.";
  dcterms:description "Description: A communication address at a home, attempted contacts for business purposes might intrude privacy and chances are one will contact family or other household members instead of the person one wishes to call. Typically used with urgent cases, or if no other contacts are available.".

cs:AddressUse\#HP rdfs:subClassOf cs:AddressUse\#H;
  rdfs:label "primary home";
  dc:title "primary home";
  rdfs:comment "Description: The primary home, to reach a person after business hours.";
  dcterms:description "Description: The primary home, to reach a person after business hours.".

cs:AddressUse\#HV rdfs:subClassOf cs:AddressUse\#H;
  rdfs:label "vacation home";
  dc:title "vacation home";
  rdfs:comment "Description: A vacation home, to reach a person while on vacation.";
  dcterms:description "Description: A vacation home, to reach a person while on vacation.".

cs:AddressUse\#OLD rdfs:subClassOf cs:AddressUse\#%5fGeneralAddressUse;
  rdfs:label "no longer in use";
  dc:title "no longer in use";
  rdfs:comment "This address is no longer in use.\r\n\n                        \n                           Usage Note: Address may also carry valid time ranges. This code is used to cover the situations where it is known that the address is no longer valid, but no particular time range for its use is known.";
  dcterms:description "This address is no longer in use.\r\n\n                        \n                           Usage Note: Address may also carry valid time ranges. This code is used to cover the situations where it is known that the address is no longer valid, but no particular time range for its use is known.".

cs:AddressUse\#TMP rdfs:subClassOf cs:AddressUse\#%5fGeneralAddressUse;
  rdfs:label "temporary address";
  dc:title "temporary address";
  rdfs:comment "Description: A temporary address, may be good for visit or mailing. Note that an address history can provide more detailed information.";
  dcterms:description "Description: A temporary address, may be good for visit or mailing. Note that an address history can provide more detailed information.".

cs:AddressUse\#WP rdfs:subClassOf cs:AddressUse\#%5fGeneralAddressUse;
  rdfs:label "work place";
  dc:title "work place";
  rdfs:comment "Description: An office address. First choice for business related contacts during business hours.";
  dcterms:description "Description: An office address. First choice for business related contacts during business hours.".

cs:AddressUse\#DIR rdfs:subClassOf cs:AddressUse\#WP;
  rdfs:label "direct";
  dc:title "direct";
  rdfs:comment "Description: Indicates a work place address or telecommunication address that reaches the individual or organization directly without intermediaries. For phones, often referred to as a 'private line'.";
  dcterms:description "Description: Indicates a work place address or telecommunication address that reaches the individual or organization directly without intermediaries. For phones, often referred to as a 'private line'.".

cs:AddressUse\#PUB rdfs:subClassOf cs:AddressUse\#WP;
  rdfs:label "public";
  dc:title "public";
  rdfs:comment "Description: Indicates a work place address or telecommunication address that is a 'standard' address which may reach a reception service, mail-room, or other intermediary prior to the target entity.";
  dcterms:description "Description: Indicates a work place address or telecommunication address that is a 'standard' address which may reach a reception service, mail-room, or other intermediary prior to the target entity.".

cs:AddressUse\#%5fPostalAddressUse rdfs:subClassOf cs:AddressUse;
  rdfs:label "_PostalAddressUse";
  dc:title "_PostalAddressUse";
  rdfs:comment "Description: Address uses that only apply to postal addresses, not telecommunication addresses.";
  dcterms:description "Description: Address uses that only apply to postal addresses, not telecommunication addresses.".

cs:AddressUse\#PHYS rdfs:subClassOf cs:AddressUse\#%5fPostalAddressUse;
  rdfs:label "physical visit address";
  dc:title "physical visit address";
  rdfs:comment "Description: Used primarily to visit an address.";
  dcterms:description "Description: Used primarily to visit an address.".

cs:AddressUse\#PST rdfs:subClassOf cs:AddressUse\#%5fPostalAddressUse;
  rdfs:label "postal address";
  dc:title "postal address";
  rdfs:comment "Description: Used to send mail.";
  dcterms:description "Description: Used to send mail.".

cs:AddressUse\#%5fTelecommunicationAddressUse rdfs:subClassOf cs:AddressUse;
  rdfs:label "_TelecommunicationAddressUse";
  dc:title "_TelecommunicationAddressUse";
  rdfs:comment "Description: Address uses that only apply to telecommunication addresses, not postal addresses.";
  dcterms:description "Description: Address uses that only apply to telecommunication addresses, not postal addresses.".

cs:AddressUse\#AS rdfs:subClassOf cs:AddressUse\#%5fTelecommunicationAddressUse;
  rdfs:label "answering service";
  dc:title "answering service";
  rdfs:comment "Description: An automated answering machine used for less urgent cases and if the main purpose of contact is to leave a message or access an automated announcement.";
  dcterms:description "Description: An automated answering machine used for less urgent cases and if the main purpose of contact is to leave a message or access an automated announcement.".

cs:AddressUse\#EC rdfs:subClassOf cs:AddressUse\#%5fTelecommunicationAddressUse;
  rdfs:label "emergency contact";
  dc:title "emergency contact";
  rdfs:comment "Description: A contact specifically designated to be used for emergencies. This is the first choice in emergencies, independent of any other use codes.";
  dcterms:description "Description: A contact specifically designated to be used for emergencies. This is the first choice in emergencies, independent of any other use codes.".

cs:AddressUse\#MC rdfs:subClassOf cs:AddressUse\#%5fTelecommunicationAddressUse;
  rdfs:label "mobile contact)";
  dc:title "mobile contact)";
  rdfs:comment "Description: A telecommunication device that moves and stays with its owner. May have characteristics of all other use codes, suitable for urgent matters, not the first choice for routine business.";
  dcterms:description "Description: A telecommunication device that moves and stays with its owner. May have characteristics of all other use codes, suitable for urgent matters, not the first choice for routine business.".

cs:AddressUse\#PG rdfs:subClassOf cs:AddressUse\#%5fTelecommunicationAddressUse;
  rdfs:label "pager";
  dc:title "pager";
  rdfs:comment "Description: A paging device suitable to solicit a callback or to leave a very short message.";
  dcterms:description "Description: A paging device suitable to solicit a callback or to leave a very short message.".

# - vs:v3-AdministrativeGender -------------------------------------------------

vs:v3-AdministrativeGender a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System AdministrativeGender";
  dc:title "v3 Code System AdministrativeGender";
  rdfs:comment " The gender of a person used for adminstrative purposes (as opposed to clinical gender)";
  dcterms:description " The gender of a person used for adminstrative purposes (as opposed to clinical gender)";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:AdministrativeGender.

cs:AdministrativeGender.system a fhir:CodeSystem;
  rdfs:label "v3 Code System AdministrativeGender";
  dc:title "v3 Code System AdministrativeGender";
  rdfs:comment " The gender of a person used for adminstrative purposes (as opposed to clinical gender)";
  dcterms:description " The gender of a person used for adminstrative purposes (as opposed to clinical gender)";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:AdministrativeGender a fhir:Concept.

cs:AdministrativeGender\#F rdfs:subClassOf cs:AdministrativeGender;
  rdfs:label "Female";
  dc:title "Female";
  rdfs:comment "Female";
  dcterms:description "Female".

cs:AdministrativeGender\#M rdfs:subClassOf cs:AdministrativeGender;
  rdfs:label "Male";
  dc:title "Male";
  rdfs:comment "Male";
  dcterms:description "Male".

cs:AdministrativeGender\#UN rdfs:subClassOf cs:AdministrativeGender;
  rdfs:label "Undifferentiated";
  dc:title "Undifferentiated";
  rdfs:comment "The gender of a person could not be uniquely defined as male or female, such as hermaphrodite.";
  dcterms:description "The gender of a person could not be uniquely defined as male or female, such as hermaphrodite.".

# - vs:v3-AmericanIndianAlaskaNativeLanguages ----------------------------------

vs:v3-AmericanIndianAlaskaNativeLanguages a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System AmericanIndianAlaskaNativeLanguages";
  dc:title "v3 Code System AmericanIndianAlaskaNativeLanguages";
  rdfs:comment " American Indian and Alaska Native languages currently being used in the United States.";
  dcterms:description " American Indian and Alaska Native languages currently being used in the United States.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:AmericanIndianAlaskaNativeLanguages.

cs:AmericanIndianAlaskaNativeLanguages.system a fhir:CodeSystem;
  rdfs:label "v3 Code System AmericanIndianAlaskaNativeLanguages";
  dc:title "v3 Code System AmericanIndianAlaskaNativeLanguages";
  rdfs:comment " American Indian and Alaska Native languages currently being used in the United States.";
  dcterms:description " American Indian and Alaska Native languages currently being used in the United States.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:AmericanIndianAlaskaNativeLanguages a fhir:Concept.

cs:AmericanIndianAlaskaNativeLanguages\#%5fAlgic rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Algic";
  dc:title "Algic";
  rdfs:comment "Algic";
  dcterms:description "Algic".

cs:AmericanIndianAlaskaNativeLanguages\#%5fAlgonquian rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAlgic;
  rdfs:label "Algonquian";
  dc:title "Algonquian";
  rdfs:comment "Algonquian";
  dcterms:description "Algonquian".

cs:AmericanIndianAlaskaNativeLanguages\#%5fArapahoan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAlgonquian;
  rdfs:label "Arapahoan";
  dc:title "Arapahoan";
  rdfs:comment "Arapahoan";
  dcterms:description "Arapahoan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fArapahoGrosVentre rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fArapahoan;
  rdfs:label "ArapahoGrosVentre";
  dc:title "ArapahoGrosVentre";
  rdfs:comment "ArapahoGrosVentre";
  dcterms:description "ArapahoGrosVentre".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dARP rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fArapahoGrosVentre;
  rdfs:label "Arapaho";
  dc:title "Arapaho";
  rdfs:comment "Arapaho";
  dcterms:description "Arapaho".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dATS rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fArapahoGrosVentre;
  rdfs:label "Gros Ventre";
  dc:title "Gros Ventre";
  rdfs:comment "Gros Ventre";
  dcterms:description "Gros Ventre".

cs:AmericanIndianAlaskaNativeLanguages\#%5fCreeMontagnais rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAlgonquian;
  rdfs:label "CreeMontagnais";
  dc:title "CreeMontagnais";
  rdfs:comment "CreeMontagnais";
  dcterms:description "CreeMontagnais".

cs:AmericanIndianAlaskaNativeLanguages\#%5fCree rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCreeMontagnais;
  rdfs:label "Cree";
  dc:title "Cree";
  rdfs:comment "Cree";
  dcterms:description "Cree".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCRP rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCree;
  rdfs:label "Western Cree";
  dc:title "Western Cree";
  rdfs:comment "Western Cree";
  dcterms:description "Western Cree".

cs:AmericanIndianAlaskaNativeLanguages\#%5fEasternAlgonquin rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAlgonquian;
  rdfs:label "EasternAlgonquin";
  dc:title "EasternAlgonquin";
  rdfs:comment "EasternAlgonquin";
  dcterms:description "EasternAlgonquin".

cs:AmericanIndianAlaskaNativeLanguages\#%5fAbenakian rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fEasternAlgonquin;
  rdfs:label "Abenakian";
  dc:title "Abenakian";
  rdfs:comment "Abenakian";
  dcterms:description "Abenakian".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dAAQ rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAbenakian;
  rdfs:label "Eastern Abenaki";
  dc:title "Eastern Abenaki";
  rdfs:comment "Eastern Abenaki";
  dcterms:description "Eastern Abenaki".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dABE rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAbenakian;
  rdfs:label "Western Abenaki";
  dc:title "Western Abenaki";
  rdfs:comment "Western Abenaki";
  dcterms:description "Western Abenaki".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dMAC rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAbenakian;
  rdfs:label "Maliseet-Passamaquoddy";
  dc:title "Maliseet-Passamaquoddy";
  rdfs:comment "Maliseet-Passamaquoddy";
  dcterms:description "Maliseet-Passamaquoddy".

cs:AmericanIndianAlaskaNativeLanguages\#%5fDelawaran rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fEasternAlgonquin;
  rdfs:label "Delawaran";
  dc:title "Delawaran";
  rdfs:comment "Delawaran";
  dcterms:description "Delawaran".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dDEL rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fDelawaran;
  rdfs:label "Unami Delaware";
  dc:title "Unami Delaware";
  rdfs:comment "Unami Delaware";
  dcterms:description "Unami Delaware".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dMIC rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fEasternAlgonquin;
  rdfs:label "Micmac";
  dc:title "Micmac";
  rdfs:comment "Micmac";
  dcterms:description "Micmac".

cs:AmericanIndianAlaskaNativeLanguages\#%5fOjibwayan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAlgonquian;
  rdfs:label "Ojibwayan";
  dc:title "Ojibwayan";
  rdfs:comment "Ojibwayan";
  dcterms:description "Ojibwayan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dOJB rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fOjibwayan;
  rdfs:label "Southern Ojibwa";
  dc:title "Southern Ojibwa";
  rdfs:comment "Southern Ojibwa";
  dcterms:description "Southern Ojibwa".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dPOT rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fOjibwayan;
  rdfs:label "Potawatami";
  dc:title "Potawatami";
  rdfs:comment "Potawatami";
  dcterms:description "Potawatami".

cs:AmericanIndianAlaskaNativeLanguages\#%5fSaukFoxKickapoo rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAlgonquian;
  rdfs:label "SaukFoxKickapoo";
  dc:title "SaukFoxKickapoo";
  rdfs:comment "SaukFoxKickapoo";
  dcterms:description "SaukFoxKickapoo".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dKIC rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSaukFoxKickapoo;
  rdfs:label "Kickapoo";
  dc:title "Kickapoo";
  rdfs:comment "Kickapoo";
  dcterms:description "Kickapoo".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dSAC rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSaukFoxKickapoo;
  rdfs:label "Mesquakie";
  dc:title "Mesquakie";
  rdfs:comment "Mesquakie";
  dcterms:description "Mesquakie".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dSJW rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSaukFoxKickapoo;
  rdfs:label "Shawnee";
  dc:title "Shawnee";
  rdfs:comment "Shawnee";
  dcterms:description "Shawnee".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dBLC rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAlgonquian;
  rdfs:label "Blackfoot";
  dc:title "Blackfoot";
  rdfs:comment "Blackfoot";
  dcterms:description "Blackfoot".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCHY rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAlgonquian;
  rdfs:label "Cheyenne";
  dc:title "Cheyenne";
  rdfs:comment "Cheyenne";
  dcterms:description "Cheyenne".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dMEZ rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAlgonquian;
  rdfs:label "Menominee";
  dc:title "Menominee";
  rdfs:comment "Menominee";
  dcterms:description "Menominee".

cs:AmericanIndianAlaskaNativeLanguages\#%5fRitwan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAlgic;
  rdfs:label "Ritwan";
  dc:title "Ritwan";
  rdfs:comment "Ritwan";
  dcterms:description "Ritwan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dYUR rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fRitwan;
  rdfs:label "Yurok";
  dc:title "Yurok";
  rdfs:comment "Yurok";
  dcterms:description "Yurok".

cs:AmericanIndianAlaskaNativeLanguages\#%5fCaddoan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Caddoan";
  dc:title "Caddoan";
  rdfs:comment "Caddoan";
  dcterms:description "Caddoan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fNorthernCaddoan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCaddoan;
  rdfs:label "NorthernCaddoan";
  dc:title "NorthernCaddoan";
  rdfs:comment "NorthernCaddoan";
  dcterms:description "NorthernCaddoan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dARI rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fNorthernCaddoan;
  rdfs:label "Arikara";
  dc:title "Arikara";
  rdfs:comment "Arikara";
  dcterms:description "Arikara".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dPAW rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fNorthernCaddoan;
  rdfs:label "Pawnee";
  dc:title "Pawnee";
  rdfs:comment "Pawnee";
  dcterms:description "Pawnee".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dWIC rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fNorthernCaddoan;
  rdfs:label "Wichita";
  dc:title "Wichita";
  rdfs:comment "Wichita";
  dcterms:description "Wichita".

cs:AmericanIndianAlaskaNativeLanguages\#%5fSouthernCaddoan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCaddoan;
  rdfs:label "SouthernCaddoan";
  dc:title "SouthernCaddoan";
  rdfs:comment "SouthernCaddoan";
  dcterms:description "SouthernCaddoan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCAD rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSouthernCaddoan;
  rdfs:label "Caddo";
  dc:title "Caddo";
  rdfs:comment "Caddo";
  dcterms:description "Caddo".

cs:AmericanIndianAlaskaNativeLanguages\#%5fChimakuan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Chimakuan";
  dc:title "Chimakuan";
  rdfs:comment "Chimakuan";
  dcterms:description "Chimakuan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dQUI rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fChimakuan;
  rdfs:label "Quileute";
  dc:title "Quileute";
  rdfs:comment "Quileute";
  dcterms:description "Quileute".

cs:AmericanIndianAlaskaNativeLanguages\#%5fEskimoAleut rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "EskimoAleut";
  dc:title "EskimoAleut";
  rdfs:comment "EskimoAleut";
  dcterms:description "EskimoAleut".

cs:AmericanIndianAlaskaNativeLanguages\#%5fAleut rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fEskimoAleut;
  rdfs:label "Aleut";
  dc:title "Aleut";
  rdfs:comment "Aleut";
  dcterms:description "Aleut".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dALW rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAleut;
  rdfs:label "Aleut";
  dc:title "Aleut";
  rdfs:comment "Aleut";
  dcterms:description "Aleut".

cs:AmericanIndianAlaskaNativeLanguages\#%5fEskimoan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fEskimoAleut;
  rdfs:label "Eskimoan";
  dc:title "Eskimoan";
  rdfs:comment "Eskimoan";
  dcterms:description "Eskimoan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fInuitInupiaq rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fEskimoan;
  rdfs:label "InuitInupiaq";
  dc:title "InuitInupiaq";
  rdfs:comment "InuitInupiaq";
  dcterms:description "InuitInupiaq".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dESI rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fInuitInupiaq;
  rdfs:label "North Alaskan Inuktitut";
  dc:title "North Alaskan Inuktitut";
  rdfs:comment "North Alaskan Inuktitut";
  dcterms:description "North Alaskan Inuktitut".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dESK rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fInuitInupiaq;
  rdfs:label "Northwest Alaska Inuktitut";
  dc:title "Northwest Alaska Inuktitut";
  rdfs:comment "Northwest Alaska Inuktitut";
  dcterms:description "Northwest Alaska Inuktitut".

cs:AmericanIndianAlaskaNativeLanguages\#%5fSirenikskiYupik rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fEskimoan;
  rdfs:label "SirenikskiYupik";
  dc:title "SirenikskiYupik";
  rdfs:comment "SirenikskiYupik";
  dcterms:description "SirenikskiYupik".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dEMS rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSirenikskiYupik;
  rdfs:label "Pacific Yupik Gulf";
  dc:title "Pacific Yupik Gulf";
  rdfs:comment "Pacific Yupik Gulf";
  dcterms:description "Pacific Yupik Gulf".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dESS rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSirenikskiYupik;
  rdfs:label "Central Siberian Yupik";
  dc:title "Central Siberian Yupik";
  rdfs:comment "Central Siberian Yupik";
  dcterms:description "Central Siberian Yupik".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dESU rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSirenikskiYupik;
  rdfs:label "Central Alaskan Yupik";
  dc:title "Central Alaskan Yupik";
  rdfs:comment "Central Alaskan Yupik";
  dcterms:description "Central Alaskan Yupik".

cs:AmericanIndianAlaskaNativeLanguages\#%5fHokan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Hokan";
  dc:title "Hokan";
  rdfs:comment "Hokan";
  dcterms:description "Hokan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fCochimiYuman rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fHokan;
  rdfs:label "CochimiYuman";
  dc:title "CochimiYuman";
  rdfs:comment "CochimiYuman";
  dcterms:description "CochimiYuman".

cs:AmericanIndianAlaskaNativeLanguages\#%5fYuman rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCochimiYuman;
  rdfs:label "Yuman";
  dc:title "Yuman";
  rdfs:comment "Yuman";
  dcterms:description "Yuman".

cs:AmericanIndianAlaskaNativeLanguages\#%5fDeltaCalifornia rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fYuman;
  rdfs:label "DeltaCalifornia";
  dc:title "DeltaCalifornia";
  rdfs:comment "DeltaCalifornia";
  dcterms:description "DeltaCalifornia".

cs:AmericanIndianAlaskaNativeLanguages\#%5fDiegueno rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fDeltaCalifornia;
  rdfs:label "Diegueno";
  dc:title "Diegueno";
  rdfs:comment "Diegueno";
  dcterms:description "Diegueno".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dDIH rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fDiegueno;
  rdfs:label "Kumeyaay";
  dc:title "Kumeyaay";
  rdfs:comment "Kumeyaay";
  dcterms:description "Kumeyaay".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCOC rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fDeltaCalifornia;
  rdfs:label "Cocopa";
  dc:title "Cocopa";
  rdfs:comment "Cocopa";
  dcterms:description "Cocopa".

cs:AmericanIndianAlaskaNativeLanguages\#%5fPai rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fYuman;
  rdfs:label "Pai";
  dc:title "Pai";
  rdfs:comment "Pai";
  dcterms:description "Pai".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dYUF rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPai;
  rdfs:label "Havasupai";
  dc:title "Havasupai";
  rdfs:comment "Havasupai";
  dcterms:description "Havasupai".

cs:AmericanIndianAlaskaNativeLanguages\#%5fRiver rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fYuman;
  rdfs:label "River";
  dc:title "River";
  rdfs:comment "River";
  dcterms:description "River".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dMOV rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fRiver;
  rdfs:label "Mohave";
  dc:title "Mohave";
  rdfs:comment "Mohave";
  dcterms:description "Mohave".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dMRC rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fRiver;
  rdfs:label "Maricopa";
  dc:title "Maricopa";
  rdfs:comment "Maricopa";
  dcterms:description "Maricopa".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dYUM rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fRiver;
  rdfs:label "Quechan";
  dc:title "Quechan";
  rdfs:comment "Quechan";
  dcterms:description "Quechan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fPalaihnihan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fHokan;
  rdfs:label "Palaihnihan";
  dc:title "Palaihnihan";
  rdfs:comment "Palaihnihan";
  dcterms:description "Palaihnihan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dACH rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPalaihnihan;
  rdfs:label "Achumawi";
  dc:title "Achumawi";
  rdfs:comment "Achumawi";
  dcterms:description "Achumawi".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dATW rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPalaihnihan;
  rdfs:label "Atsugewi";
  dc:title "Atsugewi";
  rdfs:comment "Atsugewi";
  dcterms:description "Atsugewi".

cs:AmericanIndianAlaskaNativeLanguages\#%5fPomoan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fHokan;
  rdfs:label "Pomoan";
  dc:title "Pomoan";
  rdfs:comment "Pomoan";
  dcterms:description "Pomoan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dKJU rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPomoan;
  rdfs:label "Kashaya";
  dc:title "Kashaya";
  rdfs:comment "Kashaya";
  dcterms:description "Kashaya".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dPEF rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPomoan;
  rdfs:label "Northeastern Pomo";
  dc:title "Northeastern Pomo";
  rdfs:comment "Northeastern Pomo";
  dcterms:description "Northeastern Pomo".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dPEO rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPomoan;
  rdfs:label "Southeastern Pomo";
  dc:title "Southeastern Pomo";
  rdfs:comment "Southeastern Pomo";
  dcterms:description "Southeastern Pomo".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dPEQ rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPomoan;
  rdfs:label "Southern Pomo";
  dc:title "Southern Pomo";
  rdfs:comment "Southern Pomo";
  dcterms:description "Southern Pomo".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dPOO rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPomoan;
  rdfs:label "Central Pomo";
  dc:title "Central Pomo";
  rdfs:comment "Central Pomo";
  dcterms:description "Central Pomo".

cs:AmericanIndianAlaskaNativeLanguages\#%5fShasta rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fHokan;
  rdfs:label "Shasta";
  dc:title "Shasta";
  rdfs:comment "Shasta";
  dcterms:description "Shasta".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dSHT rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fShasta;
  rdfs:label "Shasta";
  dc:title "Shasta";
  rdfs:comment "Shasta";
  dcterms:description "Shasta".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dKYH rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fHokan;
  rdfs:label "Karok";
  dc:title "Karok";
  rdfs:comment "Karok";
  dcterms:description "Karok".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dWAS rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fHokan;
  rdfs:label "Washoe";
  dc:title "Washoe";
  rdfs:comment "Washoe";
  dcterms:description "Washoe".

cs:AmericanIndianAlaskaNativeLanguages\#%5fIroquoian rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Iroquoian";
  dc:title "Iroquoian";
  rdfs:comment "Iroquoian";
  dcterms:description "Iroquoian".

cs:AmericanIndianAlaskaNativeLanguages\#%5fNorthernIroquoian rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fIroquoian;
  rdfs:label "NorthernIroquoian";
  dc:title "NorthernIroquoian";
  rdfs:comment "NorthernIroquoian";
  dcterms:description "NorthernIroquoian".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCAY rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fNorthernIroquoian;
  rdfs:label "Cayuga";
  dc:title "Cayuga";
  rdfs:comment "Cayuga";
  dcterms:description "Cayuga".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dMOH rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fNorthernIroquoian;
  rdfs:label "Mohawk";
  dc:title "Mohawk";
  rdfs:comment "Mohawk";
  dcterms:description "Mohawk".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dONE rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fNorthernIroquoian;
  rdfs:label "Oneida";
  dc:title "Oneida";
  rdfs:comment "Oneida";
  dcterms:description "Oneida".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dONO rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fNorthernIroquoian;
  rdfs:label "Onondaga";
  dc:title "Onondaga";
  rdfs:comment "Onondaga";
  dcterms:description "Onondaga".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dSEE rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fNorthernIroquoian;
  rdfs:label "Seneca";
  dc:title "Seneca";
  rdfs:comment "Seneca";
  dcterms:description "Seneca".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dTUS rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fNorthernIroquoian;
  rdfs:label "Tuscarora";
  dc:title "Tuscarora";
  rdfs:comment "Tuscarora";
  dcterms:description "Tuscarora".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCER rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fIroquoian;
  rdfs:label "Cherokee";
  dc:title "Cherokee";
  rdfs:comment "Cherokee";
  dcterms:description "Cherokee".

cs:AmericanIndianAlaskaNativeLanguages\#%5fKeresan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Keresan";
  dc:title "Keresan";
  rdfs:comment "Keresan";
  dcterms:description "Keresan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dKEE rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fKeresan;
  rdfs:label "Rio Grande Keresan";
  dc:title "Rio Grande Keresan";
  rdfs:comment "Rio Grande Keresan";
  dcterms:description "Rio Grande Keresan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dKJQ rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fKeresan;
  rdfs:label "Acoma-Laguna";
  dc:title "Acoma-Laguna";
  rdfs:comment "Acoma-Laguna";
  dcterms:description "Acoma-Laguna".

cs:AmericanIndianAlaskaNativeLanguages\#%5fKiowaTanoan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "KiowaTanoan";
  dc:title "KiowaTanoan";
  rdfs:comment "KiowaTanoan";
  dcterms:description "KiowaTanoan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fTiwa rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fKiowaTanoan;
  rdfs:label "Tiwa";
  dc:title "Tiwa";
  rdfs:comment "Tiwa";
  dcterms:description "Tiwa".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dTAO rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTiwa;
  rdfs:label "Northern Tiwa";
  dc:title "Northern Tiwa";
  rdfs:comment "Northern Tiwa";
  dcterms:description "Northern Tiwa".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dTIX rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTiwa;
  rdfs:label "Southern Tiwa";
  dc:title "Southern Tiwa";
  rdfs:comment "Southern Tiwa";
  dcterms:description "Southern Tiwa".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dKIO rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fKiowaTanoan;
  rdfs:label "Kiowa";
  dc:title "Kiowa";
  rdfs:comment "Kiowa";
  dcterms:description "Kiowa".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dTEW rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fKiowaTanoan;
  rdfs:label "Tewa";
  dc:title "Tewa";
  rdfs:comment "Tewa";
  dcterms:description "Tewa".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dTOW rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fKiowaTanoan;
  rdfs:label "Jemez";
  dc:title "Jemez";
  rdfs:comment "Jemez";
  dcterms:description "Jemez".

cs:AmericanIndianAlaskaNativeLanguages\#%5fMuskogean rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Muskogean";
  dc:title "Muskogean";
  rdfs:comment "Muskogean";
  dcterms:description "Muskogean".

cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralMuskogean rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fMuskogean;
  rdfs:label "CentralMuskogean";
  dc:title "CentralMuskogean";
  rdfs:comment "CentralMuskogean";
  dcterms:description "CentralMuskogean".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dAKZ rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralMuskogean;
  rdfs:label "Alabama";
  dc:title "Alabama";
  rdfs:comment "Alabama";
  dcterms:description "Alabama".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCKU rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralMuskogean;
  rdfs:label "Koasati";
  dc:title "Koasati";
  rdfs:comment "Koasati";
  dcterms:description "Koasati".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dMIK rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralMuskogean;
  rdfs:label "Mikasuki";
  dc:title "Mikasuki";
  rdfs:comment "Mikasuki";
  dcterms:description "Mikasuki".

cs:AmericanIndianAlaskaNativeLanguages\#%5fWesternMuskogean rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fMuskogean;
  rdfs:label "WesternMuskogean";
  dc:title "WesternMuskogean";
  rdfs:comment "WesternMuskogean";
  dcterms:description "WesternMuskogean".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCCT rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fWesternMuskogean;
  rdfs:label "Choctaw";
  dc:title "Choctaw";
  rdfs:comment "Choctaw";
  dcterms:description "Choctaw".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCIC rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fWesternMuskogean;
  rdfs:label "Chickasaw";
  dc:title "Chickasaw";
  rdfs:comment "Chickasaw";
  dcterms:description "Chickasaw".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCRK rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fMuskogean;
  rdfs:label "Creek";
  dc:title "Creek";
  rdfs:comment "Creek";
  dcterms:description "Creek".

cs:AmericanIndianAlaskaNativeLanguages\#%5fNadene rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Nadene";
  dc:title "Nadene";
  rdfs:comment "Nadene";
  dcterms:description "Nadene".

cs:AmericanIndianAlaskaNativeLanguages\#%5fAthapaskanEyak rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fNadene;
  rdfs:label "AthapaskanEyak";
  dc:title "AthapaskanEyak";
  rdfs:comment "AthapaskanEyak";
  dcterms:description "AthapaskanEyak".

cs:AmericanIndianAlaskaNativeLanguages\#%5fAthapaskan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAthapaskanEyak;
  rdfs:label "Athapaskan";
  dc:title "Athapaskan";
  rdfs:comment "Athapaskan";
  dcterms:description "Athapaskan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fApachean rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAthapaskan;
  rdfs:label "Apachean";
  dc:title "Apachean";
  rdfs:comment "Apachean";
  dcterms:description "Apachean".

cs:AmericanIndianAlaskaNativeLanguages\#%5fEasternApachean rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fApachean;
  rdfs:label "EasternApachean";
  dc:title "EasternApachean";
  rdfs:comment "EasternApachean";
  dcterms:description "EasternApachean".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dAPJ rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fEasternApachean;
  rdfs:label "Jicarilla";
  dc:title "Jicarilla";
  rdfs:comment "Jicarilla";
  dcterms:description "Jicarilla".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dAPL rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fEasternApachean;
  rdfs:label "Lipan";
  dc:title "Lipan";
  rdfs:comment "Lipan";
  dcterms:description "Lipan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fWesternApachean rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fApachean;
  rdfs:label "WesternApachean";
  dc:title "WesternApachean";
  rdfs:comment "WesternApachean";
  dcterms:description "WesternApachean".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dAPM rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fWesternApachean;
  rdfs:label "Mescalero-Chiricahua";
  dc:title "Mescalero-Chiricahua";
  rdfs:comment "Mescalero-Chiricahua";
  dcterms:description "Mescalero-Chiricahua".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dAPW rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fWesternApachean;
  rdfs:label "Western Apache";
  dc:title "Western Apache";
  rdfs:comment "Western Apache";
  dcterms:description "Western Apache".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dNAV rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fWesternApachean;
  rdfs:label "Dine";
  dc:title "Dine";
  rdfs:comment "Dine";
  dcterms:description "Dine".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dAPK rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fApachean;
  rdfs:label "Kiowa Apache";
  dc:title "Kiowa Apache";
  rdfs:comment "Kiowa Apache";
  dcterms:description "Kiowa Apache".

cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralAlaskaYukon rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAthapaskan;
  rdfs:label "CentralAlaskaYukon";
  dc:title "CentralAlaskaYukon";
  rdfs:comment "CentralAlaskaYukon";
  dcterms:description "CentralAlaskaYukon".

cs:AmericanIndianAlaskaNativeLanguages\#%5fKoyukonIngalik rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralAlaskaYukon;
  rdfs:label "KoyukonIngalik";
  dc:title "KoyukonIngalik";
  rdfs:comment "KoyukonIngalik";
  dcterms:description "KoyukonIngalik".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dHOI rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fKoyukonIngalik;
  rdfs:label "Holikachuk";
  dc:title "Holikachuk";
  rdfs:comment "Holikachuk";
  dcterms:description "Holikachuk".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dING rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fKoyukonIngalik;
  rdfs:label "Degexit'an";
  dc:title "Degexit'an";
  rdfs:comment "Degexit'an";
  dcterms:description "Degexit'an".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dKOY rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fKoyukonIngalik;
  rdfs:label "Koyukon";
  dc:title "Koyukon";
  rdfs:comment "Koyukon";
  dcterms:description "Koyukon".

cs:AmericanIndianAlaskaNativeLanguages\#%5fKutchinHan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralAlaskaYukon;
  rdfs:label "KutchinHan";
  dc:title "KutchinHan";
  rdfs:comment "KutchinHan";
  dcterms:description "KutchinHan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dHAA rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fKutchinHan;
  rdfs:label "Han";
  dc:title "Han";
  rdfs:comment "Han";
  dcterms:description "Han".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dKUC rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fKutchinHan;
  rdfs:label "Kutchin";
  dc:title "Kutchin";
  rdfs:comment "Kutchin";
  dcterms:description "Kutchin".

cs:AmericanIndianAlaskaNativeLanguages\#%5fTananaTutchone rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralAlaskaYukon;
  rdfs:label "TananaTutchone";
  dc:title "TananaTutchone";
  rdfs:comment "TananaTutchone";
  dcterms:description "TananaTutchone".

cs:AmericanIndianAlaskaNativeLanguages\#%5fTanana rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTananaTutchone;
  rdfs:label "Tanana";
  dc:title "Tanana";
  rdfs:comment "Tanana";
  dcterms:description "Tanana".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dTAA rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTanana;
  rdfs:label "Lower Tanana";
  dc:title "Lower Tanana";
  rdfs:comment "Lower Tanana";
  dcterms:description "Lower Tanana".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dTAU rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTanana;
  rdfs:label "Upper Tanana";
  dc:title "Upper Tanana";
  rdfs:comment "Upper Tanana";
  dcterms:description "Upper Tanana".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dTCB rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTanana;
  rdfs:label "Tanacross";
  dc:title "Tanacross";
  rdfs:comment "Tanacross";
  dcterms:description "Tanacross".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dKUU rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTananaTutchone;
  rdfs:label "Upper Kuskokwim";
  dc:title "Upper Kuskokwim";
  rdfs:comment "Upper Kuskokwim";
  dcterms:description "Upper Kuskokwim".

cs:AmericanIndianAlaskaNativeLanguages\#%5fPacificCoastAthapaskan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAthapaskan;
  rdfs:label "PacificCoastAthapaskan";
  dc:title "PacificCoastAthapaskan";
  rdfs:comment "PacificCoastAthapaskan";
  dcterms:description "PacificCoastAthapaskan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fCaliforniaAthapaskan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPacificCoastAthapaskan;
  rdfs:label "CaliforniaAthapaskan";
  dc:title "CaliforniaAthapaskan";
  rdfs:comment "CaliforniaAthapaskan";
  dcterms:description "CaliforniaAthapaskan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dHUP rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCaliforniaAthapaskan;
  rdfs:label "Hupa";
  dc:title "Hupa";
  rdfs:comment "Hupa";
  dcterms:description "Hupa".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dKTW rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCaliforniaAthapaskan;
  rdfs:label "Cahto";
  dc:title "Cahto";
  rdfs:comment "Cahto";
  dcterms:description "Cahto".

cs:AmericanIndianAlaskaNativeLanguages\#%5fOregonAthapaskan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPacificCoastAthapaskan;
  rdfs:label "OregonAthapaskan";
  dc:title "OregonAthapaskan";
  rdfs:comment "OregonAthapaskan";
  dcterms:description "OregonAthapaskan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dTOL rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fOregonAthapaskan;
  rdfs:label "Tolowa";
  dc:title "Tolowa";
  rdfs:comment "Tolowa";
  dcterms:description "Tolowa".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dTUU rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fOregonAthapaskan;
  rdfs:label "Tututni";
  dc:title "Tututni";
  rdfs:comment "Tututni";
  dcterms:description "Tututni".

cs:AmericanIndianAlaskaNativeLanguages\#%5fSouthernAlaska rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAthapaskan;
  rdfs:label "SouthernAlaska";
  dc:title "SouthernAlaska";
  rdfs:comment "SouthernAlaska";
  dcterms:description "SouthernAlaska".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dAHT rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSouthernAlaska;
  rdfs:label "Ahtna";
  dc:title "Ahtna";
  rdfs:comment "Ahtna";
  dcterms:description "Ahtna".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dTFN rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSouthernAlaska;
  rdfs:label "Tanaina";
  dc:title "Tanaina";
  rdfs:comment "Tanaina";
  dcterms:description "Tanaina".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dEYA rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fAthapaskanEyak;
  rdfs:label "Eyak";
  dc:title "Eyak";
  rdfs:comment "Eyak";
  dcterms:description "Eyak".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dTLI rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fNadene;
  rdfs:label "Tlingit";
  dc:title "Tlingit";
  rdfs:comment "Tlingit";
  dcterms:description "Tlingit".

cs:AmericanIndianAlaskaNativeLanguages\#%5fPenutian rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Penutian";
  dc:title "Penutian";
  rdfs:comment "Penutian";
  dcterms:description "Penutian".

cs:AmericanIndianAlaskaNativeLanguages\#%5fChinookan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPenutian;
  rdfs:label "Chinookan";
  dc:title "Chinookan";
  rdfs:comment "Chinookan";
  dcterms:description "Chinookan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fUpperChinook rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fChinookan;
  rdfs:label "UpperChinook";
  dc:title "UpperChinook";
  rdfs:comment "UpperChinook";
  dcterms:description "UpperChinook".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dWAC rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fUpperChinook;
  rdfs:label "Kiksht";
  dc:title "Kiksht";
  rdfs:comment "Kiksht";
  dcterms:description "Kiksht".

cs:AmericanIndianAlaskaNativeLanguages\#%5fCoosan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPenutian;
  rdfs:label "Coosan";
  dc:title "Coosan";
  rdfs:comment "Coosan";
  dcterms:description "Coosan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCOS rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCoosan;
  rdfs:label "Hanis";
  dc:title "Hanis";
  rdfs:comment "Hanis";
  dcterms:description "Hanis".

cs:AmericanIndianAlaskaNativeLanguages\#%5fMaiduan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPenutian;
  rdfs:label "Maiduan";
  dc:title "Maiduan";
  rdfs:comment "Maiduan";
  dcterms:description "Maiduan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dMAI rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fMaiduan;
  rdfs:label "Northwest Maidu";
  dc:title "Northwest Maidu";
  rdfs:comment "Northwest Maidu";
  dcterms:description "Northwest Maidu".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dNMU rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fMaiduan;
  rdfs:label "Northeast Maidu";
  dc:title "Northeast Maidu";
  rdfs:comment "Northeast Maidu";
  dcterms:description "Northeast Maidu".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dNSZ rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fMaiduan;
  rdfs:label "Nisenan";
  dc:title "Nisenan";
  rdfs:comment "Nisenan";
  dcterms:description "Nisenan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fPlateauPenutian rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPenutian;
  rdfs:label "PlateauPenutian";
  dc:title "PlateauPenutian";
  rdfs:comment "PlateauPenutian";
  dcterms:description "PlateauPenutian".

cs:AmericanIndianAlaskaNativeLanguages\#%5fSahaptian rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPlateauPenutian;
  rdfs:label "Sahaptian";
  dc:title "Sahaptian";
  rdfs:comment "Sahaptian";
  dcterms:description "Sahaptian".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dUMA rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSahaptian;
  rdfs:label "Umatilla";
  dc:title "Umatilla";
  rdfs:comment "Umatilla";
  dcterms:description "Umatilla".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dWAA rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSahaptian;
  rdfs:label "Walla Walla";
  dc:title "Walla Walla";
  rdfs:comment "Walla Walla";
  dcterms:description "Walla Walla".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dWAR rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSahaptian;
  rdfs:label "Tenino";
  dc:title "Tenino";
  rdfs:comment "Tenino";
  dcterms:description "Tenino".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dYAK rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSahaptian;
  rdfs:label "Yakima";
  dc:title "Yakima";
  rdfs:comment "Yakima";
  dcterms:description "Yakima".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dKLA rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPlateauPenutian;
  rdfs:label "Klamath-Modoc";
  dc:title "Klamath-Modoc";
  rdfs:comment "Klamath-Modoc";
  dcterms:description "Klamath-Modoc".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dNEZ rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPlateauPenutian;
  rdfs:label "Nez Perce";
  dc:title "Nez Perce";
  rdfs:comment "Nez Perce";
  dcterms:description "Nez Perce".

cs:AmericanIndianAlaskaNativeLanguages\#%5fTakelman rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPenutian;
  rdfs:label "Takelman";
  dc:title "Takelman";
  rdfs:comment "Takelman";
  dcterms:description "Takelman".

cs:AmericanIndianAlaskaNativeLanguages\#%5fKalapuyan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTakelman;
  rdfs:label "Kalapuyan";
  dc:title "Kalapuyan";
  rdfs:comment "Kalapuyan";
  dcterms:description "Kalapuyan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dKAL rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fKalapuyan;
  rdfs:label "Central Kalapuyan";
  dc:title "Central Kalapuyan";
  rdfs:comment "Central Kalapuyan";
  dcterms:description "Central Kalapuyan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fTsimshianic rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPenutian;
  rdfs:label "Tsimshianic";
  dc:title "Tsimshianic";
  rdfs:comment "Tsimshianic";
  dcterms:description "Tsimshianic".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dTSI rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTsimshianic;
  rdfs:label "Coast Tsimshain";
  dc:title "Coast Tsimshain";
  rdfs:comment "Coast Tsimshain";
  dcterms:description "Coast Tsimshain".

cs:AmericanIndianAlaskaNativeLanguages\#%5fUtian rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPenutian;
  rdfs:label "Utian";
  dc:title "Utian";
  rdfs:comment "Utian";
  dcterms:description "Utian".

cs:AmericanIndianAlaskaNativeLanguages\#%5fMiwokan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fUtian;
  rdfs:label "Miwokan";
  dc:title "Miwokan";
  rdfs:comment "Miwokan";
  dcterms:description "Miwokan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fEasternMiwok rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fMiwokan;
  rdfs:label "EasternMiwok";
  dc:title "EasternMiwok";
  rdfs:comment "EasternMiwok";
  dcterms:description "EasternMiwok".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCSM rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fEasternMiwok;
  rdfs:label "Central Sierra Miwok";
  dc:title "Central Sierra Miwok";
  rdfs:comment "Central Sierra Miwok";
  dcterms:description "Central Sierra Miwok".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dNSQ rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fEasternMiwok;
  rdfs:label "Northern Sierra Miwok";
  dc:title "Northern Sierra Miwok";
  rdfs:comment "Northern Sierra Miwok";
  dcterms:description "Northern Sierra Miwok".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dPMW rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fEasternMiwok;
  rdfs:label "Plains Miwok";
  dc:title "Plains Miwok";
  rdfs:comment "Plains Miwok";
  dcterms:description "Plains Miwok".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dSKD rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fEasternMiwok;
  rdfs:label "Southern Sierra Miwok";
  dc:title "Southern Sierra Miwok";
  rdfs:comment "Southern Sierra Miwok";
  dcterms:description "Southern Sierra Miwok".

cs:AmericanIndianAlaskaNativeLanguages\#%5fWesternMiwok rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fMiwokan;
  rdfs:label "WesternMiwok";
  dc:title "WesternMiwok";
  rdfs:comment "WesternMiwok";
  dcterms:description "WesternMiwok".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCSI rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fWesternMiwok;
  rdfs:label "Coast Miwok";
  dc:title "Coast Miwok";
  rdfs:comment "Coast Miwok";
  dcterms:description "Coast Miwok".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dLMW rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fWesternMiwok;
  rdfs:label "Lake Miwok";
  dc:title "Lake Miwok";
  rdfs:comment "Lake Miwok";
  dcterms:description "Lake Miwok".

cs:AmericanIndianAlaskaNativeLanguages\#%5fWintuan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPenutian;
  rdfs:label "Wintuan";
  dc:title "Wintuan";
  rdfs:comment "Wintuan";
  dcterms:description "Wintuan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dWIT rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fWintuan;
  rdfs:label "Wintu-Nomlaki";
  dc:title "Wintu-Nomlaki";
  rdfs:comment "Wintu-Nomlaki";
  dcterms:description "Wintu-Nomlaki".

cs:AmericanIndianAlaskaNativeLanguages\#%5fYokutsan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPenutian;
  rdfs:label "Yokutsan";
  dc:title "Yokutsan";
  rdfs:comment "Yokutsan";
  dcterms:description "Yokutsan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dENH rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fYokutsan;
  rdfs:label "Kings River";
  dc:title "Kings River";
  rdfs:comment "Kings River";
  dcterms:description "Kings River".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dGSH rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fYokutsan;
  rdfs:label "Gashowu";
  dc:title "Gashowu";
  rdfs:comment "Gashowu";
  dcterms:description "Gashowu".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dPYL rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fYokutsan;
  rdfs:label "Poso Creek";
  dc:title "Poso Creek";
  rdfs:comment "Poso Creek";
  dcterms:description "Poso Creek".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dTKH rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fYokutsan;
  rdfs:label "Tule-Kaweah";
  dc:title "Tule-Kaweah";
  rdfs:comment "Tule-Kaweah";
  dcterms:description "Tule-Kaweah".

cs:AmericanIndianAlaskaNativeLanguages\#%5fPidgin rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Pidgin";
  dc:title "Pidgin";
  rdfs:comment "Pidgin";
  dcterms:description "Pidgin".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCHH rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fPidgin;
  rdfs:label "Chinook Wawa";
  dc:title "Chinook Wawa";
  rdfs:comment "Chinook Wawa";
  dcterms:description "Chinook Wawa".

cs:AmericanIndianAlaskaNativeLanguages\#%5fSalishan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Salishan";
  dc:title "Salishan";
  rdfs:comment "Salishan";
  dcterms:description "Salishan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralSalish rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSalishan;
  rdfs:label "CentralSalish";
  dc:title "CentralSalish";
  rdfs:comment "CentralSalish";
  dcterms:description "CentralSalish".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCLM rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralSalish;
  rdfs:label "Clallam";
  dc:title "Clallam";
  rdfs:comment "Clallam";
  dcterms:description "Clallam".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dLUT rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralSalish;
  rdfs:label "Lushootseed";
  dc:title "Lushootseed";
  rdfs:comment "Lushootseed";
  dcterms:description "Lushootseed".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dSTR rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralSalish;
  rdfs:label "Northern Straits";
  dc:title "Northern Straits";
  rdfs:comment "Northern Straits";
  dcterms:description "Northern Straits".

cs:AmericanIndianAlaskaNativeLanguages\#%5fInteriorSalish rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSalishan;
  rdfs:label "InteriorSalish";
  dc:title "InteriorSalish";
  rdfs:comment "InteriorSalish";
  dcterms:description "InteriorSalish".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCOL rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fInteriorSalish;
  rdfs:label "Columbian";
  dc:title "Columbian";
  rdfs:comment "Columbian";
  dcterms:description "Columbian".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCRD rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fInteriorSalish;
  rdfs:label "Coeur D'alene";
  dc:title "Coeur D'alene";
  rdfs:comment "Coeur D'alene";
  dcterms:description "Coeur D'alene".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dFLA rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fInteriorSalish;
  rdfs:label "Kalispel";
  dc:title "Kalispel";
  rdfs:comment "Kalispel";
  dcterms:description "Kalispel".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dOKA rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fInteriorSalish;
  rdfs:label "Okanagan";
  dc:title "Okanagan";
  rdfs:comment "Okanagan";
  dcterms:description "Okanagan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fTsamosan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSalishan;
  rdfs:label "Tsamosan";
  dc:title "Tsamosan";
  rdfs:comment "Tsamosan";
  dcterms:description "Tsamosan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCEA rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTsamosan;
  rdfs:label "Lower Chehalis";
  dc:title "Lower Chehalis";
  rdfs:comment "Lower Chehalis";
  dcterms:description "Lower Chehalis".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCJH rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTsamosan;
  rdfs:label "Upper Chehalis";
  dc:title "Upper Chehalis";
  rdfs:comment "Upper Chehalis";
  dcterms:description "Upper Chehalis".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCOW rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTsamosan;
  rdfs:label "Cowlitz";
  dc:title "Cowlitz";
  rdfs:comment "Cowlitz";
  dcterms:description "Cowlitz".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dQUN rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTsamosan;
  rdfs:label "Quinault";
  dc:title "Quinault";
  rdfs:comment "Quinault";
  dcterms:description "Quinault".

cs:AmericanIndianAlaskaNativeLanguages\#%5fSiouanCatawba rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "SiouanCatawba";
  dc:title "SiouanCatawba";
  rdfs:comment "SiouanCatawba";
  dcterms:description "SiouanCatawba".

cs:AmericanIndianAlaskaNativeLanguages\#%5fSiouan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSiouanCatawba;
  rdfs:label "Siouan";
  dc:title "Siouan";
  rdfs:comment "Siouan";
  dcterms:description "Siouan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fMississippiValley rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSiouan;
  rdfs:label "MississippiValley";
  dc:title "MississippiValley";
  rdfs:comment "MississippiValley";
  dcterms:description "MississippiValley".

cs:AmericanIndianAlaskaNativeLanguages\#%5fChiwereWinnebago rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fMississippiValley;
  rdfs:label "ChiwereWinnebago";
  dc:title "ChiwereWinnebago";
  rdfs:comment "ChiwereWinnebago";
  dcterms:description "ChiwereWinnebago".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dIOW rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fChiwereWinnebago;
  rdfs:label "Chiwere";
  dc:title "Chiwere";
  rdfs:comment "Chiwere";
  dcterms:description "Chiwere".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dWIN rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fChiwereWinnebago;
  rdfs:label "Hocak";
  dc:title "Hocak";
  rdfs:comment "Hocak";
  dcterms:description "Hocak".

cs:AmericanIndianAlaskaNativeLanguages\#%5fDakotan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fMississippiValley;
  rdfs:label "Dakotan";
  dc:title "Dakotan";
  rdfs:comment "Dakotan";
  dcterms:description "Dakotan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dASB rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fDakotan;
  rdfs:label "Assiniboine";
  dc:title "Assiniboine";
  rdfs:comment "Assiniboine";
  dcterms:description "Assiniboine".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dDHG rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fDakotan;
  rdfs:label "Dakota";
  dc:title "Dakota";
  rdfs:comment "Dakota";
  dcterms:description "Dakota".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dLKT rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fDakotan;
  rdfs:label "Lakota";
  dc:title "Lakota";
  rdfs:comment "Lakota";
  dcterms:description "Lakota".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dNKT rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fDakotan;
  rdfs:label "Nakota";
  dc:title "Nakota";
  rdfs:comment "Nakota";
  dcterms:description "Nakota".

cs:AmericanIndianAlaskaNativeLanguages\#%5fDhegiha rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fMississippiValley;
  rdfs:label "Dhegiha";
  dc:title "Dhegiha";
  rdfs:comment "Dhegiha";
  dcterms:description "Dhegiha".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dKAA rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fDhegiha;
  rdfs:label "Kansa";
  dc:title "Kansa";
  rdfs:comment "Kansa";
  dcterms:description "Kansa".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dOMA rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fDhegiha;
  rdfs:label "Omaha-Ponca";
  dc:title "Omaha-Ponca";
  rdfs:comment "Omaha-Ponca";
  dcterms:description "Omaha-Ponca".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dOSA rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fDhegiha;
  rdfs:label "Osage";
  dc:title "Osage";
  rdfs:comment "Osage";
  dcterms:description "Osage".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dQUA rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fDhegiha;
  rdfs:label "Quapaw";
  dc:title "Quapaw";
  rdfs:comment "Quapaw";
  dcterms:description "Quapaw".

cs:AmericanIndianAlaskaNativeLanguages\#%5fMissouriRiver rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSiouan;
  rdfs:label "MissouriRiver";
  dc:title "MissouriRiver";
  rdfs:comment "MissouriRiver";
  dcterms:description "MissouriRiver".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCRO rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fMissouriRiver;
  rdfs:label "Crow";
  dc:title "Crow";
  rdfs:comment "Crow";
  dcterms:description "Crow".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dHID rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fMissouriRiver;
  rdfs:label "Hidatsa";
  dc:title "Hidatsa";
  rdfs:comment "Hidatsa";
  dcterms:description "Hidatsa".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dMHQ rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSiouan;
  rdfs:label "Mandan";
  dc:title "Mandan";
  rdfs:comment "Mandan";
  dcterms:description "Mandan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fUtoAztecan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "UtoAztecan";
  dc:title "UtoAztecan";
  rdfs:comment "UtoAztecan";
  dcterms:description "UtoAztecan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fNumic rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fUtoAztecan;
  rdfs:label "Numic";
  dc:title "Numic";
  rdfs:comment "Numic";
  dcterms:description "Numic".

cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralNumic rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fNumic;
  rdfs:label "CentralNumic";
  dc:title "CentralNumic";
  rdfs:comment "CentralNumic";
  dcterms:description "CentralNumic".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCOM rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralNumic;
  rdfs:label "Comanche";
  dc:title "Comanche";
  rdfs:comment "Comanche";
  dcterms:description "Comanche".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dPAR rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralNumic;
  rdfs:label "Panamint";
  dc:title "Panamint";
  rdfs:comment "Panamint";
  dcterms:description "Panamint".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dSHH rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCentralNumic;
  rdfs:label "Shoshone";
  dc:title "Shoshone";
  rdfs:comment "Shoshone";
  dcterms:description "Shoshone".

cs:AmericanIndianAlaskaNativeLanguages\#%5fSouthernNumic rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fNumic;
  rdfs:label "SouthernNumic";
  dc:title "SouthernNumic";
  rdfs:comment "SouthernNumic";
  dcterms:description "SouthernNumic".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dKAW rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSouthernNumic;
  rdfs:label "Kawaiisu";
  dc:title "Kawaiisu";
  rdfs:comment "Kawaiisu";
  dcterms:description "Kawaiisu".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dUTE rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSouthernNumic;
  rdfs:label "Ute-Southern Paiute";
  dc:title "Ute-Southern Paiute";
  rdfs:comment "Ute-Southern Paiute";
  dcterms:description "Ute-Southern Paiute".

cs:AmericanIndianAlaskaNativeLanguages\#%5fWesternNumic rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fNumic;
  rdfs:label "WesternNumic";
  dc:title "WesternNumic";
  rdfs:comment "WesternNumic";
  dcterms:description "WesternNumic".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dMON rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fWesternNumic;
  rdfs:label "Mono";
  dc:title "Mono";
  rdfs:comment "Mono";
  dcterms:description "Mono".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dPAO rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fWesternNumic;
  rdfs:label "Northern Paiute-Bannock";
  dc:title "Northern Paiute-Bannock";
  rdfs:comment "Northern Paiute-Bannock";
  dcterms:description "Northern Paiute-Bannock".

cs:AmericanIndianAlaskaNativeLanguages\#%5fTakic rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fUtoAztecan;
  rdfs:label "Takic";
  dc:title "Takic";
  rdfs:comment "Takic";
  dcterms:description "Takic".

cs:AmericanIndianAlaskaNativeLanguages\#%5fCupan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTakic;
  rdfs:label "Cupan";
  dc:title "Cupan";
  rdfs:comment "Cupan";
  dcterms:description "Cupan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCHL rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCupan;
  rdfs:label "Cahuilla";
  dc:title "Cahuilla";
  rdfs:comment "Cahuilla";
  dcterms:description "Cahuilla".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dCUP rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCupan;
  rdfs:label "Cupeno";
  dc:title "Cupeno";
  rdfs:comment "Cupeno";
  dcterms:description "Cupeno".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dLUI rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCupan;
  rdfs:label "Luiseno";
  dc:title "Luiseno";
  rdfs:comment "Luiseno";
  dcterms:description "Luiseno".

cs:AmericanIndianAlaskaNativeLanguages\#%5fSerranoGabrielino rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTakic;
  rdfs:label "SerranoGabrielino";
  dc:title "SerranoGabrielino";
  rdfs:comment "SerranoGabrielino";
  dcterms:description "SerranoGabrielino".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dSER rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fSerranoGabrielino;
  rdfs:label "Serrano";
  dc:title "Serrano";
  rdfs:comment "Serrano";
  dcterms:description "Serrano".

cs:AmericanIndianAlaskaNativeLanguages\#%5fTaracahitan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fUtoAztecan;
  rdfs:label "Taracahitan";
  dc:title "Taracahitan";
  rdfs:comment "Taracahitan";
  dcterms:description "Taracahitan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fCahitan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTaracahitan;
  rdfs:label "Cahitan";
  dc:title "Cahitan";
  rdfs:comment "Cahitan";
  dcterms:description "Cahitan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dYAQ rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fCahitan;
  rdfs:label "Yaqui";
  dc:title "Yaqui";
  rdfs:comment "Yaqui";
  dcterms:description "Yaqui".

cs:AmericanIndianAlaskaNativeLanguages\#%5fTepiman rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fUtoAztecan;
  rdfs:label "Tepiman";
  dc:title "Tepiman";
  rdfs:comment "Tepiman";
  dcterms:description "Tepiman".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dPAP rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fTepiman;
  rdfs:label "Papago-Pima";
  dc:title "Papago-Pima";
  rdfs:comment "Papago-Pima";
  dcterms:description "Papago-Pima".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dHOP rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fUtoAztecan;
  rdfs:label "Hopi";
  dc:title "Hopi";
  rdfs:comment "Hopi";
  dcterms:description "Hopi".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dTUB rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fUtoAztecan;
  rdfs:label "Tubatululabal";
  dc:title "Tubatululabal";
  rdfs:comment "Tubatululabal";
  dcterms:description "Tubatululabal".

cs:AmericanIndianAlaskaNativeLanguages\#%5fWakashan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Wakashan";
  dc:title "Wakashan";
  rdfs:comment "Wakashan";
  dcterms:description "Wakashan".

cs:AmericanIndianAlaskaNativeLanguages\#%5fNootkan rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fWakashan;
  rdfs:label "Nootkan";
  dc:title "Nootkan";
  rdfs:comment "Nootkan";
  dcterms:description "Nootkan".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dMYH rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fNootkan;
  rdfs:label "Makah";
  dc:title "Makah";
  rdfs:comment "Makah";
  dcterms:description "Makah".

cs:AmericanIndianAlaskaNativeLanguages\#%5fYukian rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Yukian";
  dc:title "Yukian";
  rdfs:comment "Yukian";
  dcterms:description "Yukian".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dWAO rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fYukian;
  rdfs:label "Wappo";
  dc:title "Wappo";
  rdfs:comment "Wappo";
  dcterms:description "Wappo".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dYUK rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages\#%5fYukian;
  rdfs:label "Yuki";
  dc:title "Yuki";
  rdfs:comment "Yuki";
  dcterms:description "Yuki".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dHAI rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Haida";
  dc:title "Haida";
  rdfs:comment "Haida";
  dcterms:description "Haida".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dKUN rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Kootenai";
  dc:title "Kootenai";
  rdfs:comment "Kootenai";
  dcterms:description "Kootenai".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dPSD rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Plains Indian Sign Language";
  dc:title "Plains Indian Sign Language";
  rdfs:comment "Plains Indian Sign Language";
  dcterms:description "Plains Indian Sign Language".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dYUC rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Yuchi";
  dc:title "Yuchi";
  rdfs:comment "Yuchi";
  dcterms:description "Yuchi".

cs:AmericanIndianAlaskaNativeLanguages\#x%2dZUN rdfs:subClassOf cs:AmericanIndianAlaskaNativeLanguages;
  rdfs:label "Zuni";
  dc:title "Zuni";
  rdfs:comment "Zuni";
  dcterms:description "Zuni".

# - vs:v3-Calendar -------------------------------------------------------------

vs:v3-Calendar a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System Calendar";
  dc:title "v3 Code System Calendar";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:Calendar.

cs:Calendar.system a fhir:CodeSystem;
  rdfs:label "v3 Code System Calendar";
  dc:title "v3 Code System Calendar";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:Calendar a fhir:Concept.

cs:Calendar\#GREG rdfs:subClassOf cs:Calendar;
  rdfs:label "Gregorian";
  dc:title "Gregorian";
  rdfs:comment "The Gregorian calendar is the calendar in effect in most countries of Christian influence since approximately 1582. This calendar superceded the Julian calendar.";
  dcterms:description "The Gregorian calendar is the calendar in effect in most countries of Christian influence since approximately 1582. This calendar superceded the Julian calendar.".

# - vs:v3-CalendarCycle --------------------------------------------------------

vs:v3-CalendarCycle a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System CalendarCycle";
  dc:title "v3 Code System CalendarCycle";
  rdfs:comment " Calendar cycle identifiers";
  dcterms:description " Calendar cycle identifiers";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:CalendarCycle.

cs:CalendarCycle.system a fhir:CodeSystem;
  rdfs:label "v3 Code System CalendarCycle";
  dc:title "v3 Code System CalendarCycle";
  rdfs:comment " Calendar cycle identifiers";
  dcterms:description " Calendar cycle identifiers";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:CalendarCycle a fhir:Concept.

cs:CalendarCycle\#%5fCalendarCycleOneLetter rdfs:subClassOf cs:CalendarCycle;
  rdfs:label "CalendarCycleOneLetter";
  dc:title "CalendarCycleOneLetter";
  rdfs:comment "CalendarCycleOneLetter";
  dcterms:description "CalendarCycleOneLetter".

cs:CalendarCycle\#CW rdfs:subClassOf cs:CalendarCycle\#%5fCalendarCycleOneLetter;
  rdfs:label "week (continuous)";
  dc:title "week (continuous)";
  rdfs:comment "week (continuous)";
  dcterms:description "week (continuous)".

cs:CalendarCycle\#CY rdfs:subClassOf cs:CalendarCycle\#%5fCalendarCycleOneLetter;
  rdfs:label "year";
  dc:title "year";
  rdfs:comment "year";
  dcterms:description "year".

cs:CalendarCycle\#D rdfs:subClassOf cs:CalendarCycle\#%5fCalendarCycleOneLetter;
  rdfs:label "day of the month";
  dc:title "day of the month";
  rdfs:comment "day of the month";
  dcterms:description "day of the month".

cs:CalendarCycle\#DW rdfs:subClassOf cs:CalendarCycle\#%5fCalendarCycleOneLetter;
  rdfs:label "day of the week (begins with Monday)";
  dc:title "day of the week (begins with Monday)";
  rdfs:comment "day of the week (begins with Monday)";
  dcterms:description "day of the week (begins with Monday)".

cs:CalendarCycle\#H rdfs:subClassOf cs:CalendarCycle\#%5fCalendarCycleOneLetter;
  rdfs:label "hour of the day";
  dc:title "hour of the day";
  rdfs:comment "hour of the day";
  dcterms:description "hour of the day".

cs:CalendarCycle\#M rdfs:subClassOf cs:CalendarCycle\#%5fCalendarCycleOneLetter;
  rdfs:label "month of the year";
  dc:title "month of the year";
  rdfs:comment "month of the year";
  dcterms:description "month of the year".

cs:CalendarCycle\#N rdfs:subClassOf cs:CalendarCycle\#%5fCalendarCycleOneLetter;
  rdfs:label "minute of the hour";
  dc:title "minute of the hour";
  rdfs:comment "minute of the hour";
  dcterms:description "minute of the hour".

cs:CalendarCycle\#S rdfs:subClassOf cs:CalendarCycle\#%5fCalendarCycleOneLetter;
  rdfs:label "second of the minute";
  dc:title "second of the minute";
  rdfs:comment "second of the minute";
  dcterms:description "second of the minute".

cs:CalendarCycle\#%5fCalendarCycleTwoLetter rdfs:subClassOf cs:CalendarCycle;
  rdfs:label "CalendarCycleTwoLetter";
  dc:title "CalendarCycleTwoLetter";
  rdfs:comment "CalendarCycleTwoLetter";
  dcterms:description "CalendarCycleTwoLetter".

cs:CalendarCycle\#CD rdfs:subClassOf cs:CalendarCycle\#%5fCalendarCycleTwoLetter;
  rdfs:label "day (continuous)";
  dc:title "day (continuous)";
  rdfs:comment "day (continuous)";
  dcterms:description "day (continuous)".

cs:CalendarCycle\#CH rdfs:subClassOf cs:CalendarCycle\#%5fCalendarCycleTwoLetter;
  rdfs:label "hour (continuous)";
  dc:title "hour (continuous)";
  rdfs:comment "hour (continuous)";
  dcterms:description "hour (continuous)".

cs:CalendarCycle\#CM rdfs:subClassOf cs:CalendarCycle\#%5fCalendarCycleTwoLetter;
  rdfs:label "month (continuous)";
  dc:title "month (continuous)";
  rdfs:comment "month (continuous)";
  dcterms:description "month (continuous)".

cs:CalendarCycle\#CN rdfs:subClassOf cs:CalendarCycle\#%5fCalendarCycleTwoLetter;
  rdfs:label "minute (continuous)";
  dc:title "minute (continuous)";
  rdfs:comment "minute (continuous)";
  dcterms:description "minute (continuous)".

cs:CalendarCycle\#CS rdfs:subClassOf cs:CalendarCycle\#%5fCalendarCycleTwoLetter;
  rdfs:label "second (continuous)";
  dc:title "second (continuous)";
  rdfs:comment "second (continuous)";
  dcterms:description "second (continuous)".

cs:CalendarCycle\#DY rdfs:subClassOf cs:CalendarCycle\#%5fCalendarCycleTwoLetter;
  rdfs:label "day of the year";
  dc:title "day of the year";
  rdfs:comment "day of the year";
  dcterms:description "day of the year".

cs:CalendarCycle\#WY rdfs:subClassOf cs:CalendarCycle\#%5fCalendarCycleTwoLetter;
  rdfs:label "week of the year";
  dc:title "week of the year";
  rdfs:comment "week of the year";
  dcterms:description "week of the year".

cs:CalendarCycle\#WM rdfs:subClassOf cs:CalendarCycle;
  rdfs:label "week of the month";
  dc:title "week of the month";
  rdfs:comment "The week with the month's first Thursday in it (analagous to the ISO 8601 definition for week of the year).";
  dcterms:description "The week with the month's first Thursday in it (analagous to the ISO 8601 definition for week of the year).".

# - vs:v3-CalendarType ---------------------------------------------------------

vs:v3-CalendarType a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System CalendarType";
  dc:title "v3 Code System CalendarType";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:CalendarType.

cs:CalendarType.system a fhir:CodeSystem;
  rdfs:label "v3 Code System CalendarType";
  dc:title "v3 Code System CalendarType";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:CalendarType a fhir:Concept.

cs:CalendarType\#GREG rdfs:subClassOf cs:CalendarType;
  rdfs:label "Gregorian";
  dc:title "Gregorian";
  rdfs:comment "The Gregorian calendar is in effect in the most countries of Christian influence since approximately 1582.  This calendar superceded the Julian calendar.";
  dcterms:description "The Gregorian calendar is in effect in the most countries of Christian influence since approximately 1582.  This calendar superceded the Julian calendar.".

# - vs:v3-Charset --------------------------------------------------------------

vs:v3-Charset a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System Charset";
  dc:title "v3 Code System Charset";
  rdfs:comment " Internet Assigned Numbers Authority (IANA) Charset Types";
  dcterms:description " Internet Assigned Numbers Authority (IANA) Charset Types";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:Charset.

cs:Charset.system a fhir:CodeSystem;
  rdfs:label "v3 Code System Charset";
  dc:title "v3 Code System Charset";
  rdfs:comment " Internet Assigned Numbers Authority (IANA) Charset Types";
  dcterms:description " Internet Assigned Numbers Authority (IANA) Charset Types";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:Charset a fhir:Concept.

cs:Charset\#EBCDIC rdfs:subClassOf cs:Charset;
  rdfs:label "EBCDIC";
  dc:title "EBCDIC";
  rdfs:comment "HL7 is indifferent to the use of this Charset.";
  dcterms:description "HL7 is indifferent to the use of this Charset.".

cs:Charset\#ISO%2d10646%2dUCS%2d2 rdfs:subClassOf cs:Charset;
  rdfs:label "ISO-10646-UCS-2";
  dc:title "ISO-10646-UCS-2";
  rdfs:comment "Deprecated for HL7 use.";
  dcterms:description "Deprecated for HL7 use.".

cs:Charset\#ISO%2d10646%2dUCS%2d4 rdfs:subClassOf cs:Charset;
  rdfs:label "ISO-10646-UCS-4";
  dc:title "ISO-10646-UCS-4";
  rdfs:comment "Deprecated for HL7 use.";
  dcterms:description "Deprecated for HL7 use.".

cs:Charset\#ISO%2d8859%2d1 rdfs:subClassOf cs:Charset;
  rdfs:label "ISO-8859-1";
  dc:title "ISO-8859-1";
  rdfs:comment "HL7 is indifferent to the use of this Charset.";
  dcterms:description "HL7 is indifferent to the use of this Charset.".

cs:Charset\#ISO%2d8859%2d2 rdfs:subClassOf cs:Charset;
  rdfs:label "ISO-8859-2";
  dc:title "ISO-8859-2";
  rdfs:comment "HL7 is indifferent to the use of this Charset.";
  dcterms:description "HL7 is indifferent to the use of this Charset.".

cs:Charset\#ISO%2d8859%2d5 rdfs:subClassOf cs:Charset;
  rdfs:label "ISO-8859-5";
  dc:title "ISO-8859-5";
  rdfs:comment "HL7 is indifferent to the use of this Charset.";
  dcterms:description "HL7 is indifferent to the use of this Charset.".

cs:Charset\#JIS%2d2022%2dJP rdfs:subClassOf cs:Charset;
  rdfs:label "JIS-2022-JP";
  dc:title "JIS-2022-JP";
  rdfs:comment "HL7 is indifferent to the use of this Charset.";
  dcterms:description "HL7 is indifferent to the use of this Charset.".

cs:Charset\#US%2dASCII rdfs:subClassOf cs:Charset;
  rdfs:label "US-ASCII";
  dc:title "US-ASCII";
  rdfs:comment "Required for HL7 use.";
  dcterms:description "Required for HL7 use.".

cs:Charset\#UTF%2d7 rdfs:subClassOf cs:Charset;
  rdfs:label "UTF-7";
  dc:title "UTF-7";
  rdfs:comment "HL7 is indifferent to the use of this Charset.";
  dcterms:description "HL7 is indifferent to the use of this Charset.".

cs:Charset\#UTF%2d8 rdfs:subClassOf cs:Charset;
  rdfs:label "UTF-8";
  dc:title "UTF-8";
  rdfs:comment "Required for Unicode support.";
  dcterms:description "Required for Unicode support.".

# - vs:v3-CodingRationale ------------------------------------------------------

vs:v3-CodingRationale a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System CodingRationale";
  dc:title "v3 Code System CodingRationale";
  rdfs:comment " Identifies how to interpret the instance of the code, codeSystem value in a set of translations.  Since HL7 (or a government body) may mandate that codes from certain value sets be sent in conformant messages, other synonyms that are sent in the translation set need to be distinguished among the originally captured source, the HL7 specified code, or some future role.  When this code is NULL, it indicates that the translation is an undefined type.  When valued, this property must contain one of the following values: SRC - Source (or original) code HL7 - HL7 Specified or Mandated SH - both HL7 mandated and the original code (precoordination) There may be additional values added to this value set as we work through the use of codes in messages and determine other Use Cases requiring special interpretation of the translations.";
  dcterms:description " Identifies how to interpret the instance of the code, codeSystem value in a set of translations.  Since HL7 (or a government body) may mandate that codes from certain value sets be sent in conformant messages, other synonyms that are sent in the translation set need to be distinguished among the originally captured source, the HL7 specified code, or some future role.  When this code is NULL, it indicates that the translation is an undefined type.  When valued, this property must contain one of the following values: SRC - Source (or original) code HL7 - HL7 Specified or Mandated SH - both HL7 mandated and the original code (precoordination) There may be additional values added to this value set as we work through the use of codes in messages and determine other Use Cases requiring special interpretation of the translations.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:CodingRationale.

cs:CodingRationale.system a fhir:CodeSystem;
  rdfs:label "v3 Code System CodingRationale";
  dc:title "v3 Code System CodingRationale";
  rdfs:comment " Identifies how to interpret the instance of the code, codeSystem value in a set of translations.  Since HL7 (or a government body) may mandate that codes from certain code systems be sent in conformant messages, other synonyms that are sent in the translation set need to be distinguished among the originally captured source, the HL7 specified code, or some future role.  When this code is NULL, it indicates that the translation is an undefined type.  When valued, this property must contain one of the following values: SRC - Source (or original) code HL7 - HL7 Specified or Mandated SH - both HL7 mandated and the original code (precoordination) There may be additional values added to this code system as we work through the use of codes in messages and determine other Use Cases requiring special interpretation of the translations.";
  dcterms:description " Identifies how to interpret the instance of the code, codeSystem value in a set of translations.  Since HL7 (or a government body) may mandate that codes from certain code systems be sent in conformant messages, other synonyms that are sent in the translation set need to be distinguished among the originally captured source, the HL7 specified code, or some future role.  When this code is NULL, it indicates that the translation is an undefined type.  When valued, this property must contain one of the following values: SRC - Source (or original) code HL7 - HL7 Specified or Mandated SH - both HL7 mandated and the original code (precoordination) There may be additional values added to this code system as we work through the use of codes in messages and determine other Use Cases requiring special interpretation of the translations.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:CodingRationale a fhir:Concept.

cs:CodingRationale\#O rdfs:subClassOf cs:CodingRationale;
  rdfs:label "originally produced code";
  dc:title "originally produced code";
  rdfs:comment "Description: Originally produced code.";
  dcterms:description "Description: Originally produced code.".

cs:CodingRationale\#OR rdfs:subClassOf cs:CodingRationale;
  rdfs:label "original and required";
  dc:title "original and required";
  rdfs:comment "Originally produced code, required by the specification describing the use of the coded concept.";
  dcterms:description "Originally produced code, required by the specification describing the use of the coded concept.".

cs:CodingRationale\#P rdfs:subClassOf cs:CodingRationale;
  rdfs:label "post-coded";
  dc:title "post-coded";
  rdfs:comment "Description: Post-coded from free text source</description>";
  dcterms:description "Description: Post-coded from free text source</description>".

cs:CodingRationale\#PR rdfs:subClassOf cs:CodingRationale;
  rdfs:label "post-coded and required";
  dc:title "post-coded and required";
  rdfs:comment "Post-coded from free text source, required by the specification describing the use of the coded concept.";
  dcterms:description "Post-coded from free text source, required by the specification describing the use of the coded concept.".

cs:CodingRationale\#R rdfs:subClassOf cs:CodingRationale;
  rdfs:label "required";
  dc:title "required";
  rdfs:comment "Description: Required standard code for HL7.";
  dcterms:description "Description: Required standard code for HL7.".

cs:CodingRationale\#HL7 rdfs:subClassOf cs:CodingRationale;
  rdfs:label "HL7 Specified or Mandated";
  dc:title "HL7 Specified or Mandated";
  rdfs:comment "HL7 Specified or Mandated";
  dcterms:description "HL7 Specified or Mandated".

cs:CodingRationale\#SH rdfs:subClassOf cs:CodingRationale;
  rdfs:label "Both HL7 mandated and the original code";
  dc:title "Both HL7 mandated and the original code";
  rdfs:comment "Both HL7 mandated and the original code (precoordination)";
  dcterms:description "Both HL7 mandated and the original code (precoordination)".

cs:CodingRationale\#SRC rdfs:subClassOf cs:CodingRationale;
  rdfs:label "Source (or original) code";
  dc:title "Source (or original) code";
  rdfs:comment "Source (or original) code";
  dcterms:description "Source (or original) code".

# - vs:v3-CommunicationFunctionType --------------------------------------------

vs:v3-CommunicationFunctionType a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System CommunicationFunctionType";
  dc:title "v3 Code System CommunicationFunctionType";
  rdfs:comment " Describes the type of communication function that the associated entity plays in the associated transmission.";
  dcterms:description " Describes the type of communication function that the associated entity plays in the associated transmission.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:CommunicationFunctionType.

cs:CommunicationFunctionType.system a fhir:CodeSystem;
  rdfs:label "v3 Code System CommunicationFunctionType";
  dc:title "v3 Code System CommunicationFunctionType";
  rdfs:comment " Describes the type of communication function that the associated entity plays in the associated transmission.";
  dcterms:description " Describes the type of communication function that the associated entity plays in the associated transmission.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:CommunicationFunctionType a fhir:Concept.

cs:CommunicationFunctionType\#RCV rdfs:subClassOf cs:CommunicationFunctionType;
  rdfs:label "receiver";
  dc:title "receiver";
  rdfs:comment "The entity is the receiver of the transmission.";
  dcterms:description "The entity is the receiver of the transmission.".

cs:CommunicationFunctionType\#RSP rdfs:subClassOf cs:CommunicationFunctionType;
  rdfs:label "respond to";
  dc:title "respond to";
  rdfs:comment "The entity is the one to which the response or reply to the transmission should be sent.";
  dcterms:description "The entity is the one to which the response or reply to the transmission should be sent.".

cs:CommunicationFunctionType\#SND rdfs:subClassOf cs:CommunicationFunctionType;
  rdfs:label "sender";
  dc:title "sender";
  rdfs:comment "The entity is the sender of the transmission.";
  dcterms:description "The entity is the sender of the transmission.".

# - vs:v3-Compartment ----------------------------------------------------------

vs:v3-Compartment a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "Compartment";
  dc:title "Compartment";
  rdfs:comment " A named tag set for metadata used to populate a security category label field that \"segments\" an IT resource per policy by indicating that access and use is restricted to members of a defined community or project. (HL7 Healthcare Privacy and Security Classification System)  Usage Note:\r\nThis is the healthcare analog to the US Intelligence Community's concept of a Special Access Program.  Compartment codes may be used in as a field value in an initiator's clearance to indicate permission to access and use an IT Resource with a security label having the same compartment value in security category label field. Map: Aligns with ISO 2382-8 definition of Compartment -  \"A division of data into isolated blocks with separate security controls for the purpose of reducing risk.\"";
  dcterms:description " A named tag set for metadata used to populate a security category label field that \"segments\" an IT resource per policy by indicating that access and use is restricted to members of a defined community or project. (HL7 Healthcare Privacy and Security Classification System)  Usage Note:\r\nThis is the healthcare analog to the US Intelligence Community's concept of a Special Access Program.  Compartment codes may be used in as a field value in an initiator's clearance to indicate permission to access and use an IT Resource with a security label having the same compartment value in security category label field. Map: Aligns with ISO 2382-8 definition of Compartment -  \"A division of data into isolated blocks with separate security controls for the purpose of reducing risk.\"";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-CompressionAlgorithm -------------------------------------------------

vs:v3-CompressionAlgorithm a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System CompressionAlgorithm";
  dc:title "v3 Code System CompressionAlgorithm";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:CompressionAlgorithm.

cs:CompressionAlgorithm.system a fhir:CodeSystem;
  rdfs:label "v3 Code System CompressionAlgorithm";
  dc:title "v3 Code System CompressionAlgorithm";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:CompressionAlgorithm a fhir:Concept.

cs:CompressionAlgorithm\#BZ rdfs:subClassOf cs:CompressionAlgorithm;
  rdfs:label "bzip";
  dc:title "bzip";
  rdfs:comment "bzip-2 compression format. See [http://www.bzip.org/] for more information.";
  dcterms:description "bzip-2 compression format. See [http://www.bzip.org/] for more information.".

cs:CompressionAlgorithm\#DF rdfs:subClassOf cs:CompressionAlgorithm;
  rdfs:label "deflate";
  dc:title "deflate";
  rdfs:comment "The deflate compressed data format as specified in RFC 1951 [http://www.ietf.org/rfc/rfc1951.txt].";
  dcterms:description "The deflate compressed data format as specified in RFC 1951 [http://www.ietf.org/rfc/rfc1951.txt].".

cs:CompressionAlgorithm\#GZ rdfs:subClassOf cs:CompressionAlgorithm;
  rdfs:label "gzip";
  dc:title "gzip";
  rdfs:comment "A compressed data format that is compatible with the widely used GZIP utility as specified in RFC 1952 [http://www.ietf.org/rfc/rfc1952.txt] (uses the deflate algorithm).";
  dcterms:description "A compressed data format that is compatible with the widely used GZIP utility as specified in RFC 1952 [http://www.ietf.org/rfc/rfc1952.txt] (uses the deflate algorithm).".

cs:CompressionAlgorithm\#Z rdfs:subClassOf cs:CompressionAlgorithm;
  rdfs:label "compress";
  dc:title "compress";
  rdfs:comment "Original UNIX compress algorithm and file format using the LZC algorithm (a variant of LZW).  Patent encumbered and less efficient than deflate.";
  dcterms:description "Original UNIX compress algorithm and file format using the LZC algorithm (a variant of LZW).  Patent encumbered and less efficient than deflate.".

cs:CompressionAlgorithm\#Z7 rdfs:subClassOf cs:CompressionAlgorithm;
  rdfs:label "Z7";
  dc:title "Z7";
  rdfs:comment "7z compression file format. See [http://www.7-zip.org/7z.html] for more information.";
  dcterms:description "7z compression file format. See [http://www.7-zip.org/7z.html] for more information.".

cs:CompressionAlgorithm\#ZL rdfs:subClassOf cs:CompressionAlgorithm;
  rdfs:label "zlib";
  dc:title "zlib";
  rdfs:comment "A compressed data format that also uses the deflate algorithm.  Specified as RFC 1950 [http://www.ietf.org/rfc/rfc1952.txt]";
  dcterms:description "A compressed data format that also uses the deflate algorithm.  Specified as RFC 1950 [http://www.ietf.org/rfc/rfc1952.txt]".

# - vs:v3-Confidentiality ------------------------------------------------------

vs:v3-Confidentiality a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System Confidentiality";
  dc:title "v3 Code System Confidentiality";
  rdfs:comment " A set of codes specifying the security classification of acts and roles in accordance with the definition for concept domain \"Confidentiality\".";
  dcterms:description " A set of codes specifying the security classification of acts and roles in accordance with the definition for concept domain \"Confidentiality\".";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:Confidentiality.

cs:Confidentiality.system a fhir:CodeSystem;
  rdfs:label "v3 Code System Confidentiality";
  dc:title "v3 Code System Confidentiality";
  rdfs:comment " A set of codes specifying the security classification of acts and roles in accordance with the definition for concept domain \"Confidentiality\".";
  dcterms:description " A set of codes specifying the security classification of acts and roles in accordance with the definition for concept domain \"Confidentiality\".";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:Confidentiality a fhir:Concept.

cs:Confidentiality\#%5fConfidentiality rdfs:subClassOf cs:Confidentiality;
  rdfs:label "Confidentiality";
  dc:title "Confidentiality";
  rdfs:comment "A specializable code and its leaf codes used in Confidentiality value sets to value the Act.Confidentiality and Role.Confidentiality attribute in accordance with the definition for concept domain \"Confidentiality\".";
  dcterms:description "A specializable code and its leaf codes used in Confidentiality value sets to value the Act.Confidentiality and Role.Confidentiality attribute in accordance with the definition for concept domain \"Confidentiality\".".

cs:Confidentiality\#L rdfs:subClassOf cs:Confidentiality\#%5fConfidentiality;
  rdfs:label "low";
  dc:title "low";
  rdfs:comment "Definition: Privacy metadata indicating that the information has been de-identified, and there are mitigating circumstances that prevent re-identification, which minimize risk of harm from unauthorized disclosure.  The information requires protection to maintain low sensitivity.\r\n\n                        \n                           Examples: Includes anonymized, pseudonymized, or non-personally identifiable information such as HIPAA limited data sets.\r\n\n                        \n                           Map: No clear map to ISO 13606-4 Sensitivity Level (1) Care Management:   RECORD_COMPONENTs that might need to be accessed by a wide range of administrative staff to manage the subject of care's access to health services.\r\n\n                        \n                           Usage Note: This metadata indicates the receiver may have an obligation to comply with a data use agreement.";
  dcterms:description "Definition: Privacy metadata indicating that the information has been de-identified, and there are mitigating circumstances that prevent re-identification, which minimize risk of harm from unauthorized disclosure.  The information requires protection to maintain low sensitivity.\r\n\n                        \n                           Examples: Includes anonymized, pseudonymized, or non-personally identifiable information such as HIPAA limited data sets.\r\n\n                        \n                           Map: No clear map to ISO 13606-4 Sensitivity Level (1) Care Management:   RECORD_COMPONENTs that might need to be accessed by a wide range of administrative staff to manage the subject of care's access to health services.\r\n\n                        \n                           Usage Note: This metadata indicates the receiver may have an obligation to comply with a data use agreement.".

cs:Confidentiality\#M rdfs:subClassOf cs:Confidentiality\#%5fConfidentiality;
  rdfs:label "moderate";
  dc:title "moderate";
  rdfs:comment "Definition: Privacy metadata indicating moderately sensitive information, which presents moderate risk of harm if disclosed without authorization.\r\n\n                        \n                           Examples: Includes allergies of non-sensitive nature used inform food service; health information a patient authorizes to be used for marketing, released to a bank for a health credit card or savings account; or information in personal health record systems that are not governed under health privacy laws.\r\n\n                        \n                           Map: Partial Map to ISO 13606-4 Sensitivity Level (2) Clinical Management:  Less sensitive RECORD_COMPONENTs that might need to be accessed by a wider range of personnel not all of whom are actively caring for the patient (e.g. radiology staff).\r\n\n                        \n                           Usage Note: This metadata indicates that the receiver may be obligated to comply with the receiver's terms of use or privacy policies.";
  dcterms:description "Definition: Privacy metadata indicating moderately sensitive information, which presents moderate risk of harm if disclosed without authorization.\r\n\n                        \n                           Examples: Includes allergies of non-sensitive nature used inform food service; health information a patient authorizes to be used for marketing, released to a bank for a health credit card or savings account; or information in personal health record systems that are not governed under health privacy laws.\r\n\n                        \n                           Map: Partial Map to ISO 13606-4 Sensitivity Level (2) Clinical Management:  Less sensitive RECORD_COMPONENTs that might need to be accessed by a wider range of personnel not all of whom are actively caring for the patient (e.g. radiology staff).\r\n\n                        \n                           Usage Note: This metadata indicates that the receiver may be obligated to comply with the receiver's terms of use or privacy policies.".

cs:Confidentiality\#N rdfs:subClassOf cs:Confidentiality\#%5fConfidentiality;
  rdfs:label "normal";
  dc:title "normal";
  rdfs:comment "Definition: Privacy metadata indicating that the information is typical, non-stigmatizing health information, which presents typical risk of harm if disclosed without authorization.\r\n\n                        \n                           Examples: In the US, this includes what HIPAA identifies as the minimum necessary protected health information (PHI) given a covered purpose of use (treatment, payment, or operations).  Includes typical, non-stigmatizing health information disclosed in an application for health, workers compensation, disability, or life insurance.\r\n\n                        \n                           Map: Partial Map to ISO 13606-4 Sensitivity Level (3) Clinical Care:   Default for normal clinical care access (i.e. most clinical staff directly caring for the patient should be able to access nearly all of the EHR).   Maps to normal confidentiality for treatment information but not to ancillary care, payment and operations.\r\n\n                        \n                           Usage Note: This metadata indicates that the receiver may be obligated to comply with applicable jurisdictional privacy law or disclosure authorization.";
  dcterms:description "Definition: Privacy metadata indicating that the information is typical, non-stigmatizing health information, which presents typical risk of harm if disclosed without authorization.\r\n\n                        \n                           Examples: In the US, this includes what HIPAA identifies as the minimum necessary protected health information (PHI) given a covered purpose of use (treatment, payment, or operations).  Includes typical, non-stigmatizing health information disclosed in an application for health, workers compensation, disability, or life insurance.\r\n\n                        \n                           Map: Partial Map to ISO 13606-4 Sensitivity Level (3) Clinical Care:   Default for normal clinical care access (i.e. most clinical staff directly caring for the patient should be able to access nearly all of the EHR).   Maps to normal confidentiality for treatment information but not to ancillary care, payment and operations.\r\n\n                        \n                           Usage Note: This metadata indicates that the receiver may be obligated to comply with applicable jurisdictional privacy law or disclosure authorization.".

cs:Confidentiality\#R rdfs:subClassOf cs:Confidentiality\#%5fConfidentiality;
  rdfs:label "restricted";
  dc:title "restricted";
  rdfs:comment "Privacy metadata indicating highly sensitive, potentially stigmatizing information, which presents a high risk to the information subject if disclosed without authorization. May be pre-empted by jurisdictional law, e.g., for public health reporting or emergency treatment.\r\n\n                        \n                           Examples: Includes information that is additionally protected such as sensitive conditions mental health, HIV, substance abuse, domestic violence, child abuse, genetic disease, and reproductive health; or sensitive demographic information such as a patient's standing as an employee or a celebrity. May be used to indicate proprietary or classified information that is not related to an individual, e.g., secret ingredients in a therapeutic substance; or the name of a manufacturer.\r\n\n                        \n                           Map: Partial Map to ISO 13606-4 Sensitivity Level (3) Clinical Care: Default for normal clinical care access (i.e. most clinical staff directly caring for the patient should be able to access nearly all of the EHR). Maps to normal confidentiality for treatment information but not to ancillary care, payment and operations..\r\n\n                        \n                           Usage Note: This metadata indicates that the receiver may be obligated to comply with applicable, prevailing (default) jurisdictional privacy law or disclosure authorization..";
  dcterms:description "Privacy metadata indicating highly sensitive, potentially stigmatizing information, which presents a high risk to the information subject if disclosed without authorization. May be pre-empted by jurisdictional law, e.g., for public health reporting or emergency treatment.\r\n\n                        \n                           Examples: Includes information that is additionally protected such as sensitive conditions mental health, HIV, substance abuse, domestic violence, child abuse, genetic disease, and reproductive health; or sensitive demographic information such as a patient's standing as an employee or a celebrity. May be used to indicate proprietary or classified information that is not related to an individual, e.g., secret ingredients in a therapeutic substance; or the name of a manufacturer.\r\n\n                        \n                           Map: Partial Map to ISO 13606-4 Sensitivity Level (3) Clinical Care: Default for normal clinical care access (i.e. most clinical staff directly caring for the patient should be able to access nearly all of the EHR). Maps to normal confidentiality for treatment information but not to ancillary care, payment and operations..\r\n\n                        \n                           Usage Note: This metadata indicates that the receiver may be obligated to comply with applicable, prevailing (default) jurisdictional privacy law or disclosure authorization..".

cs:Confidentiality\#U rdfs:subClassOf cs:Confidentiality\#%5fConfidentiality;
  rdfs:label "unrestricted";
  dc:title "unrestricted";
  rdfs:comment "Definition: Privacy metadata indicating that the information is not classified as sensitive.\r\n\n                        \n                           Examples: Includes publicly available information, e.g., business name, phone, email or physical address.\r\n\n                        \n                           Usage Note: This metadata indicates that the receiver has no obligation to consider additional policies when making access control decisions.   Note that in some jurisdictions, personally identifiable information must be protected as confidential, so it would not be appropriate to assign a confidentiality code of \"unrestricted\"  to that information even if it is publicly available.";
  dcterms:description "Definition: Privacy metadata indicating that the information is not classified as sensitive.\r\n\n                        \n                           Examples: Includes publicly available information, e.g., business name, phone, email or physical address.\r\n\n                        \n                           Usage Note: This metadata indicates that the receiver has no obligation to consider additional policies when making access control decisions.   Note that in some jurisdictions, personally identifiable information must be protected as confidential, so it would not be appropriate to assign a confidentiality code of \"unrestricted\"  to that information even if it is publicly available.".

cs:Confidentiality\#V rdfs:subClassOf cs:Confidentiality\#%5fConfidentiality;
  rdfs:label "very restricted";
  dc:title "very restricted";
  rdfs:comment ". Privacy metadata indicating that the information is extremely sensitive and likely stigmatizing health information that presents a very high risk if disclosed without authorization.  This information must be kept in the highest confidence.  \r\n\n                        \n                           Examples:  Includes information about a victim of abuse, patient requested information sensitivity, and taboo subjects relating to health status that must be discussed with the patient by an attending provider before sharing with the patient.  May also include information held under â€œlegal lockâ€? or attorney-client privilege\r\n\n                        \n                           Map:  This metadata indicates that the receiver may not disclose this information except as directed by the information custodian, who may be the information subject.\r\n\n                        \n                           Usage Note:  This metadata indicates that the receiver may not disclose this information except as directed by the information custodian, who may be the information subject.";
  dcterms:description ". Privacy metadata indicating that the information is extremely sensitive and likely stigmatizing health information that presents a very high risk if disclosed without authorization.  This information must be kept in the highest confidence.  \r\n\n                        \n                           Examples:  Includes information about a victim of abuse, patient requested information sensitivity, and taboo subjects relating to health status that must be discussed with the patient by an attending provider before sharing with the patient.  May also include information held under â€œlegal lockâ€? or attorney-client privilege\r\n\n                        \n                           Map:  This metadata indicates that the receiver may not disclose this information except as directed by the information custodian, who may be the information subject.\r\n\n                        \n                           Usage Note:  This metadata indicates that the receiver may not disclose this information except as directed by the information custodian, who may be the information subject.".

cs:Confidentiality\#%5fConfidentialityByAccessKind rdfs:subClassOf cs:Confidentiality;
  rdfs:label "ConfidentialityByAccessKind";
  dc:title "ConfidentialityByAccessKind";
  rdfs:comment "Description: By accessing subject / role and relationship based  rights  (These concepts are mutually exclusive, one and only one is required for a valid confidentiality coding.)\r\n\n                        \n                           Deprecation Comment:Deprecated due to updated confidentiality codes under ActCode";
  dcterms:description "Description: By accessing subject / role and relationship based  rights  (These concepts are mutually exclusive, one and only one is required for a valid confidentiality coding.)\r\n\n                        \n                           Deprecation Comment:Deprecated due to updated confidentiality codes under ActCode".

cs:Confidentiality\#B rdfs:subClassOf cs:Confidentiality\#%5fConfidentialityByAccessKind;
  rdfs:label "business";
  dc:title "business";
  rdfs:comment "Description: Since the service class can represent knowledge structures that may be considered a trade or business secret, there is sometimes (though rarely) the need to flag those items as of business level confidentiality.  However, no patient related information may ever be of this confidentiality level.\r\n\n                        \n                           Deprecation Comment: Replced by ActCode.B";
  dcterms:description "Description: Since the service class can represent knowledge structures that may be considered a trade or business secret, there is sometimes (though rarely) the need to flag those items as of business level confidentiality.  However, no patient related information may ever be of this confidentiality level.\r\n\n                        \n                           Deprecation Comment: Replced by ActCode.B".

cs:Confidentiality\#D rdfs:subClassOf cs:Confidentiality\#%5fConfidentialityByAccessKind;
  rdfs:label "clinician";
  dc:title "clinician";
  rdfs:comment "Description: Only clinicians may see this item, billing and administration persons can not access this item without special permission.\r\n\n                        \n                           Deprecation Comment:Deprecated due to updated confidentiality codes under ActCode";
  dcterms:description "Description: Only clinicians may see this item, billing and administration persons can not access this item without special permission.\r\n\n                        \n                           Deprecation Comment:Deprecated due to updated confidentiality codes under ActCode".

cs:Confidentiality\#I rdfs:subClassOf cs:Confidentiality\#%5fConfidentialityByAccessKind;
  rdfs:label "individual";
  dc:title "individual";
  rdfs:comment "Description: Access only to individual persons who are mentioned explicitly as actors of this service and whose actor type warrants that access (cf. to actor type code).\r\n\n                        \n                           Deprecation Comment:Deprecated due to updated confidentiality codes under ActCode";
  dcterms:description "Description: Access only to individual persons who are mentioned explicitly as actors of this service and whose actor type warrants that access (cf. to actor type code).\r\n\n                        \n                           Deprecation Comment:Deprecated due to updated confidentiality codes under ActCode".

cs:Confidentiality\#%5fConfidentialityByInfoType rdfs:subClassOf cs:Confidentiality;
  rdfs:label "ConfidentialityByInfoType";
  dc:title "ConfidentialityByInfoType";
  rdfs:comment "Description: By information type, only for service catalog entries (multiples allowed). Not to be used with actual patient data!\r\n\n                        \n                           Deprecation Comment:Deprecated due to updated confidentiality codes under ActCode";
  dcterms:description "Description: By information type, only for service catalog entries (multiples allowed). Not to be used with actual patient data!\r\n\n                        \n                           Deprecation Comment:Deprecated due to updated confidentiality codes under ActCode".

cs:Confidentiality\#ETH rdfs:subClassOf cs:Confidentiality\#%5fConfidentialityByInfoType;
  rdfs:label "substance abuse related";
  dc:title "substance abuse related";
  rdfs:comment "Description: Alcohol/drug-abuse related item\r\n\n                        \n                           Deprecation Comment:Replced by ActCode.ETH";
  dcterms:description "Description: Alcohol/drug-abuse related item\r\n\n                        \n                           Deprecation Comment:Replced by ActCode.ETH".

cs:Confidentiality\#HIV rdfs:subClassOf cs:Confidentiality\#%5fConfidentialityByInfoType;
  rdfs:label "HIV related";
  dc:title "HIV related";
  rdfs:comment "Description: HIV and AIDS related item\r\n\n                        \n                           Deprecation Comment:Replced by ActCode.HIV";
  dcterms:description "Description: HIV and AIDS related item\r\n\n                        \n                           Deprecation Comment:Replced by ActCode.HIV".

cs:Confidentiality\#PSY rdfs:subClassOf cs:Confidentiality\#%5fConfidentialityByInfoType;
  rdfs:label "psychiatry relate";
  dc:title "psychiatry relate";
  rdfs:comment "Description: Psychiatry related item\r\n\n                        \n                           Deprecation Comment:Replced by ActCode.PSY";
  dcterms:description "Description: Psychiatry related item\r\n\n                        \n                           Deprecation Comment:Replced by ActCode.PSY".

cs:Confidentiality\#SDV rdfs:subClassOf cs:Confidentiality\#%5fConfidentialityByInfoType;
  rdfs:label "sexual and domestic violence related";
  dc:title "sexual and domestic violence related";
  rdfs:comment "Description: Sexual assault / domestic violence related item\r\n\n                        \n                           Deprecation Comment:Replced by ActCode.SDV";
  dcterms:description "Description: Sexual assault / domestic violence related item\r\n\n                        \n                           Deprecation Comment:Replced by ActCode.SDV".

cs:Confidentiality\#%5fConfidentialityModifiers rdfs:subClassOf cs:Confidentiality;
  rdfs:label "ConfidentialityModifiers";
  dc:title "ConfidentialityModifiers";
  rdfs:comment "Description: Modifiers of role based access rights  (multiple allowed)\r\n\n                        \n                           Deprecation Comment:Deprecated due to updated confidentiality codes under ActCode";
  dcterms:description "Description: Modifiers of role based access rights  (multiple allowed)\r\n\n                        \n                           Deprecation Comment:Deprecated due to updated confidentiality codes under ActCode".

cs:Confidentiality\#C rdfs:subClassOf cs:Confidentiality\#%5fConfidentialityModifiers;
  rdfs:label "celebrity";
  dc:title "celebrity";
  rdfs:comment "Description: Celebrities are people of public interest (VIP) including employees, whose information require special protection.\r\n\n                        \n                           Deprecation Comment:Replced by ActCode.CEL";
  dcterms:description "Description: Celebrities are people of public interest (VIP) including employees, whose information require special protection.\r\n\n                        \n                           Deprecation Comment:Replced by ActCode.CEL".

cs:Confidentiality\#S rdfs:subClassOf cs:Confidentiality\#%5fConfidentialityModifiers;
  rdfs:label "sensitive";
  dc:title "sensitive";
  rdfs:comment "Description: \n                        \r\nInformation for which the patient seeks heightened confidentiality. Sensitive information is not to be shared with family members.  Information reported by the patient about family members is sensitive by default. Flag can be set or cleared on patient's request.\n                           Deprecation Comment:Deprecated due to updated confidentiality codes under ActCode";
  dcterms:description "Description: \n                        \r\nInformation for which the patient seeks heightened confidentiality. Sensitive information is not to be shared with family members.  Information reported by the patient about family members is sensitive by default. Flag can be set or cleared on patient's request.\n                           Deprecation Comment:Deprecated due to updated confidentiality codes under ActCode".

cs:Confidentiality\#T rdfs:subClassOf cs:Confidentiality\#%5fConfidentialityModifiers;
  rdfs:label "taboo";
  dc:title "taboo";
  rdfs:comment "Description: Information not to be disclosed or discussed with patient except through physician assigned to patient in this case.  This is usually a temporary constraint only, example use is a new fatal diagnosis or finding, such as malignancy or HIV.\r\n\n                        \n                           Deprecation Note:Replced by ActCode.TBOO";
  dcterms:description "Description: Information not to be disclosed or discussed with patient except through physician assigned to patient in this case.  This is usually a temporary constraint only, example use is a new fatal diagnosis or finding, such as malignancy or HIV.\r\n\n                        \n                           Deprecation Note:Replced by ActCode.TBOO".

# - vs:v3-ContainerCap ---------------------------------------------------------

vs:v3-ContainerCap a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ContainerCap";
  dc:title "v3 Code System ContainerCap";
  rdfs:comment " The type of cap associated with a container";
  dcterms:description " The type of cap associated with a container";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ContainerCap.

cs:ContainerCap.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ContainerCap";
  dc:title "v3 Code System ContainerCap";
  rdfs:comment " The type of cap associated with a container";
  dcterms:description " The type of cap associated with a container";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ContainerCap a fhir:Concept.

cs:ContainerCap\#%5fMedicationCap rdfs:subClassOf cs:ContainerCap;
  rdfs:label "MedicationCap";
  dc:title "MedicationCap";
  rdfs:comment "Cap types for medication containers";
  dcterms:description "Cap types for medication containers".

cs:ContainerCap\#CHILD rdfs:subClassOf cs:ContainerCap\#%5fMedicationCap;
  rdfs:label "ChildProof";
  dc:title "ChildProof";
  rdfs:comment "A cap designed to be difficult to open for children.  Generally requires multiple simultaneous actions (e.g. squeeze and twist) to open.  Used for products that may be dangerous if ingested or overdosed by children.";
  dcterms:description "A cap designed to be difficult to open for children.  Generally requires multiple simultaneous actions (e.g. squeeze and twist) to open.  Used for products that may be dangerous if ingested or overdosed by children.".

cs:ContainerCap\#EASY rdfs:subClassOf cs:ContainerCap\#%5fMedicationCap;
  rdfs:label "EasyOpen";
  dc:title "EasyOpen";
  rdfs:comment "A cap designed to be easily removed.  For products intended to be opened by persons with limited strength or dexterity.";
  dcterms:description "A cap designed to be easily removed.  For products intended to be opened by persons with limited strength or dexterity.".

cs:ContainerCap\#FILM rdfs:subClassOf cs:ContainerCap;
  rdfs:label "Film";
  dc:title "Film";
  rdfs:comment "A non-reactive plastic film covering over the opening of a container.";
  dcterms:description "A non-reactive plastic film covering over the opening of a container.".

cs:ContainerCap\#FOIL rdfs:subClassOf cs:ContainerCap;
  rdfs:label "Foil";
  dc:title "Foil";
  rdfs:comment "A foil covering (type of foil not specified) over the opening of a container";
  dcterms:description "A foil covering (type of foil not specified) over the opening of a container".

cs:ContainerCap\#PUSH rdfs:subClassOf cs:ContainerCap;
  rdfs:label "Push Cap";
  dc:title "Push Cap";
  rdfs:comment "A non-threaded cap that forms a tight-fitting closure on a container by pushing the fitted end into the conatiner opening";
  dcterms:description "A non-threaded cap that forms a tight-fitting closure on a container by pushing the fitted end into the conatiner opening".

cs:ContainerCap\#SCR rdfs:subClassOf cs:ContainerCap;
  rdfs:label "Screw Cap";
  dc:title "Screw Cap";
  rdfs:comment "A threaded cap that is screwed onto the opening of a container";
  dcterms:description "A threaded cap that is screwed onto the opening of a container".

# - vs:v3-ContainerSeparator ---------------------------------------------------

vs:v3-ContainerSeparator a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ContainerSeparator";
  dc:title "v3 Code System ContainerSeparator";
  rdfs:comment " A material in a blood collection container that facilites the separation of of blood cells from serum or plasma";
  dcterms:description " A material in a blood collection container that facilites the separation of of blood cells from serum or plasma";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ContainerSeparator.

cs:ContainerSeparator.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ContainerSeparator";
  dc:title "v3 Code System ContainerSeparator";
  rdfs:comment " A material in a blood collection container that facilites the separation of of blood cells from serum or plasma";
  dcterms:description " A material in a blood collection container that facilites the separation of of blood cells from serum or plasma";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ContainerSeparator a fhir:Concept.

cs:ContainerSeparator\#GEL rdfs:subClassOf cs:ContainerSeparator;
  rdfs:label "Gel";
  dc:title "Gel";
  rdfs:comment "A gelatinous type of separator material.";
  dcterms:description "A gelatinous type of separator material.".

cs:ContainerSeparator\#NONE rdfs:subClassOf cs:ContainerSeparator;
  rdfs:label "None";
  dc:title "None";
  rdfs:comment "No separator material is present in the container.";
  dcterms:description "No separator material is present in the container.".

# - vs:v3-ContentProcessingMode ------------------------------------------------

vs:v3-ContentProcessingMode a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ContentProcessingMode";
  dc:title "v3 Code System ContentProcessingMode";
  rdfs:comment "  Description:\r\nIdentifies the order in which content should be processed.";
  dcterms:description "  Description:\r\nIdentifies the order in which content should be processed.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ContentProcessingMode.

cs:ContentProcessingMode.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ContentProcessingMode";
  dc:title "v3 Code System ContentProcessingMode";
  rdfs:comment "  Description:\r\nIdentifies the order in which content should be processed.";
  dcterms:description "  Description:\r\nIdentifies the order in which content should be processed.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ContentProcessingMode a fhir:Concept.

cs:ContentProcessingMode\#SEQL rdfs:subClassOf cs:ContentProcessingMode;
  rdfs:label "Sequential";
  dc:title "Sequential";
  rdfs:comment "Description:The content should be processed in a sequential fashion.";
  dcterms:description "Description:The content should be processed in a sequential fashion.".

cs:ContentProcessingMode\#UNOR rdfs:subClassOf cs:ContentProcessingMode;
  rdfs:label "Unordered";
  dc:title "Unordered";
  rdfs:comment "Description:The content may be processed in any order.";
  dcterms:description "Description:The content may be processed in any order.".

# - vs:v3-ContextControl -------------------------------------------------------

vs:v3-ContextControl a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ContextControl";
  dc:title "v3 Code System ContextControl";
  rdfs:comment " A code that specifies how an ActRelationship or Participation contributes to the context of an Act, and whether it may be propagated to descendent Acts whose association allows such propagation (see also attributes Participation.contextControlCode, ActRelationship.contextControlCode, ActRelationship.contextConductionInd).";
  dcterms:description " A code that specifies how an ActRelationship or Participation contributes to the context of an Act, and whether it may be propagated to descendent Acts whose association allows such propagation (see also attributes Participation.contextControlCode, ActRelationship.contextControlCode, ActRelationship.contextConductionInd).";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ContextControl.

cs:ContextControl.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ContextControl";
  dc:title "v3 Code System ContextControl";
  rdfs:comment " A code that specifies how an ActRelationship or Participation contributes to the context of an Act, and whether it may be propagated to descendent Acts whose association allows such propagation (see also attributes Participation.contextControlCode, ActRelationship.contextControlCode, ActRelationship.contextConductionInd).";
  dcterms:description " A code that specifies how an ActRelationship or Participation contributes to the context of an Act, and whether it may be propagated to descendent Acts whose association allows such propagation (see also attributes Participation.contextControlCode, ActRelationship.contextControlCode, ActRelationship.contextConductionInd).";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ContextControl a fhir:Concept.

cs:ContextControl\#%5fContextControlAdditive rdfs:subClassOf cs:ContextControl;
  rdfs:label "ContextControlAdditive";
  dc:title "ContextControlAdditive";
  rdfs:comment "The association adds to the existing context associated with the Act.  Both this association and any associations propagated from ancestor Acts are interpreted as being related to this Act.";
  dcterms:description "The association adds to the existing context associated with the Act.  Both this association and any associations propagated from ancestor Acts are interpreted as being related to this Act.".

cs:ContextControl\#AN rdfs:subClassOf cs:ContextControl\#%5fContextControlAdditive;
  rdfs:label "additive, non-propagating";
  dc:title "additive, non-propagating";
  rdfs:comment "The association adds to the existing context associated with the Act, but will not propagate to any descendant Acts reached by conducting ActRelationships (see contextControlCode). Examples: If an 'Author' Participation were marked as \"Additive, Non-Propagating\" it means that the author will be added to the set of author participations that have propagated from ancestor Acts for the purpose of this Act. However only the previously propagated authors will propagate to any child Acts that allow context to be propagated.";
  dcterms:description "The association adds to the existing context associated with the Act, but will not propagate to any descendant Acts reached by conducting ActRelationships (see contextControlCode). Examples: If an 'Author' Participation were marked as \"Additive, Non-Propagating\" it means that the author will be added to the set of author participations that have propagated from ancestor Acts for the purpose of this Act. However only the previously propagated authors will propagate to any child Acts that allow context to be propagated.".

cs:ContextControl\#AP rdfs:subClassOf cs:ContextControl\#%5fContextControlAdditive;
  rdfs:label "additive, propagating";
  dc:title "additive, propagating";
  rdfs:comment "The association adds to the existing context associated with the Act, and will propagate to any descendant Acts reached by conducting ActRelationships (see contextControlCode). Examples: If an 'Author' Participation were marked as \"Additive, Propagating\" it means that the author will be added to the set of author participations that have propagated from ancestor Acts, and will itself propagate with the other authors to any child Acts that allow context to be propagated.";
  dcterms:description "The association adds to the existing context associated with the Act, and will propagate to any descendant Acts reached by conducting ActRelationships (see contextControlCode). Examples: If an 'Author' Participation were marked as \"Additive, Propagating\" it means that the author will be added to the set of author participations that have propagated from ancestor Acts, and will itself propagate with the other authors to any child Acts that allow context to be propagated.".

cs:ContextControl\#%5fContextControlNonPropagating rdfs:subClassOf cs:ContextControl;
  rdfs:label "ContextControlNonPropagating";
  dc:title "ContextControlNonPropagating";
  rdfs:comment "The association applies only to the current Act and will not propagate to any child Acts that are related via a conducting ActRelationship (refer to contextConductionInd).";
  dcterms:description "The association applies only to the current Act and will not propagate to any child Acts that are related via a conducting ActRelationship (refer to contextConductionInd).".

cs:ContextControl\#ON rdfs:subClassOf cs:ContextControl\#%5fContextControlNonPropagating;
  rdfs:label "overriding, non-propagating";
  dc:title "overriding, non-propagating";
  rdfs:comment "The association is added to the existing context associated with the Act, but overrides an association with the same typeCode. However, this overriding association will not propagate to any descendant Acts reached by conducting ActRelationships (see contextControlCode). Examples: If an 'Author' Participation were marked as \"Overriding, Non-Propagating\" it means that the author will replace the set of author participations that have propagated from ancestor Acts. Furthermore, no author participations whatsoever will propagate to any child Acts that allow context to be propagated.";
  dcterms:description "The association is added to the existing context associated with the Act, but overrides an association with the same typeCode. However, this overriding association will not propagate to any descendant Acts reached by conducting ActRelationships (see contextControlCode). Examples: If an 'Author' Participation were marked as \"Overriding, Non-Propagating\" it means that the author will replace the set of author participations that have propagated from ancestor Acts. Furthermore, no author participations whatsoever will propagate to any child Acts that allow context to be propagated.".

cs:ContextControl\#%5fContextControlOverriding rdfs:subClassOf cs:ContextControl;
  rdfs:label "ContextControlOverriding";
  dc:title "ContextControlOverriding";
  rdfs:comment "The association adds to the existing context associated with the Act, but replaces associations propagated from ancestor Acts whose typeCodes are the same or more specific.";
  dcterms:description "The association adds to the existing context associated with the Act, but replaces associations propagated from ancestor Acts whose typeCodes are the same or more specific.".

cs:ContextControl\#OP rdfs:subClassOf cs:ContextControl\#%5fContextControlOverriding;
  rdfs:label "overriding, propagating";
  dc:title "overriding, propagating";
  rdfs:comment "The association is added to the existing context associated with the Act, but overrides an association with the same typeCode. This overriding association will propagate to any descendant Acts reached by conducting ActRelationships (see contextControlCode). Examples: If an 'Author' Participation were marked as \"Overriding, Propagating\" it means that the author will replace the set of author participations that have propagated from ancestor Acts, and will itself be the only author to propagate to any child Acts that allow context to be propagated.";
  dcterms:description "The association is added to the existing context associated with the Act, but overrides an association with the same typeCode. This overriding association will propagate to any descendant Acts reached by conducting ActRelationships (see contextControlCode). Examples: If an 'Author' Participation were marked as \"Overriding, Propagating\" it means that the author will replace the set of author participations that have propagated from ancestor Acts, and will itself be the only author to propagate to any child Acts that allow context to be propagated.".

cs:ContextControl\#%5fContextControlPropagating rdfs:subClassOf cs:ContextControl;
  rdfs:label "ContextControlPropagating";
  dc:title "ContextControlPropagating";
  rdfs:comment "The association propagates to any child Acts that are related via a conducting ActRelationship (refer to contextConductionInd).";
  dcterms:description "The association propagates to any child Acts that are related via a conducting ActRelationship (refer to contextConductionInd).".

# - vs:v3-DataOperation --------------------------------------------------------

vs:v3-DataOperation a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System DataOperation";
  dc:title "v3 Code System DataOperation";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:DataOperation.

cs:DataOperation.system a fhir:CodeSystem;
  rdfs:label "v3 Code System DataOperation";
  dc:title "v3 Code System DataOperation";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:DataOperation a fhir:Concept.

cs:DataOperation\#OPERATE rdfs:subClassOf cs:DataOperation;
  rdfs:label "operate";
  dc:title "operate";
  rdfs:comment "Description:Act on an object or objects.";
  dcterms:description "Description:Act on an object or objects.".

cs:DataOperation\#CREATE rdfs:subClassOf cs:DataOperation\#OPERATE;
  rdfs:label "create";
  dc:title "create";
  rdfs:comment "Description:Fundamental operation in an Information System (IS) that results only in the act of bringing an object into existence. Note: The preceding definition is taken from the HL7 RBAC specification.  There is no restriction on how the operation is invoked, e.g., via a user interface. For an HL7 Act, the state transitions per the HL7 Reference Information Model.";
  dcterms:description "Description:Fundamental operation in an Information System (IS) that results only in the act of bringing an object into existence. Note: The preceding definition is taken from the HL7 RBAC specification.  There is no restriction on how the operation is invoked, e.g., via a user interface. For an HL7 Act, the state transitions per the HL7 Reference Information Model.".

cs:DataOperation\#DELETE rdfs:subClassOf cs:DataOperation\#OPERATE;
  rdfs:label "delete";
  dc:title "delete";
  rdfs:comment "Description:Fundamental operation in an Information System (IS) that results only in the removal of information about an object from memory or storage. Note: The preceding definition is taken from the HL7 RBAC specification.  There is no restriction on how the operation is invoked, e.g., via a user interface.";
  dcterms:description "Description:Fundamental operation in an Information System (IS) that results only in the removal of information about an object from memory or storage. Note: The preceding definition is taken from the HL7 RBAC specification.  There is no restriction on how the operation is invoked, e.g., via a user interface.".

cs:DataOperation\#EXECUTE rdfs:subClassOf cs:DataOperation\#OPERATE;
  rdfs:label "execute";
  dc:title "execute";
  rdfs:comment "Description:Fundamental operation in an IS that results only in initiating performance of a single or set of programs (i.e., software objects). Note: The preceding definition is taken from the HL7 RBAC specification.  There is no restriction on how the operation is invoked, e.g., via a user interface.";
  dcterms:description "Description:Fundamental operation in an IS that results only in initiating performance of a single or set of programs (i.e., software objects). Note: The preceding definition is taken from the HL7 RBAC specification.  There is no restriction on how the operation is invoked, e.g., via a user interface.".

cs:DataOperation\#READ rdfs:subClassOf cs:DataOperation\#OPERATE;
  rdfs:label "read";
  dc:title "read";
  rdfs:comment "Description:Fundamental operation in an Information System (IS) that results only in the flow of information about an object to a subject. Note: The preceding definition is taken from the HL7 RBAC specification.  There is no restriction on how the operation is invoked, e.g., via a user interface.";
  dcterms:description "Description:Fundamental operation in an Information System (IS) that results only in the flow of information about an object to a subject. Note: The preceding definition is taken from the HL7 RBAC specification.  There is no restriction on how the operation is invoked, e.g., via a user interface.".

cs:DataOperation\#UPDATE rdfs:subClassOf cs:DataOperation\#OPERATE;
  rdfs:label "revise";
  dc:title "revise";
  rdfs:comment "Definition:Fundamental operation in an Information System (IS) that results only in the revision or alteration of an object. Note: The preceding definition is taken from the HL7 RBAC specification. There is no restriction on how the operation is invoked, e.g., via a user interface.";
  dcterms:description "Definition:Fundamental operation in an Information System (IS) that results only in the revision or alteration of an object. Note: The preceding definition is taken from the HL7 RBAC specification. There is no restriction on how the operation is invoked, e.g., via a user interface.".

cs:DataOperation\#APPEND rdfs:subClassOf cs:DataOperation\#UPDATE;
  rdfs:label "append";
  dc:title "append";
  rdfs:comment "Description:Fundamental operation in an Information System (IS) that results only in the addition of information to an object already in existence. Note: The preceding definition is taken from the HL7 RBAC specification.  There is no restriction on how the operation is invoked, e.g., via a user interface.";
  dcterms:description "Description:Fundamental operation in an Information System (IS) that results only in the addition of information to an object already in existence. Note: The preceding definition is taken from the HL7 RBAC specification.  There is no restriction on how the operation is invoked, e.g., via a user interface.".

cs:DataOperation\#MODIFYSTATUS rdfs:subClassOf cs:DataOperation\#UPDATE;
  rdfs:label "modify status";
  dc:title "modify status";
  rdfs:comment "Description:Change the status of an object representing an Act.";
  dcterms:description "Description:Change the status of an object representing an Act.".

cs:DataOperation\#ABORT rdfs:subClassOf cs:DataOperation\#MODIFYSTATUS;
  rdfs:label "abort";
  dc:title "abort";
  rdfs:comment "Description:Change the status of an object representing an Act to \"aborted\", i.e., terminated prior to the originally intended completion. For an HL7 Act, the state transitions per the HL7 Reference Information Model.";
  dcterms:description "Description:Change the status of an object representing an Act to \"aborted\", i.e., terminated prior to the originally intended completion. For an HL7 Act, the state transitions per the HL7 Reference Information Model.".

cs:DataOperation\#ACTIVATE rdfs:subClassOf cs:DataOperation\#MODIFYSTATUS;
  rdfs:label "activate";
  dc:title "activate";
  rdfs:comment "Description:Change the status of an object representing an Act to \"active\", i.e., so it can be performed or is being performed, for the first time. (Contrast with REACTIVATE.) For an HL7 Act, the state transitions per the HL7 Reference Information Model.";
  dcterms:description "Description:Change the status of an object representing an Act to \"active\", i.e., so it can be performed or is being performed, for the first time. (Contrast with REACTIVATE.) For an HL7 Act, the state transitions per the HL7 Reference Information Model.".

cs:DataOperation\#CANCEL rdfs:subClassOf cs:DataOperation\#MODIFYSTATUS;
  rdfs:label "cancel";
  dc:title "cancel";
  rdfs:comment "Description:Change the status of an object representing an Act to \"cancelled\", i.e., abandoned before activation. For an HL7 Act, the state transitions per the HL7 Reference Information Model.";
  dcterms:description "Description:Change the status of an object representing an Act to \"cancelled\", i.e., abandoned before activation. For an HL7 Act, the state transitions per the HL7 Reference Information Model.".

cs:DataOperation\#COMPLETE rdfs:subClassOf cs:DataOperation\#MODIFYSTATUS;
  rdfs:label "complete";
  dc:title "complete";
  rdfs:comment "Description:Change the status of an object representing an Act to \"completed\", i.e., terminated normally after all of its constituents have been performed. For an HL7 Act, the state transitions per the HL7 Reference Information Model.";
  dcterms:description "Description:Change the status of an object representing an Act to \"completed\", i.e., terminated normally after all of its constituents have been performed. For an HL7 Act, the state transitions per the HL7 Reference Information Model.".

cs:DataOperation\#HOLD rdfs:subClassOf cs:DataOperation\#MODIFYSTATUS;
  rdfs:label "hold";
  dc:title "hold";
  rdfs:comment "Description:Change the status of an object representing an Act to \"held\", i.e., put aside an Act that is still in preparatory stages.  No action can occur until the Act is released. For an HL7 Act, the state transitions per the HL7 Reference Information Model.";
  dcterms:description "Description:Change the status of an object representing an Act to \"held\", i.e., put aside an Act that is still in preparatory stages.  No action can occur until the Act is released. For an HL7 Act, the state transitions per the HL7 Reference Information Model.".

cs:DataOperation\#JUMP rdfs:subClassOf cs:DataOperation\#MODIFYSTATUS;
  rdfs:label "jump";
  dc:title "jump";
  rdfs:comment "Description:Change the status of an object representing an Act to a normal state. For an HL7 Act, the state transitions per the HL7 Reference Information Model.";
  dcterms:description "Description:Change the status of an object representing an Act to a normal state. For an HL7 Act, the state transitions per the HL7 Reference Information Model.".

cs:DataOperation\#NULLIFY rdfs:subClassOf cs:DataOperation\#MODIFYSTATUS;
  rdfs:label "nullify";
  dc:title "nullify";
  rdfs:comment "Description:Change the status of an object representing an Act to \"nullified\", i.e., treat as though it never existed. For an HL7 Act, the state transitions per the HL7 Reference Information Model.";
  dcterms:description "Description:Change the status of an object representing an Act to \"nullified\", i.e., treat as though it never existed. For an HL7 Act, the state transitions per the HL7 Reference Information Model.".

cs:DataOperation\#OBSOLETE rdfs:subClassOf cs:DataOperation\#MODIFYSTATUS;
  rdfs:label "obsolete";
  dc:title "obsolete";
  rdfs:comment "Description:Change the status of an object representing an Act to \"obsolete\" when it has been replaced by a new instance. For an HL7 Act, the state transitions per the HL7 Reference Information Model.";
  dcterms:description "Description:Change the status of an object representing an Act to \"obsolete\" when it has been replaced by a new instance. For an HL7 Act, the state transitions per the HL7 Reference Information Model.".

cs:DataOperation\#REACTIVATE rdfs:subClassOf cs:DataOperation\#MODIFYSTATUS;
  rdfs:label "reactivate";
  dc:title "reactivate";
  rdfs:comment "Description:Change the status of a formerly active object representing an Act to \"active\", i.e., so it can again be performed or is being performed. (Contrast with ACTIVATE.) For an HL7 Act, the state transitions per the HL7 Reference Information Model.";
  dcterms:description "Description:Change the status of a formerly active object representing an Act to \"active\", i.e., so it can again be performed or is being performed. (Contrast with ACTIVATE.) For an HL7 Act, the state transitions per the HL7 Reference Information Model.".

cs:DataOperation\#RELEASE rdfs:subClassOf cs:DataOperation\#MODIFYSTATUS;
  rdfs:label "release";
  dc:title "release";
  rdfs:comment "Description:Change the status of an object representing an Act so it is no longer \"held\", i.e., allow action to occur. For an HL7 Act, the state transitions per the HL7 Reference Information Model.";
  dcterms:description "Description:Change the status of an object representing an Act so it is no longer \"held\", i.e., allow action to occur. For an HL7 Act, the state transitions per the HL7 Reference Information Model.".

cs:DataOperation\#RESUME rdfs:subClassOf cs:DataOperation\#MODIFYSTATUS;
  rdfs:label "resume";
  dc:title "resume";
  rdfs:comment "Description:Change the status of a suspended object representing an Act to \"active\", i.e., so it can be performed or is being performed. For an HL7 Act, the state transitions per the HL7 Reference Information Model.";
  dcterms:description "Description:Change the status of a suspended object representing an Act to \"active\", i.e., so it can be performed or is being performed. For an HL7 Act, the state transitions per the HL7 Reference Information Model.".

cs:DataOperation\#SUSPEND rdfs:subClassOf cs:DataOperation\#MODIFYSTATUS;
  rdfs:label "suspend";
  dc:title "suspend";
  rdfs:comment "Definition:Change the status of an object representing an Act to suspended, i.e., so it is temporarily not in service.";
  dcterms:description "Definition:Change the status of an object representing an Act to suspended, i.e., so it is temporarily not in service.".

# - vs:v3-DeviceAlertLevel -----------------------------------------------------

vs:v3-DeviceAlertLevel a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System DeviceAlertLevel";
  dc:title "v3 Code System DeviceAlertLevel";
  rdfs:comment " Domain values for the Device.Alert_levelCode";
  dcterms:description " Domain values for the Device.Alert_levelCode";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:DeviceAlertLevel.

cs:DeviceAlertLevel.system a fhir:CodeSystem;
  rdfs:label "v3 Code System DeviceAlertLevel";
  dc:title "v3 Code System DeviceAlertLevel";
  rdfs:comment " Domain values for the Device.Alert_levelCode";
  dcterms:description " Domain values for the Device.Alert_levelCode";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:DeviceAlertLevel a fhir:Concept.

cs:DeviceAlertLevel\#C rdfs:subClassOf cs:DeviceAlertLevel;
  rdfs:label "Critical";
  dc:title "Critical";
  rdfs:comment "Shut Down, Fix Problem and Re-initialize";
  dcterms:description "Shut Down, Fix Problem and Re-initialize".

cs:DeviceAlertLevel\#N rdfs:subClassOf cs:DeviceAlertLevel;
  rdfs:label "Normal";
  dc:title "Normal";
  rdfs:comment "No Corrective Action Needed";
  dcterms:description "No Corrective Action Needed".

cs:DeviceAlertLevel\#S rdfs:subClassOf cs:DeviceAlertLevel;
  rdfs:label "Serious";
  dc:title "Serious";
  rdfs:comment "Corrective Action Required";
  dcterms:description "Corrective Action Required".

cs:DeviceAlertLevel\#W rdfs:subClassOf cs:DeviceAlertLevel;
  rdfs:label "Warning";
  dc:title "Warning";
  rdfs:comment "Corrective Action Anticipated";
  dcterms:description "Corrective Action Anticipated".

# - vs:v3-DocumentCompletion ---------------------------------------------------

vs:v3-DocumentCompletion a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System DocumentCompletion";
  dc:title "v3 Code System DocumentCompletion";
  rdfs:comment " Identifies the current completion state of a clinical document.";
  dcterms:description " Identifies the current completion state of a clinical document.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:DocumentCompletion.

cs:DocumentCompletion.system a fhir:CodeSystem;
  rdfs:label "v3 Code System DocumentCompletion";
  dc:title "v3 Code System DocumentCompletion";
  rdfs:comment " Identifies the current completion state of a clinical document.";
  dcterms:description " Identifies the current completion state of a clinical document.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:DocumentCompletion a fhir:Concept.

cs:DocumentCompletion\#AU rdfs:subClassOf cs:DocumentCompletion;
  rdfs:label "authenticated";
  dc:title "authenticated";
  rdfs:comment "A completion status in which a document has been signed manually or electronically by one or more individuals who attest to its accuracy.  No explicit determination is made that the assigned individual has performed the authentication.  While the standard allows multiple instances of authentication, it would be typical to have a single instance of authentication, usually by the assigned individual.";
  dcterms:description "A completion status in which a document has been signed manually or electronically by one or more individuals who attest to its accuracy.  No explicit determination is made that the assigned individual has performed the authentication.  While the standard allows multiple instances of authentication, it would be typical to have a single instance of authentication, usually by the assigned individual.".

cs:DocumentCompletion\#DI rdfs:subClassOf cs:DocumentCompletion;
  rdfs:label "dictated";
  dc:title "dictated";
  rdfs:comment "A completion status in which information has been orally recorded but not yet transcribed.";
  dcterms:description "A completion status in which information has been orally recorded but not yet transcribed.".

cs:DocumentCompletion\#DO rdfs:subClassOf cs:DocumentCompletion;
  rdfs:label "documented";
  dc:title "documented";
  rdfs:comment "A completion status in which document content, other than dictation, has been received but has not been translated into the final electronic format.  Examples include paper documents, whether hand-written or typewritten, and intermediate electronic forms, such as voice to text.";
  dcterms:description "A completion status in which document content, other than dictation, has been received but has not been translated into the final electronic format.  Examples include paper documents, whether hand-written or typewritten, and intermediate electronic forms, such as voice to text.".

cs:DocumentCompletion\#IN rdfs:subClassOf cs:DocumentCompletion;
  rdfs:label "incomplete";
  dc:title "incomplete";
  rdfs:comment "A completion status in which information is known to be missing from a transcribed document.";
  dcterms:description "A completion status in which information is known to be missing from a transcribed document.".

cs:DocumentCompletion\#IP rdfs:subClassOf cs:DocumentCompletion;
  rdfs:label "in progress";
  dc:title "in progress";
  rdfs:comment "A workflow status where the material has been assigned to personnel to perform the task of transcription. The document remains in this state until the document is transcribed.";
  dcterms:description "A workflow status where the material has been assigned to personnel to perform the task of transcription. The document remains in this state until the document is transcribed.".

cs:DocumentCompletion\#LA rdfs:subClassOf cs:DocumentCompletion;
  rdfs:label "legally authenticated";
  dc:title "legally authenticated";
  rdfs:comment "A completion status in which a document has been signed manually or electronically by the individual who is legally responsible for that document. This is the most mature state in the workflow progression.";
  dcterms:description "A completion status in which a document has been signed manually or electronically by the individual who is legally responsible for that document. This is the most mature state in the workflow progression.".

cs:DocumentCompletion\#NU rdfs:subClassOf cs:DocumentCompletion;
  rdfs:label "nullified document";
  dc:title "nullified document";
  rdfs:comment "A completion status in which a document was created in error or was placed in the wrong chart. The document is no longer available.";
  dcterms:description "A completion status in which a document was created in error or was placed in the wrong chart. The document is no longer available.".

cs:DocumentCompletion\#PA rdfs:subClassOf cs:DocumentCompletion;
  rdfs:label "pre-authenticated";
  dc:title "pre-authenticated";
  rdfs:comment "A completion status in which a document is transcribed but not authenticated.";
  dcterms:description "A completion status in which a document is transcribed but not authenticated.".

cs:DocumentCompletion\#UC rdfs:subClassOf cs:DocumentCompletion;
  rdfs:label "unsigned completed document";
  dc:title "unsigned completed document";
  rdfs:comment "A completion status where the document is complete and there is no expectation that the document will be signed.";
  dcterms:description "A completion status where the document is complete and there is no expectation that the document will be signed.".

# - vs:v3-DocumentStorage ------------------------------------------------------

vs:v3-DocumentStorage a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System DocumentStorage";
  dc:title "v3 Code System DocumentStorage";
  rdfs:comment " Identifies the storage status of a document.";
  dcterms:description " Identifies the storage status of a document.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:DocumentStorage.

cs:DocumentStorage.system a fhir:CodeSystem;
  rdfs:label "v3 Code System DocumentStorage";
  dc:title "v3 Code System DocumentStorage";
  rdfs:comment " Identifies the storage status of a document.";
  dcterms:description " Identifies the storage status of a document.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:DocumentStorage a fhir:Concept.

cs:DocumentStorage\#AC rdfs:subClassOf cs:DocumentStorage;
  rdfs:label "active";
  dc:title "active";
  rdfs:comment "A storage status in which a document is available on-line.";
  dcterms:description "A storage status in which a document is available on-line.".

cs:DocumentStorage\#AA rdfs:subClassOf cs:DocumentStorage\#AC;
  rdfs:label "active and archived";
  dc:title "active and archived";
  rdfs:comment "A storage status in which a document is available on-line and is also stored off-line for long-term access.";
  dcterms:description "A storage status in which a document is available on-line and is also stored off-line for long-term access.".

cs:DocumentStorage\#AR rdfs:subClassOf cs:DocumentStorage;
  rdfs:label "archived (not active)";
  dc:title "archived (not active)";
  rdfs:comment "A storage status in which a document has been stored off-line for long-term access.";
  dcterms:description "A storage status in which a document has been stored off-line for long-term access.".

cs:DocumentStorage\#PU rdfs:subClassOf cs:DocumentStorage;
  rdfs:label "purged";
  dc:title "purged";
  rdfs:comment "A storage status in which a document is no longer available in this system.";
  dcterms:description "A storage status in which a document is no longer available in this system.".

# - vs:v3-EducationLevel -------------------------------------------------------

vs:v3-EducationLevel a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EducationLevel";
  dc:title "v3 Code System EducationLevel";
  rdfs:comment " Years of education that a person has completed";
  dcterms:description " Years of education that a person has completed";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EducationLevel.

cs:EducationLevel.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EducationLevel";
  dc:title "v3 Code System EducationLevel";
  rdfs:comment " Years of education that a person has completed";
  dcterms:description " Years of education that a person has completed";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EducationLevel a fhir:Concept.

cs:EducationLevel\#ASSOC rdfs:subClassOf cs:EducationLevel;
  rdfs:label "Associate's or technical degree complete";
  dc:title "Associate's or technical degree complete";
  rdfs:comment "Associate's or technical degree complete";
  dcterms:description "Associate's or technical degree complete".

cs:EducationLevel\#BD rdfs:subClassOf cs:EducationLevel;
  rdfs:label "College or baccalaureate degree complete";
  dc:title "College or baccalaureate degree complete";
  rdfs:comment "College or baccalaureate degree complete";
  dcterms:description "College or baccalaureate degree complete".

cs:EducationLevel\#ELEM rdfs:subClassOf cs:EducationLevel;
  rdfs:label "Elementary School";
  dc:title "Elementary School";
  rdfs:comment "Elementary School";
  dcterms:description "Elementary School".

cs:EducationLevel\#GD rdfs:subClassOf cs:EducationLevel;
  rdfs:label "Graduate or professional Degree complete";
  dc:title "Graduate or professional Degree complete";
  rdfs:comment "Graduate or professional Degree complete";
  dcterms:description "Graduate or professional Degree complete".

cs:EducationLevel\#HS rdfs:subClassOf cs:EducationLevel;
  rdfs:label "High School or secondary school degree complete";
  dc:title "High School or secondary school degree complete";
  rdfs:comment "High School or secondary school degree complete";
  dcterms:description "High School or secondary school degree complete".

cs:EducationLevel\#PB rdfs:subClassOf cs:EducationLevel;
  rdfs:label "Some post-baccalaureate education";
  dc:title "Some post-baccalaureate education";
  rdfs:comment "Some post-baccalaureate education";
  dcterms:description "Some post-baccalaureate education".

cs:EducationLevel\#POSTG rdfs:subClassOf cs:EducationLevel;
  rdfs:label "Doctoral or post graduate education";
  dc:title "Doctoral or post graduate education";
  rdfs:comment "Doctoral or post graduate education";
  dcterms:description "Doctoral or post graduate education".

cs:EducationLevel\#SCOL rdfs:subClassOf cs:EducationLevel;
  rdfs:label "Some College education";
  dc:title "Some College education";
  rdfs:comment "Some College education";
  dcterms:description "Some College education".

cs:EducationLevel\#SEC rdfs:subClassOf cs:EducationLevel;
  rdfs:label "Some secondary or high school education";
  dc:title "Some secondary or high school education";
  rdfs:comment "Some secondary or high school education";
  dcterms:description "Some secondary or high school education".

# - vs:v3-EmployeeJobClass -----------------------------------------------------

vs:v3-EmployeeJobClass a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EmployeeJobClass";
  dc:title "v3 Code System EmployeeJobClass";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EmployeeJobClass.

cs:EmployeeJobClass.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EmployeeJobClass";
  dc:title "v3 Code System EmployeeJobClass";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EmployeeJobClass a fhir:Concept.

cs:EmployeeJobClass\#FT rdfs:subClassOf cs:EmployeeJobClass;
  rdfs:label "full-time";
  dc:title "full-time";
  rdfs:comment "Employment in which the employee is expected to work at least a standard work week (defined by the US Bureau of Labor Statistics as 35-44 hours per week)";
  dcterms:description "Employment in which the employee is expected to work at least a standard work week (defined by the US Bureau of Labor Statistics as 35-44 hours per week)".

cs:EmployeeJobClass\#PT rdfs:subClassOf cs:EmployeeJobClass;
  rdfs:label "part-time";
  dc:title "part-time";
  rdfs:comment "Employment in which the employee is expected to work less than a standard work week (defined by the US Bureau of Labor Statistics as 35-44 hours per week)";
  dcterms:description "Employment in which the employee is expected to work less than a standard work week (defined by the US Bureau of Labor Statistics as 35-44 hours per week)".

# - vs:v3-EncounterAdmissionSource ---------------------------------------------

vs:v3-EncounterAdmissionSource a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EncounterAdmissionSource";
  dc:title "v3 Code System EncounterAdmissionSource";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EncounterAdmissionSource.

cs:EncounterAdmissionSource.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EncounterAdmissionSource";
  dc:title "v3 Code System EncounterAdmissionSource";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EncounterAdmissionSource a fhir:Concept.

cs:EncounterAdmissionSource\#E rdfs:subClassOf cs:EncounterAdmissionSource;
  rdfs:label "emergency";
  dc:title "emergency";
  rdfs:comment "emergency";
  dcterms:description "emergency".

cs:EncounterAdmissionSource\#LD rdfs:subClassOf cs:EncounterAdmissionSource;
  rdfs:label "labor and delivery";
  dc:title "labor and delivery";
  rdfs:comment "labor and delivery";
  dcterms:description "labor and delivery".

cs:EncounterAdmissionSource\#NB rdfs:subClassOf cs:EncounterAdmissionSource;
  rdfs:label "newborn";
  dc:title "newborn";
  rdfs:comment "newborn";
  dcterms:description "newborn".

# - vs:v3-EncounterSpecialCourtesy ---------------------------------------------

vs:v3-EncounterSpecialCourtesy a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EncounterSpecialCourtesy";
  dc:title "v3 Code System EncounterSpecialCourtesy";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EncounterSpecialCourtesy.

cs:EncounterSpecialCourtesy.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EncounterSpecialCourtesy";
  dc:title "v3 Code System EncounterSpecialCourtesy";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EncounterSpecialCourtesy a fhir:Concept.

cs:EncounterSpecialCourtesy\#EXT rdfs:subClassOf cs:EncounterSpecialCourtesy;
  rdfs:label "extended courtesy";
  dc:title "extended courtesy";
  rdfs:comment "extended courtesy";
  dcterms:description "extended courtesy".

cs:EncounterSpecialCourtesy\#NRM rdfs:subClassOf cs:EncounterSpecialCourtesy;
  rdfs:label "normal courtesy";
  dc:title "normal courtesy";
  rdfs:comment "normal courtesy";
  dcterms:description "normal courtesy".

cs:EncounterSpecialCourtesy\#PRF rdfs:subClassOf cs:EncounterSpecialCourtesy;
  rdfs:label "professional courtesy";
  dc:title "professional courtesy";
  rdfs:comment "professional courtesy";
  dcterms:description "professional courtesy".

cs:EncounterSpecialCourtesy\#STF rdfs:subClassOf cs:EncounterSpecialCourtesy;
  rdfs:label "staff";
  dc:title "staff";
  rdfs:comment "Courtesies extended to the staff of the entity providing service.";
  dcterms:description "Courtesies extended to the staff of the entity providing service.".

cs:EncounterSpecialCourtesy\#VIP rdfs:subClassOf cs:EncounterSpecialCourtesy;
  rdfs:label "very important person";
  dc:title "very important person";
  rdfs:comment "very important person";
  dcterms:description "very important person".

# - vs:v3-EntityClass ----------------------------------------------------------

vs:v3-EntityClass a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EntityClass";
  dc:title "v3 Code System EntityClass";
  rdfs:comment " Classifies the Entity class and all of its subclasses.  The terminology is hierarchical.  At the top is this  HL7-defined domain of high-level categories (such as represented by the Entity subclasses). Each of these terms must be harmonized and is specializable. The value sets beneath are drawn from multiple, frequently external, domains that reflect much more fine-grained typing.";
  dcterms:description " Classifies the Entity class and all of its subclasses.  The terminology is hierarchical.  At the top is this  HL7-defined domain of high-level categories (such as represented by the Entity subclasses). Each of these terms must be harmonized and is specializable. The value sets beneath are drawn from multiple, frequently external, domains that reflect much more fine-grained typing.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EntityClass.

cs:EntityClass.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EntityClass";
  dc:title "v3 Code System EntityClass";
  rdfs:comment " Classifies the Entity class and all of its subclasses.  The terminology is hierarchical.  At the top is this  HL7-defined domain of high-level categories (such as represented by the Entity subclasses). Each of these terms must be harmonized and is specializable. The code systems beneath are drawn from multiple, frequently external, domains that reflect much more fine-grained typing.";
  dcterms:description " Classifies the Entity class and all of its subclasses.  The terminology is hierarchical.  At the top is this  HL7-defined domain of high-level categories (such as represented by the Entity subclasses). Each of these terms must be harmonized and is specializable. The code systems beneath are drawn from multiple, frequently external, domains that reflect much more fine-grained typing.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EntityClass a fhir:Concept.

cs:EntityClass\#ENT rdfs:subClassOf cs:EntityClass;
  rdfs:label "entity";
  dc:title "entity";
  rdfs:comment "Corresponds to the Entity class";
  dcterms:description "Corresponds to the Entity class".

cs:EntityClass\#HCE rdfs:subClassOf cs:EntityClass\#ENT;
  rdfs:label "health chart entity";
  dc:title "health chart entity";
  rdfs:comment "A health chart included to serve as a document receiving entity in the management of medical records.";
  dcterms:description "A health chart included to serve as a document receiving entity in the management of medical records.".

cs:EntityClass\#LIV rdfs:subClassOf cs:EntityClass\#ENT;
  rdfs:label "living subject";
  dc:title "living subject";
  rdfs:comment "Anything that essentially has the property of life, independent of current state (a dead human corpse is still essentially a living subject).";
  dcterms:description "Anything that essentially has the property of life, independent of current state (a dead human corpse is still essentially a living subject).".

cs:EntityClass\#NLIV rdfs:subClassOf cs:EntityClass\#LIV;
  rdfs:label "non-person living subject";
  dc:title "non-person living subject";
  rdfs:comment "A subtype of living subject that includes all living things except the species Homo Sapiens.";
  dcterms:description "A subtype of living subject that includes all living things except the species Homo Sapiens.".

cs:EntityClass\#ANM rdfs:subClassOf cs:EntityClass\#NLIV;
  rdfs:label "animal";
  dc:title "animal";
  rdfs:comment "A living subject from the animal kingdom.";
  dcterms:description "A living subject from the animal kingdom.".

cs:EntityClass\#MIC rdfs:subClassOf cs:EntityClass\#NLIV;
  rdfs:label "microorganism";
  dc:title "microorganism";
  rdfs:comment "All single celled living organisms including protozoa, bacteria, yeast, viruses, etc.";
  dcterms:description "All single celled living organisms including protozoa, bacteria, yeast, viruses, etc.".

cs:EntityClass\#PLNT rdfs:subClassOf cs:EntityClass\#NLIV;
  rdfs:label "plant";
  dc:title "plant";
  rdfs:comment "A living subject from the order of plants.";
  dcterms:description "A living subject from the order of plants.".

cs:EntityClass\#PSN rdfs:subClassOf cs:EntityClass\#LIV;
  rdfs:label "person";
  dc:title "person";
  rdfs:comment "A living subject of the species homo sapiens.";
  dcterms:description "A living subject of the species homo sapiens.".

cs:EntityClass\#MAT rdfs:subClassOf cs:EntityClass\#ENT;
  rdfs:label "material";
  dc:title "material";
  rdfs:comment "Any thing that has extension in space and mass, may be of living or non-living origin.";
  dcterms:description "Any thing that has extension in space and mass, may be of living or non-living origin.".

cs:EntityClass\#CHEM rdfs:subClassOf cs:EntityClass\#MAT;
  rdfs:label "chemical substance";
  dc:title "chemical substance";
  rdfs:comment "A substance that is fully defined by an organic or inorganic chemical formula, includes mixtures of other chemical substances. Refine using, e.g., IUPAC codes.";
  dcterms:description "A substance that is fully defined by an organic or inorganic chemical formula, includes mixtures of other chemical substances. Refine using, e.g., IUPAC codes.".

cs:EntityClass\#FOOD rdfs:subClassOf cs:EntityClass\#MAT;
  rdfs:label "food";
  dc:title "food";
  rdfs:comment "Naturally occurring, processed or manufactured entities that are primarily used as food for humans and animals.";
  dcterms:description "Naturally occurring, processed or manufactured entities that are primarily used as food for humans and animals.".

cs:EntityClass\#MMAT rdfs:subClassOf cs:EntityClass\#MAT;
  rdfs:label "manufactured material";
  dc:title "manufactured material";
  rdfs:comment "Corresponds to the ManufacturedMaterial class";
  dcterms:description "Corresponds to the ManufacturedMaterial class".

cs:EntityClass\#CONT rdfs:subClassOf cs:EntityClass\#MMAT;
  rdfs:label "container";
  dc:title "container";
  rdfs:comment "A container of other entities.";
  dcterms:description "A container of other entities.".

cs:EntityClass\#HOLD rdfs:subClassOf cs:EntityClass\#CONT;
  rdfs:label "holder";
  dc:title "holder";
  rdfs:comment "A type of container that can hold other containers or other holders.";
  dcterms:description "A type of container that can hold other containers or other holders.".

cs:EntityClass\#DEV rdfs:subClassOf cs:EntityClass\#MMAT;
  rdfs:label "device";
  dc:title "device";
  rdfs:comment "A subtype of ManufacturedMaterial used in an activity, without being substantially changed through that activity.  The kind of device is identified by the code attribute inherited from Entity.\r\n\n                        \n                           Usage: This includes durable (reusable) medical equipment as well as disposable equipment.";
  dcterms:description "A subtype of ManufacturedMaterial used in an activity, without being substantially changed through that activity.  The kind of device is identified by the code attribute inherited from Entity.\r\n\n                        \n                           Usage: This includes durable (reusable) medical equipment as well as disposable equipment.".

cs:EntityClass\#CER rdfs:subClassOf cs:EntityClass\#DEV;
  rdfs:label "certificate representation";
  dc:title "certificate representation";
  rdfs:comment "A physical artifact that stores information about the granting of authorization.";
  dcterms:description "A physical artifact that stores information about the granting of authorization.".

cs:EntityClass\#MODDV rdfs:subClassOf cs:EntityClass\#DEV;
  rdfs:label "imaging modality";
  dc:title "imaging modality";
  rdfs:comment "Class to contain unique attributes of diagnostic imaging equipment.";
  dcterms:description "Class to contain unique attributes of diagnostic imaging equipment.".

cs:EntityClass\#ORG rdfs:subClassOf cs:EntityClass\#ENT;
  rdfs:label "organization";
  dc:title "organization";
  rdfs:comment "A social or legal structure formed by human beings.";
  dcterms:description "A social or legal structure formed by human beings.".

cs:EntityClass\#PUB rdfs:subClassOf cs:EntityClass\#ORG;
  rdfs:label "public institution";
  dc:title "public institution";
  rdfs:comment "An agency of the people of a state often assuming some authority over a certain matter. Includes government, governmental agencies, associations.";
  dcterms:description "An agency of the people of a state often assuming some authority over a certain matter. Includes government, governmental agencies, associations.".

cs:EntityClass\#STATE rdfs:subClassOf cs:EntityClass\#ORG;
  rdfs:label "state";
  dc:title "state";
  rdfs:comment "A politically organized body of people bonded by territory, culture, or ethnicity, having sovereignty (to a certain extent) granted by other states (enclosing or neighboring states). This includes countries (nations), provinces (e.g., one of the United States of America or a French departement), counties or municipalities. Refine using, e.g., ISO country codes, FIPS-PUB state codes, etc.";
  dcterms:description "A politically organized body of people bonded by territory, culture, or ethnicity, having sovereignty (to a certain extent) granted by other states (enclosing or neighboring states). This includes countries (nations), provinces (e.g., one of the United States of America or a French departement), counties or municipalities. Refine using, e.g., ISO country codes, FIPS-PUB state codes, etc.".

cs:EntityClass\#NAT rdfs:subClassOf cs:EntityClass\#STATE;
  rdfs:label "Nation";
  dc:title "Nation";
  rdfs:comment "A politically organized body of people bonded by territory and known as a nation.";
  dcterms:description "A politically organized body of people bonded by territory and known as a nation.".

cs:EntityClass\#PLC rdfs:subClassOf cs:EntityClass\#ENT;
  rdfs:label "place";
  dc:title "place";
  rdfs:comment "A physical place or site with its containing structure. May be natural or man-made. The geographic position of a place may or may not be constant.";
  dcterms:description "A physical place or site with its containing structure. May be natural or man-made. The geographic position of a place may or may not be constant.".

cs:EntityClass\#CITY rdfs:subClassOf cs:EntityClass\#PLC;
  rdfs:label "city or town";
  dc:title "city or town";
  rdfs:comment "The territory of a city, town or other municipality.";
  dcterms:description "The territory of a city, town or other municipality.".

cs:EntityClass\#COUNTRY rdfs:subClassOf cs:EntityClass\#PLC;
  rdfs:label "country";
  dc:title "country";
  rdfs:comment "The territory of a sovereign nation.";
  dcterms:description "The territory of a sovereign nation.".

cs:EntityClass\#COUNTY rdfs:subClassOf cs:EntityClass\#PLC;
  rdfs:label "county or parish";
  dc:title "county or parish";
  rdfs:comment "The territory of a county, parish or other division of a state or province.";
  dcterms:description "The territory of a county, parish or other division of a state or province.".

cs:EntityClass\#PROVINCE rdfs:subClassOf cs:EntityClass\#PLC;
  rdfs:label "state or province";
  dc:title "state or province";
  rdfs:comment "The territory of a state, province, department or other division of a sovereign country.";
  dcterms:description "The territory of a state, province, department or other division of a sovereign country.".

cs:EntityClass\#RGRP rdfs:subClassOf cs:EntityClass\#ENT;
  rdfs:label "group";
  dc:title "group";
  rdfs:comment "A grouping of resources (personnel, material, or places) to be used for scheduling purposes.  May be a pool of like-type resources, a team, or combination of personnel, material and places.";
  dcterms:description "A grouping of resources (personnel, material, or places) to be used for scheduling purposes.  May be a pool of like-type resources, a team, or combination of personnel, material and places.".

# - vs:v3-EntityCode -----------------------------------------------------------

vs:v3-EntityCode a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EntityCode";
  dc:title "v3 Code System EntityCode";
  rdfs:comment "  OpenIssue:\r\nMissing description.";
  dcterms:description "  OpenIssue:\r\nMissing description.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EntityCode.

cs:EntityCode.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EntityCode";
  dc:title "v3 Code System EntityCode";
  rdfs:comment "  OpenIssue:\r\nMissing description.";
  dcterms:description "  OpenIssue:\r\nMissing description.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EntityCode a fhir:Concept.

cs:EntityCode\#%5fMaterialEntityClassType rdfs:subClassOf cs:EntityCode;
  rdfs:label "MaterialEntityClassType";
  dc:title "MaterialEntityClassType";
  rdfs:comment "Types of Material for EntityClass \"MAT\"";
  dcterms:description "Types of Material for EntityClass \"MAT\"".

cs:EntityCode\#%5fContainerEntityType rdfs:subClassOf cs:EntityCode\#%5fMaterialEntityClassType;
  rdfs:label "ContainerEntityType";
  dc:title "ContainerEntityType";
  rdfs:comment "Material intended to hold another material for purpose of storage or transport.";
  dcterms:description "Material intended to hold another material for purpose of storage or transport.".

cs:EntityCode\#PKG rdfs:subClassOf cs:EntityCode\#%5fContainerEntityType;
  rdfs:label "Package";
  dc:title "Package";
  rdfs:comment "A material intended to hold other materials for purposes of storage or transportation";
  dcterms:description "A material intended to hold other materials for purposes of storage or transportation".

cs:EntityCode\#%5fNonRigidContainerEntityType rdfs:subClassOf cs:EntityCode\#PKG;
  rdfs:label "NonRigidContainerEntityType";
  dc:title "NonRigidContainerEntityType";
  rdfs:comment "A container having dimensions that adjust somewhat based on the amount and shape of the material placed within it.";
  dcterms:description "A container having dimensions that adjust somewhat based on the amount and shape of the material placed within it.".

cs:EntityCode\#BAG rdfs:subClassOf cs:EntityCode\#%5fNonRigidContainerEntityType;
  rdfs:label "Bag";
  dc:title "Bag";
  rdfs:comment "A pouched or pendulous container.";
  dcterms:description "A pouched or pendulous container.".

cs:EntityCode\#PACKT rdfs:subClassOf cs:EntityCode\#%5fNonRigidContainerEntityType;
  rdfs:label "Packet";
  dc:title "Packet";
  rdfs:comment "A paper";
  dcterms:description "A paper".

cs:EntityCode\#PCH rdfs:subClassOf cs:EntityCode\#%5fNonRigidContainerEntityType;
  rdfs:label "Pouch";
  dc:title "Pouch";
  rdfs:comment "A small bag or container made of a soft material.";
  dcterms:description "A small bag or container made of a soft material.".

cs:EntityCode\#SACH rdfs:subClassOf cs:EntityCode\#%5fNonRigidContainerEntityType;
  rdfs:label "Sachet";
  dc:title "Sachet";
  rdfs:comment "A small bag or packet containing a small portion of a substance.";
  dcterms:description "A small bag or packet containing a small portion of a substance.".

cs:EntityCode\#%5fRigidContainerEntityType rdfs:subClassOf cs:EntityCode\#PKG;
  rdfs:label "RigidContainerEntityType";
  dc:title "RigidContainerEntityType";
  rdfs:comment "A container having a fixed and inflexible dimensions and volume";
  dcterms:description "A container having a fixed and inflexible dimensions and volume".

cs:EntityCode\#%5fIndividualPackageEntityType rdfs:subClassOf cs:EntityCode\#%5fRigidContainerEntityType;
  rdfs:label "IndividualPackageEntityType";
  dc:title "IndividualPackageEntityType";
  rdfs:comment "Container intended to contain sufficient material for only one use.";
  dcterms:description "Container intended to contain sufficient material for only one use.".

cs:EntityCode\#AMP rdfs:subClassOf cs:EntityCode\#%5fIndividualPackageEntityType;
  rdfs:label "Ampule";
  dc:title "Ampule";
  rdfs:comment "A small sealed glass container that holds a measured amount of a medicinal substance.";
  dcterms:description "A small sealed glass container that holds a measured amount of a medicinal substance.".

cs:EntityCode\#MINIM rdfs:subClassOf cs:EntityCode\#%5fIndividualPackageEntityType;
  rdfs:label "Minim";
  dc:title "Minim";
  rdfs:comment "Individually dosed ophthalmic solution.  One time eye dropper dispenser.";
  dcterms:description "Individually dosed ophthalmic solution.  One time eye dropper dispenser.".

cs:EntityCode\#NEBAMP rdfs:subClassOf cs:EntityCode\#%5fIndividualPackageEntityType;
  rdfs:label "Nebuamp";
  dc:title "Nebuamp";
  rdfs:comment "Individually dosed inhalation solution.";
  dcterms:description "Individually dosed inhalation solution.".

cs:EntityCode\#OVUL rdfs:subClassOf cs:EntityCode\#%5fIndividualPackageEntityType;
  rdfs:label "Ovule";
  dc:title "Ovule";
  rdfs:comment "A container either glass or plastic and a narrow neck, for storing liquid.";
  dcterms:description "A container either glass or plastic and a narrow neck, for storing liquid.".

cs:EntityCode\#%5fMultiUseContainerEntityType rdfs:subClassOf cs:EntityCode\#%5fRigidContainerEntityType;
  rdfs:label "MultiUseContainerEntityType";
  dc:title "MultiUseContainerEntityType";
  rdfs:comment "A container intended to contain sufficient material for more than one use.  (I.e. Material is intended to be removed from the container at more than one discrete time period.)";
  dcterms:description "A container intended to contain sufficient material for more than one use.  (I.e. Material is intended to be removed from the container at more than one discrete time period.)".

cs:EntityCode\#BOT rdfs:subClassOf cs:EntityCode\#%5fMultiUseContainerEntityType;
  rdfs:label "Bottle";
  dc:title "Bottle";
  rdfs:comment "A container, typically rounded, either glass or plastic with a narrow neck and capable of storing liquid.";
  dcterms:description "A container, typically rounded, either glass or plastic with a narrow neck and capable of storing liquid.".

cs:EntityCode\#BOTA rdfs:subClassOf cs:EntityCode\#BOT;
  rdfs:label "Amber Bottle";
  dc:title "Amber Bottle";
  rdfs:comment "A bottle of yellow to brown color.  Used to store light-sensitive materials";
  dcterms:description "A bottle of yellow to brown color.  Used to store light-sensitive materials".

cs:EntityCode\#BOTD rdfs:subClassOf cs:EntityCode\#BOT;
  rdfs:label "Dropper Bottle";
  dc:title "Dropper Bottle";
  rdfs:comment "A bottle with a cap designed to release the contained liquid in droplets of a specific size.";
  dcterms:description "A bottle with a cap designed to release the contained liquid in droplets of a specific size.".

cs:EntityCode\#BOTG rdfs:subClassOf cs:EntityCode\#BOT;
  rdfs:label "Glass Bottle";
  dc:title "Glass Bottle";
  rdfs:comment "A bottle made of glass";
  dcterms:description "A bottle made of glass".

cs:EntityCode\#BOTP rdfs:subClassOf cs:EntityCode\#BOT;
  rdfs:label "Plastic Bottle";
  dc:title "Plastic Bottle";
  rdfs:comment "A bottle made of plastic";
  dcterms:description "A bottle made of plastic".

cs:EntityCode\#BOTPLY rdfs:subClassOf cs:EntityCode\#BOTP;
  rdfs:label "Polyethylene Bottle";
  dc:title "Polyethylene Bottle";
  rdfs:comment "A bottle made of polyethylene";
  dcterms:description "A bottle made of polyethylene".

cs:EntityCode\#BOX rdfs:subClassOf cs:EntityCode\#%5fMultiUseContainerEntityType;
  rdfs:label "Box";
  dc:title "Box";
  rdfs:comment "A 6-sided container commonly made from paper or cardboard used for solid forms.";
  dcterms:description "A 6-sided container commonly made from paper or cardboard used for solid forms.".

cs:EntityCode\#CAN rdfs:subClassOf cs:EntityCode\#%5fMultiUseContainerEntityType;
  rdfs:label "Can";
  dc:title "Can";
  rdfs:comment "A metal container in which a material is hermetically sealed to enable storage over long periods.";
  dcterms:description "A metal container in which a material is hermetically sealed to enable storage over long periods.".

cs:EntityCode\#CART rdfs:subClassOf cs:EntityCode\#%5fMultiUseContainerEntityType;
  rdfs:label "Cartridge";
  dc:title "Cartridge";
  rdfs:comment "A sealed container of liquid or powder intended to be loaded into a device.";
  dcterms:description "A sealed container of liquid or powder intended to be loaded into a device.".

cs:EntityCode\#CNSTR rdfs:subClassOf cs:EntityCode\#%5fMultiUseContainerEntityType;
  rdfs:label "Canister";
  dc:title "Canister";
  rdfs:comment "A pressurized metal container holding a substance released as a spray or aerosol.";
  dcterms:description "A pressurized metal container holding a substance released as a spray or aerosol.".

cs:EntityCode\#JAR rdfs:subClassOf cs:EntityCode\#%5fMultiUseContainerEntityType;
  rdfs:label "Jar";
  dc:title "Jar";
  rdfs:comment "A container of glass, earthenware, plastic, etc.  Top of the container has a diameter of similar size to the diameter of the container as a whole";
  dcterms:description "A container of glass, earthenware, plastic, etc.  Top of the container has a diameter of similar size to the diameter of the container as a whole".

cs:EntityCode\#JUG rdfs:subClassOf cs:EntityCode\#%5fMultiUseContainerEntityType;
  rdfs:label "Jug";
  dc:title "Jug";
  rdfs:comment "A deep vessel  for holding liquids, with a handle and often with a spout or lip shape for pouring.";
  dcterms:description "A deep vessel  for holding liquids, with a handle and often with a spout or lip shape for pouring.".

cs:EntityCode\#TIN rdfs:subClassOf cs:EntityCode\#%5fMultiUseContainerEntityType;
  rdfs:label "Tin";
  dc:title "Tin";
  rdfs:comment "A lidded container made of thin sheet metal.";
  dcterms:description "A lidded container made of thin sheet metal.".

cs:EntityCode\#TUB rdfs:subClassOf cs:EntityCode\#%5fMultiUseContainerEntityType;
  rdfs:label "Tub";
  dc:title "Tub";
  rdfs:comment "An open flat bottomed round container.";
  dcterms:description "An open flat bottomed round container.".

cs:EntityCode\#TUBE rdfs:subClassOf cs:EntityCode\#%5fMultiUseContainerEntityType;
  rdfs:label "Tube";
  dc:title "Tube";
  rdfs:comment "A long hollow rigid or flexible cylinder.  Material is extruded by squeezing the container.";
  dcterms:description "A long hollow rigid or flexible cylinder.  Material is extruded by squeezing the container.".

cs:EntityCode\#VIAL rdfs:subClassOf cs:EntityCode\#%5fMultiUseContainerEntityType;
  rdfs:label "Vial";
  dc:title "Vial";
  rdfs:comment "A small cylindrical glass for holding liquid medicines.";
  dcterms:description "A small cylindrical glass for holding liquid medicines.".

cs:EntityCode\#BLSTRPK rdfs:subClassOf cs:EntityCode\#%5fRigidContainerEntityType;
  rdfs:label "Blister Pack";
  dc:title "Blister Pack";
  rdfs:comment "A bubblepack.  Medications sealed individually, separated into doses.";
  dcterms:description "A bubblepack.  Medications sealed individually, separated into doses.".

cs:EntityCode\#CARD rdfs:subClassOf cs:EntityCode\#BLSTRPK;
  rdfs:label "Card";
  dc:title "Card";
  rdfs:comment "A bubble pack card.  Multiple individual/separated doses.";
  dcterms:description "A bubble pack card.  Multiple individual/separated doses.".

cs:EntityCode\#COMPPKG rdfs:subClassOf cs:EntityCode\#PKG;
  rdfs:label "Compliance Package";
  dc:title "Compliance Package";
  rdfs:comment "A container intended to contain sufficient material for more than one use, but grouped or organized to provide individual access to sufficient material for a single use.  Often used to ensure that the proper type and amount of material is consumed/expended for each use.";
  dcterms:description "A container intended to contain sufficient material for more than one use, but grouped or organized to provide individual access to sufficient material for a single use.  Often used to ensure that the proper type and amount of material is consumed/expended for each use.".

cs:EntityCode\#DIALPK rdfs:subClassOf cs:EntityCode\#COMPPKG;
  rdfs:label "Dial Pack";
  dc:title "Dial Pack";
  rdfs:comment "Rotatable dispenser.  Eg. Birth control package.";
  dcterms:description "Rotatable dispenser.  Eg. Birth control package.".

cs:EntityCode\#DISK rdfs:subClassOf cs:EntityCode\#COMPPKG;
  rdfs:label "Disk";
  dc:title "Disk";
  rdfs:comment "Object that is thin, flat, and circular.  Doses of medication often contained in bubbles on the disk.";
  dcterms:description "Object that is thin, flat, and circular.  Doses of medication often contained in bubbles on the disk.".

cs:EntityCode\#DOSET rdfs:subClassOf cs:EntityCode\#COMPPKG;
  rdfs:label "Dosette";
  dc:title "Dosette";
  rdfs:comment "Special packaging that will help patients take their medications on a regular basis.";
  dcterms:description "Special packaging that will help patients take their medications on a regular basis.".

cs:EntityCode\#STRIP rdfs:subClassOf cs:EntityCode\#COMPPKG;
  rdfs:label "Strip";
  dc:title "Strip";
  rdfs:comment "A continuous strip of plastic sectioned into individual pouches, each one containing the quantity of 1 or more medications intended to be administered at a specific time";
  dcterms:description "A continuous strip of plastic sectioned into individual pouches, each one containing the quantity of 1 or more medications intended to be administered at a specific time".

cs:EntityCode\#KIT rdfs:subClassOf cs:EntityCode\#PKG;
  rdfs:label "Kit";
  dc:title "Kit";
  rdfs:comment "A container for a diverse collection of products intended to be used together for some purpose (e.g. Medicinal kits often contain a syringe, a needle and the injectable medication).";
  dcterms:description "A container for a diverse collection of products intended to be used together for some purpose (e.g. Medicinal kits often contain a syringe, a needle and the injectable medication).".

cs:EntityCode\#SYSTM rdfs:subClassOf cs:EntityCode\#KIT;
  rdfs:label "System";
  dc:title "System";
  rdfs:comment "A kit in which the components are interconnected.";
  dcterms:description "A kit in which the components are interconnected.".

cs:EntityCode\#%5fMedicalDevice rdfs:subClassOf cs:EntityCode\#%5fMaterialEntityClassType;
  rdfs:label "MedicalDevice";
  dc:title "MedicalDevice";
  rdfs:comment "A device with direct or indirect therapeutic purpose.  Values for EntityCode when EntityClass = \"DEV\"";
  dcterms:description "A device with direct or indirect therapeutic purpose.  Values for EntityCode when EntityClass = \"DEV\"".

cs:EntityCode\#%5fAccessMedicalDevice rdfs:subClassOf cs:EntityCode\#%5fMedicalDevice;
  rdfs:label "AccessMedicalDevice";
  dc:title "AccessMedicalDevice";
  rdfs:comment "A device used to allow access to a part of a body";
  dcterms:description "A device used to allow access to a part of a body".

cs:EntityCode\#LINE rdfs:subClassOf cs:EntityCode\#%5fAccessMedicalDevice;
  rdfs:label "Line";
  dc:title "Line";
  rdfs:comment "A hollow tube used to administer a substance into a vein, artery or body cavity";
  dcterms:description "A hollow tube used to administer a substance into a vein, artery or body cavity".

cs:EntityCode\#IALINE rdfs:subClassOf cs:EntityCode\#LINE;
  rdfs:label "Intra-arterial Line";
  dc:title "Intra-arterial Line";
  rdfs:comment "A line used to administer a substance into an artery";
  dcterms:description "A line used to administer a substance into an artery".

cs:EntityCode\#IVLINE rdfs:subClassOf cs:EntityCode\#LINE;
  rdfs:label "Intraveneous Line";
  dc:title "Intraveneous Line";
  rdfs:comment "A line used to administer a substance into a vein";
  dcterms:description "A line used to administer a substance into a vein".

cs:EntityCode\#%5fAdministrationMedicalDevice rdfs:subClassOf cs:EntityCode\#%5fMedicalDevice;
  rdfs:label "AdministrationMedicalDevice";
  dc:title "AdministrationMedicalDevice";
  rdfs:comment "A device intended to administer a substance to a subject";
  dcterms:description "A device intended to administer a substance to a subject".

cs:EntityCode\#%5fInjectionMedicalDevice rdfs:subClassOf cs:EntityCode\#%5fAdministrationMedicalDevice;
  rdfs:label "InjectionMedicalDevice";
  dc:title "InjectionMedicalDevice";
  rdfs:comment "A device intended to administer liquid into a subject via a";
  dcterms:description "A device intended to administer liquid into a subject via a".

cs:EntityCode\#AINJ rdfs:subClassOf cs:EntityCode\#%5fInjectionMedicalDevice;
  rdfs:label "AutoInjector";
  dc:title "AutoInjector";
  rdfs:comment "Automatically injects medication.";
  dcterms:description "Automatically injects medication.".

cs:EntityCode\#PEN rdfs:subClassOf cs:EntityCode\#%5fInjectionMedicalDevice;
  rdfs:label "Pen";
  dc:title "Pen";
  rdfs:comment "A device which can contain a cartridge for injection purposes.  Eg. Insulin pen.";
  dcterms:description "A device which can contain a cartridge for injection purposes.  Eg. Insulin pen.".

cs:EntityCode\#SYR rdfs:subClassOf cs:EntityCode\#%5fInjectionMedicalDevice;
  rdfs:label "Syringe";
  dc:title "Syringe";
  rdfs:comment "A barrel with a plunger.";
  dcterms:description "A barrel with a plunger.".

cs:EntityCode\#APLCTR rdfs:subClassOf cs:EntityCode\#%5fAdministrationMedicalDevice;
  rdfs:label "Applicator";
  dc:title "Applicator";
  rdfs:comment "A device used to apply a liquid or powder to a surface.";
  dcterms:description "A device used to apply a liquid or powder to a surface.".

cs:EntityCode\#INH rdfs:subClassOf cs:EntityCode\#%5fAdministrationMedicalDevice;
  rdfs:label "Inhaler";
  dc:title "Inhaler";
  rdfs:comment "A small device used for inhaling medicine in the form of a vapour or gas in order to ease a respiratory condition such as asthma or to relieve nasal congestion.";
  dcterms:description "A small device used for inhaling medicine in the form of a vapour or gas in order to ease a respiratory condition such as asthma or to relieve nasal congestion.".

cs:EntityCode\#DSKS rdfs:subClassOf cs:EntityCode\#INH;
  rdfs:label "Diskus";
  dc:title "Diskus";
  rdfs:comment "The device used to inhale the doses of medication contained in the disk form.";
  dcterms:description "The device used to inhale the doses of medication contained in the disk form.".

cs:EntityCode\#DSKUNH rdfs:subClassOf cs:EntityCode\#INH;
  rdfs:label "Diskhaler";
  dc:title "Diskhaler";
  rdfs:comment "The device used to inhale the doses of medication contained in the disk form.";
  dcterms:description "The device used to inhale the doses of medication contained in the disk form.".

cs:EntityCode\#TRBINH rdfs:subClassOf cs:EntityCode\#INH;
  rdfs:label "Turbuhaler";
  dc:title "Turbuhaler";
  rdfs:comment "Asthma medication delivery device.";
  dcterms:description "Asthma medication delivery device.".

cs:EntityCode\#PMP rdfs:subClassOf cs:EntityCode\#%5fAdministrationMedicalDevice;
  rdfs:label "Pump";
  dc:title "Pump";
  rdfs:comment "A device that is used to raise, compress, or transfer liquids or gases and is operated by a piston or similar mechanism.";
  dcterms:description "A device that is used to raise, compress, or transfer liquids or gases and is operated by a piston or similar mechanism.".

cs:EntityCode\#%5fSpecimenAdditiveEntity rdfs:subClassOf cs:EntityCode\#%5fMaterialEntityClassType;
  rdfs:label "SpecimenAdditiveEntity";
  dc:title "SpecimenAdditiveEntity";
  rdfs:comment "Set of codes related to specimen additives";
  dcterms:description "Set of codes related to specimen additives".

cs:EntityCode\#ACDA rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "ACD Solution A";
  dc:title "ACD Solution A";
  rdfs:comment "ACD Solution A of trisodium citrate, 22.0g/L; citric acid, 8.0 g/L; and dextrose 24.5 g/L. Used in Blood banking and histocompatibilty testing";
  dcterms:description "ACD Solution A of trisodium citrate, 22.0g/L; citric acid, 8.0 g/L; and dextrose 24.5 g/L. Used in Blood banking and histocompatibilty testing".

cs:EntityCode\#ACDB rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "ACD Solution B";
  dc:title "ACD Solution B";
  rdfs:comment "ACD Solution B of trisodium citrate, 13.2g/L; citric acid, 4.8 g/L; and dextrose 14.7 g/L. Used in Blood banking and histocompatibilty testing.";
  dcterms:description "ACD Solution B of trisodium citrate, 13.2g/L; citric acid, 4.8 g/L; and dextrose 14.7 g/L. Used in Blood banking and histocompatibilty testing.".

cs:EntityCode\#ACET rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Acetic Acid";
  dc:title "Acetic Acid";
  rdfs:comment "50% V/V acetic acid in water.  Used as  a urine preservative";
  dcterms:description "50% V/V acetic acid in water.  Used as  a urine preservative".

cs:EntityCode\#AMIES rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Amies transport medium";
  dc:title "Amies transport medium";
  rdfs:comment "Sodium Chloride 3.0g, Potassium Chloride 0.2g, Calcium Chloride 0.1g, Magnesium Chloride 0.1g, Monopotassium Phosphate 0.2g, Disodium Phosphate 1.15g, Sodium Thiogly collate 1.0g, Distilled Water 1 liter";
  dcterms:description "Sodium Chloride 3.0g, Potassium Chloride 0.2g, Calcium Chloride 0.1g, Magnesium Chloride 0.1g, Monopotassium Phosphate 0.2g, Disodium Phosphate 1.15g, Sodium Thiogly collate 1.0g, Distilled Water 1 liter".

cs:EntityCode\#BACTM rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Bacterial Transport medium";
  dc:title "Bacterial Transport medium";
  rdfs:comment "Any medium used to maintain bacterial viability (e.g. Stuart's, Cary-Blair, Amies)";
  dcterms:description "Any medium used to maintain bacterial viability (e.g. Stuart's, Cary-Blair, Amies)".

cs:EntityCode\#BF10 rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Buffered 10% formalin";
  dc:title "Buffered 10% formalin";
  rdfs:comment "Formaldehyde 4% w/v; methyl alcohol 1% w/v; phosphate buffering salts. Tissue preservative";
  dcterms:description "Formaldehyde 4% w/v; methyl alcohol 1% w/v; phosphate buffering salts. Tissue preservative".

cs:EntityCode\#BOR rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Boric Acid";
  dc:title "Boric Acid";
  rdfs:comment "Powdered boric acid (usually 10 g) added to 24-hour urine collections as a preservative.";
  dcterms:description "Powdered boric acid (usually 10 g) added to 24-hour urine collections as a preservative.".

cs:EntityCode\#BOUIN rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Bouin's solution";
  dc:title "Bouin's solution";
  rdfs:comment "Picric acid, saturated aqueous solution (750.0 ml), 37-40% formalin (250.0 ml), glacial acetic acid (50.0 ml). Tissue preservative.";
  dcterms:description "Picric acid, saturated aqueous solution (750.0 ml), 37-40% formalin (250.0 ml), glacial acetic acid (50.0 ml). Tissue preservative.".

cs:EntityCode\#BSKM rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Buffered skim milk";
  dc:title "Buffered skim milk";
  rdfs:comment "50% skim milk in 0.01 M phosphate-buffered saline.  Maintain virus viability";
  dcterms:description "50% skim milk in 0.01 M phosphate-buffered saline.  Maintain virus viability".

cs:EntityCode\#C32 rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "3.2% Citrate";
  dc:title "3.2% Citrate";
  rdfs:comment "A 3.2% solution of Sodium Citrate in water.  Used as a blood preservative";
  dcterms:description "A 3.2% solution of Sodium Citrate in water.  Used as a blood preservative".

cs:EntityCode\#C38 rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "3.8% Citrate";
  dc:title "3.8% Citrate";
  rdfs:comment "A 3.8% solution of Sodium Citrate in water. Used as a blood preservative";
  dcterms:description "A 3.8% solution of Sodium Citrate in water. Used as a blood preservative".

cs:EntityCode\#CARS rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Carson's Modified 10% formalin";
  dc:title "Carson's Modified 10% formalin";
  rdfs:comment "A modification of buffered 10% formalin used as a general tissue preservative.";
  dcterms:description "A modification of buffered 10% formalin used as a general tissue preservative.".

cs:EntityCode\#CARY rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Cary Blair Medium";
  dc:title "Cary Blair Medium";
  rdfs:comment "Sodium Thioglycollate 1.5 g, Disodium Hydrogen Phosphate 1.1 g, Sodium Chloride 5.0 g, Calcium Chloride 0.09 g, Agar 5.0 g, per Liter of Water";
  dcterms:description "Sodium Thioglycollate 1.5 g, Disodium Hydrogen Phosphate 1.1 g, Sodium Chloride 5.0 g, Calcium Chloride 0.09 g, Agar 5.0 g, per Liter of Water".

cs:EntityCode\#CHLTM rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Chlamydia transport medium";
  dc:title "Chlamydia transport medium";
  rdfs:comment "Any of a number of non-nutritive buffered media used to maintain Chlamydia viability during transportation to the laboratory";
  dcterms:description "Any of a number of non-nutritive buffered media used to maintain Chlamydia viability during transportation to the laboratory".

cs:EntityCode\#CTAD rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "CTAD";
  dc:title "CTAD";
  rdfs:comment "Buffered tri-sodium citrate solution with theophylline, adenosine and dipyridamole";
  dcterms:description "Buffered tri-sodium citrate solution with theophylline, adenosine and dipyridamole".

cs:EntityCode\#EDTK15 rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Potassium/K EDTA 15%";
  dc:title "Potassium/K EDTA 15%";
  rdfs:comment "Potassium EDTA 15% solution in water";
  dcterms:description "Potassium EDTA 15% solution in water".

cs:EntityCode\#EDTK75 rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Potassium/K EDTA 7.5%";
  dc:title "Potassium/K EDTA 7.5%";
  rdfs:comment "Potassium EDTA 7.5% solution in water";
  dcterms:description "Potassium EDTA 7.5% solution in water".

cs:EntityCode\#EDTN rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Sodium/Na EDTA";
  dc:title "Sodium/Na EDTA";
  rdfs:comment "Sodium fluoride and Disodium EDTA";
  dcterms:description "Sodium fluoride and Disodium EDTA".

cs:EntityCode\#ENT rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Enteric bacteria transport medium";
  dc:title "Enteric bacteria transport medium";
  rdfs:comment "Any of a number of non-nutritive buffered media used to maintain enteric bacterial viability during transportation to the laboratory";
  dcterms:description "Any of a number of non-nutritive buffered media used to maintain enteric bacterial viability during transportation to the laboratory".

cs:EntityCode\#F10 rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "10% Formalin";
  dc:title "10% Formalin";
  rdfs:comment "A 10% v/v solution in water of formalin( a 37% solution of formaldehyde and water).  Used for tissue preservation.";
  dcterms:description "A 10% v/v solution in water of formalin( a 37% solution of formaldehyde and water).  Used for tissue preservation.".

cs:EntityCode\#FDP rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Thrombin NIH; soybean trypsin inhibitor";
  dc:title "Thrombin NIH; soybean trypsin inhibitor";
  rdfs:comment "Thrombin plus soybean trypsin inhibitor.  For use in identifying fibrn degredation products.";
  dcterms:description "Thrombin plus soybean trypsin inhibitor.  For use in identifying fibrn degredation products.".

cs:EntityCode\#FL10 rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Sodium Fluoride, 10mg";
  dc:title "Sodium Fluoride, 10mg";
  rdfs:comment "Sodium fluoride, 10mg added as a urine preservative.";
  dcterms:description "Sodium fluoride, 10mg added as a urine preservative.".

cs:EntityCode\#FL100 rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Sodium Fluoride, 100mg";
  dc:title "Sodium Fluoride, 100mg";
  rdfs:comment "Sodium fluoride, 100mg added as a urine preservative.";
  dcterms:description "Sodium fluoride, 100mg added as a urine preservative.".

cs:EntityCode\#HCL6 rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "6N HCL";
  dc:title "6N HCL";
  rdfs:comment "A solution of HCl containing 6moles of hydrogen ion/L. Used as a Urine Preservative.";
  dcterms:description "A solution of HCl containing 6moles of hydrogen ion/L. Used as a Urine Preservative.".

cs:EntityCode\#HEPA rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Ammonium heparin";
  dc:title "Ammonium heparin";
  rdfs:comment "Ammonium heparin";
  dcterms:description "Ammonium heparin".

cs:EntityCode\#HEPL rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Lithium/Li Heparin";
  dc:title "Lithium/Li Heparin";
  rdfs:comment "Lithium heparin salt";
  dcterms:description "Lithium heparin salt".

cs:EntityCode\#HEPN rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Sodium/Na Heparin";
  dc:title "Sodium/Na Heparin";
  rdfs:comment "Sodium heparin salt";
  dcterms:description "Sodium heparin salt".

cs:EntityCode\#HNO3 rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Nitric Acid";
  dc:title "Nitric Acid";
  rdfs:comment "6N Nitric acid used to preserve urine for heavy metal analysis.";
  dcterms:description "6N Nitric acid used to preserve urine for heavy metal analysis.".

cs:EntityCode\#JKM rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Jones Kendrick Medium";
  dc:title "Jones Kendrick Medium";
  rdfs:comment "A transport medium formulated to maintain Bordetella pertussis viability.";
  dcterms:description "A transport medium formulated to maintain Bordetella pertussis viability.".

cs:EntityCode\#KARN rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Karnovsky's fixative";
  dc:title "Karnovsky's fixative";
  rdfs:comment "5% Glutaraldehyde, 4% Formaldehyde in 0.08M buffer. Tissue preservation";
  dcterms:description "5% Glutaraldehyde, 4% Formaldehyde in 0.08M buffer. Tissue preservation".

cs:EntityCode\#KOX rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Potassium Oxalate";
  dc:title "Potassium Oxalate";
  rdfs:comment "Potassium oxalate and sodium fluoride in a 1.25:1 ratio";
  dcterms:description "Potassium oxalate and sodium fluoride in a 1.25:1 ratio".

cs:EntityCode\#LIA rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Lithium iodoacetate";
  dc:title "Lithium iodoacetate";
  rdfs:comment "Iodoacetate lithium salt";
  dcterms:description "Iodoacetate lithium salt".

cs:EntityCode\#M4 rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "M4";
  dc:title "M4";
  rdfs:comment "Modified Hank's balanced salt solution supplemented with bovine serum albumin, gelatin, sucrose and glutamic acid. It is buffered to pH 7.3+ or - 0.2 with HEPES buffer. Phenol red is used to indicate pH. Vancomycin, Amphotericin B and Colistin are used to";
  dcterms:description "Modified Hank's balanced salt solution supplemented with bovine serum albumin, gelatin, sucrose and glutamic acid. It is buffered to pH 7.3+ or - 0.2 with HEPES buffer. Phenol red is used to indicate pH. Vancomycin, Amphotericin B and Colistin are used to".

cs:EntityCode\#M4RT rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "M4-RT";
  dc:title "M4-RT";
  rdfs:comment "Modified Hank's balanced salt solution supplemented with bovine serum albumin, gelatin, sucrose and glutamic acid. It is buffered to pH 7.3+ or - 0.2 with Hepes buffer. Phenol red is used to indicate pH. Gentamicin and amphotericin B are used to inhibit c";
  dcterms:description "Modified Hank's balanced salt solution supplemented with bovine serum albumin, gelatin, sucrose and glutamic acid. It is buffered to pH 7.3+ or - 0.2 with Hepes buffer. Phenol red is used to indicate pH. Gentamicin and amphotericin B are used to inhibit c".

cs:EntityCode\#M5 rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "M5";
  dc:title "M5";
  rdfs:comment "Modified Hank's balanced salt solution supplemented with protein stabilizers, sucrose and glutamic acid. It is buffered to pH 7.3+ or - 0.2 with Hepes buffer. Phenol red is used to indicate pH. Vancomycin, Amphotericin B and Colistin are used to inhibit c";
  dcterms:description "Modified Hank's balanced salt solution supplemented with protein stabilizers, sucrose and glutamic acid. It is buffered to pH 7.3+ or - 0.2 with Hepes buffer. Phenol red is used to indicate pH. Vancomycin, Amphotericin B and Colistin are used to inhibit c".

cs:EntityCode\#MICHTM rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Michel's transport medium";
  dc:title "Michel's transport medium";
  rdfs:comment "1M potassium citrate, pH 7.0 2.5 ml, 0.1M magnesium sulfate 5.0 ml, 0.1M N-ethyl malemide  5.0 ml, dH2O 87.5 ml, ammonium sulfate 55gm. Preserve antigens for Immunofluorescence procedures";
  dcterms:description "1M potassium citrate, pH 7.0 2.5 ml, 0.1M magnesium sulfate 5.0 ml, 0.1M N-ethyl malemide  5.0 ml, dH2O 87.5 ml, ammonium sulfate 55gm. Preserve antigens for Immunofluorescence procedures".

cs:EntityCode\#MMDTM rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "MMD transport medium";
  dc:title "MMD transport medium";
  rdfs:comment "A buffered medium with ammonium sulfate added to preserve antigens for Immunofluorescence procedures";
  dcterms:description "A buffered medium with ammonium sulfate added to preserve antigens for Immunofluorescence procedures".

cs:EntityCode\#NAF rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Sodium Fluoride";
  dc:title "Sodium Fluoride";
  rdfs:comment "Sodium fluoride";
  dcterms:description "Sodium fluoride".

cs:EntityCode\#NONE rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "None";
  dc:title "None";
  rdfs:comment "No additive. Specifically identifes the specimen as having no additives.";
  dcterms:description "No additive. Specifically identifes the specimen as having no additives.".

cs:EntityCode\#PAGE rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Page's Saline";
  dc:title "Page's Saline";
  rdfs:comment "0.12 g NaCl, 0.004 g MgSO, 0.004 g, CaCl, 0.142 g Na2HPO4 and 0.136 g KH2PO4 per liter of distilled water. Maintain Acanthaoemba viability.";
  dcterms:description "0.12 g NaCl, 0.004 g MgSO, 0.004 g, CaCl, 0.142 g Na2HPO4 and 0.136 g KH2PO4 per liter of distilled water. Maintain Acanthaoemba viability.".

cs:EntityCode\#PHENOL rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Phenol";
  dc:title "Phenol";
  rdfs:comment "Phenol. Urine preservative";
  dcterms:description "Phenol. Urine preservative".

cs:EntityCode\#PVA rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Polyvinylalcohol";
  dc:title "Polyvinylalcohol";
  rdfs:comment "Polyvinyl alcohol";
  dcterms:description "Polyvinyl alcohol".

cs:EntityCode\#RLM rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Reagan Lowe Medium";
  dc:title "Reagan Lowe Medium";
  rdfs:comment "A transport medium formulated to maintain Bordetella pertussis viability.";
  dcterms:description "A transport medium formulated to maintain Bordetella pertussis viability.".

cs:EntityCode\#SILICA rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Siliceous earth";
  dc:title "Siliceous earth";
  rdfs:comment "Diatomaceous earth. For glucose determination blood samples";
  dcterms:description "Diatomaceous earth. For glucose determination blood samples".

cs:EntityCode\#SPS rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Sodium polyanethol sulfonate 0.35% in 0.85% sodium chloride";
  dc:title "Sodium polyanethol sulfonate 0.35% in 0.85% sodium chloride";
  rdfs:comment "Sodium polyanethol sulfonate in saline. Anticomplementary and antiphagocytic properties. Used in blood culture collection.";
  dcterms:description "Sodium polyanethol sulfonate in saline. Anticomplementary and antiphagocytic properties. Used in blood culture collection.".

cs:EntityCode\#SST rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Serum Separator Tube";
  dc:title "Serum Separator Tube";
  rdfs:comment "Polymer separator gel with clot activator";
  dcterms:description "Polymer separator gel with clot activator".

cs:EntityCode\#STUTM rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Stuart transport medium";
  dc:title "Stuart transport medium";
  rdfs:comment "Sodium Glycerophosphate 10.0g, Calcium Chloride 0.1g, Mercaptoacetic Acid 1.0ml, Distilled Water 1 liter";
  dcterms:description "Sodium Glycerophosphate 10.0g, Calcium Chloride 0.1g, Mercaptoacetic Acid 1.0ml, Distilled Water 1 liter".

cs:EntityCode\#THROM rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Thrombin";
  dc:title "Thrombin";
  rdfs:comment "Thrombin. Accelerates clotting.";
  dcterms:description "Thrombin. Accelerates clotting.".

cs:EntityCode\#THYMOL rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Thymol";
  dc:title "Thymol";
  rdfs:comment "2-Isopropyl-5-methyl phenol. A preservative for 24 Hr Urine samples";
  dcterms:description "2-Isopropyl-5-methyl phenol. A preservative for 24 Hr Urine samples".

cs:EntityCode\#THYO rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Thyoglycolate broth";
  dc:title "Thyoglycolate broth";
  rdfs:comment "A nutritive medium with a reducing agent  (sodium thioglycolate) which, due to a chemical reaction, removes oxygen from the broth.";
  dcterms:description "A nutritive medium with a reducing agent  (sodium thioglycolate) which, due to a chemical reaction, removes oxygen from the broth.".

cs:EntityCode\#TOLU rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Toluene";
  dc:title "Toluene";
  rdfs:comment "Also known as Methylbenzene; Toluol; Phenylmethane. A preservative for 24 Hr Urine samples";
  dcterms:description "Also known as Methylbenzene; Toluol; Phenylmethane. A preservative for 24 Hr Urine samples".

cs:EntityCode\#URETM rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Ureaplasma transport medium";
  dc:title "Ureaplasma transport medium";
  rdfs:comment "A buffered salt solution with antifungal agents added for the collection and transport of Ureaplasma specimens.";
  dcterms:description "A buffered salt solution with antifungal agents added for the collection and transport of Ureaplasma specimens.".

cs:EntityCode\#VIRTM rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Viral Transport medium";
  dc:title "Viral Transport medium";
  rdfs:comment "Sucrose 74.6g, Potassium hydrogenphosphate 0.52g, L-glutamic acid 0.72g, Bovine serum albumin 5.0g, Gentamicin 50mg, Potassium dihydrogenphosphate 1.25g, L-15 medium 9.9L, Water to 10L. Maintain Virus viability.";
  dcterms:description "Sucrose 74.6g, Potassium hydrogenphosphate 0.52g, L-glutamic acid 0.72g, Bovine serum albumin 5.0g, Gentamicin 50mg, Potassium dihydrogenphosphate 1.25g, L-15 medium 9.9L, Water to 10L. Maintain Virus viability.".

cs:EntityCode\#WEST rdfs:subClassOf cs:EntityCode\#%5fSpecimenAdditiveEntity;
  rdfs:label "Buffered Citrate";
  dc:title "Buffered Citrate";
  rdfs:comment "3.8% Citrate buffered to a pH of 5.5 for Westergren Sedimentation Rate";
  dcterms:description "3.8% Citrate buffered to a pH of 5.5 for Westergren Sedimentation Rate".

cs:EntityCode\#BLDPRD rdfs:subClassOf cs:EntityCode\#%5fMaterialEntityClassType;
  rdfs:label "Blood Product";
  dc:title "Blood Product";
  rdfs:comment "A manufactured product that is produced from the raw blood oi a donor with the intention of using it in a recipient transfusion.";
  dcterms:description "A manufactured product that is produced from the raw blood oi a donor with the intention of using it in a recipient transfusion.".

cs:EntityCode\#VCCNE rdfs:subClassOf cs:EntityCode\#%5fMaterialEntityClassType;
  rdfs:label "Vaccine";
  dc:title "Vaccine";
  rdfs:comment "A Type of medicine that creates an immune protection without the recipient experiencing the disease.";
  dcterms:description "A Type of medicine that creates an immune protection without the recipient experiencing the disease.".

cs:EntityCode\#%5fDrugEntity rdfs:subClassOf cs:EntityCode\#%5fMaterialEntityClassType;
  rdfs:label "DrugEntity";
  dc:title "DrugEntity";
  rdfs:comment "A substance whose therapeutic effect is produced by chemical action within the body.";
  dcterms:description "A substance whose therapeutic effect is produced by chemical action within the body.".

cs:EntityCode\#%5fClinicalDrug rdfs:subClassOf cs:EntityCode\#%5fDrugEntity;
  rdfs:label "ClinicalDrug";
  dc:title "ClinicalDrug";
  rdfs:comment "Any substance or mixture of substances manufactured, sold or represented for use in: (a) the diagnosis, treatment, mitigation or prevention of a disease, disorder, abnormal physical state, or its symptoms, in human beings or animals; (b) restoring, correcting or modifying organic functions in human beings or animals.";
  dcterms:description "Any substance or mixture of substances manufactured, sold or represented for use in: (a) the diagnosis, treatment, mitigation or prevention of a disease, disorder, abnormal physical state, or its symptoms, in human beings or animals; (b) restoring, correcting or modifying organic functions in human beings or animals.".

cs:EntityCode\#%5fNonDrugAgentEntity rdfs:subClassOf cs:EntityCode;
  rdfs:label "NonDrugAgentEntity";
  dc:title "NonDrugAgentEntity";
  rdfs:comment "Indicates types of allergy and intolerance agents which are non-drugs.  (E.g. foods, latex, etc.)";
  dcterms:description "Indicates types of allergy and intolerance agents which are non-drugs.  (E.g. foods, latex, etc.)".

cs:EntityCode\#NDA01 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "egg";
  dc:title "egg";
  rdfs:comment "egg";
  dcterms:description "egg".

cs:EntityCode\#NDA02 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "fish";
  dc:title "fish";
  rdfs:comment "fish";
  dcterms:description "fish".

cs:EntityCode\#NDA03 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "lactose";
  dc:title "lactose";
  rdfs:comment "lactose";
  dcterms:description "lactose".

cs:EntityCode\#NDA04 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "peanut";
  dc:title "peanut";
  rdfs:comment "peanut";
  dcterms:description "peanut".

cs:EntityCode\#NDA05 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "soy";
  dc:title "soy";
  rdfs:comment "soy";
  dcterms:description "soy".

cs:EntityCode\#NDA06 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "sulfites";
  dc:title "sulfites";
  rdfs:comment "sulfites";
  dcterms:description "sulfites".

cs:EntityCode\#NDA07 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "wheat or gluten";
  dc:title "wheat or gluten";
  rdfs:comment "wheat or gluten";
  dcterms:description "wheat or gluten".

cs:EntityCode\#NDA08 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "isocyanates";
  dc:title "isocyanates";
  rdfs:comment "isocyanates";
  dcterms:description "isocyanates".

cs:EntityCode\#NDA09 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "solvents";
  dc:title "solvents";
  rdfs:comment "solvents";
  dcterms:description "solvents".

cs:EntityCode\#NDA10 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "oils";
  dc:title "oils";
  rdfs:comment "oils";
  dcterms:description "oils".

cs:EntityCode\#NDA11 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "venoms";
  dc:title "venoms";
  rdfs:comment "venoms";
  dcterms:description "venoms".

cs:EntityCode\#NDA12 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "latex";
  dc:title "latex";
  rdfs:comment "latex";
  dcterms:description "latex".

cs:EntityCode\#NDA13 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "shellfish";
  dc:title "shellfish";
  rdfs:comment "shellfish";
  dcterms:description "shellfish".

cs:EntityCode\#NDA14 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "strawberries";
  dc:title "strawberries";
  rdfs:comment "strawberries";
  dcterms:description "strawberries".

cs:EntityCode\#NDA15 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "tomatoes";
  dc:title "tomatoes";
  rdfs:comment "tomatoes";
  dcterms:description "tomatoes".

cs:EntityCode\#NDA16 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "dust";
  dc:title "dust";
  rdfs:comment "dust";
  dcterms:description "dust".

cs:EntityCode\#NDA17 rdfs:subClassOf cs:EntityCode\#%5fNonDrugAgentEntity;
  rdfs:label "dust mites";
  dc:title "dust mites";
  rdfs:comment "dust mites";
  dcterms:description "dust mites".

cs:EntityCode\#%5fOrganizationEntityType rdfs:subClassOf cs:EntityCode;
  rdfs:label "OrganizationEntityType";
  dc:title "OrganizationEntityType";
  rdfs:comment "Further classifies entities of classCode ORG.";
  dcterms:description "Further classifies entities of classCode ORG.".

cs:EntityCode\#HHOLD rdfs:subClassOf cs:EntityCode\#%5fOrganizationEntityType;
  rdfs:label "household";
  dc:title "household";
  rdfs:comment "The group of persons who occupy a single housing unit.";
  dcterms:description "The group of persons who occupy a single housing unit.".

cs:EntityCode\#NAT rdfs:subClassOf cs:EntityCode\#%5fOrganizationEntityType;
  rdfs:label "NationEntityType";
  dc:title "NationEntityType";
  rdfs:comment "Codes identifying nation states.  Allows for finer grained specification of Entity with classcode <= NAT\r\n\n                        \n                           Example:ISO3166 country codes.";
  dcterms:description "Codes identifying nation states.  Allows for finer grained specification of Entity with classcode <= NAT\r\n\n                        \n                           Example:ISO3166 country codes.".

cs:EntityCode\#RELIG rdfs:subClassOf cs:EntityCode\#%5fOrganizationEntityType;
  rdfs:label "religious institution";
  dc:title "religious institution";
  rdfs:comment "An organization that provides religious rites of worship.";
  dcterms:description "An organization that provides religious rites of worship.".

cs:EntityCode\#%5fPlaceEntityType rdfs:subClassOf cs:EntityCode;
  rdfs:label "PlaceEntityType";
  dc:title "PlaceEntityType";
  rdfs:comment "Types of places for EntityClass \"PLC\"";
  dcterms:description "Types of places for EntityClass \"PLC\"".

cs:EntityCode\#BED rdfs:subClassOf cs:EntityCode\#%5fPlaceEntityType;
  rdfs:label "Bed Location";
  dc:title "Bed Location";
  rdfs:comment "The location of a bed";
  dcterms:description "The location of a bed".

cs:EntityCode\#BLDG rdfs:subClassOf cs:EntityCode\#%5fPlaceEntityType;
  rdfs:label "Building Location";
  dc:title "Building Location";
  rdfs:comment "The location of a building";
  dcterms:description "The location of a building".

cs:EntityCode\#FLOOR rdfs:subClassOf cs:EntityCode\#%5fPlaceEntityType;
  rdfs:label "Floor Location";
  dc:title "Floor Location";
  rdfs:comment "The location of a floor of a building";
  dcterms:description "The location of a floor of a building".

cs:EntityCode\#ROOM rdfs:subClassOf cs:EntityCode\#%5fPlaceEntityType;
  rdfs:label "Room Location";
  dc:title "Room Location";
  rdfs:comment "The location of a room";
  dcterms:description "The location of a room".

cs:EntityCode\#WING rdfs:subClassOf cs:EntityCode\#%5fPlaceEntityType;
  rdfs:label "Wing Location";
  dc:title "Wing Location";
  rdfs:comment "The location of a wing of a building (e.g. East Wing).  The same room number for the same floor number can be distinguished by wing number in some situations";
  dcterms:description "The location of a wing of a building (e.g. East Wing).  The same room number for the same floor number can be distinguished by wing number in some situations".

cs:EntityCode\#%5fResourceGroupEntityType rdfs:subClassOf cs:EntityCode;
  rdfs:label "ResourceGroupEntityType";
  dc:title "ResourceGroupEntityType";
  rdfs:comment "Codes to characterize a Resource Group using categories that typify its membership and/or function\r\n\n                        .\r\n\n                        \n                           Example: PractitionerGroup";
  dcterms:description "Codes to characterize a Resource Group using categories that typify its membership and/or function\r\n\n                        .\r\n\n                        \n                           Example: PractitionerGroup".

cs:EntityCode\#PRAC rdfs:subClassOf cs:EntityCode\#%5fResourceGroupEntityType;
  rdfs:label "PractitionerGroup";
  dc:title "PractitionerGroup";
  rdfs:comment "PractitionerGroup";
  dcterms:description "PractitionerGroup".

# - vs:v3-EntityDeterminer -----------------------------------------------------

vs:v3-EntityDeterminer a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EntityDeterminer";
  dc:title "v3 Code System EntityDeterminer";
  rdfs:comment " EntityDeterminer in natural language grammar is the class of words that comprises articles, demonstrative pronouns, and quantifiers. In the RIM, determiner is a structural code in the Entity class to distinguish whether any given Entity object stands for some, any one, or a specific thing.";
  dcterms:description " EntityDeterminer in natural language grammar is the class of words that comprises articles, demonstrative pronouns, and quantifiers. In the RIM, determiner is a structural code in the Entity class to distinguish whether any given Entity object stands for some, any one, or a specific thing.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EntityDeterminer.

cs:EntityDeterminer.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EntityDeterminer";
  dc:title "v3 Code System EntityDeterminer";
  rdfs:comment " EntityDeterminer in natural language grammar is the class of words that comprises articles, demonstrative pronouns, and quantifiers. In the RIM, determiner is a structural code in the Entity class to distinguish whether any given Entity object stands for some, any one, or a specific thing.";
  dcterms:description " EntityDeterminer in natural language grammar is the class of words that comprises articles, demonstrative pronouns, and quantifiers. In the RIM, determiner is a structural code in the Entity class to distinguish whether any given Entity object stands for some, any one, or a specific thing.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EntityDeterminer a fhir:Concept.

cs:EntityDeterminer\#INSTANCE rdfs:subClassOf cs:EntityDeterminer;
  rdfs:label "specific";
  dc:title "specific";
  rdfs:comment "Description:A determiner that specifies that the Entity object represents a particular physical thing (as opposed to a universal, kind, or class of physical thing).\r\n\n                        \n                           Discussion: It does not matter whether an INSTANCE still exists as a whole at the point in time (or process) when we mention it, for example, a drug product lot is an INSTANCE even though it has been portioned out for retail purpose.";
  dcterms:description "Description:A determiner that specifies that the Entity object represents a particular physical thing (as opposed to a universal, kind, or class of physical thing).\r\n\n                        \n                           Discussion: It does not matter whether an INSTANCE still exists as a whole at the point in time (or process) when we mention it, for example, a drug product lot is an INSTANCE even though it has been portioned out for retail purpose.".

cs:EntityDeterminer\#GROUP rdfs:subClassOf cs:EntityDeterminer\#INSTANCE;
  rdfs:label "specific group";
  dc:title "specific group";
  rdfs:comment "A determiner that specifies that the Entity object represents a particular collection of physical things (as opposed to a universal, kind, or class of physical thing).  While the collection may resolve to having only a single individual (or even no individuals), the potential should exist for it to cover multiple individuals.";
  dcterms:description "A determiner that specifies that the Entity object represents a particular collection of physical things (as opposed to a universal, kind, or class of physical thing).  While the collection may resolve to having only a single individual (or even no individuals), the potential should exist for it to cover multiple individuals.".

cs:EntityDeterminer\#KIND rdfs:subClassOf cs:EntityDeterminer;
  rdfs:label "described";
  dc:title "described";
  rdfs:comment "Description:A determiner that specifies that the Entity object represents a universal, kind or class of physical thing (as opposed to a particular thing).";
  dcterms:description "Description:A determiner that specifies that the Entity object represents a universal, kind or class of physical thing (as opposed to a particular thing).".

cs:EntityDeterminer\#GROUPKIND rdfs:subClassOf cs:EntityDeterminer\#KIND;
  rdfs:label "described group";
  dc:title "described group";
  rdfs:comment "A determiner that specifies that the Entity object represents a universal, kind or class of collections physical things.  While the collection may resolve to having only a single individual (or even no individuals), the potential should exist for it to cover multiple individuals.";
  dcterms:description "A determiner that specifies that the Entity object represents a universal, kind or class of collections physical things.  While the collection may resolve to having only a single individual (or even no individuals), the potential should exist for it to cover multiple individuals.".

cs:EntityDeterminer\#QUANTIFIED%5fKIND rdfs:subClassOf cs:EntityDeterminer\#KIND;
  rdfs:label "described quantified";
  dc:title "described quantified";
  rdfs:comment "The described quantified determiner indicates that the given Entity is taken as a general description of a specific amount of a thing. For example, QUANTIFIED_KIND of syringe (quantity = 3,) stands for exactly three syringes.";
  dcterms:description "The described quantified determiner indicates that the given Entity is taken as a general description of a specific amount of a thing. For example, QUANTIFIED_KIND of syringe (quantity = 3,) stands for exactly three syringes.".

# - vs:v3-EntityHandling -------------------------------------------------------

vs:v3-EntityHandling a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EntityHandling";
  dc:title "v3 Code System EntityHandling";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EntityHandling.

cs:EntityHandling.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EntityHandling";
  dc:title "v3 Code System EntityHandling";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EntityHandling a fhir:Concept.

cs:EntityHandling\#AMB rdfs:subClassOf cs:EntityHandling;
  rdfs:label "Ambient Temperature";
  dc:title "Ambient Temperature";
  rdfs:comment "Keep at ambient temperature, 22 +/- 2C";
  dcterms:description "Keep at ambient temperature, 22 +/- 2C".

cs:EntityHandling\#C37 rdfs:subClassOf cs:EntityHandling;
  rdfs:label "Body Temperature";
  dc:title "Body Temperature";
  rdfs:comment "Critical to keep at body temperature 36-38C";
  dcterms:description "Critical to keep at body temperature 36-38C".

cs:EntityHandling\#CAMB rdfs:subClassOf cs:EntityHandling;
  rdfs:label "Critical Ambient temperature";
  dc:title "Critical Ambient temperature";
  rdfs:comment "Critical ambient - must not be refrigerated or frozen.";
  dcterms:description "Critical ambient - must not be refrigerated or frozen.".

cs:EntityHandling\#CATM rdfs:subClassOf cs:EntityHandling;
  rdfs:label "Protect from Air";
  dc:title "Protect from Air";
  rdfs:comment "Critical. Do not expose to atmosphere.  Do not uncap.";
  dcterms:description "Critical. Do not expose to atmosphere.  Do not uncap.".

cs:EntityHandling\#CFRZ rdfs:subClassOf cs:EntityHandling;
  rdfs:label "Critical frozen";
  dc:title "Critical frozen";
  rdfs:comment "Critical frozen. Specimen must not be allowed to thaw until immediately prior to testing.";
  dcterms:description "Critical frozen. Specimen must not be allowed to thaw until immediately prior to testing.".

cs:EntityHandling\#CREF rdfs:subClassOf cs:EntityHandling;
  rdfs:label "Critical refrigerated temperature";
  dc:title "Critical refrigerated temperature";
  rdfs:comment "Critical refrigerated - must not be allowed to freeze or warm until imediately prior to testing.";
  dcterms:description "Critical refrigerated - must not be allowed to freeze or warm until imediately prior to testing.".

cs:EntityHandling\#DFRZ rdfs:subClassOf cs:EntityHandling;
  rdfs:label "Deep Frozen";
  dc:title "Deep Frozen";
  rdfs:comment "Deep Frozen -16 to -20C.";
  dcterms:description "Deep Frozen -16 to -20C.".

cs:EntityHandling\#DRY rdfs:subClassOf cs:EntityHandling;
  rdfs:label "dry";
  dc:title "dry";
  rdfs:comment "Keep in a dry environment";
  dcterms:description "Keep in a dry environment".

cs:EntityHandling\#FRZ rdfs:subClassOf cs:EntityHandling;
  rdfs:label "frozen";
  dc:title "frozen";
  rdfs:comment "Keep frozen below 0 ?C";
  dcterms:description "Keep frozen below 0 ?C".

cs:EntityHandling\#MTLF rdfs:subClassOf cs:EntityHandling;
  rdfs:label "Metal Free";
  dc:title "Metal Free";
  rdfs:comment "Container is free of heavy metals, including lead.";
  dcterms:description "Container is free of heavy metals, including lead.".

cs:EntityHandling\#NTR rdfs:subClassOf cs:EntityHandling;
  rdfs:label "nitrogen";
  dc:title "nitrogen";
  rdfs:comment "Keep in liquid nitrogen";
  dcterms:description "Keep in liquid nitrogen".

cs:EntityHandling\#PRTL rdfs:subClassOf cs:EntityHandling;
  rdfs:label "Protect from Light";
  dc:title "Protect from Light";
  rdfs:comment "Protect from light (eg. Wrap in aluminum foil).";
  dcterms:description "Protect from light (eg. Wrap in aluminum foil).".

cs:EntityHandling\#PSA rdfs:subClassOf cs:EntityHandling;
  rdfs:label "do not shake";
  dc:title "do not shake";
  rdfs:comment "Do not shake";
  dcterms:description "Do not shake".

cs:EntityHandling\#PSO rdfs:subClassOf cs:EntityHandling;
  rdfs:label "no shock";
  dc:title "no shock";
  rdfs:comment "Protect against shock";
  dcterms:description "Protect against shock".

cs:EntityHandling\#REF rdfs:subClassOf cs:EntityHandling;
  rdfs:label "Refrigerated temperature";
  dc:title "Refrigerated temperature";
  rdfs:comment "Keep at refrigerated temperature:4-8C Accidental warming or freezing is of little consequence.";
  dcterms:description "Keep at refrigerated temperature:4-8C Accidental warming or freezing is of little consequence.".

cs:EntityHandling\#SBU rdfs:subClassOf cs:EntityHandling;
  rdfs:label "Shake before use";
  dc:title "Shake before use";
  rdfs:comment "Shake thoroughly before using";
  dcterms:description "Shake thoroughly before using".

cs:EntityHandling\#UFRZ rdfs:subClassOf cs:EntityHandling;
  rdfs:label "Ultra frozen";
  dc:title "Ultra frozen";
  rdfs:comment "Ultra cold frozen -75 to -85C.  Ultra cold freezer is typically at temperature of dry ice.";
  dcterms:description "Ultra cold frozen -75 to -85C.  Ultra cold freezer is typically at temperature of dry ice.".

cs:EntityHandling\#UPR rdfs:subClassOf cs:EntityHandling;
  rdfs:label "upright";
  dc:title "upright";
  rdfs:comment "Keep upright, do not turn upside down";
  dcterms:description "Keep upright, do not turn upside down".

# - vs:v3-EntityNamePartQualifier ----------------------------------------------

vs:v3-EntityNamePartQualifier a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EntityNamePartQualifier";
  dc:title "v3 Code System EntityNamePartQualifier";
  rdfs:comment "  OpenIssue:\r\nNeeds description";
  dcterms:description "  OpenIssue:\r\nNeeds description";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EntityNamePartQualifier.

cs:EntityNamePartQualifier.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EntityNamePartQualifier";
  dc:title "v3 Code System EntityNamePartQualifier";
  rdfs:comment "  OpenIssue:\r\nNeeds description";
  dcterms:description "  OpenIssue:\r\nNeeds description";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EntityNamePartQualifier a fhir:Concept.

cs:EntityNamePartQualifier\#%5fOrganizationNamePartQualifier rdfs:subClassOf cs:EntityNamePartQualifier;
  rdfs:label "OrganizationNamePartQualifier";
  dc:title "OrganizationNamePartQualifier";
  rdfs:comment "OrganizationNamePartQualifier";
  dcterms:description "OrganizationNamePartQualifier".

cs:EntityNamePartQualifier\#AC rdfs:subClassOf cs:EntityNamePartQualifier\#%5fOrganizationNamePartQualifier;
  rdfs:label "academic";
  dc:title "academic";
  rdfs:comment "Indicates that a prefix like \"Dr.\" or a suffix like \"M.D.\" or \"Ph.D.\" is an academic title.";
  dcterms:description "Indicates that a prefix like \"Dr.\" or a suffix like \"M.D.\" or \"Ph.D.\" is an academic title.".

cs:EntityNamePartQualifier\#AD rdfs:subClassOf cs:EntityNamePartQualifier\#%5fOrganizationNamePartQualifier;
  rdfs:label "adopted";
  dc:title "adopted";
  rdfs:comment "The name the person was given at the time of adoption.";
  dcterms:description "The name the person was given at the time of adoption.".

cs:EntityNamePartQualifier\#BR rdfs:subClassOf cs:EntityNamePartQualifier\#%5fOrganizationNamePartQualifier;
  rdfs:label "birth";
  dc:title "birth";
  rdfs:comment "A name that a person had shortly after being born. Usually for family names but may be used to mark given names at birth that may have changed later.";
  dcterms:description "A name that a person had shortly after being born. Usually for family names but may be used to mark given names at birth that may have changed later.".

cs:EntityNamePartQualifier\#CL rdfs:subClassOf cs:EntityNamePartQualifier\#%5fOrganizationNamePartQualifier;
  rdfs:label "callme";
  dc:title "callme";
  rdfs:comment "A callme name is (usually a given name) that is preferred when a person is directly addressed.";
  dcterms:description "A callme name is (usually a given name) that is preferred when a person is directly addressed.".

cs:EntityNamePartQualifier\#IN rdfs:subClassOf cs:EntityNamePartQualifier\#%5fOrganizationNamePartQualifier;
  rdfs:label "initial";
  dc:title "initial";
  rdfs:comment "Indicates that a name part is just an initial. Initials do not imply a trailing period since this would not work with non-Latin scripts.  Initials may consist of more than one letter, e.g., \"Ph.\" could stand for \"Philippe\" or \"Th.\" for \"Thomas\".";
  dcterms:description "Indicates that a name part is just an initial. Initials do not imply a trailing period since this would not work with non-Latin scripts.  Initials may consist of more than one letter, e.g., \"Ph.\" could stand for \"Philippe\" or \"Th.\" for \"Thomas\".".

cs:EntityNamePartQualifier\#LS rdfs:subClassOf cs:EntityNamePartQualifier\#%5fOrganizationNamePartQualifier;
  rdfs:label "Legal status";
  dc:title "Legal status";
  rdfs:comment "For organizations a suffix indicating the legal status, e.g., \"Inc.\", \"Co.\", \"AG\", \"GmbH\", \"B.V.\" \"S.A.\",  \"Ltd.\" etc.";
  dcterms:description "For organizations a suffix indicating the legal status, e.g., \"Inc.\", \"Co.\", \"AG\", \"GmbH\", \"B.V.\" \"S.A.\",  \"Ltd.\" etc.".

cs:EntityNamePartQualifier\#NB rdfs:subClassOf cs:EntityNamePartQualifier\#%5fOrganizationNamePartQualifier;
  rdfs:label "nobility";
  dc:title "nobility";
  rdfs:comment "In Europe and Asia, there are still people with nobility titles (aristocrats).  German \"von\" is generally a nobility title, not a mere voorvoegsel.  Others are \"Earl of\" or \"His Majesty King of...\" etc.  Rarely used nowadays, but some systems do keep track of this.";
  dcterms:description "In Europe and Asia, there are still people with nobility titles (aristocrats).  German \"von\" is generally a nobility title, not a mere voorvoegsel.  Others are \"Earl of\" or \"His Majesty King of...\" etc.  Rarely used nowadays, but some systems do keep track of this.".

cs:EntityNamePartQualifier\#PR rdfs:subClassOf cs:EntityNamePartQualifier\#%5fOrganizationNamePartQualifier;
  rdfs:label "professional";
  dc:title "professional";
  rdfs:comment "Primarily in the British Imperial culture people tend to have an abbreviation of their professional organization as part of their credential suffices.";
  dcterms:description "Primarily in the British Imperial culture people tend to have an abbreviation of their professional organization as part of their credential suffices.".

cs:EntityNamePartQualifier\#SP rdfs:subClassOf cs:EntityNamePartQualifier\#%5fOrganizationNamePartQualifier;
  rdfs:label "spouse";
  dc:title "spouse";
  rdfs:comment "The name assumed from the partner in a marital relationship (hence the \"SP\"). Usually the spouse's family name. Note that no inference about gender can be made from the existence of spouse names.";
  dcterms:description "The name assumed from the partner in a marital relationship (hence the \"SP\"). Usually the spouse's family name. Note that no inference about gender can be made from the existence of spouse names.".

cs:EntityNamePartQualifier\#TITLE rdfs:subClassOf cs:EntityNamePartQualifier\#%5fOrganizationNamePartQualifier;
  rdfs:label "title";
  dc:title "title";
  rdfs:comment "Indicates that a prefix or a suffix is a title that applies to the whole name, not just the adjacent name part.";
  dcterms:description "Indicates that a prefix or a suffix is a title that applies to the whole name, not just the adjacent name part.".

cs:EntityNamePartQualifier\#VV rdfs:subClassOf cs:EntityNamePartQualifier\#%5fOrganizationNamePartQualifier;
  rdfs:label "voorvoegsel";
  dc:title "voorvoegsel";
  rdfs:comment "A Dutch \"voorvoegsel\" is something like \"van\" or \"de\" that might have indicated nobility in the past but no longer so. Similar prefixes exist in other languages such as Spanish, French or Portugese.";
  dcterms:description "A Dutch \"voorvoegsel\" is something like \"van\" or \"de\" that might have indicated nobility in the past but no longer so. Similar prefixes exist in other languages such as Spanish, French or Portugese.".

cs:EntityNamePartQualifier\#PharmaceuticalEntityNamePartQualifiers rdfs:subClassOf cs:EntityNamePartQualifier;
  rdfs:label "PharmaceuticalEntityNamePartQualifiers";
  dc:title "PharmaceuticalEntityNamePartQualifiers";
  rdfs:comment "Description: Medication Name Parts are a means of specifying a range of acceptable \"official\" forms of the name of a product.  They are used as patterns against which input name strings may be matched for automatic identification of products from input text reports.   While they cover the concepts held under \"doseForm\" or \"route\" or \"strength\" the name parts are not the same and do not fit into a controlled vocabulary in the same way. By specifying up to 8 name parts a much larger range of possible names can be generated.";
  dcterms:description "Description: Medication Name Parts are a means of specifying a range of acceptable \"official\" forms of the name of a product.  They are used as patterns against which input name strings may be matched for automatic identification of products from input text reports.   While they cover the concepts held under \"doseForm\" or \"route\" or \"strength\" the name parts are not the same and do not fit into a controlled vocabulary in the same way. By specifying up to 8 name parts a much larger range of possible names can be generated.".

cs:EntityNamePartQualifier\#CON rdfs:subClassOf cs:EntityNamePartQualifier\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "container name";
  dc:title "container name";
  rdfs:comment "Description: This refers to the container if present in the medicinal product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For Optaflu suspension for injection in pre-filled syringe Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season): pre-filled syringe";
  dcterms:description "Description: This refers to the container if present in the medicinal product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For Optaflu suspension for injection in pre-filled syringe Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season): pre-filled syringe".

cs:EntityNamePartQualifier\#DEV rdfs:subClassOf cs:EntityNamePartQualifier\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "device name";
  dc:title "device name";
  rdfs:comment "Description: This refers to the qualifiers in the name for devices and is at the moment mainly applicable to insulins and inhalation products.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For the medicinal product Actrapid FlexPen 100 IU/ml Solution for injection Subcutaneous use: FlexPen.";
  dcterms:description "Description: This refers to the qualifiers in the name for devices and is at the moment mainly applicable to insulins and inhalation products.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For the medicinal product Actrapid FlexPen 100 IU/ml Solution for injection Subcutaneous use: FlexPen.".

cs:EntityNamePartQualifier\#FLAV rdfs:subClassOf cs:EntityNamePartQualifier\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "FlavorName";
  dc:title "FlavorName";
  rdfs:comment "Description: This refers to a flavor of the medicinal product if present in the medicinal product name.\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'CoughCure Linctus Orange Flavor', the flavor part is \"Orange\"\n                           For 'Wonderdrug Syrup Cherry Flavor', the flavor part is \"Cherry\"";
  dcterms:description "Description: This refers to a flavor of the medicinal product if present in the medicinal product name.\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'CoughCure Linctus Orange Flavor', the flavor part is \"Orange\"\n                           For 'Wonderdrug Syrup Cherry Flavor', the flavor part is \"Cherry\"".

cs:EntityNamePartQualifier\#FORMUL rdfs:subClassOf cs:EntityNamePartQualifier\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "FormulationPartName";
  dc:title "FormulationPartName";
  rdfs:comment "Description: This refers to the formulation of the medicinal product if present in the medicinal product name.\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'SpecialMed Sugar Free Cough Syrup', the formulation name part is \"Sugar Free\"\n                           For 'QuickCure Gluten-free Bulk Fibre', the formulation name part is \"gluten-free\"";
  dcterms:description "Description: This refers to the formulation of the medicinal product if present in the medicinal product name.\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'SpecialMed Sugar Free Cough Syrup', the formulation name part is \"Sugar Free\"\n                           For 'QuickCure Gluten-free Bulk Fibre', the formulation name part is \"gluten-free\"".

cs:EntityNamePartQualifier\#FRM rdfs:subClassOf cs:EntityNamePartQualifier\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "form name";
  dc:title "form name";
  rdfs:comment "Description: This refers to the pharmaceutical form/ if present in the medicinal product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For Agenerase 50 mg soft capsules: Soft Capsules\r\n\n                           \n                           \n                              For Ludiomil 25mg-Filmtabletten: Filmtabletten\r\n\n                           \n                           \n                              For Optaflu suspension for injection in pre-filled syringe Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season): suspension for injection";
  dcterms:description "Description: This refers to the pharmaceutical form/ if present in the medicinal product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For Agenerase 50 mg soft capsules: Soft Capsules\r\n\n                           \n                           \n                              For Ludiomil 25mg-Filmtabletten: Filmtabletten\r\n\n                           \n                           \n                              For Optaflu suspension for injection in pre-filled syringe Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season): suspension for injection".

cs:EntityNamePartQualifier\#INV rdfs:subClassOf cs:EntityNamePartQualifier\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "invented name";
  dc:title "invented name";
  rdfs:comment "Description: This refers to the product name without the trademark or the name of the marketing authorization holder or any other descriptor reflected in the product name and, if appropriate, whether it is intended e.g. for babies, children or adults. \r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              Agenerase\r\n\n                           \n                           \n                              Optaflu\r\n\n                           \n                           \n                              Ludiomil";
  dcterms:description "Description: This refers to the product name without the trademark or the name of the marketing authorization holder or any other descriptor reflected in the product name and, if appropriate, whether it is intended e.g. for babies, children or adults. \r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              Agenerase\r\n\n                           \n                           \n                              Optaflu\r\n\n                           \n                           \n                              Ludiomil".

cs:EntityNamePartQualifier\#POPUL rdfs:subClassOf cs:EntityNamePartQualifier\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "TargetPopulationName";
  dc:title "TargetPopulationName";
  rdfs:comment "Description: This refers to the target population for the medicinal product if present in the medicinal product name\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'Broncho-Drug 3.5 mg-capsules for children', the target population part is \"children\"\n                           For 'Adult Chesty Cough Syrup', the target population part is \"adult\"";
  dcterms:description "Description: This refers to the target population for the medicinal product if present in the medicinal product name\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'Broncho-Drug 3.5 mg-capsules for children', the target population part is \"children\"\n                           For 'Adult Chesty Cough Syrup', the target population part is \"adult\"".

cs:EntityNamePartQualifier\#SCI rdfs:subClassOf cs:EntityNamePartQualifier\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "scientific name";
  dc:title "scientific name";
  rdfs:comment "Description: This refers to the product common or scientific name without the trademark or the name of the marketing authorization holder or any other descriptor reflected in the product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For Agenerase: N/A\r\n\n                           \n                           \n                              For Optaflu: Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season)\r\n\n                           \n                           \n                              For Ludiomil: N/A";
  dcterms:description "Description: This refers to the product common or scientific name without the trademark or the name of the marketing authorization holder or any other descriptor reflected in the product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For Agenerase: N/A\r\n\n                           \n                           \n                              For Optaflu: Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season)\r\n\n                           \n                           \n                              For Ludiomil: N/A".

cs:EntityNamePartQualifier\#STR rdfs:subClassOf cs:EntityNamePartQualifier\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "strength name";
  dc:title "strength name";
  rdfs:comment "Description: This refers to the strength if present in the medicinal product name. The use of decimal points should be accommodated if required.\r\n\n                        EXAMPLES:\r\n\n                        \n                           \n                              For Agenerase 50 mg soft capsules: 50mg\r\n\n                           \n                           \n                              For Ludiomil 25mg-Filmtabletten: 25 mg\r\n\n                           \n                           \n                              For Optaflu suspension for injection in pre-filled syringe Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season): N/A";
  dcterms:description "Description: This refers to the strength if present in the medicinal product name. The use of decimal points should be accommodated if required.\r\n\n                        EXAMPLES:\r\n\n                        \n                           \n                              For Agenerase 50 mg soft capsules: 50mg\r\n\n                           \n                           \n                              For Ludiomil 25mg-Filmtabletten: 25 mg\r\n\n                           \n                           \n                              For Optaflu suspension for injection in pre-filled syringe Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season): N/A".

cs:EntityNamePartQualifier\#TIME rdfs:subClassOf cs:EntityNamePartQualifier\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "TimeOrPeriodName";
  dc:title "TimeOrPeriodName";
  rdfs:comment "Description: This refers to a time or time period that may be specified in the text of the medicinal product name\r\n\n                        \n                           Example:\n                        \r\n\n                        \n                           For an influenza vaccine 'Drug-FLU season 2008/2009', the time/period part is \"2008/2009 season\"";
  dcterms:description "Description: This refers to a time or time period that may be specified in the text of the medicinal product name\r\n\n                        \n                           Example:\n                        \r\n\n                        \n                           For an influenza vaccine 'Drug-FLU season 2008/2009', the time/period part is \"2008/2009 season\"".

cs:EntityNamePartQualifier\#TMK rdfs:subClassOf cs:EntityNamePartQualifier\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "trademark name";
  dc:title "trademark name";
  rdfs:comment "Description: This refers to trademark/company element if present in the medicinal product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              for Insulin Human Winthrop Comb 15: Winthrop";
  dcterms:description "Description: This refers to trademark/company element if present in the medicinal product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              for Insulin Human Winthrop Comb 15: Winthrop".

cs:EntityNamePartQualifier\#USE rdfs:subClassOf cs:EntityNamePartQualifier\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "intended use name";
  dc:title "intended use name";
  rdfs:comment "Description: This refers to the intended use if present in the medicinal product name without the trademark or the name of the marketing authorization holder or any other descriptor reflected in the product name.\n\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'Drug-BI Caplets - Heartburn Relief', the intended use part is: \"Heartburn Relief\"\n                           For 'Medicine Honey Syrup for Soothing Coughs' the intended use part is \"Soothing Coughs\"";
  dcterms:description "Description: This refers to the intended use if present in the medicinal product name without the trademark or the name of the marketing authorization holder or any other descriptor reflected in the product name.\n\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'Drug-BI Caplets - Heartburn Relief', the intended use part is: \"Heartburn Relief\"\n                           For 'Medicine Honey Syrup for Soothing Coughs' the intended use part is \"Soothing Coughs\"".

cs:EntityNamePartQualifier\#%5fPersonNamePartQualifier rdfs:subClassOf cs:EntityNamePartQualifier;
  rdfs:label "PersonNamePartQualifier";
  dc:title "PersonNamePartQualifier";
  rdfs:comment "PersonNamePartQualifier";
  dcterms:description "PersonNamePartQualifier".

cs:EntityNamePartQualifier\#%5fPersonNamePartAffixTypes rdfs:subClassOf cs:EntityNamePartQualifier\#%5fPersonNamePartQualifier;
  rdfs:label "PersonNamePartAffixTypes";
  dc:title "PersonNamePartAffixTypes";
  rdfs:comment "PersonNamePartAffixTypes";
  dcterms:description "PersonNamePartAffixTypes".

cs:EntityNamePartQualifier\#%5fPersonNamePartChangeQualifier rdfs:subClassOf cs:EntityNamePartQualifier\#%5fPersonNamePartQualifier;
  rdfs:label "PersonNamePartChangeQualifier";
  dc:title "PersonNamePartChangeQualifier";
  rdfs:comment "PersonNamePartChangeQualifier";
  dcterms:description "PersonNamePartChangeQualifier".

cs:EntityNamePartQualifier\#%5fPersonNamePartMiscQualifier rdfs:subClassOf cs:EntityNamePartQualifier\#%5fPersonNamePartQualifier;
  rdfs:label "PersonNamePartMiscQualifier";
  dc:title "PersonNamePartMiscQualifier";
  rdfs:comment "PersonNamePartMiscQualifier";
  dcterms:description "PersonNamePartMiscQualifier".

# - vs:v3-EntityNamePartQualifierR2 --------------------------------------------

vs:v3-EntityNamePartQualifierR2 a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EntityNamePartQualifierR2";
  dc:title "v3 Code System EntityNamePartQualifierR2";
  rdfs:comment "  Description:\r\nThe qualifier is a set of codes each of which specifies a certain subcategory of the name part in addition to the main name part type. For example, a given name may be flagged as a nickname, a family name may be a pseudonym or a name of public records.";
  dcterms:description "  Description:\r\nThe qualifier is a set of codes each of which specifies a certain subcategory of the name part in addition to the main name part type. For example, a given name may be flagged as a nickname, a family name may be a pseudonym or a name of public records.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EntityNamePartQualifierR2.

cs:EntityNamePartQualifierR2.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EntityNamePartQualifierR2";
  dc:title "v3 Code System EntityNamePartQualifierR2";
  rdfs:comment "  Description:\r\nThe qualifier is a set of codes each of which specifies a certain subcategory of the name part in addition to the main name part type. For example, a given name may be flagged as a nickname, a family name may be a pseudonym or a name of public records.";
  dcterms:description "  Description:\r\nThe qualifier is a set of codes each of which specifies a certain subcategory of the name part in addition to the main name part type. For example, a given name may be flagged as a nickname, a family name may be a pseudonym or a name of public records.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EntityNamePartQualifierR2 a fhir:Concept.

cs:EntityNamePartQualifierR2\#AD rdfs:subClassOf cs:EntityNamePartQualifierR2;
  rdfs:label "acquired";
  dc:title "acquired";
  rdfs:comment "Description:A name part a person acquired.  The name part may be acquired by adoption, or the person may have chosen to use the name part for some other reason.\r\n\n                        \n                           Note: this differs from an Other/Psuedonym/Alias in that an acquired name part is acquired on a formal basis rather than an informal one (e.g. registered as part of the official name).";
  dcterms:description "Description:A name part a person acquired.  The name part may be acquired by adoption, or the person may have chosen to use the name part for some other reason.\r\n\n                        \n                           Note: this differs from an Other/Psuedonym/Alias in that an acquired name part is acquired on a formal basis rather than an informal one (e.g. registered as part of the official name).".

cs:EntityNamePartQualifierR2\#SP rdfs:subClassOf cs:EntityNamePartQualifierR2\#AD;
  rdfs:label "spouse";
  dc:title "spouse";
  rdfs:comment "Description:The name assumed from the partner in a marital relationship.  Usually the spouse's family name.  Note that no inference about gender can be made from the existence of spouse names.";
  dcterms:description "Description:The name assumed from the partner in a marital relationship.  Usually the spouse's family name.  Note that no inference about gender can be made from the existence of spouse names.".

cs:EntityNamePartQualifierR2\#BR rdfs:subClassOf cs:EntityNamePartQualifierR2;
  rdfs:label "birth";
  dc:title "birth";
  rdfs:comment "Description:A name that a person was given at birth or established as a consequence of adoption. \r\n\n                        \n                           Note: This is not used for temporary names assigned at birth such as \"Baby of Smith\" a\" which is just a name with a use code of \"TEMP\".";
  dcterms:description "Description:A name that a person was given at birth or established as a consequence of adoption. \r\n\n                        \n                           Note: This is not used for temporary names assigned at birth such as \"Baby of Smith\" a\" which is just a name with a use code of \"TEMP\".".

cs:EntityNamePartQualifierR2\#CL rdfs:subClassOf cs:EntityNamePartQualifierR2;
  rdfs:label "callme";
  dc:title "callme";
  rdfs:comment "Description:Used to indicate which of the various name parts is used when interacting with the person.";
  dcterms:description "Description:Used to indicate which of the various name parts is used when interacting with the person.".

cs:EntityNamePartQualifierR2\#IN rdfs:subClassOf cs:EntityNamePartQualifierR2;
  rdfs:label "initial";
  dc:title "initial";
  rdfs:comment "Description:Indicates that a name part is just an initial.  Initials do not imply a trailing period since this would not work with non-Latin scripts.  In some languages, initials may consist of more than one letter, e.g., \"Ph\" could stand for \"Philippe\" or \"Th\" For \"Thomas\".";
  dcterms:description "Description:Indicates that a name part is just an initial.  Initials do not imply a trailing period since this would not work with non-Latin scripts.  In some languages, initials may consist of more than one letter, e.g., \"Ph\" could stand for \"Philippe\" or \"Th\" For \"Thomas\".".

cs:EntityNamePartQualifierR2\#LS rdfs:subClassOf cs:EntityNamePartQualifierR2;
  rdfs:label "legal status";
  dc:title "legal status";
  rdfs:comment "Description:For organizations a suffix indicating the legal status, e.g., \"Inc.\", \"Co.\", \"AG\", \"GmbH\", \"B.V.\" \"S.A.\", \"Ltd.\" etc.";
  dcterms:description "Description:For organizations a suffix indicating the legal status, e.g., \"Inc.\", \"Co.\", \"AG\", \"GmbH\", \"B.V.\" \"S.A.\", \"Ltd.\" etc.".

cs:EntityNamePartQualifierR2\#MID rdfs:subClassOf cs:EntityNamePartQualifierR2;
  rdfs:label "middle name";
  dc:title "middle name";
  rdfs:comment "Description:Indicates that the name part is a middle name.\r\n\n                        \n                           Usage Notes: In general, the english \"middle name\" concept is all of the given names after the first. This qualifier may be used to explicitly indicate which given names are considered to be middle names. The middle name qualifier may also be used with family names. This is a Scandinavian use case, matching the concept of \"mellomnavn\",\"mellannamn\". Note that there are specific rules that indicate what names may be taken as a mellannamn in different Scandinavian countries.";
  dcterms:description "Description:Indicates that the name part is a middle name.\r\n\n                        \n                           Usage Notes: In general, the english \"middle name\" concept is all of the given names after the first. This qualifier may be used to explicitly indicate which given names are considered to be middle names. The middle name qualifier may also be used with family names. This is a Scandinavian use case, matching the concept of \"mellomnavn\",\"mellannamn\". Note that there are specific rules that indicate what names may be taken as a mellannamn in different Scandinavian countries.".

cs:EntityNamePartQualifierR2\#PFX rdfs:subClassOf cs:EntityNamePartQualifierR2;
  rdfs:label "prefix";
  dc:title "prefix";
  rdfs:comment "Description:A prefix has a strong association to the immediately following name part. A prefix has no implicit trailing white space (it has implicit leading white space though).";
  dcterms:description "Description:A prefix has a strong association to the immediately following name part. A prefix has no implicit trailing white space (it has implicit leading white space though).".

cs:EntityNamePartQualifierR2\#PharmaceuticalEntityNamePartQualifiers rdfs:subClassOf cs:EntityNamePartQualifierR2;
  rdfs:label "PharmaceuticalEntityNamePartQualifiers";
  dc:title "PharmaceuticalEntityNamePartQualifiers";
  rdfs:comment "Description: Medication Name Parts are a means of specifying a range of acceptable \"official\" forms of the name of a product.  They are used as patterns against which input name strings may be matched for automatic identification of products from input text reports.   While they cover the concepts held under \"doseForm\" or \"route\" or \"strength\" the name parts are not the same and do not fit into a controlled vocabulary in the same way. By specifying up to 8 name parts a much larger range of possible names can be generated.";
  dcterms:description "Description: Medication Name Parts are a means of specifying a range of acceptable \"official\" forms of the name of a product.  They are used as patterns against which input name strings may be matched for automatic identification of products from input text reports.   While they cover the concepts held under \"doseForm\" or \"route\" or \"strength\" the name parts are not the same and do not fit into a controlled vocabulary in the same way. By specifying up to 8 name parts a much larger range of possible names can be generated.".

cs:EntityNamePartQualifierR2\#CON rdfs:subClassOf cs:EntityNamePartQualifierR2\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "container name";
  dc:title "container name";
  rdfs:comment "Description: This refers to the container if present in the medicinal product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For Optaflu suspension for injection in pre-filled syringe Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season): pre-filled syringe";
  dcterms:description "Description: This refers to the container if present in the medicinal product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For Optaflu suspension for injection in pre-filled syringe Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season): pre-filled syringe".

cs:EntityNamePartQualifierR2\#DEV rdfs:subClassOf cs:EntityNamePartQualifierR2\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "device name";
  dc:title "device name";
  rdfs:comment "Description: This refers to the qualifiers in the name for devices and is at the moment mainly applicable to insulins and inhalation products.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For the medicinal product Actrapid FlexPen 100 IU/ml Solution for injection Subcutaneous use: FlexPen.";
  dcterms:description "Description: This refers to the qualifiers in the name for devices and is at the moment mainly applicable to insulins and inhalation products.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For the medicinal product Actrapid FlexPen 100 IU/ml Solution for injection Subcutaneous use: FlexPen.".

cs:EntityNamePartQualifierR2\#FLAV rdfs:subClassOf cs:EntityNamePartQualifierR2\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "FlavorName";
  dc:title "FlavorName";
  rdfs:comment "Description: This refers to a flavor of the medicinal product if present in the medicinal product name.\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'CoughCure Linctus Orange Flavor', the flavor part is \"Orange\"\n                           For 'Wonderdrug Syrup Cherry Flavor', the flavor part is \"Cherry\"";
  dcterms:description "Description: This refers to a flavor of the medicinal product if present in the medicinal product name.\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'CoughCure Linctus Orange Flavor', the flavor part is \"Orange\"\n                           For 'Wonderdrug Syrup Cherry Flavor', the flavor part is \"Cherry\"".

cs:EntityNamePartQualifierR2\#FORMUL rdfs:subClassOf cs:EntityNamePartQualifierR2\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "FormulationPartName";
  dc:title "FormulationPartName";
  rdfs:comment "Description: This refers to the formulation of the medicinal product if present in the medicinal product name.\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'SpecialMed Sugar Free Cough Syrup', the formulation name part is \"Sugar Free\"\n                           For 'QuickCure Gluten-free Bulk Fibre', the formulation name part is \"gluten-free\"";
  dcterms:description "Description: This refers to the formulation of the medicinal product if present in the medicinal product name.\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'SpecialMed Sugar Free Cough Syrup', the formulation name part is \"Sugar Free\"\n                           For 'QuickCure Gluten-free Bulk Fibre', the formulation name part is \"gluten-free\"".

cs:EntityNamePartQualifierR2\#FRM rdfs:subClassOf cs:EntityNamePartQualifierR2\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "form name";
  dc:title "form name";
  rdfs:comment "Description: This refers to the pharmaceutical form/ if present in the medicinal product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For Agenerase 50 mg soft capsules: Soft Capsules\r\n\n                           \n                           \n                              For Ludiomil 25mg-Filmtabletten: Filmtabletten\r\n\n                           \n                           \n                              For Optaflu suspension for injection in pre-filled syringe Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season): suspension for injection";
  dcterms:description "Description: This refers to the pharmaceutical form/ if present in the medicinal product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For Agenerase 50 mg soft capsules: Soft Capsules\r\n\n                           \n                           \n                              For Ludiomil 25mg-Filmtabletten: Filmtabletten\r\n\n                           \n                           \n                              For Optaflu suspension for injection in pre-filled syringe Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season): suspension for injection".

cs:EntityNamePartQualifierR2\#INV rdfs:subClassOf cs:EntityNamePartQualifierR2\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "invented name";
  dc:title "invented name";
  rdfs:comment "Description: This refers to the product name without the trademark or the name of the marketing authorization holder or any other descriptor reflected in the product name and, if appropriate, whether it is intended e.g. for babies, children or adults. \r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              Agenerase\r\n\n                           \n                           \n                              Optaflu\r\n\n                           \n                           \n                              Ludiomil";
  dcterms:description "Description: This refers to the product name without the trademark or the name of the marketing authorization holder or any other descriptor reflected in the product name and, if appropriate, whether it is intended e.g. for babies, children or adults. \r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              Agenerase\r\n\n                           \n                           \n                              Optaflu\r\n\n                           \n                           \n                              Ludiomil".

cs:EntityNamePartQualifierR2\#POPUL rdfs:subClassOf cs:EntityNamePartQualifierR2\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "TargetPopulationName";
  dc:title "TargetPopulationName";
  rdfs:comment "Description: This refers to the target population for the medicinal product if present in the medicinal product name\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'Broncho-Drug 3.5 mg-capsules for children', the target population part is \"children\"\n                           For 'Adult Chesty Cough Syrup', the target population part is \"adult\"";
  dcterms:description "Description: This refers to the target population for the medicinal product if present in the medicinal product name\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'Broncho-Drug 3.5 mg-capsules for children', the target population part is \"children\"\n                           For 'Adult Chesty Cough Syrup', the target population part is \"adult\"".

cs:EntityNamePartQualifierR2\#SCI rdfs:subClassOf cs:EntityNamePartQualifierR2\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "scientific name";
  dc:title "scientific name";
  rdfs:comment "Description: This refers to the product common or scientific name without the trademark or the name of the marketing authorization holder or any other descriptor reflected in the product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For Agenerase: N/A\r\n\n                           \n                           \n                              For Optaflu: Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season)\r\n\n                           \n                           \n                              For Ludiomil: N/A";
  dcterms:description "Description: This refers to the product common or scientific name without the trademark or the name of the marketing authorization holder or any other descriptor reflected in the product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              For Agenerase: N/A\r\n\n                           \n                           \n                              For Optaflu: Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season)\r\n\n                           \n                           \n                              For Ludiomil: N/A".

cs:EntityNamePartQualifierR2\#STR rdfs:subClassOf cs:EntityNamePartQualifierR2\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "strength name";
  dc:title "strength name";
  rdfs:comment "Description: This refers to the strength if present in the medicinal product name. The use of decimal points should be accommodated if required.\r\n\n                        EXAMPLES:\r\n\n                        \n                           \n                              For Agenerase 50 mg soft capsules: 50mg\r\n\n                           \n                           \n                              For Ludiomil 25mg-Filmtabletten: 25 mg\r\n\n                           \n                           \n                              For Optaflu suspension for injection in pre-filled syringe Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season): N/A";
  dcterms:description "Description: This refers to the strength if present in the medicinal product name. The use of decimal points should be accommodated if required.\r\n\n                        EXAMPLES:\r\n\n                        \n                           \n                              For Agenerase 50 mg soft capsules: 50mg\r\n\n                           \n                           \n                              For Ludiomil 25mg-Filmtabletten: 25 mg\r\n\n                           \n                           \n                              For Optaflu suspension for injection in pre-filled syringe Influenza vaccine (surface antigen, inactivated, prepared in cell culture) (2007/2008 season): N/A".

cs:EntityNamePartQualifierR2\#TIME rdfs:subClassOf cs:EntityNamePartQualifierR2\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "TimeOrPeriodName";
  dc:title "TimeOrPeriodName";
  rdfs:comment "Description: This refers to a time or time period that may be specified in the text of the medicinal product name\r\n\n                        \n                           Example:\n                        \r\n\n                        \n                           For an influenza vaccine 'Drug-FLU season 2008/2009', the time/period part is \"2008/2009 season\"";
  dcterms:description "Description: This refers to a time or time period that may be specified in the text of the medicinal product name\r\n\n                        \n                           Example:\n                        \r\n\n                        \n                           For an influenza vaccine 'Drug-FLU season 2008/2009', the time/period part is \"2008/2009 season\"".

cs:EntityNamePartQualifierR2\#TMK rdfs:subClassOf cs:EntityNamePartQualifierR2\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "trademark name";
  dc:title "trademark name";
  rdfs:comment "Description: This refers to trademark/company element if present in the medicinal product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              for Insulin Human Winthrop Comb 15: Winthrop";
  dcterms:description "Description: This refers to trademark/company element if present in the medicinal product name.\r\n\n                        EXAMPLES: \r\n\n                        \n                           \n                              for Insulin Human Winthrop Comb 15: Winthrop".

cs:EntityNamePartQualifierR2\#USE rdfs:subClassOf cs:EntityNamePartQualifierR2\#PharmaceuticalEntityNamePartQualifiers;
  rdfs:label "intended use name";
  dc:title "intended use name";
  rdfs:comment "Description: This refers to the intended use if present in the medicinal product name without the trademark or the name of the marketing authorization holder or any other descriptor reflected in the product name.\n\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'Drug-BI Caplets - Heartburn Relief', the intended use part is: \"Heartburn Relief\"\n                           For 'Medicine Honey Syrup for Soothing Coughs' the intended use part is \"Soothing Coughs\"";
  dcterms:description "Description: This refers to the intended use if present in the medicinal product name without the trademark or the name of the marketing authorization holder or any other descriptor reflected in the product name.\n\r\n\n                        \n                           Examples:\n                        \r\n\n                        \n                           For 'Drug-BI Caplets - Heartburn Relief', the intended use part is: \"Heartburn Relief\"\n                           For 'Medicine Honey Syrup for Soothing Coughs' the intended use part is \"Soothing Coughs\"".

cs:EntityNamePartQualifierR2\#SFX rdfs:subClassOf cs:EntityNamePartQualifierR2;
  rdfs:label "suffix";
  dc:title "suffix";
  rdfs:comment "Description:A suffix has a strong association to the immediately preceding name part. A suffix has no implicit leading white space (it has implicit trailing white space though).";
  dcterms:description "Description:A suffix has a strong association to the immediately preceding name part. A suffix has no implicit leading white space (it has implicit trailing white space though).".

cs:EntityNamePartQualifierR2\#TitleStyles rdfs:subClassOf cs:EntityNamePartQualifierR2;
  rdfs:label "TitleStyles";
  dc:title "TitleStyles";
  rdfs:comment "Description:Extra information about the style of a title";
  dcterms:description "Description:Extra information about the style of a title".

cs:EntityNamePartQualifierR2\#AC rdfs:subClassOf cs:EntityNamePartQualifierR2\#TitleStyles;
  rdfs:label "academic";
  dc:title "academic";
  rdfs:comment "Description:Indicates that a title like \"Dr.\", \"M.D.\" or \"Ph.D.\" is an academic title.";
  dcterms:description "Description:Indicates that a title like \"Dr.\", \"M.D.\" or \"Ph.D.\" is an academic title.".

cs:EntityNamePartQualifierR2\#HON rdfs:subClassOf cs:EntityNamePartQualifierR2\#TitleStyles;
  rdfs:label "honorific";
  dc:title "honorific";
  rdfs:comment "Description:A honorific such as \"The Right Honourable\" or \"Weledelgeleerde Heer\".";
  dcterms:description "Description:A honorific such as \"The Right Honourable\" or \"Weledelgeleerde Heer\".".

cs:EntityNamePartQualifierR2\#NB rdfs:subClassOf cs:EntityNamePartQualifierR2\#TitleStyles;
  rdfs:label "nobility";
  dc:title "nobility";
  rdfs:comment "Description:A nobility title such as Sir, Count, Grafin.";
  dcterms:description "Description:A nobility title such as Sir, Count, Grafin.".

cs:EntityNamePartQualifierR2\#PR rdfs:subClassOf cs:EntityNamePartQualifierR2\#TitleStyles;
  rdfs:label "professional";
  dc:title "professional";
  rdfs:comment "Description:Primarily in the British Imperial culture people tend to have an abbreviation of their professional organization as part of their credential titles.";
  dcterms:description "Description:Primarily in the British Imperial culture people tend to have an abbreviation of their professional organization as part of their credential titles.".

# - vs:v3-EntityNamePartType ---------------------------------------------------

vs:v3-EntityNamePartType a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EntityNamePartType";
  dc:title "v3 Code System EntityNamePartType";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EntityNamePartType.

cs:EntityNamePartType.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EntityNamePartType";
  dc:title "v3 Code System EntityNamePartType";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EntityNamePartType a fhir:Concept.

cs:EntityNamePartType\#DEL rdfs:subClassOf cs:EntityNamePartType;
  rdfs:label "delimiter";
  dc:title "delimiter";
  rdfs:comment "A delimiter has no meaning other than being literally printed in this name representation.  A delimiter has no implicit leading and trailing white space.";
  dcterms:description "A delimiter has no meaning other than being literally printed in this name representation.  A delimiter has no implicit leading and trailing white space.".

cs:EntityNamePartType\#FAM rdfs:subClassOf cs:EntityNamePartType;
  rdfs:label "family";
  dc:title "family";
  rdfs:comment "Family name, this is the name that links to the genealogy. In some cultures (e.g. Eritrea) the family name of a son is the first name of his father.";
  dcterms:description "Family name, this is the name that links to the genealogy. In some cultures (e.g. Eritrea) the family name of a son is the first name of his father.".

cs:EntityNamePartType\#GIV rdfs:subClassOf cs:EntityNamePartType;
  rdfs:label "given";
  dc:title "given";
  rdfs:comment "Given name (don't call it \"first name\" since this given names do not always come first)";
  dcterms:description "Given name (don't call it \"first name\" since this given names do not always come first)".

cs:EntityNamePartType\#PFX rdfs:subClassOf cs:EntityNamePartType;
  rdfs:label "prefix";
  dc:title "prefix";
  rdfs:comment "A prefix has a strong association to the immediately following name part. A prefix has no implicit trailing white space (it has implicit leading white space though). Note that prefixes can be inverted.";
  dcterms:description "A prefix has a strong association to the immediately following name part. A prefix has no implicit trailing white space (it has implicit leading white space though). Note that prefixes can be inverted.".

cs:EntityNamePartType\#SFX rdfs:subClassOf cs:EntityNamePartType;
  rdfs:label "suffix";
  dc:title "suffix";
  rdfs:comment "Description:A suffix has a strong association to the immediately preceding name part. A suffix has no implicit leading white space (it has implicit trailing white space though). Suffices cannot be inverted.";
  dcterms:description "Description:A suffix has a strong association to the immediately preceding name part. A suffix has no implicit leading white space (it has implicit trailing white space though). Suffices cannot be inverted.".

# - vs:v3-EntityNamePartTypeR2 -------------------------------------------------

vs:v3-EntityNamePartTypeR2 a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EntityNamePartTypeR2";
  dc:title "v3 Code System EntityNamePartTypeR2";
  rdfs:comment "  Description:\r\nIndicates whether the name part is a given name, family name, prefix, suffix, etc.";
  dcterms:description "  Description:\r\nIndicates whether the name part is a given name, family name, prefix, suffix, etc.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EntityNamePartTypeR2.

cs:EntityNamePartTypeR2.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EntityNamePartTypeR2";
  dc:title "v3 Code System EntityNamePartTypeR2";
  rdfs:comment "  Description:\r\nIndicates whether the name part is a given name, family name, prefix, suffix, etc.";
  dcterms:description "  Description:\r\nIndicates whether the name part is a given name, family name, prefix, suffix, etc.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EntityNamePartTypeR2 a fhir:Concept.

cs:EntityNamePartTypeR2\#DEL rdfs:subClassOf cs:EntityNamePartTypeR2;
  rdfs:label "delimiter";
  dc:title "delimiter";
  rdfs:comment "Description:A delimiter has no meaning other than being literally printed in this name representation. A delimiter has no implicit leading and trailing white space.";
  dcterms:description "Description:A delimiter has no meaning other than being literally printed in this name representation. A delimiter has no implicit leading and trailing white space.".

cs:EntityNamePartTypeR2\#FAM rdfs:subClassOf cs:EntityNamePartTypeR2;
  rdfs:label "family";
  dc:title "family";
  rdfs:comment "Description:Family name, this is the name that links to the genealogy. In some cultures (e.g. Eritrea) the family name of a son is the first name of his father.";
  dcterms:description "Description:Family name, this is the name that links to the genealogy. In some cultures (e.g. Eritrea) the family name of a son is the first name of his father.".

cs:EntityNamePartTypeR2\#GIV rdfs:subClassOf cs:EntityNamePartTypeR2;
  rdfs:label "given";
  dc:title "given";
  rdfs:comment "Description:Given name. Note: don't call it \"first name\" since the given names do not always come first.";
  dcterms:description "Description:Given name. Note: don't call it \"first name\" since the given names do not always come first.".

cs:EntityNamePartTypeR2\#TITLE rdfs:subClassOf cs:EntityNamePartTypeR2;
  rdfs:label "title";
  dc:title "title";
  rdfs:comment "Description:Part of the name that is acquired as a title due to academic, legal, employment or nobility status etc.\r\n\n                        \n                           Note:Title name parts include name parts that come after the name such as qualifications, even if they are not always considered to be titles.";
  dcterms:description "Description:Part of the name that is acquired as a title due to academic, legal, employment or nobility status etc.\r\n\n                        \n                           Note:Title name parts include name parts that come after the name such as qualifications, even if they are not always considered to be titles.".

# - vs:v3-EntityNameUse --------------------------------------------------------

vs:v3-EntityNameUse a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EntityNameUse";
  dc:title "v3 Code System EntityNameUse";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EntityNameUse.

cs:EntityNameUse.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EntityNameUse";
  dc:title "v3 Code System EntityNameUse";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EntityNameUse a fhir:Concept.

cs:EntityNameUse\#%5fNameRepresentationUse rdfs:subClassOf cs:EntityNameUse;
  rdfs:label "NameRepresentationUse";
  dc:title "NameRepresentationUse";
  rdfs:comment "Identifies the different representations of a name.  The representation may affect how the name is used.  (E.g. use of Ideographic for formal communications.)";
  dcterms:description "Identifies the different representations of a name.  The representation may affect how the name is used.  (E.g. use of Ideographic for formal communications.)".

cs:EntityNameUse\#ABC rdfs:subClassOf cs:EntityNameUse\#%5fNameRepresentationUse;
  rdfs:label "Alphabetic";
  dc:title "Alphabetic";
  rdfs:comment "Alphabetic transcription of name (Japanese: romaji)";
  dcterms:description "Alphabetic transcription of name (Japanese: romaji)".

cs:EntityNameUse\#IDE rdfs:subClassOf cs:EntityNameUse\#%5fNameRepresentationUse;
  rdfs:label "Ideographic";
  dc:title "Ideographic";
  rdfs:comment "Ideographic representation of name (e.g., Japanese kanji, Chinese characters)";
  dcterms:description "Ideographic representation of name (e.g., Japanese kanji, Chinese characters)".

cs:EntityNameUse\#SYL rdfs:subClassOf cs:EntityNameUse\#%5fNameRepresentationUse;
  rdfs:label "Syllabic";
  dc:title "Syllabic";
  rdfs:comment "Syllabic transcription of name (e.g., Japanese kana, Korean hangul)";
  dcterms:description "Syllabic transcription of name (e.g., Japanese kana, Korean hangul)".

cs:EntityNameUse\#ASGN rdfs:subClassOf cs:EntityNameUse;
  rdfs:label "assigned";
  dc:title "assigned";
  rdfs:comment "A name assigned to a person. Reasons some organizations assign alternate names may include not knowing the person's name, or to maintain anonymity. Some, but not necessarily all, of the name types that people call \"alias\" may fit into this category.";
  dcterms:description "A name assigned to a person. Reasons some organizations assign alternate names may include not knowing the person's name, or to maintain anonymity. Some, but not necessarily all, of the name types that people call \"alias\" may fit into this category.".

cs:EntityNameUse\#C rdfs:subClassOf cs:EntityNameUse;
  rdfs:label "License";
  dc:title "License";
  rdfs:comment "As recorded on a license, record, certificate, etc. (only if different from legal name)";
  dcterms:description "As recorded on a license, record, certificate, etc. (only if different from legal name)".

cs:EntityNameUse\#I rdfs:subClassOf cs:EntityNameUse;
  rdfs:label "Indigenous/Tribal";
  dc:title "Indigenous/Tribal";
  rdfs:comment "e.g. Chief Red Cloud";
  dcterms:description "e.g. Chief Red Cloud".

cs:EntityNameUse\#L rdfs:subClassOf cs:EntityNameUse;
  rdfs:label "Legal";
  dc:title "Legal";
  rdfs:comment "Known as/conventional/the one you use";
  dcterms:description "Known as/conventional/the one you use".

cs:EntityNameUse\#OR rdfs:subClassOf cs:EntityNameUse\#L;
  rdfs:label "official registry";
  dc:title "official registry";
  rdfs:comment "Definition:The formal name as registered in an official (government) registry, but which name might not be commonly used. Particularly used in countries with a law system based on Napoleonic law.";
  dcterms:description "Definition:The formal name as registered in an official (government) registry, but which name might not be commonly used. Particularly used in countries with a law system based on Napoleonic law.".

cs:EntityNameUse\#P rdfs:subClassOf cs:EntityNameUse;
  rdfs:label "pseudonym";
  dc:title "pseudonym";
  rdfs:comment "A self asserted name that the person is using or has used.";
  dcterms:description "A self asserted name that the person is using or has used.".

cs:EntityNameUse\#A rdfs:subClassOf cs:EntityNameUse\#P;
  rdfs:label "Artist/Stage";
  dc:title "Artist/Stage";
  rdfs:comment "Includes writer's pseudonym, stage name, etc";
  dcterms:description "Includes writer's pseudonym, stage name, etc".

cs:EntityNameUse\#R rdfs:subClassOf cs:EntityNameUse;
  rdfs:label "Religious";
  dc:title "Religious";
  rdfs:comment "e.g. Sister Mary Francis, Brother John";
  dcterms:description "e.g. Sister Mary Francis, Brother John".

cs:EntityNameUse\#SRCH rdfs:subClassOf cs:EntityNameUse;
  rdfs:label "search";
  dc:title "search";
  rdfs:comment "A name intended for use in searching or matching.";
  dcterms:description "A name intended for use in searching or matching.".

cs:EntityNameUse\#PHON rdfs:subClassOf cs:EntityNameUse\#SRCH;
  rdfs:label "phonetic";
  dc:title "phonetic";
  rdfs:comment "A name spelled phonetically.\r\n\n                        There are a variety of phonetic spelling algorithms. This code value does not distinguish between these.Discussion:";
  dcterms:description "A name spelled phonetically.\r\n\n                        There are a variety of phonetic spelling algorithms. This code value does not distinguish between these.Discussion:".

cs:EntityNameUse\#SNDX rdfs:subClassOf cs:EntityNameUse\#SRCH;
  rdfs:label "Soundex";
  dc:title "Soundex";
  rdfs:comment "A name spelled according to the SoundEx algorithm.";
  dcterms:description "A name spelled according to the SoundEx algorithm.".

# - vs:v3-EntityNameUseR2 ------------------------------------------------------

vs:v3-EntityNameUseR2 a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EntityNameUseR2";
  dc:title "v3 Code System EntityNameUseR2";
  rdfs:comment "  Description:\r\nA set of codes advising a system or user which name in a set of names to select for a given purpose.";
  dcterms:description "  Description:\r\nA set of codes advising a system or user which name in a set of names to select for a given purpose.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EntityNameUseR2.

cs:EntityNameUseR2.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EntityNameUseR2";
  dc:title "v3 Code System EntityNameUseR2";
  rdfs:comment "  Description:\r\nA set of codes advising a system or user which name in a set of names to select for a given purpose.";
  dcterms:description "  Description:\r\nA set of codes advising a system or user which name in a set of names to select for a given purpose.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EntityNameUseR2 a fhir:Concept.

cs:EntityNameUseR2\#Assumed rdfs:subClassOf cs:EntityNameUseR2;
  rdfs:label "Assumed";
  dc:title "Assumed";
  rdfs:comment "Description:A name that a person has assumed or has been assumed to them.";
  dcterms:description "Description:A name that a person has assumed or has been assumed to them.".

cs:EntityNameUseR2\#A rdfs:subClassOf cs:EntityNameUseR2\#Assumed;
  rdfs:label "business name";
  dc:title "business name";
  rdfs:comment "Description:A name used in a Professional or Business context .  Examples: Continuing to use a maiden name in a professional context, or using a stage performing name (some of these names are also pseudonyms)";
  dcterms:description "Description:A name used in a Professional or Business context .  Examples: Continuing to use a maiden name in a professional context, or using a stage performing name (some of these names are also pseudonyms)".

cs:EntityNameUseR2\#ANON rdfs:subClassOf cs:EntityNameUseR2\#Assumed;
  rdfs:label "Anonymous";
  dc:title "Anonymous";
  rdfs:comment "Description:Anonymous assigned name (used to protect a persons identity for privacy reasons)";
  dcterms:description "Description:Anonymous assigned name (used to protect a persons identity for privacy reasons)".

cs:EntityNameUseR2\#I rdfs:subClassOf cs:EntityNameUseR2\#Assumed;
  rdfs:label "Indigenous/Tribal";
  dc:title "Indigenous/Tribal";
  rdfs:comment "Description:e.g .  Chief Red Cloud";
  dcterms:description "Description:e.g .  Chief Red Cloud".

cs:EntityNameUseR2\#P rdfs:subClassOf cs:EntityNameUseR2\#Assumed;
  rdfs:label "Other/Pseudonym/Alias";
  dc:title "Other/Pseudonym/Alias";
  rdfs:comment "Description:A non-official name by which the person is sometimes known.  (This may also be used to record informal names such as a nickname)";
  dcterms:description "Description:A non-official name by which the person is sometimes known.  (This may also be used to record informal names such as a nickname)".

cs:EntityNameUseR2\#R rdfs:subClassOf cs:EntityNameUseR2\#Assumed;
  rdfs:label "religious";
  dc:title "religious";
  rdfs:comment "Description:A name assumed as part of a religious vocation .  e.g .  Sister Mary Francis, Brother John";
  dcterms:description "Description:A name assumed as part of a religious vocation .  e.g .  Sister Mary Francis, Brother John".

cs:EntityNameUseR2\#C rdfs:subClassOf cs:EntityNameUseR2;
  rdfs:label "customary";
  dc:title "customary";
  rdfs:comment "Description:Known as/conventional/the one you normally use";
  dcterms:description "Description:Known as/conventional/the one you normally use".

cs:EntityNameUseR2\#M rdfs:subClassOf cs:EntityNameUseR2;
  rdfs:label "maiden name";
  dc:title "maiden name";
  rdfs:comment "Description:A name used prior to marriage.Note that marriage naming customs vary greatly around the world.  This name use is for use by applications that collect and store maiden names.  Though the concept of maiden name is often gender specific, the use of this term is not gender specific.  The use of this term does not imply any particular history for a person's name, nor should the maiden name be determined algorithmically";
  dcterms:description "Description:A name used prior to marriage.Note that marriage naming customs vary greatly around the world.  This name use is for use by applications that collect and store maiden names.  Though the concept of maiden name is often gender specific, the use of this term is not gender specific.  The use of this term does not imply any particular history for a person's name, nor should the maiden name be determined algorithmically".

cs:EntityNameUseR2\#NameRepresentationUse rdfs:subClassOf cs:EntityNameUseR2;
  rdfs:label "NameRepresentationUse";
  dc:title "NameRepresentationUse";
  rdfs:comment "Description:Identifies the different representations of a name .  The representation may affect how the name is used .  (E.g .  use of Ideographic for formal communications.)";
  dcterms:description "Description:Identifies the different representations of a name .  The representation may affect how the name is used .  (E.g .  use of Ideographic for formal communications.)".

cs:EntityNameUseR2\#ABC rdfs:subClassOf cs:EntityNameUseR2\#NameRepresentationUse;
  rdfs:label "alphabetic";
  dc:title "alphabetic";
  rdfs:comment "Description:Alphabetic transcription of name in latin alphabet (Japanese: romaji)";
  dcterms:description "Description:Alphabetic transcription of name in latin alphabet (Japanese: romaji)".

cs:EntityNameUseR2\#IDE rdfs:subClassOf cs:EntityNameUseR2\#NameRepresentationUse;
  rdfs:label "ideographic";
  dc:title "ideographic";
  rdfs:comment "Description:Ideographic representation of name (e.g., Japanese kanji, Chinese characters)";
  dcterms:description "Description:Ideographic representation of name (e.g., Japanese kanji, Chinese characters)".

cs:EntityNameUseR2\#SYL rdfs:subClassOf cs:EntityNameUseR2\#NameRepresentationUse;
  rdfs:label "syllabic";
  dc:title "syllabic";
  rdfs:comment "Description:Syllabic transcription of name (e.g., Japanese kana, Korean hangul)";
  dcterms:description "Description:Syllabic transcription of name (e.g., Japanese kana, Korean hangul)".

cs:EntityNameUseR2\#OLD rdfs:subClassOf cs:EntityNameUseR2;
  rdfs:label "no longer in use";
  dc:title "no longer in use";
  rdfs:comment "Description:This name is no longer in use (note: Names may also carry valid time ranges .  This code is used to cover the situations where it is known that the name is no longer valid, but no particular time range for its use is known)";
  dcterms:description "Description:This name is no longer in use (note: Names may also carry valid time ranges .  This code is used to cover the situations where it is known that the name is no longer valid, but no particular time range for its use is known)".

cs:EntityNameUseR2\#DN rdfs:subClassOf cs:EntityNameUseR2\#OLD;
  rdfs:label "do not use";
  dc:title "do not use";
  rdfs:comment "Description:This name should no longer be used when interacting with the person (i.e .  in addition to no longer being used, the name should not be even mentioned when interacting with the person)Note: applications are not required to compare names labeled \"Do Not Use\" and other names in order to eliminate name parts that are common between the other name and a name labeled \"Do Not Use\".";
  dcterms:description "Description:This name should no longer be used when interacting with the person (i.e .  in addition to no longer being used, the name should not be even mentioned when interacting with the person)Note: applications are not required to compare names labeled \"Do Not Use\" and other names in order to eliminate name parts that are common between the other name and a name labeled \"Do Not Use\".".

cs:EntityNameUseR2\#OR rdfs:subClassOf cs:EntityNameUseR2;
  rdfs:label "official registry name";
  dc:title "official registry name";
  rdfs:comment "Description:The formal name as registered in an official (government) registry, but which name might not be commonly used .  May correspond to the concept of legal name";
  dcterms:description "Description:The formal name as registered in an official (government) registry, but which name might not be commonly used .  May correspond to the concept of legal name".

cs:EntityNameUseR2\#PHON rdfs:subClassOf cs:EntityNameUseR2;
  rdfs:label "phonetic";
  dc:title "phonetic";
  rdfs:comment "Description:The name as understood by the data enterer, i.e. a close approximation of a phonetic spelling of the name, not based on a phonetic algorithm.";
  dcterms:description "Description:The name as understood by the data enterer, i.e. a close approximation of a phonetic spelling of the name, not based on a phonetic algorithm.".

cs:EntityNameUseR2\#SRCH rdfs:subClassOf cs:EntityNameUseR2;
  rdfs:label "search";
  dc:title "search";
  rdfs:comment "Description:A name intended for use in searching or matching.  This is used when the name is incomplete and contains enough details for search matching, but not enough for other uses.";
  dcterms:description "Description:A name intended for use in searching or matching.  This is used when the name is incomplete and contains enough details for search matching, but not enough for other uses.".

cs:EntityNameUseR2\#T rdfs:subClassOf cs:EntityNameUseR2;
  rdfs:label "temporary";
  dc:title "temporary";
  rdfs:comment "Description:A temporary name.  Note that a name valid time can provide more detailed information.  This may also be used for temporary names assigned at birth or in emergency situations.";
  dcterms:description "Description:A temporary name.  Note that a name valid time can provide more detailed information.  This may also be used for temporary names assigned at birth or in emergency situations.".

# - vs:v3-EntityRisk -----------------------------------------------------------

vs:v3-EntityRisk a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EntityRisk";
  dc:title "v3 Code System EntityRisk";
  rdfs:comment " Kinds of risks associated with the handling of the material..";
  dcterms:description " Kinds of risks associated with the handling of the material..";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EntityRisk.

cs:EntityRisk.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EntityRisk";
  dc:title "v3 Code System EntityRisk";
  rdfs:comment " Kinds of risks associated with the handling of the material..";
  dcterms:description " Kinds of risks associated with the handling of the material..";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EntityRisk a fhir:Concept.

cs:EntityRisk\#AGG rdfs:subClassOf cs:EntityRisk;
  rdfs:label "aggressive";
  dc:title "aggressive";
  rdfs:comment "A danger that can be associated with certain living subjects, including humans.";
  dcterms:description "A danger that can be associated with certain living subjects, including humans.".

cs:EntityRisk\#BIO rdfs:subClassOf cs:EntityRisk;
  rdfs:label "Biological";
  dc:title "Biological";
  rdfs:comment "The dangers associated with normal biological materials. I.e. potential risk of unknown infections.  Routine biological materials from living subjects.";
  dcterms:description "The dangers associated with normal biological materials. I.e. potential risk of unknown infections.  Routine biological materials from living subjects.".

cs:EntityRisk\#COR rdfs:subClassOf cs:EntityRisk;
  rdfs:label "Corrosive";
  dc:title "Corrosive";
  rdfs:comment "Material is corrosive and may cause severe injury to skin, mucous membranes and eyes. Avoid any unprotected contact.";
  dcterms:description "Material is corrosive and may cause severe injury to skin, mucous membranes and eyes. Avoid any unprotected contact.".

cs:EntityRisk\#ESC rdfs:subClassOf cs:EntityRisk;
  rdfs:label "Escape Risk";
  dc:title "Escape Risk";
  rdfs:comment "The entity is at risk for escaping from containment or control.";
  dcterms:description "The entity is at risk for escaping from containment or control.".

cs:EntityRisk\#IFL rdfs:subClassOf cs:EntityRisk;
  rdfs:label "inflammable";
  dc:title "inflammable";
  rdfs:comment "Material is highly inflammable and in certain mixtures (with air) may lead to explosions.  Keep away from fire, sparks and excessive heat.";
  dcterms:description "Material is highly inflammable and in certain mixtures (with air) may lead to explosions.  Keep away from fire, sparks and excessive heat.".

cs:EntityRisk\#EXP rdfs:subClassOf cs:EntityRisk\#IFL;
  rdfs:label "explosive";
  dc:title "explosive";
  rdfs:comment "Material is an explosive mixture.  Keep away from fire, sparks, and heat.";
  dcterms:description "Material is an explosive mixture.  Keep away from fire, sparks, and heat.".

cs:EntityRisk\#INF rdfs:subClassOf cs:EntityRisk;
  rdfs:label "infectious";
  dc:title "infectious";
  rdfs:comment "Material known to be infectious with human pathogenic microorganisms.  Those who handle this material must take precautions for their protection.";
  dcterms:description "Material known to be infectious with human pathogenic microorganisms.  Those who handle this material must take precautions for their protection.".

cs:EntityRisk\#BHZ rdfs:subClassOf cs:EntityRisk\#INF;
  rdfs:label "biohazard";
  dc:title "biohazard";
  rdfs:comment "Material contains microorganisms that is an environmental hazard.  Must be handled with special care.";
  dcterms:description "Material contains microorganisms that is an environmental hazard.  Must be handled with special care.".

cs:EntityRisk\#INJ rdfs:subClassOf cs:EntityRisk;
  rdfs:label "injury hazard";
  dc:title "injury hazard";
  rdfs:comment "Material is solid and sharp (e.g., cannulas).  Dispose in hard container.";
  dcterms:description "Material is solid and sharp (e.g., cannulas).  Dispose in hard container.".

cs:EntityRisk\#POI rdfs:subClassOf cs:EntityRisk;
  rdfs:label "poison";
  dc:title "poison";
  rdfs:comment "Material is poisonous to humans and/or animals.  Special care must be taken to avoid incorporation, even of small amounts.";
  dcterms:description "Material is poisonous to humans and/or animals.  Special care must be taken to avoid incorporation, even of small amounts.".

cs:EntityRisk\#RAD rdfs:subClassOf cs:EntityRisk;
  rdfs:label "radioactive";
  dc:title "radioactive";
  rdfs:comment "Material is a source for ionizing radiation and must be handled with special care to avoid injury of those who handle it and to avoid environmental hazards.";
  dcterms:description "Material is a source for ionizing radiation and must be handled with special care to avoid injury of those who handle it and to avoid environmental hazards.".

# - vs:v3-EntityStatus ---------------------------------------------------------

vs:v3-EntityStatus a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EntityStatus";
  dc:title "v3 Code System EntityStatus";
  rdfs:comment " Codes representing the defined possible states of an Entity, as defined by the Entity class state machine.";
  dcterms:description " Codes representing the defined possible states of an Entity, as defined by the Entity class state machine.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EntityStatus.

cs:EntityStatus.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EntityStatus";
  dc:title "v3 Code System EntityStatus";
  rdfs:comment " Codes representing the defined possible states of an Entity, as defined by the Entity class state machine.";
  dcterms:description " Codes representing the defined possible states of an Entity, as defined by the Entity class state machine.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EntityStatus a fhir:Concept.

cs:EntityStatus\#normal rdfs:subClassOf cs:EntityStatus;
  rdfs:label "normal";
  dc:title "normal";
  rdfs:comment "The 'typical' state. Excludes \"nullified\" which represents the termination state of an Entity record instance that was created in error.";
  dcterms:description "The 'typical' state. Excludes \"nullified\" which represents the termination state of an Entity record instance that was created in error.".

cs:EntityStatus\#active rdfs:subClassOf cs:EntityStatus\#normal;
  rdfs:label "active";
  dc:title "active";
  rdfs:comment "The state representing the fact that the Entity record is currently active.";
  dcterms:description "The state representing the fact that the Entity record is currently active.".

cs:EntityStatus\#inactive rdfs:subClassOf cs:EntityStatus\#normal;
  rdfs:label "inactive";
  dc:title "inactive";
  rdfs:comment "Definition: The state representing the fact that the entity is inactive.";
  dcterms:description "Definition: The state representing the fact that the entity is inactive.".

cs:EntityStatus\#terminated rdfs:subClassOf cs:EntityStatus\#normal;
  rdfs:label "terminated";
  dc:title "terminated";
  rdfs:comment "The state representing the normal termination of an Entity record.";
  dcterms:description "The state representing the normal termination of an Entity record.".

cs:EntityStatus\#nullified rdfs:subClassOf cs:EntityStatus;
  rdfs:label "nullified";
  dc:title "nullified";
  rdfs:comment "The state representing the termination of an Entity record instance that was created in error.";
  dcterms:description "The state representing the termination of an Entity record instance that was created in error.".

# - vs:v3-EquipmentAlertLevel --------------------------------------------------

vs:v3-EquipmentAlertLevel a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System EquipmentAlertLevel";
  dc:title "v3 Code System EquipmentAlertLevel";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:EquipmentAlertLevel.

cs:EquipmentAlertLevel.system a fhir:CodeSystem;
  rdfs:label "v3 Code System EquipmentAlertLevel";
  dc:title "v3 Code System EquipmentAlertLevel";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:EquipmentAlertLevel a fhir:Concept.

cs:EquipmentAlertLevel\#C rdfs:subClassOf cs:EquipmentAlertLevel;
  rdfs:label "Critical";
  dc:title "Critical";
  rdfs:comment "Shut Down, Fix Problem and Re-init";
  dcterms:description "Shut Down, Fix Problem and Re-init".

cs:EquipmentAlertLevel\#N rdfs:subClassOf cs:EquipmentAlertLevel;
  rdfs:label "Normal";
  dc:title "Normal";
  rdfs:comment "No Corrective Action Needed";
  dcterms:description "No Corrective Action Needed".

cs:EquipmentAlertLevel\#S rdfs:subClassOf cs:EquipmentAlertLevel;
  rdfs:label "Serious";
  dc:title "Serious";
  rdfs:comment "Corrective Action Required";
  dcterms:description "Corrective Action Required".

cs:EquipmentAlertLevel\#W rdfs:subClassOf cs:EquipmentAlertLevel;
  rdfs:label "Warning";
  dc:title "Warning";
  rdfs:comment "Corrective Action Anticipated";
  dcterms:description "Corrective Action Anticipated".

# - vs:v3-Ethnicity ------------------------------------------------------------

vs:v3-Ethnicity a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System Ethnicity";
  dc:title "v3 Code System Ethnicity";
  rdfs:comment " In the United States, federal standards for classifying data on ethnicity determine the categories used by federal agencies and exert a strong influence on categorization by state and local agencies and private sector organizations. The federal standards do not conceptually define ethnicity, and they recognize the absence of an anthropological or scientific basis for ethnicity classification.  Instead, the federal standards acknowledge that ethnicity is a social-political construct in which an individual's own identification with a particular ethnicity is preferred to observer identification.  The standards specify two minimum ethnicity categories: Hispanic or Latino, and Not Hispanic or Latino.  The standards define a Hispanic or Latino as a person of \"Mexican, Puerto Rican, Cuban, South or Central America, or other Spanish culture or origin, regardless of race.\" The standards stipulate that ethnicity data need not be limited to the two minimum categories, but any expansion must be collapsible to those categories.  In addition, the standards stipulate that an individual can be Hispanic or Latino or can be Not Hispanic or Latino, but cannot be both.";
  dcterms:description " In the United States, federal standards for classifying data on ethnicity determine the categories used by federal agencies and exert a strong influence on categorization by state and local agencies and private sector organizations. The federal standards do not conceptually define ethnicity, and they recognize the absence of an anthropological or scientific basis for ethnicity classification.  Instead, the federal standards acknowledge that ethnicity is a social-political construct in which an individual's own identification with a particular ethnicity is preferred to observer identification.  The standards specify two minimum ethnicity categories: Hispanic or Latino, and Not Hispanic or Latino.  The standards define a Hispanic or Latino as a person of \"Mexican, Puerto Rican, Cuban, South or Central America, or other Spanish culture or origin, regardless of race.\" The standards stipulate that ethnicity data need not be limited to the two minimum categories, but any expansion must be collapsible to those categories.  In addition, the standards stipulate that an individual can be Hispanic or Latino or can be Not Hispanic or Latino, but cannot be both.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:Ethnicity.

cs:Ethnicity.system a fhir:CodeSystem;
  rdfs:label "v3 Code System Ethnicity";
  dc:title "v3 Code System Ethnicity";
  rdfs:comment " In the United States, federal standards for classifying data on ethnicity determine the categories used by federal agencies and exert a strong influence on categorization by state and local agencies and private sector organizations. The federal standards do not conceptually define ethnicity, and they recognize the absence of an anthropological or scientific basis for ethnicity classification.  Instead, the federal standards acknowledge that ethnicity is a social-political construct in which an individual's own identification with a particular ethnicity is preferred to observer identification.  The standards specify two minimum ethnicity categories: Hispanic or Latino, and Not Hispanic or Latino.  The standards define a Hispanic or Latino as a person of \"Mexican, Puerto Rican, Cuban, South or Central America, or other Spanish culture or origin, regardless of race.\" The standards stipulate that ethnicity data need not be limited to the two minimum categories, but any expansion must be collapsible to those categories.  In addition, the standards stipulate that an individual can be Hispanic or Latino or can be Not Hispanic or Latino, but cannot be both.";
  dcterms:description " In the United States, federal standards for classifying data on ethnicity determine the categories used by federal agencies and exert a strong influence on categorization by state and local agencies and private sector organizations. The federal standards do not conceptually define ethnicity, and they recognize the absence of an anthropological or scientific basis for ethnicity classification.  Instead, the federal standards acknowledge that ethnicity is a social-political construct in which an individual's own identification with a particular ethnicity is preferred to observer identification.  The standards specify two minimum ethnicity categories: Hispanic or Latino, and Not Hispanic or Latino.  The standards define a Hispanic or Latino as a person of \"Mexican, Puerto Rican, Cuban, South or Central America, or other Spanish culture or origin, regardless of race.\" The standards stipulate that ethnicity data need not be limited to the two minimum categories, but any expansion must be collapsible to those categories.  In addition, the standards stipulate that an individual can be Hispanic or Latino or can be Not Hispanic or Latino, but cannot be both.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:Ethnicity a fhir:Concept.

cs:Ethnicity\#2135%2d2 rdfs:subClassOf cs:Ethnicity;
  rdfs:label "Hispanic or Latino";
  dc:title "Hispanic or Latino";
  rdfs:comment "Hispanic or Latino";
  dcterms:description "Hispanic or Latino".

cs:Ethnicity\#2137%2d8 rdfs:subClassOf cs:Ethnicity\#2135%2d2;
  rdfs:label "Spaniard";
  dc:title "Spaniard";
  rdfs:comment "Spaniard";
  dcterms:description "Spaniard".

cs:Ethnicity\#2138%2d6 rdfs:subClassOf cs:Ethnicity\#2137%2d8;
  rdfs:label "Andalusian";
  dc:title "Andalusian";
  rdfs:comment "Andalusian";
  dcterms:description "Andalusian".

cs:Ethnicity\#2139%2d4 rdfs:subClassOf cs:Ethnicity\#2137%2d8;
  rdfs:label "Asturian";
  dc:title "Asturian";
  rdfs:comment "Asturian";
  dcterms:description "Asturian".

cs:Ethnicity\#2140%2d2 rdfs:subClassOf cs:Ethnicity\#2137%2d8;
  rdfs:label "Castillian";
  dc:title "Castillian";
  rdfs:comment "Castillian";
  dcterms:description "Castillian".

cs:Ethnicity\#2141%2d0 rdfs:subClassOf cs:Ethnicity\#2137%2d8;
  rdfs:label "Catalonian";
  dc:title "Catalonian";
  rdfs:comment "Catalonian";
  dcterms:description "Catalonian".

cs:Ethnicity\#2142%2d8 rdfs:subClassOf cs:Ethnicity\#2137%2d8;
  rdfs:label "Belearic Islander";
  dc:title "Belearic Islander";
  rdfs:comment "Belearic Islander";
  dcterms:description "Belearic Islander".

cs:Ethnicity\#2143%2d6 rdfs:subClassOf cs:Ethnicity\#2137%2d8;
  rdfs:label "Gallego";
  dc:title "Gallego";
  rdfs:comment "Gallego";
  dcterms:description "Gallego".

cs:Ethnicity\#2144%2d4 rdfs:subClassOf cs:Ethnicity\#2137%2d8;
  rdfs:label "Valencian";
  dc:title "Valencian";
  rdfs:comment "Valencian";
  dcterms:description "Valencian".

cs:Ethnicity\#2145%2d1 rdfs:subClassOf cs:Ethnicity\#2137%2d8;
  rdfs:label "Canarian";
  dc:title "Canarian";
  rdfs:comment "Canarian";
  dcterms:description "Canarian".

cs:Ethnicity\#2146%2d9 rdfs:subClassOf cs:Ethnicity\#2137%2d8;
  rdfs:label "Spanish Basque";
  dc:title "Spanish Basque";
  rdfs:comment "Spanish Basque";
  dcterms:description "Spanish Basque".

cs:Ethnicity\#2148%2d5 rdfs:subClassOf cs:Ethnicity\#2135%2d2;
  rdfs:label "Mexican";
  dc:title "Mexican";
  rdfs:comment "Mexican";
  dcterms:description "Mexican".

cs:Ethnicity\#2149%2d3 rdfs:subClassOf cs:Ethnicity\#2148%2d5;
  rdfs:label "Mexican American";
  dc:title "Mexican American";
  rdfs:comment "Mexican American";
  dcterms:description "Mexican American".

cs:Ethnicity\#2150%2d1 rdfs:subClassOf cs:Ethnicity\#2148%2d5;
  rdfs:label "Mexicano";
  dc:title "Mexicano";
  rdfs:comment "Mexicano";
  dcterms:description "Mexicano".

cs:Ethnicity\#2151%2d9 rdfs:subClassOf cs:Ethnicity\#2148%2d5;
  rdfs:label "Chicano";
  dc:title "Chicano";
  rdfs:comment "Chicano";
  dcterms:description "Chicano".

cs:Ethnicity\#2152%2d7 rdfs:subClassOf cs:Ethnicity\#2148%2d5;
  rdfs:label "La Raza";
  dc:title "La Raza";
  rdfs:comment "La Raza";
  dcterms:description "La Raza".

cs:Ethnicity\#2153%2d5 rdfs:subClassOf cs:Ethnicity\#2148%2d5;
  rdfs:label "Mexican American Indian";
  dc:title "Mexican American Indian";
  rdfs:comment "Mexican American Indian";
  dcterms:description "Mexican American Indian".

cs:Ethnicity\#2155%2d0 rdfs:subClassOf cs:Ethnicity\#2135%2d2;
  rdfs:label "Central American";
  dc:title "Central American";
  rdfs:comment "Central American";
  dcterms:description "Central American".

cs:Ethnicity\#2156%2d8 rdfs:subClassOf cs:Ethnicity\#2155%2d0;
  rdfs:label "Costa Rican";
  dc:title "Costa Rican";
  rdfs:comment "Costa Rican";
  dcterms:description "Costa Rican".

cs:Ethnicity\#2157%2d6 rdfs:subClassOf cs:Ethnicity\#2155%2d0;
  rdfs:label "Guatemalan";
  dc:title "Guatemalan";
  rdfs:comment "Guatemalan";
  dcterms:description "Guatemalan".

cs:Ethnicity\#2158%2d4 rdfs:subClassOf cs:Ethnicity\#2155%2d0;
  rdfs:label "Honduran";
  dc:title "Honduran";
  rdfs:comment "Honduran";
  dcterms:description "Honduran".

cs:Ethnicity\#2159%2d2 rdfs:subClassOf cs:Ethnicity\#2155%2d0;
  rdfs:label "Nicaraguan";
  dc:title "Nicaraguan";
  rdfs:comment "Nicaraguan";
  dcterms:description "Nicaraguan".

cs:Ethnicity\#2160%2d0 rdfs:subClassOf cs:Ethnicity\#2155%2d0;
  rdfs:label "Panamanian";
  dc:title "Panamanian";
  rdfs:comment "Panamanian";
  dcterms:description "Panamanian".

cs:Ethnicity\#2161%2d8 rdfs:subClassOf cs:Ethnicity\#2155%2d0;
  rdfs:label "Salvadoran";
  dc:title "Salvadoran";
  rdfs:comment "Salvadoran";
  dcterms:description "Salvadoran".

cs:Ethnicity\#2162%2d6 rdfs:subClassOf cs:Ethnicity\#2155%2d0;
  rdfs:label "Central American Indian";
  dc:title "Central American Indian";
  rdfs:comment "Central American Indian";
  dcterms:description "Central American Indian".

cs:Ethnicity\#2163%2d4 rdfs:subClassOf cs:Ethnicity\#2155%2d0;
  rdfs:label "Canal Zone";
  dc:title "Canal Zone";
  rdfs:comment "Canal Zone";
  dcterms:description "Canal Zone".

cs:Ethnicity\#2165%2d9 rdfs:subClassOf cs:Ethnicity\#2135%2d2;
  rdfs:label "South American";
  dc:title "South American";
  rdfs:comment "South American";
  dcterms:description "South American".

cs:Ethnicity\#2166%2d7 rdfs:subClassOf cs:Ethnicity\#2165%2d9;
  rdfs:label "Argentinean";
  dc:title "Argentinean";
  rdfs:comment "Argentinean";
  dcterms:description "Argentinean".

cs:Ethnicity\#2167%2d5 rdfs:subClassOf cs:Ethnicity\#2165%2d9;
  rdfs:label "Bolivian";
  dc:title "Bolivian";
  rdfs:comment "Bolivian";
  dcterms:description "Bolivian".

cs:Ethnicity\#2168%2d3 rdfs:subClassOf cs:Ethnicity\#2165%2d9;
  rdfs:label "Chilean";
  dc:title "Chilean";
  rdfs:comment "Chilean";
  dcterms:description "Chilean".

cs:Ethnicity\#2169%2d1 rdfs:subClassOf cs:Ethnicity\#2165%2d9;
  rdfs:label "Colombian";
  dc:title "Colombian";
  rdfs:comment "Colombian";
  dcterms:description "Colombian".

cs:Ethnicity\#2170%2d9 rdfs:subClassOf cs:Ethnicity\#2165%2d9;
  rdfs:label "Ecuadorian";
  dc:title "Ecuadorian";
  rdfs:comment "Ecuadorian";
  dcterms:description "Ecuadorian".

cs:Ethnicity\#2171%2d7 rdfs:subClassOf cs:Ethnicity\#2165%2d9;
  rdfs:label "Paraguayan";
  dc:title "Paraguayan";
  rdfs:comment "Paraguayan";
  dcterms:description "Paraguayan".

cs:Ethnicity\#2172%2d5 rdfs:subClassOf cs:Ethnicity\#2165%2d9;
  rdfs:label "Peruvian";
  dc:title "Peruvian";
  rdfs:comment "Peruvian";
  dcterms:description "Peruvian".

cs:Ethnicity\#2173%2d3 rdfs:subClassOf cs:Ethnicity\#2165%2d9;
  rdfs:label "Uruguayan";
  dc:title "Uruguayan";
  rdfs:comment "Uruguayan";
  dcterms:description "Uruguayan".

cs:Ethnicity\#2174%2d1 rdfs:subClassOf cs:Ethnicity\#2165%2d9;
  rdfs:label "Venezuelan";
  dc:title "Venezuelan";
  rdfs:comment "Venezuelan";
  dcterms:description "Venezuelan".

cs:Ethnicity\#2175%2d8 rdfs:subClassOf cs:Ethnicity\#2165%2d9;
  rdfs:label "South American Indian";
  dc:title "South American Indian";
  rdfs:comment "South American Indian";
  dcterms:description "South American Indian".

cs:Ethnicity\#2176%2d6 rdfs:subClassOf cs:Ethnicity\#2165%2d9;
  rdfs:label "Criollo";
  dc:title "Criollo";
  rdfs:comment "Criollo";
  dcterms:description "Criollo".

cs:Ethnicity\#2178%2d2 rdfs:subClassOf cs:Ethnicity\#2135%2d2;
  rdfs:label "Latin American";
  dc:title "Latin American";
  rdfs:comment "Latin American";
  dcterms:description "Latin American".

cs:Ethnicity\#2180%2d8 rdfs:subClassOf cs:Ethnicity\#2135%2d2;
  rdfs:label "Puerto Rican";
  dc:title "Puerto Rican";
  rdfs:comment "Puerto Rican";
  dcterms:description "Puerto Rican".

cs:Ethnicity\#2182%2d4 rdfs:subClassOf cs:Ethnicity\#2135%2d2;
  rdfs:label "Cuban";
  dc:title "Cuban";
  rdfs:comment "Cuban";
  dcterms:description "Cuban".

cs:Ethnicity\#2184%2d0 rdfs:subClassOf cs:Ethnicity\#2135%2d2;
  rdfs:label "Dominican";
  dc:title "Dominican";
  rdfs:comment "Dominican";
  dcterms:description "Dominican".

cs:Ethnicity\#2186%2d5 rdfs:subClassOf cs:Ethnicity;
  rdfs:label "Not Hispanic or Latino";
  dc:title "Not Hispanic or Latino";
  rdfs:comment "Note that this term remains in the table for completeness, even though within HL7, the notion of \"not otherwise coded\" term is deprecated.";
  dcterms:description "Note that this term remains in the table for completeness, even though within HL7, the notion of \"not otherwise coded\" term is deprecated.".

# - vs:v3-ExposureMode ---------------------------------------------------------

vs:v3-ExposureMode a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ExposureMode";
  dc:title "v3 Code System ExposureMode";
  rdfs:comment " Code for the mechanism by which the exposure agent was exchanged or potentially exchanged by the participants involved in the exposure.";
  dcterms:description " Code for the mechanism by which the exposure agent was exchanged or potentially exchanged by the participants involved in the exposure.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ExposureMode.

cs:ExposureMode.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ExposureMode";
  dc:title "v3 Code System ExposureMode";
  rdfs:comment " Code for the mechanism by which the exposure agent was exchanged or potentially exchanged by the participants involved in the exposure.";
  dcterms:description " Code for the mechanism by which the exposure agent was exchanged or potentially exchanged by the participants involved in the exposure.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ExposureMode a fhir:Concept.

cs:ExposureMode\#%5fExposureMode rdfs:subClassOf cs:ExposureMode;
  rdfs:label "ExposureMode";
  dc:title "ExposureMode";
  rdfs:comment "Code for the mechanism by which the exposure agent was exchanged or potentially exchanged by the participants involved in the exposure.";
  dcterms:description "Code for the mechanism by which the exposure agent was exchanged or potentially exchanged by the participants involved in the exposure.".

cs:ExposureMode\#AIRBORNE rdfs:subClassOf cs:ExposureMode\#%5fExposureMode;
  rdfs:label "airborne";
  dc:title "airborne";
  rdfs:comment "Description: Communication of an agent from a living subject or environmental source to a living subject through indirect contact via oral or nasal inhalation.";
  dcterms:description "Description: Communication of an agent from a living subject or environmental source to a living subject through indirect contact via oral or nasal inhalation.".

cs:ExposureMode\#CONTACT rdfs:subClassOf cs:ExposureMode\#%5fExposureMode;
  rdfs:label "contact";
  dc:title "contact";
  rdfs:comment "Description: Communication of an agent from a living subject or environmental source to a living subject through direct physical contact.";
  dcterms:description "Description: Communication of an agent from a living subject or environmental source to a living subject through direct physical contact.".

cs:ExposureMode\#FOODBORNE rdfs:subClassOf cs:ExposureMode\#%5fExposureMode;
  rdfs:label "foodborne";
  dc:title "foodborne";
  rdfs:comment "Description: Communication of an agent from a food source to a living subject via oral consumption.";
  dcterms:description "Description: Communication of an agent from a food source to a living subject via oral consumption.".

cs:ExposureMode\#WATERBORNE rdfs:subClassOf cs:ExposureMode\#%5fExposureMode;
  rdfs:label "waterborne";
  dc:title "waterborne";
  rdfs:comment "Description: Communication of an agent to a living subject by contact and/or consumption via an aqueous medium";
  dcterms:description "Description: Communication of an agent to a living subject by contact and/or consumption via an aqueous medium".

# - vs:v3-FamilyMember ---------------------------------------------------------

vs:v3-FamilyMember a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "FamilyMember";
  dc:title "FamilyMember";
  rdfs:comment " A relationship between two people characterizing their \"familial\" relationship";
  dcterms:description " A relationship between two people characterizing their \"familial\" relationship";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-GTSAbbreviation ------------------------------------------------------

vs:v3-GTSAbbreviation a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System GTSAbbreviation";
  dc:title "v3 Code System GTSAbbreviation";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:GTSAbbreviation.

cs:GTSAbbreviation.system a fhir:CodeSystem;
  rdfs:label "v3 Code System GTSAbbreviation";
  dc:title "v3 Code System GTSAbbreviation";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:GTSAbbreviation a fhir:Concept.

cs:GTSAbbreviation\#AM rdfs:subClassOf cs:GTSAbbreviation;
  rdfs:label "AM";
  dc:title "AM";
  rdfs:comment "Every morning at institution specified times.";
  dcterms:description "Every morning at institution specified times.".

cs:GTSAbbreviation\#BID rdfs:subClassOf cs:GTSAbbreviation;
  rdfs:label "BID";
  dc:title "BID";
  rdfs:comment "Two times a day at institution specified time";
  dcterms:description "Two times a day at institution specified time".

cs:GTSAbbreviation\#JB rdfs:subClassOf cs:GTSAbbreviation;
  rdfs:label "JB";
  dc:title "JB";
  rdfs:comment "Regular business days (Monday to Friday excluding holidays)";
  dcterms:description "Regular business days (Monday to Friday excluding holidays)".

cs:GTSAbbreviation\#JE rdfs:subClassOf cs:GTSAbbreviation;
  rdfs:label "JE";
  dc:title "JE";
  rdfs:comment "Regular weekends (Saturday and Sunday excluding holidays)";
  dcterms:description "Regular weekends (Saturday and Sunday excluding holidays)".

cs:GTSAbbreviation\#JH rdfs:subClassOf cs:GTSAbbreviation;
  rdfs:label "GTSAbbreviationHolidays";
  dc:title "GTSAbbreviationHolidays";
  rdfs:comment "Holidays";
  dcterms:description "Holidays".

cs:GTSAbbreviation\#%5fGTSAbbreviationHolidaysChristianRoman rdfs:subClassOf cs:GTSAbbreviation\#JH;
  rdfs:label "GTSAbbreviationHolidaysChristianRoman";
  dc:title "GTSAbbreviationHolidaysChristianRoman";
  rdfs:comment "Christian Holidays (Roman/Gregorian [Western] Tradition.)";
  dcterms:description "Christian Holidays (Roman/Gregorian [Western] Tradition.)".

cs:GTSAbbreviation\#JHCHREAS rdfs:subClassOf cs:GTSAbbreviation\#%5fGTSAbbreviationHolidaysChristianRoman;
  rdfs:label "JHCHREAS";
  dc:title "JHCHREAS";
  rdfs:comment "Easter Sunday.  The Easter date is a rather complex calculation based on Astronomical tables describing full moon dates.  Details can be found at [http://www.assa.org.au/edm.html, and http://aa.usno.navy.mil/AA/faq/docs/easter.html].  Note that the Christian Orthodox Holidays are based on the Julian calendar.";
  dcterms:description "Easter Sunday.  The Easter date is a rather complex calculation based on Astronomical tables describing full moon dates.  Details can be found at [http://www.assa.org.au/edm.html, and http://aa.usno.navy.mil/AA/faq/docs/easter.html].  Note that the Christian Orthodox Holidays are based on the Julian calendar.".

cs:GTSAbbreviation\#JHCHRGFR rdfs:subClassOf cs:GTSAbbreviation\#%5fGTSAbbreviationHolidaysChristianRoman;
  rdfs:label "JHCHRGFR";
  dc:title "JHCHRGFR";
  rdfs:comment "Good Friday, is the Friday right before Easter Sunday.";
  dcterms:description "Good Friday, is the Friday right before Easter Sunday.".

cs:GTSAbbreviation\#JHCHRNEW rdfs:subClassOf cs:GTSAbbreviation\#%5fGTSAbbreviationHolidaysChristianRoman;
  rdfs:label "JHCHRNEW";
  dc:title "JHCHRNEW";
  rdfs:comment "New Year's Day (January 1)";
  dcterms:description "New Year's Day (January 1)".

cs:GTSAbbreviation\#JHCHRPEN rdfs:subClassOf cs:GTSAbbreviation\#%5fGTSAbbreviationHolidaysChristianRoman;
  rdfs:label "JHCHRPEN";
  dc:title "JHCHRPEN";
  rdfs:comment "Pentecost Sunday, is seven weeks after Easter (the 50th day of Easter).";
  dcterms:description "Pentecost Sunday, is seven weeks after Easter (the 50th day of Easter).".

cs:GTSAbbreviation\#JHCHRXME rdfs:subClassOf cs:GTSAbbreviation\#%5fGTSAbbreviationHolidaysChristianRoman;
  rdfs:label "JHCHRXME";
  dc:title "JHCHRXME";
  rdfs:comment "Christmas Eve (December 24)";
  dcterms:description "Christmas Eve (December 24)".

cs:GTSAbbreviation\#JHCHRXMS rdfs:subClassOf cs:GTSAbbreviation\#%5fGTSAbbreviationHolidaysChristianRoman;
  rdfs:label "JHCHRXMS";
  dc:title "JHCHRXMS";
  rdfs:comment "Christmas Day (December 25)";
  dcterms:description "Christmas Day (December 25)".

cs:GTSAbbreviation\#JHNNL rdfs:subClassOf cs:GTSAbbreviation\#JH;
  rdfs:label "The Netherlands National Holidays";
  dc:title "The Netherlands National Holidays";
  rdfs:comment "Description:The Netherlands National Holidays.";
  dcterms:description "Description:The Netherlands National Holidays.".

cs:GTSAbbreviation\#JHNNLLD rdfs:subClassOf cs:GTSAbbreviation\#JHNNL;
  rdfs:label "Liberation day (May 5 every five years)";
  dc:title "Liberation day (May 5 every five years)";
  rdfs:comment "Description:Liberation day  (May 5 every five years)";
  dcterms:description "Description:Liberation day  (May 5 every five years)".

cs:GTSAbbreviation\#JHNNLQD rdfs:subClassOf cs:GTSAbbreviation\#JHNNL;
  rdfs:label "Queen's day (April 30)";
  dc:title "Queen's day (April 30)";
  rdfs:comment "Description:Queen's day (April 30)";
  dcterms:description "Description:Queen's day (April 30)".

cs:GTSAbbreviation\#JHNNLSK rdfs:subClassOf cs:GTSAbbreviation\#JHNNL;
  rdfs:label "Sinterklaas (December 5)";
  dc:title "Sinterklaas (December 5)";
  rdfs:comment "Description:Sinterklaas (December 5)";
  dcterms:description "Description:Sinterklaas (December 5)".

cs:GTSAbbreviation\#JHNUS rdfs:subClassOf cs:GTSAbbreviation\#JH;
  rdfs:label "GTSAbbreviationHolidaysUSNational";
  dc:title "GTSAbbreviationHolidaysUSNational";
  rdfs:comment "United States National Holidays (public holidays for federal employees established by U.S. Federal law 5 U.S.C. 6103).";
  dcterms:description "United States National Holidays (public holidays for federal employees established by U.S. Federal law 5 U.S.C. 6103).".

cs:GTSAbbreviation\#JHNUSCLM rdfs:subClassOf cs:GTSAbbreviation\#JHNUS;
  rdfs:label "JHNUSCLM";
  dc:title "JHNUSCLM";
  rdfs:comment "Columbus Day, the second Monday in October.";
  dcterms:description "Columbus Day, the second Monday in October.".

cs:GTSAbbreviation\#JHNUSIND rdfs:subClassOf cs:GTSAbbreviation\#JHNUS;
  rdfs:label "JHNUSIND";
  dc:title "JHNUSIND";
  rdfs:comment "Independence Day (4th of July)";
  dcterms:description "Independence Day (4th of July)".

cs:GTSAbbreviation\#JHNUSIND1 rdfs:subClassOf cs:GTSAbbreviation\#JHNUS;
  rdfs:label "JHNUSIND1";
  dc:title "JHNUSIND1";
  rdfs:comment "Alternative Monday after 4th of July Weekend [5 U.S.C. 6103(b)].";
  dcterms:description "Alternative Monday after 4th of July Weekend [5 U.S.C. 6103(b)].".

cs:GTSAbbreviation\#JHNUSIND5 rdfs:subClassOf cs:GTSAbbreviation\#JHNUS;
  rdfs:label "JHNUSIND5";
  dc:title "JHNUSIND5";
  rdfs:comment "Alternative Friday before 4th of July Weekend [5 U.S.C. 6103(b)].";
  dcterms:description "Alternative Friday before 4th of July Weekend [5 U.S.C. 6103(b)].".

cs:GTSAbbreviation\#JHNUSLBR rdfs:subClassOf cs:GTSAbbreviation\#JHNUS;
  rdfs:label "JHNUSLBR";
  dc:title "JHNUSLBR";
  rdfs:comment "Labor Day, the first Monday in September.";
  dcterms:description "Labor Day, the first Monday in September.".

cs:GTSAbbreviation\#JHNUSMEM rdfs:subClassOf cs:GTSAbbreviation\#JHNUS;
  rdfs:label "JHNUSMEM";
  dc:title "JHNUSMEM";
  rdfs:comment "Memorial Day, the last Monday in May.";
  dcterms:description "Memorial Day, the last Monday in May.".

cs:GTSAbbreviation\#JHNUSMEM5 rdfs:subClassOf cs:GTSAbbreviation\#JHNUS;
  rdfs:label "JHNUSMEM5";
  dc:title "JHNUSMEM5";
  rdfs:comment "Friday before Memorial Day Weekend";
  dcterms:description "Friday before Memorial Day Weekend".

cs:GTSAbbreviation\#JHNUSMEM6 rdfs:subClassOf cs:GTSAbbreviation\#JHNUS;
  rdfs:label "JHNUSMEM6";
  dc:title "JHNUSMEM6";
  rdfs:comment "Saturday of Memorial Day Weekend";
  dcterms:description "Saturday of Memorial Day Weekend".

cs:GTSAbbreviation\#JHNUSMLK rdfs:subClassOf cs:GTSAbbreviation\#JHNUS;
  rdfs:label "JHNUSMLK";
  dc:title "JHNUSMLK";
  rdfs:comment "Dr. Martin Luther King, Jr. Day, the third Monday in January.";
  dcterms:description "Dr. Martin Luther King, Jr. Day, the third Monday in January.".

cs:GTSAbbreviation\#JHNUSPRE rdfs:subClassOf cs:GTSAbbreviation\#JHNUS;
  rdfs:label "JHNUSPRE";
  dc:title "JHNUSPRE";
  rdfs:comment "Washington's Birthday (Presidential Day) the third Monday in February.";
  dcterms:description "Washington's Birthday (Presidential Day) the third Monday in February.".

cs:GTSAbbreviation\#JHNUSTKS rdfs:subClassOf cs:GTSAbbreviation\#JHNUS;
  rdfs:label "JHNUSTKS";
  dc:title "JHNUSTKS";
  rdfs:comment "Thanksgiving Day, the fourth Thursday in November.";
  dcterms:description "Thanksgiving Day, the fourth Thursday in November.".

cs:GTSAbbreviation\#JHNUSTKS5 rdfs:subClassOf cs:GTSAbbreviation\#JHNUS;
  rdfs:label "JHNUSTKS5";
  dc:title "JHNUSTKS5";
  rdfs:comment "Friday after Thanksgiving.";
  dcterms:description "Friday after Thanksgiving.".

cs:GTSAbbreviation\#JHNUSVET rdfs:subClassOf cs:GTSAbbreviation\#JHNUS;
  rdfs:label "JHNUSVET";
  dc:title "JHNUSVET";
  rdfs:comment "Veteran's Day, November 11.";
  dcterms:description "Veteran's Day, November 11.".

cs:GTSAbbreviation\#PM rdfs:subClassOf cs:GTSAbbreviation;
  rdfs:label "PM";
  dc:title "PM";
  rdfs:comment "Every afternoon at institution specified times.";
  dcterms:description "Every afternoon at institution specified times.".

cs:GTSAbbreviation\#QID rdfs:subClassOf cs:GTSAbbreviation;
  rdfs:label "QID";
  dc:title "QID";
  rdfs:comment "Four times a day at institution specified time";
  dcterms:description "Four times a day at institution specified time".

cs:GTSAbbreviation\#TID rdfs:subClassOf cs:GTSAbbreviation;
  rdfs:label "TID";
  dc:title "TID";
  rdfs:comment "Three times a day at institution specified time";
  dcterms:description "Three times a day at institution specified time".

# - vs:v3-GenderStatus ---------------------------------------------------------

vs:v3-GenderStatus a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System GenderStatus";
  dc:title "v3 Code System GenderStatus";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:GenderStatus.

cs:GenderStatus.system a fhir:CodeSystem;
  rdfs:label "v3 Code System GenderStatus";
  dc:title "v3 Code System GenderStatus";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:GenderStatus a fhir:Concept.

cs:GenderStatus\#I rdfs:subClassOf cs:GenderStatus;
  rdfs:label "Intact";
  dc:title "Intact";
  rdfs:comment "Reproductively intact";
  dcterms:description "Reproductively intact".

cs:GenderStatus\#N rdfs:subClassOf cs:GenderStatus;
  rdfs:label "Neutered";
  dc:title "Neutered";
  rdfs:comment "Reproductively neutered";
  dcterms:description "Reproductively neutered".

# - vs:v3-GeneralPurposeOfUse --------------------------------------------------

vs:v3-GeneralPurposeOfUse a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "GeneralPurposeOfUse";
  dc:title "GeneralPurposeOfUse";
  rdfs:comment " Supports communication of purpose of use at a general level.";
  dcterms:description " Supports communication of purpose of use at a general level.";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-HL7UpdateMode --------------------------------------------------------

vs:v3-HL7UpdateMode a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System HL7UpdateMode";
  dc:title "v3 Code System HL7UpdateMode";
  rdfs:comment " The possible modes of updating that occur when an attribute is received by a system that already contains values for that attribute.";
  dcterms:description " The possible modes of updating that occur when an attribute is received by a system that already contains values for that attribute.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:HL7UpdateMode.

cs:HL7UpdateMode.system a fhir:CodeSystem;
  rdfs:label "v3 Code System HL7UpdateMode";
  dc:title "v3 Code System HL7UpdateMode";
  rdfs:comment " The possible modes of updating that occur when an attribute is received by a system that already contains values for that attribute.";
  dcterms:description " The possible modes of updating that occur when an attribute is received by a system that already contains values for that attribute.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:HL7UpdateMode a fhir:Concept.

cs:HL7UpdateMode\#A rdfs:subClassOf cs:HL7UpdateMode;
  rdfs:label "Add";
  dc:title "Add";
  rdfs:comment "Description:The item was (or is to be) added, having not been present immediately before. (If it is already present, this may be treated as an error condition.)";
  dcterms:description "Description:The item was (or is to be) added, having not been present immediately before. (If it is already present, this may be treated as an error condition.)".

cs:HL7UpdateMode\#AR rdfs:subClassOf cs:HL7UpdateMode;
  rdfs:label "Add or Replace";
  dc:title "Add or Replace";
  rdfs:comment "Description:The item was (or is to be) either added or replaced.";
  dcterms:description "Description:The item was (or is to be) either added or replaced.".

cs:HL7UpdateMode\#D rdfs:subClassOf cs:HL7UpdateMode;
  rdfs:label "Remove";
  dc:title "Remove";
  rdfs:comment "Description:The item was (or is to be) removed (sometimes referred to as deleted). If the item is part of a collection, delete any matching items.";
  dcterms:description "Description:The item was (or is to be) removed (sometimes referred to as deleted). If the item is part of a collection, delete any matching items.".

cs:HL7UpdateMode\#K rdfs:subClassOf cs:HL7UpdateMode;
  rdfs:label "Key";
  dc:title "Key";
  rdfs:comment "Description:This item is part of the identifying information for this object.";
  dcterms:description "Description:This item is part of the identifying information for this object.".

cs:HL7UpdateMode\#N rdfs:subClassOf cs:HL7UpdateMode;
  rdfs:label "No Change";
  dc:title "No Change";
  rdfs:comment "Description:There was (or is to be) no change to the item. This is primarily used when this element has not changed, but other attributes in the instance have changed.";
  dcterms:description "Description:There was (or is to be) no change to the item. This is primarily used when this element has not changed, but other attributes in the instance have changed.".

cs:HL7UpdateMode\#R rdfs:subClassOf cs:HL7UpdateMode;
  rdfs:label "Replace";
  dc:title "Replace";
  rdfs:comment "Description:The item existed previously and has (or is to be) revised. (If an item does not already exist, this may be treated as an error condition.)";
  dcterms:description "Description:The item existed previously and has (or is to be) revised. (If an item does not already exist, this may be treated as an error condition.)".

cs:HL7UpdateMode\#REF rdfs:subClassOf cs:HL7UpdateMode;
  rdfs:label "Reference";
  dc:title "Reference";
  rdfs:comment "Description:This item provides enough information to allow a processing system to locate the full applicable record by identifying the object.";
  dcterms:description "Description:This item provides enough information to allow a processing system to locate the full applicable record by identifying the object.".

cs:HL7UpdateMode\#U rdfs:subClassOf cs:HL7UpdateMode;
  rdfs:label "Unknown";
  dc:title "Unknown";
  rdfs:comment "Description:Description:</b>It is not specified whether or what kind of change has occurred to the item, or whether the item is present as a reference or identifying property.";
  dcterms:description "Description:Description:</b>It is not specified whether or what kind of change has occurred to the item, or whether the item is present as a reference or identifying property.".

cs:HL7UpdateMode\#%5fSetUpdateMode rdfs:subClassOf cs:HL7UpdateMode;
  rdfs:label "SetUpdateMode";
  dc:title "SetUpdateMode";
  rdfs:comment "These concepts apply when the element and/or message is updating a set of items.";
  dcterms:description "These concepts apply when the element and/or message is updating a set of items.".

cs:HL7UpdateMode\#ESA rdfs:subClassOf cs:HL7UpdateMode\#%5fSetUpdateMode;
  rdfs:label "Set Add";
  dc:title "Set Add";
  rdfs:comment "Add the message element to the collection of items on the receiving system that correspond to the message element.";
  dcterms:description "Add the message element to the collection of items on the receiving system that correspond to the message element.".

cs:HL7UpdateMode\#ESAC rdfs:subClassOf cs:HL7UpdateMode\#%5fSetUpdateMode;
  rdfs:label "Set Add or Change";
  dc:title "Set Add or Change";
  rdfs:comment "Change the item on the receiving system that corresponds to this message element; if a matching element does not exist, add a new one created with the values in the message.";
  dcterms:description "Change the item on the receiving system that corresponds to this message element; if a matching element does not exist, add a new one created with the values in the message.".

cs:HL7UpdateMode\#ESC rdfs:subClassOf cs:HL7UpdateMode\#%5fSetUpdateMode;
  rdfs:label "Set Change";
  dc:title "Set Change";
  rdfs:comment "Change the item on the receiving system that corresponds to this message element; do not process if a matching element does not exist.";
  dcterms:description "Change the item on the receiving system that corresponds to this message element; do not process if a matching element does not exist.".

cs:HL7UpdateMode\#ESD rdfs:subClassOf cs:HL7UpdateMode\#%5fSetUpdateMode;
  rdfs:label "Set Delete";
  dc:title "Set Delete";
  rdfs:comment "Delete the item on the receiving system that corresponds to this message element.";
  dcterms:description "Delete the item on the receiving system that corresponds to this message element.".

cs:HL7UpdateMode\#AU rdfs:subClassOf cs:HL7UpdateMode;
  rdfs:label "Add or Update";
  dc:title "Add or Update";
  rdfs:comment "Description: AU: If this item exists, update it with these values. If it does not exist, create it with these values. If the item is part of the collection, update each item that matches this item, and if no items match, add a new item to the collection.";
  dcterms:description "Description: AU: If this item exists, update it with these values. If it does not exist, create it with these values. If the item is part of the collection, update each item that matches this item, and if no items match, add a new item to the collection.".

cs:HL7UpdateMode\#I rdfs:subClassOf cs:HL7UpdateMode;
  rdfs:label "Ignore";
  dc:title "Ignore";
  rdfs:comment "Ignore this role, it is not relevant to the update.";
  dcterms:description "Ignore this role, it is not relevant to the update.".

cs:HL7UpdateMode\#V rdfs:subClassOf cs:HL7UpdateMode;
  rdfs:label "Verify";
  dc:title "Verify";
  rdfs:comment "Verify - this message element must match a value already in the receiving systems database in order to process the message.";
  dcterms:description "Verify - this message element must match a value already in the receiving systems database in order to process the message.".

# - vs:v3-HtmlLinkType ---------------------------------------------------------

vs:v3-HtmlLinkType a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System HtmlLinkType";
  dc:title "v3 Code System HtmlLinkType";
  rdfs:comment " HtmlLinkType values are drawn from HTML 4.0 and describe the relationship between the current document and the anchor that is the target of the link";
  dcterms:description " HtmlLinkType values are drawn from HTML 4.0 and describe the relationship between the current document and the anchor that is the target of the link";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:HtmlLinkType.

cs:HtmlLinkType.system a fhir:CodeSystem;
  rdfs:label "v3 Code System HtmlLinkType";
  dc:title "v3 Code System HtmlLinkType";
  rdfs:comment " HtmlLinkType values are drawn from HTML 4.0 and describe the relationship between the current document and the anchor that is the target of the link";
  dcterms:description " HtmlLinkType values are drawn from HTML 4.0 and describe the relationship between the current document and the anchor that is the target of the link";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:HtmlLinkType a fhir:Concept.

cs:HtmlLinkType\#alternate rdfs:subClassOf cs:HtmlLinkType;
  rdfs:label "alternate";
  dc:title "alternate";
  rdfs:comment "Designates substitute versions for the document in which the link occurs. When used together with the lang attribute, it implies a translated version of the document. When used together with the media attribute, it implies a version designed for a different medium (or media).";
  dcterms:description "Designates substitute versions for the document in which the link occurs. When used together with the lang attribute, it implies a translated version of the document. When used together with the media attribute, it implies a version designed for a different medium (or media).".

cs:HtmlLinkType\#appendix rdfs:subClassOf cs:HtmlLinkType;
  rdfs:label "appendix";
  dc:title "appendix";
  rdfs:comment "Refers to a document serving as an appendix in a collection of documents.";
  dcterms:description "Refers to a document serving as an appendix in a collection of documents.".

cs:HtmlLinkType\#bookmark rdfs:subClassOf cs:HtmlLinkType;
  rdfs:label "bookmark";
  dc:title "bookmark";
  rdfs:comment "Refers to a bookmark. A bookmark is a link to a key entry point within an extended document. The title attribute may be used, for example, to label the bookmark. Note that several bookmarks may be defined in each document.";
  dcterms:description "Refers to a bookmark. A bookmark is a link to a key entry point within an extended document. The title attribute may be used, for example, to label the bookmark. Note that several bookmarks may be defined in each document.".

cs:HtmlLinkType\#chapter rdfs:subClassOf cs:HtmlLinkType;
  rdfs:label "chapter";
  dc:title "chapter";
  rdfs:comment "Refers to a document serving as a chapter in a collection of documents.";
  dcterms:description "Refers to a document serving as a chapter in a collection of documents.".

cs:HtmlLinkType\#contents rdfs:subClassOf cs:HtmlLinkType;
  rdfs:label "contents";
  dc:title "contents";
  rdfs:comment "Refers to a document serving as a table of contents. Some user agents also support the synonym ToC (from \"Table of Contents\").";
  dcterms:description "Refers to a document serving as a table of contents. Some user agents also support the synonym ToC (from \"Table of Contents\").".

cs:HtmlLinkType\#copyright rdfs:subClassOf cs:HtmlLinkType;
  rdfs:label "copyright";
  dc:title "copyright";
  rdfs:comment "Refers to a copyright statement for the current document.";
  dcterms:description "Refers to a copyright statement for the current document.".

cs:HtmlLinkType\#glossary rdfs:subClassOf cs:HtmlLinkType;
  rdfs:label "glossary";
  dc:title "glossary";
  rdfs:comment "Refers to a document providing a glossary of terms that pertain to the current document.";
  dcterms:description "Refers to a document providing a glossary of terms that pertain to the current document.".

cs:HtmlLinkType\#help rdfs:subClassOf cs:HtmlLinkType;
  rdfs:label "help";
  dc:title "help";
  rdfs:comment "Refers to a document offering help (more information, links to other sources of information, etc.).";
  dcterms:description "Refers to a document offering help (more information, links to other sources of information, etc.).".

cs:HtmlLinkType\#index rdfs:subClassOf cs:HtmlLinkType;
  rdfs:label "index";
  dc:title "index";
  rdfs:comment "Refers to a document providing an index for the current document.";
  dcterms:description "Refers to a document providing an index for the current document.".

cs:HtmlLinkType\#next rdfs:subClassOf cs:HtmlLinkType;
  rdfs:label "next";
  dc:title "next";
  rdfs:comment "Refers to the next document in a linear sequence of documents. User agents may choose to preload the \"next\" document, to reduce the perceived load time.";
  dcterms:description "Refers to the next document in a linear sequence of documents. User agents may choose to preload the \"next\" document, to reduce the perceived load time.".

cs:HtmlLinkType\#prev rdfs:subClassOf cs:HtmlLinkType;
  rdfs:label "prev";
  dc:title "prev";
  rdfs:comment "Refers to the previous document in an ordered series of documents. Some user agents also support the synonym \"Previous\".";
  dcterms:description "Refers to the previous document in an ordered series of documents. Some user agents also support the synonym \"Previous\".".

cs:HtmlLinkType\#section rdfs:subClassOf cs:HtmlLinkType;
  rdfs:label "section";
  dc:title "section";
  rdfs:comment "Refers to a document serving as a section in a collection of documents.";
  dcterms:description "Refers to a document serving as a section in a collection of documents.".

cs:HtmlLinkType\#start rdfs:subClassOf cs:HtmlLinkType;
  rdfs:label "start";
  dc:title "start";
  rdfs:comment "Refers to the first document in a collection of documents. This link type tells search engines which document is considered by the author to be the starting point of the collection.";
  dcterms:description "Refers to the first document in a collection of documents. This link type tells search engines which document is considered by the author to be the starting point of the collection.".

cs:HtmlLinkType\#stylesheet rdfs:subClassOf cs:HtmlLinkType;
  rdfs:label "stylesheet";
  dc:title "stylesheet";
  rdfs:comment "Refers to an external style sheet. See the section on external style sheets for details. This is used together with the link type \"Alternate\" for user-selectable alternate style sheets.";
  dcterms:description "Refers to an external style sheet. See the section on external style sheets for details. This is used together with the link type \"Alternate\" for user-selectable alternate style sheets.".

cs:HtmlLinkType\#subsection rdfs:subClassOf cs:HtmlLinkType;
  rdfs:label "subsection";
  dc:title "subsection";
  rdfs:comment "Refers to a document serving as a subsection in a collection of documents.";
  dcterms:description "Refers to a document serving as a subsection in a collection of documents.".

# - vs:v3-IdentifierReliability ------------------------------------------------

vs:v3-IdentifierReliability a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System IdentifierReliability";
  dc:title "v3 Code System IdentifierReliability";
  rdfs:comment " Specifies the reliability with which the identifier is known. This attribute MAY be used to assist with identifier matching algorithms.";
  dcterms:description " Specifies the reliability with which the identifier is known. This attribute MAY be used to assist with identifier matching algorithms.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:IdentifierReliability.

cs:IdentifierReliability.system a fhir:CodeSystem;
  rdfs:label "v3 Code System IdentifierReliability";
  dc:title "v3 Code System IdentifierReliability";
  rdfs:comment " Specifies the reliability with which the identifier is known. This attribute MAY be used to assist with identifier matching algorithms.";
  dcterms:description " Specifies the reliability with which the identifier is known. This attribute MAY be used to assist with identifier matching algorithms.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:IdentifierReliability a fhir:Concept.

cs:IdentifierReliability\#ISS rdfs:subClassOf cs:IdentifierReliability;
  rdfs:label "Issued by System";
  dc:title "Issued by System";
  rdfs:comment "Description: The identifier was issued by the system responsible for constructing the instance.";
  dcterms:description "Description: The identifier was issued by the system responsible for constructing the instance.".

cs:IdentifierReliability\#UNV rdfs:subClassOf cs:IdentifierReliability;
  rdfs:label "Unverified by system";
  dc:title "Unverified by system";
  rdfs:comment "Description: The identifier was provided to the system that constructed the instance, but has not been verified. e.g. a Drivers  license entered manually into a system by a user.";
  dcterms:description "Description: The identifier was provided to the system that constructed the instance, but has not been verified. e.g. a Drivers  license entered manually into a system by a user.".

cs:IdentifierReliability\#VRF rdfs:subClassOf cs:IdentifierReliability;
  rdfs:label "Verified by system";
  dc:title "Verified by system";
  rdfs:comment "Description: The identifier was not issued by the system responsible for constructing the instance, but the system that captured the id has verified the identifier with the issuing authority, or with another system that has verified the identifier.";
  dcterms:description "Description: The identifier was not issued by the system responsible for constructing the instance, but the system that captured the id has verified the identifier with the issuing authority, or with another system that has verified the identifier.".

# - vs:v3-IdentifierScope ------------------------------------------------------

vs:v3-IdentifierScope a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System IdentifierScope";
  dc:title "v3 Code System IdentifierScope";
  rdfs:comment "  Description:\r\nCodes to specify the scope in which the identifier applies to the object with which it is associated, and used in the datatype property II.";
  dcterms:description "  Description:\r\nCodes to specify the scope in which the identifier applies to the object with which it is associated, and used in the datatype property II.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:IdentifierScope.

cs:IdentifierScope.system a fhir:CodeSystem;
  rdfs:label "v3 Code System IdentifierScope";
  dc:title "v3 Code System IdentifierScope";
  rdfs:comment "  Description:\r\nCodes to specify the scope in which the identifier applies to the object with which it is associated, and used in the datatype property II.";
  dcterms:description "  Description:\r\nCodes to specify the scope in which the identifier applies to the object with which it is associated, and used in the datatype property II.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:IdentifierScope a fhir:Concept.

cs:IdentifierScope\#BUSN rdfs:subClassOf cs:IdentifierScope;
  rdfs:label "Business Identifier";
  dc:title "Business Identifier";
  rdfs:comment "Description: An identifier whose scope is defined by the business practices associated with the object. In contrast to the other scope identifiers, the scope of the use of the id is not necessarily restricted to a single object, but may be reused for other objects closely associated with the object due to business practice.";
  dcterms:description "Description: An identifier whose scope is defined by the business practices associated with the object. In contrast to the other scope identifiers, the scope of the use of the id is not necessarily restricted to a single object, but may be reused for other objects closely associated with the object due to business practice.".

cs:IdentifierScope\#OBJ rdfs:subClassOf cs:IdentifierScope;
  rdfs:label "Object Identifier";
  dc:title "Object Identifier";
  rdfs:comment "Description: The identifier associated with a particular object. It remains consistent as the object undergoes state transitions.";
  dcterms:description "Description: The identifier associated with a particular object. It remains consistent as the object undergoes state transitions.".

cs:IdentifierScope\#VER rdfs:subClassOf cs:IdentifierScope;
  rdfs:label "Version Identifier";
  dc:title "Version Identifier";
  rdfs:comment "Description: An identifier that references a particular object as it existed at a given point in time. The identifier SHALL change with each state transition on the object. I.e. The version identifier of an object prior to a 'suspend' state transition is distinct from the identifier of the object after the state transition. Each version identifier can be tied to exactly one ControlAct event which brought that version into being (though the control act may never be instantiated).\r\n\n                        \n                            NOTE: Applications that do not support versioning of objects must ignore and not persist these ids to avoid confusion resulting from leaving the same identifier on an object that undergoes changes.";
  dcterms:description "Description: An identifier that references a particular object as it existed at a given point in time. The identifier SHALL change with each state transition on the object. I.e. The version identifier of an object prior to a 'suspend' state transition is distinct from the identifier of the object after the state transition. Each version identifier can be tied to exactly one ControlAct event which brought that version into being (though the control act may never be instantiated).\r\n\n                        \n                            NOTE: Applications that do not support versioning of objects must ignore and not persist these ids to avoid confusion resulting from leaving the same identifier on an object that undergoes changes.".

cs:IdentifierScope\#VW rdfs:subClassOf cs:IdentifierScope;
  rdfs:label "View Specific Identifier";
  dc:title "View Specific Identifier";
  rdfs:comment "Description: An identifier that references a particular object as it existed at a given point in time. The identifier SHALL change with each state transition on the object.\r\n\n                        \n                           Example The version identifier of an object prior to a 'suspend' state transition is distinct from the identifier of the object after the state transition. Each version identifier can be tied to exactly one ControlAct event which brought that version into being (though the control act may never be instantiated).\r\n\n                        \n                            NOTE: Applications that do not support versioning of objects must ignore and not persist these ids to avoid confusion resulting from leaving the same identifier on an object that undergoes changes.";
  dcterms:description "Description: An identifier that references a particular object as it existed at a given point in time. The identifier SHALL change with each state transition on the object.\r\n\n                        \n                           Example The version identifier of an object prior to a 'suspend' state transition is distinct from the identifier of the object after the state transition. Each version identifier can be tied to exactly one ControlAct event which brought that version into being (though the control act may never be instantiated).\r\n\n                        \n                            NOTE: Applications that do not support versioning of objects must ignore and not persist these ids to avoid confusion resulting from leaving the same identifier on an object that undergoes changes.".

# - vs:v3-InformationSensitivityPolicy -----------------------------------------

vs:v3-InformationSensitivityPolicy a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "InformationSensitivityPolicy";
  dc:title "InformationSensitivityPolicy";
  rdfs:comment " Sensitivity codes are not useful for interoperability outside of a policy domain because sensitivity policies are typically localized and vary drastically across policy domains even for the same information category because of differing organizational business rules, security policies, and jurisdictional requirements.  For example, an \"employee\" sensitivity code would make little sense for use outside of a policy domain.   \"Taboo\" would rarely be useful outside of a policy domain unless there are jurisdictional requirements requiring that a provider disclose sensitive information to a patient directly. Sensitivity codes may be more appropriate in a legacy system's Master Files in order to notify those who access a patient's orders and observations about the sensitivity policies that apply.  Newer systems may have a security engine that uses a sensitivity policy's criteria directly. The specializable Sensitivity Act.code may be useful in some scenarious if used in combination with a sensitivity identifier and/or Act.title.";
  dcterms:description " Sensitivity codes are not useful for interoperability outside of a policy domain because sensitivity policies are typically localized and vary drastically across policy domains even for the same information category because of differing organizational business rules, security policies, and jurisdictional requirements.  For example, an \"employee\" sensitivity code would make little sense for use outside of a policy domain.   \"Taboo\" would rarely be useful outside of a policy domain unless there are jurisdictional requirements requiring that a provider disclose sensitive information to a patient directly. Sensitivity codes may be more appropriate in a legacy system's Master Files in order to notify those who access a patient's orders and observations about the sensitivity policies that apply.  Newer systems may have a security engine that uses a sensitivity policy's criteria directly. The specializable Sensitivity Act.code may be useful in some scenarious if used in combination with a sensitivity identifier and/or Act.title.";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-IntegrityCheckAlgorithm ----------------------------------------------

vs:v3-IntegrityCheckAlgorithm a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System IntegrityCheckAlgorithm";
  dc:title "v3 Code System IntegrityCheckAlgorithm";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:IntegrityCheckAlgorithm.

cs:IntegrityCheckAlgorithm.system a fhir:CodeSystem;
  rdfs:label "v3 Code System IntegrityCheckAlgorithm";
  dc:title "v3 Code System IntegrityCheckAlgorithm";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:IntegrityCheckAlgorithm a fhir:Concept.

cs:IntegrityCheckAlgorithm\#SHA%2d1 rdfs:subClassOf cs:IntegrityCheckAlgorithm;
  rdfs:label "secure hash algorithm - 1";
  dc:title "secure hash algorithm - 1";
  rdfs:comment "This algorithm is defined in FIPS PUB 180-1: Secure Hash Standard.  As of April 17, 1995.";
  dcterms:description "This algorithm is defined in FIPS PUB 180-1: Secure Hash Standard.  As of April 17, 1995.".

cs:IntegrityCheckAlgorithm\#SHA%2d256 rdfs:subClassOf cs:IntegrityCheckAlgorithm;
  rdfs:label "secure hash algorithm - 256";
  dc:title "secure hash algorithm - 256";
  rdfs:comment "This algorithm is defined in FIPS PUB 180-2: Secure Hash Standard.";
  dcterms:description "This algorithm is defined in FIPS PUB 180-2: Secure Hash Standard.".

# - vs:v3-LanguageAbilityMode --------------------------------------------------

vs:v3-LanguageAbilityMode a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System LanguageAbilityMode";
  dc:title "v3 Code System LanguageAbilityMode";
  rdfs:comment " A value representing the method of expression of the language.  Example:\r\nExpressed spoken, expressed written, expressed signed, received spoken, received written, received signed.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dcterms:description " A value representing the method of expression of the language.  Example:\r\nExpressed spoken, expressed written, expressed signed, received spoken, received written, received signed.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:LanguageAbilityMode.

cs:LanguageAbilityMode.system a fhir:CodeSystem;
  rdfs:label "v3 Code System LanguageAbilityMode";
  dc:title "v3 Code System LanguageAbilityMode";
  rdfs:comment " A value representing the method of expression of the language.  Example:\r\nExpressed spoken, expressed written, expressed signed, received spoken, received written, received signed.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dcterms:description " A value representing the method of expression of the language.  Example:\r\nExpressed spoken, expressed written, expressed signed, received spoken, received written, received signed.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:LanguageAbilityMode a fhir:Concept.

cs:LanguageAbilityMode\#ESGN rdfs:subClassOf cs:LanguageAbilityMode;
  rdfs:label "Expressed signed";
  dc:title "Expressed signed";
  rdfs:comment "Expressed signed";
  dcterms:description "Expressed signed".

cs:LanguageAbilityMode\#ESP rdfs:subClassOf cs:LanguageAbilityMode;
  rdfs:label "Expressed spoken";
  dc:title "Expressed spoken";
  rdfs:comment "Expressed spoken";
  dcterms:description "Expressed spoken".

cs:LanguageAbilityMode\#EWR rdfs:subClassOf cs:LanguageAbilityMode;
  rdfs:label "Expressed written";
  dc:title "Expressed written";
  rdfs:comment "Expressed written";
  dcterms:description "Expressed written".

cs:LanguageAbilityMode\#RSGN rdfs:subClassOf cs:LanguageAbilityMode;
  rdfs:label "Received signed";
  dc:title "Received signed";
  rdfs:comment "Received signed";
  dcterms:description "Received signed".

cs:LanguageAbilityMode\#RSP rdfs:subClassOf cs:LanguageAbilityMode;
  rdfs:label "Received spoken";
  dc:title "Received spoken";
  rdfs:comment "Received spoken";
  dcterms:description "Received spoken".

cs:LanguageAbilityMode\#RWR rdfs:subClassOf cs:LanguageAbilityMode;
  rdfs:label "Received written";
  dc:title "Received written";
  rdfs:comment "Received written";
  dcterms:description "Received written".

# - vs:v3-LanguageAbilityProficiency -------------------------------------------

vs:v3-LanguageAbilityProficiency a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System LanguageAbilityProficiency";
  dc:title "v3 Code System LanguageAbilityProficiency";
  rdfs:comment " A value representing the level of proficiency in a language.  Example:\r\nExcellent, good, fair, poor.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dcterms:description " A value representing the level of proficiency in a language.  Example:\r\nExcellent, good, fair, poor.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:LanguageAbilityProficiency.

cs:LanguageAbilityProficiency.system a fhir:CodeSystem;
  rdfs:label "v3 Code System LanguageAbilityProficiency";
  dc:title "v3 Code System LanguageAbilityProficiency";
  rdfs:comment " A value representing the level of proficiency in a language.  Example:\r\nExcellent, good, fair, poor.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dcterms:description " A value representing the level of proficiency in a language.  Example:\r\nExcellent, good, fair, poor.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:LanguageAbilityProficiency a fhir:Concept.

cs:LanguageAbilityProficiency\#E rdfs:subClassOf cs:LanguageAbilityProficiency;
  rdfs:label "Excellent";
  dc:title "Excellent";
  rdfs:comment "Excellent";
  dcterms:description "Excellent".

cs:LanguageAbilityProficiency\#F rdfs:subClassOf cs:LanguageAbilityProficiency;
  rdfs:label "Fair";
  dc:title "Fair";
  rdfs:comment "Fair";
  dcterms:description "Fair".

cs:LanguageAbilityProficiency\#G rdfs:subClassOf cs:LanguageAbilityProficiency;
  rdfs:label "Good";
  dc:title "Good";
  rdfs:comment "Good";
  dcterms:description "Good".

cs:LanguageAbilityProficiency\#P rdfs:subClassOf cs:LanguageAbilityProficiency;
  rdfs:label "Poor";
  dc:title "Poor";
  rdfs:comment "Poor";
  dcterms:description "Poor".

# - vs:v3-LivingArrangement ----------------------------------------------------

vs:v3-LivingArrangement a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System LivingArrangement";
  dc:title "v3 Code System LivingArrangement";
  rdfs:comment " A code depicting the living arrangements of a person";
  dcterms:description " A code depicting the living arrangements of a person";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:LivingArrangement.

cs:LivingArrangement.system a fhir:CodeSystem;
  rdfs:label "v3 Code System LivingArrangement";
  dc:title "v3 Code System LivingArrangement";
  rdfs:comment " A code depicting the living arrangements of a person";
  dcterms:description " A code depicting the living arrangements of a person";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:LivingArrangement a fhir:Concept.

cs:LivingArrangement\#HL rdfs:subClassOf cs:LivingArrangement;
  rdfs:label "homeless";
  dc:title "homeless";
  rdfs:comment "Definition: Living arrangements lacking a permanent residence.";
  dcterms:description "Definition: Living arrangements lacking a permanent residence.".

cs:LivingArrangement\#M rdfs:subClassOf cs:LivingArrangement\#HL;
  rdfs:label "Nomadic";
  dc:title "Nomadic";
  rdfs:comment "Nomadic";
  dcterms:description "Nomadic".

cs:LivingArrangement\#T rdfs:subClassOf cs:LivingArrangement\#HL;
  rdfs:label "Transient";
  dc:title "Transient";
  rdfs:comment "Transient";
  dcterms:description "Transient".

cs:LivingArrangement\#I rdfs:subClassOf cs:LivingArrangement;
  rdfs:label "Institution";
  dc:title "Institution";
  rdfs:comment "Institution";
  dcterms:description "Institution".

cs:LivingArrangement\#CS rdfs:subClassOf cs:LivingArrangement\#I;
  rdfs:label "community shelter";
  dc:title "community shelter";
  rdfs:comment "Definition: A group living arrangement specifically for the care of those in need of temporary and crisis housing assistance.  Examples include domestic violence shelters, shelters for displaced or homeless individuals, Salvation Army, Jesus House, etc.  Community based services may be provided.";
  dcterms:description "Definition: A group living arrangement specifically for the care of those in need of temporary and crisis housing assistance.  Examples include domestic violence shelters, shelters for displaced or homeless individuals, Salvation Army, Jesus House, etc.  Community based services may be provided.".

cs:LivingArrangement\#G rdfs:subClassOf cs:LivingArrangement\#I;
  rdfs:label "Group Home";
  dc:title "Group Home";
  rdfs:comment "Group Home";
  dcterms:description "Group Home".

cs:LivingArrangement\#N rdfs:subClassOf cs:LivingArrangement\#I;
  rdfs:label "Nursing Home";
  dc:title "Nursing Home";
  rdfs:comment "Nursing Home";
  dcterms:description "Nursing Home".

cs:LivingArrangement\#X rdfs:subClassOf cs:LivingArrangement\#I;
  rdfs:label "Extended care facility";
  dc:title "Extended care facility";
  rdfs:comment "Extended care facility";
  dcterms:description "Extended care facility".

cs:LivingArrangement\#PR rdfs:subClassOf cs:LivingArrangement;
  rdfs:label "private residence";
  dc:title "private residence";
  rdfs:comment "Definition:  A living arrangement within a private residence for single family.";
  dcterms:description "Definition:  A living arrangement within a private residence for single family.".

cs:LivingArrangement\#H rdfs:subClassOf cs:LivingArrangement\#PR;
  rdfs:label "Independent Household";
  dc:title "Independent Household";
  rdfs:comment "Independent Household";
  dcterms:description "Independent Household".

cs:LivingArrangement\#R rdfs:subClassOf cs:LivingArrangement\#PR;
  rdfs:label "Retirement Community";
  dc:title "Retirement Community";
  rdfs:comment "Retirement Community";
  dcterms:description "Retirement Community".

cs:LivingArrangement\#SL rdfs:subClassOf cs:LivingArrangement\#PR;
  rdfs:label "supported living";
  dc:title "supported living";
  rdfs:comment "Definition: Assisted living in a single family residence for persons with physical, behavioral, or functional health, or socio-economic challenges.  There may or may not be on-site supervision but the housing is designed to assist the client with developing independent living skills. Community based services may be provided.";
  dcterms:description "Definition: Assisted living in a single family residence for persons with physical, behavioral, or functional health, or socio-economic challenges.  There may or may not be on-site supervision but the housing is designed to assist the client with developing independent living skills. Community based services may be provided.".

# - vs:v3-LocalMarkupIgnore ----------------------------------------------------

vs:v3-LocalMarkupIgnore a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System LocalMarkupIgnore";
  dc:title "v3 Code System LocalMarkupIgnore";
  rdfs:comment " Tells a receiver to ignore just the local markup tags (local_markup, local_header, local_attr) when value=\"markup\", or to ignore the local markup tags and all contained content when value=\"all\"";
  dcterms:description " Tells a receiver to ignore just the local markup tags (local_markup, local_header, local_attr) when value=\"markup\", or to ignore the local markup tags and all contained content when value=\"all\"";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:LocalMarkupIgnore.

cs:LocalMarkupIgnore.system a fhir:CodeSystem;
  rdfs:label "v3 Code System LocalMarkupIgnore";
  dc:title "v3 Code System LocalMarkupIgnore";
  rdfs:comment " Tells a receiver to ignore just the local markup tags (local_markup, local_header, local_attr) when value=\"markup\", or to ignore the local markup tags and all contained content when value=\"all\"";
  dcterms:description " Tells a receiver to ignore just the local markup tags (local_markup, local_header, local_attr) when value=\"markup\", or to ignore the local markup tags and all contained content when value=\"all\"";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:LocalMarkupIgnore a fhir:Concept.

cs:LocalMarkupIgnore\#all rdfs:subClassOf cs:LocalMarkupIgnore;
  rdfs:label "all";
  dc:title "all";
  rdfs:comment "all";
  dcterms:description "all".

cs:LocalMarkupIgnore\#markup rdfs:subClassOf cs:LocalMarkupIgnore;
  rdfs:label "markup";
  dc:title "markup";
  rdfs:comment "markup";
  dcterms:description "markup".

# - vs:v3-LocalRemoteControlState ----------------------------------------------

vs:v3-LocalRemoteControlState a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System LocalRemoteControlState";
  dc:title "v3 Code System LocalRemoteControlState";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:LocalRemoteControlState.

cs:LocalRemoteControlState.system a fhir:CodeSystem;
  rdfs:label "v3 Code System LocalRemoteControlState";
  dc:title "v3 Code System LocalRemoteControlState";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:LocalRemoteControlState a fhir:Concept.

cs:LocalRemoteControlState\#L rdfs:subClassOf cs:LocalRemoteControlState;
  rdfs:label "Local";
  dc:title "Local";
  rdfs:comment "An equipment can either work autonomously ('Local' control state).";
  dcterms:description "An equipment can either work autonomously ('Local' control state).".

cs:LocalRemoteControlState\#R rdfs:subClassOf cs:LocalRemoteControlState;
  rdfs:label "Remote";
  dc:title "Remote";
  rdfs:comment "An equipment can be controlled by another system, e.g., LAS computer ('Remote' control state).";
  dcterms:description "An equipment can be controlled by another system, e.g., LAS computer ('Remote' control state).".

# - vs:v3-ManagedParticipationStatus -------------------------------------------

vs:v3-ManagedParticipationStatus a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ManagedParticipationStatus";
  dc:title "v3 Code System ManagedParticipationStatus";
  rdfs:comment " Codes representing the defined possible states of a Managed Participation, as defined by the Managed Participation class state machine.";
  dcterms:description " Codes representing the defined possible states of a Managed Participation, as defined by the Managed Participation class state machine.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ManagedParticipationStatus.

cs:ManagedParticipationStatus.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ManagedParticipationStatus";
  dc:title "v3 Code System ManagedParticipationStatus";
  rdfs:comment " Codes representing the defined possible states of a Managed Participation, as defined by the Managed Participation class state machine.";
  dcterms:description " Codes representing the defined possible states of a Managed Participation, as defined by the Managed Participation class state machine.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ManagedParticipationStatus a fhir:Concept.

cs:ManagedParticipationStatus\#normal rdfs:subClassOf cs:ManagedParticipationStatus;
  rdfs:label "normal";
  dc:title "normal";
  rdfs:comment "The 'typical' state. Excludes \"nullified\" which represents the termination state of a participation instance that was created in error.";
  dcterms:description "The 'typical' state. Excludes \"nullified\" which represents the termination state of a participation instance that was created in error.".

cs:ManagedParticipationStatus\#active rdfs:subClassOf cs:ManagedParticipationStatus\#normal;
  rdfs:label "active";
  dc:title "active";
  rdfs:comment "The state representing the fact that the Participation is in progress.";
  dcterms:description "The state representing the fact that the Participation is in progress.".

cs:ManagedParticipationStatus\#cancelled rdfs:subClassOf cs:ManagedParticipationStatus\#normal;
  rdfs:label "cancelled";
  dc:title "cancelled";
  rdfs:comment "The terminal state resulting from cancellation of the Participation prior to activation.";
  dcterms:description "The terminal state resulting from cancellation of the Participation prior to activation.".

cs:ManagedParticipationStatus\#completed rdfs:subClassOf cs:ManagedParticipationStatus\#normal;
  rdfs:label "completed";
  dc:title "completed";
  rdfs:comment "The terminal state representing the successful completion of the Participation.";
  dcterms:description "The terminal state representing the successful completion of the Participation.".

cs:ManagedParticipationStatus\#pending rdfs:subClassOf cs:ManagedParticipationStatus\#normal;
  rdfs:label "pending";
  dc:title "pending";
  rdfs:comment "The state representing that fact that the Participation has not yet become active.";
  dcterms:description "The state representing that fact that the Participation has not yet become active.".

cs:ManagedParticipationStatus\#nullified rdfs:subClassOf cs:ManagedParticipationStatus;
  rdfs:label "nullified";
  dc:title "nullified";
  rdfs:comment "The state representing the termination of a Participation instance that was created in error.";
  dcterms:description "The state representing the termination of a Participation instance that was created in error.".

# - vs:v3-MapRelationship ------------------------------------------------------

vs:v3-MapRelationship a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System MapRelationship";
  dc:title "v3 Code System MapRelationship";
  rdfs:comment " The closeness or quality of the mapping between the HL7 concept (as represented by the HL7 concept identifier) and the source coding system. The values are patterned after the similar relationships used in the UMLS Metathesaurus. Because the HL7 coding sy";
  dcterms:description " The closeness or quality of the mapping between the HL7 concept (as represented by the HL7 concept identifier) and the source coding system. The values are patterned after the similar relationships used in the UMLS Metathesaurus. Because the HL7 coding sy";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:MapRelationship.

cs:MapRelationship.system a fhir:CodeSystem;
  rdfs:label "v3 Code System MapRelationship";
  dc:title "v3 Code System MapRelationship";
  rdfs:comment " The closeness or quality of the mapping between the HL7 concept (as represented by the HL7 concept identifier) and the source coding system. The values are patterned after the similar relationships used in the UMLS Metathesaurus. Because the HL7 coding sy";
  dcterms:description " The closeness or quality of the mapping between the HL7 concept (as represented by the HL7 concept identifier) and the source coding system. The values are patterned after the similar relationships used in the UMLS Metathesaurus. Because the HL7 coding sy";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:MapRelationship a fhir:Concept.

cs:MapRelationship\#BT rdfs:subClassOf cs:MapRelationship;
  rdfs:label "Broader Than";
  dc:title "Broader Than";
  rdfs:comment "The first concept is at a more abstract level than the second concept.  For example, Hepatitis is broader than Hepatitis A, and endocrine disease is broader than Diabetes Mellitus.  Broader than is the opposite of the narrower than relationship.";
  dcterms:description "The first concept is at a more abstract level than the second concept.  For example, Hepatitis is broader than Hepatitis A, and endocrine disease is broader than Diabetes Mellitus.  Broader than is the opposite of the narrower than relationship.".

cs:MapRelationship\#E rdfs:subClassOf cs:MapRelationship;
  rdfs:label "Exact";
  dc:title "Exact";
  rdfs:comment "The two concepts have identical meaning.";
  dcterms:description "The two concepts have identical meaning.".

cs:MapRelationship\#NT rdfs:subClassOf cs:MapRelationship;
  rdfs:label "Narrower Than";
  dc:title "Narrower Than";
  rdfs:comment "The first concept is at a more detailed level than the second concept.  For example, Pennicillin G is narrower than Pennicillin, and vellus hair is narrower than hair.  Narrower than is the opposite of broader than.";
  dcterms:description "The first concept is at a more detailed level than the second concept.  For example, Pennicillin G is narrower than Pennicillin, and vellus hair is narrower than hair.  Narrower than is the opposite of broader than.".

# - vs:v3-MaritalStatus --------------------------------------------------------

vs:v3-MaritalStatus a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System MaritalStatus";
  dc:title "v3 Code System MaritalStatus";
  rdfs:comment " * * * No description supplied * * *  Open Issue:\r\nThe specific meanings of these codes can vary somewhat by jurisdiction and implementation so caution should be used when determining equivalency.";
  dcterms:description " * * * No description supplied * * *  Open Issue:\r\nThe specific meanings of these codes can vary somewhat by jurisdiction and implementation so caution should be used when determining equivalency.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:MaritalStatus.

cs:MaritalStatus.system a fhir:CodeSystem;
  rdfs:label "v3 Code System MaritalStatus";
  dc:title "v3 Code System MaritalStatus";
  rdfs:comment " * * * No description supplied * * *  Open Issue:\r\nThe specific meanings of these codes can vary somewhat by jurisdiction and implementation so caution should be used when determining equivalency.";
  dcterms:description " * * * No description supplied * * *  Open Issue:\r\nThe specific meanings of these codes can vary somewhat by jurisdiction and implementation so caution should be used when determining equivalency.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:MaritalStatus a fhir:Concept.

cs:MaritalStatus\#A rdfs:subClassOf cs:MaritalStatus;
  rdfs:label "Annulled";
  dc:title "Annulled";
  rdfs:comment "Marriage contract has been declared null and to not have existed";
  dcterms:description "Marriage contract has been declared null and to not have existed".

cs:MaritalStatus\#D rdfs:subClassOf cs:MaritalStatus;
  rdfs:label "Divorced";
  dc:title "Divorced";
  rdfs:comment "Marriage contract has been declared dissolved and inactive";
  dcterms:description "Marriage contract has been declared dissolved and inactive".

cs:MaritalStatus\#I rdfs:subClassOf cs:MaritalStatus;
  rdfs:label "Interlocutory";
  dc:title "Interlocutory";
  rdfs:comment "Subject to an Interlocutory Decree.";
  dcterms:description "Subject to an Interlocutory Decree.".

cs:MaritalStatus\#L rdfs:subClassOf cs:MaritalStatus;
  rdfs:label "Legally Separated";
  dc:title "Legally Separated";
  rdfs:comment "Legally Separated";
  dcterms:description "Legally Separated".

cs:MaritalStatus\#M rdfs:subClassOf cs:MaritalStatus;
  rdfs:label "Married";
  dc:title "Married";
  rdfs:comment "A current marriage contract is active";
  dcterms:description "A current marriage contract is active".

cs:MaritalStatus\#P rdfs:subClassOf cs:MaritalStatus;
  rdfs:label "Polygamous";
  dc:title "Polygamous";
  rdfs:comment "More than 1 current spouse";
  dcterms:description "More than 1 current spouse".

cs:MaritalStatus\#S rdfs:subClassOf cs:MaritalStatus;
  rdfs:label "Never Married";
  dc:title "Never Married";
  rdfs:comment "No marriage contract has ever been entered";
  dcterms:description "No marriage contract has ever been entered".

cs:MaritalStatus\#T rdfs:subClassOf cs:MaritalStatus;
  rdfs:label "Domestic partner";
  dc:title "Domestic partner";
  rdfs:comment "Person declares that a domestic partner relationship exists.";
  dcterms:description "Person declares that a domestic partner relationship exists.".

cs:MaritalStatus\#U rdfs:subClassOf cs:MaritalStatus;
  rdfs:label "unmarried";
  dc:title "unmarried";
  rdfs:comment "Currently not in a marriage contract.";
  dcterms:description "Currently not in a marriage contract.".

cs:MaritalStatus\#W rdfs:subClassOf cs:MaritalStatus;
  rdfs:label "Widowed";
  dc:title "Widowed";
  rdfs:comment "The spouse has died";
  dcterms:description "The spouse has died".

# - vs:v3-MessageWaitingPriority -----------------------------------------------

vs:v3-MessageWaitingPriority a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System MessageWaitingPriority";
  dc:title "v3 Code System MessageWaitingPriority";
  rdfs:comment " Indicates that the receiver has messages for the sender  OpenIssue:\r\nDescription does not make sense relative to name of coding system.  Must be reviewed and improved.";
  dcterms:description " Indicates that the receiver has messages for the sender  OpenIssue:\r\nDescription does not make sense relative to name of coding system.  Must be reviewed and improved.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:MessageWaitingPriority.

cs:MessageWaitingPriority.system a fhir:CodeSystem;
  rdfs:label "v3 Code System MessageWaitingPriority";
  dc:title "v3 Code System MessageWaitingPriority";
  rdfs:comment " Indicates that the receiver has messages for the sender  OpenIssue:\r\nDescription does not make sense relative to name of coding system.  Must be reviewed and improved.";
  dcterms:description " Indicates that the receiver has messages for the sender  OpenIssue:\r\nDescription does not make sense relative to name of coding system.  Must be reviewed and improved.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:MessageWaitingPriority a fhir:Concept.

cs:MessageWaitingPriority\#H rdfs:subClassOf cs:MessageWaitingPriority;
  rdfs:label "High";
  dc:title "High";
  rdfs:comment "High priority messages are available";
  dcterms:description "High priority messages are available".

cs:MessageWaitingPriority\#L rdfs:subClassOf cs:MessageWaitingPriority;
  rdfs:label "Low";
  dc:title "Low";
  rdfs:comment "Low priority messages are available";
  dcterms:description "Low priority messages are available".

cs:MessageWaitingPriority\#M rdfs:subClassOf cs:MessageWaitingPriority;
  rdfs:label "Medium";
  dc:title "Medium";
  rdfs:comment "Medium priority messages are available";
  dcterms:description "Medium priority messages are available".

# - vs:v3-MilitaryRoleType -----------------------------------------------------

vs:v3-MilitaryRoleType a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "MilitaryRoleType";
  dc:title "MilitaryRoleType";
  rdfs:comment "  Definition:\r\nA person playing the role of program eligible under a program based on military status.  Discussion:\r\nThis CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\" or \"subscriber\" and the person's status as a member of the military meets jurisdictional or program criteria";
  dcterms:description "  Definition:\r\nA person playing the role of program eligible under a program based on military status.  Discussion:\r\nThis CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\" or \"subscriber\" and the person's status as a member of the military meets jurisdictional or program criteria";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-ModifyIndicator ------------------------------------------------------

vs:v3-ModifyIndicator a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ModifyIndicator";
  dc:title "v3 Code System ModifyIndicator";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ModifyIndicator.

cs:ModifyIndicator.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ModifyIndicator";
  dc:title "v3 Code System ModifyIndicator";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ModifyIndicator a fhir:Concept.

cs:ModifyIndicator\#M rdfs:subClassOf cs:ModifyIndicator;
  rdfs:label "Modified subscription";
  dc:title "Modified subscription";
  rdfs:comment "Modified subscription to a query server.";
  dcterms:description "Modified subscription to a query server.".

cs:ModifyIndicator\#N rdfs:subClassOf cs:ModifyIndicator;
  rdfs:label "New subscription";
  dc:title "New subscription";
  rdfs:comment "New subscription to a query server.";
  dcterms:description "New subscription to a query server.".

# - vs:v3-NullFlavor -----------------------------------------------------------

vs:v3-NullFlavor a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System NullFlavor";
  dc:title "v3 Code System NullFlavor";
  rdfs:comment " A collection of codes specifying why a valid value is not present.";
  dcterms:description " A collection of codes specifying why a valid value is not present.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:NullFlavor.

cs:NullFlavor.system a fhir:CodeSystem;
  rdfs:label "v3 Code System NullFlavor";
  dc:title "v3 Code System NullFlavor";
  rdfs:comment " A collection of codes specifying why a valid value is not present.";
  dcterms:description " A collection of codes specifying why a valid value is not present.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:NullFlavor a fhir:Concept.

cs:NullFlavor\#NI rdfs:subClassOf cs:NullFlavor;
  rdfs:label "NoInformation";
  dc:title "NoInformation";
  rdfs:comment "Description:The value is exceptional (missing, omitted, incomplete, improper). No information as to the reason for being an exceptional value is provided. This is the most general exceptional value. It is also the default exceptional value.";
  dcterms:description "Description:The value is exceptional (missing, omitted, incomplete, improper). No information as to the reason for being an exceptional value is provided. This is the most general exceptional value. It is also the default exceptional value.".

cs:NullFlavor\#INV rdfs:subClassOf cs:NullFlavor\#NI;
  rdfs:label "invalid";
  dc:title "invalid";
  rdfs:comment "Description:The value as represented in the instance is not a member of the set of permitted data values in the constrained value domain of a variable.";
  dcterms:description "Description:The value as represented in the instance is not a member of the set of permitted data values in the constrained value domain of a variable.".

cs:NullFlavor\#DER rdfs:subClassOf cs:NullFlavor\#INV;
  rdfs:label "derived";
  dc:title "derived";
  rdfs:comment "Description:An actual value may exist, but it must be derived from the provided information (usually an EXPR generic data type extension will be used to convey the derivation expressionexpression .";
  dcterms:description "Description:An actual value may exist, but it must be derived from the provided information (usually an EXPR generic data type extension will be used to convey the derivation expressionexpression .".

cs:NullFlavor\#OTH rdfs:subClassOf cs:NullFlavor\#INV;
  rdfs:label "other";
  dc:title "other";
  rdfs:comment "Description:The actual value is not a member of the set of permitted data values in the constrained value domain of a variable. (e.g., concept not provided by required code system).\r\n\n                        \n                           Usage Notes: This flavor and its specializations are most commonly used with the CD datatype and its flavors.  However, it may apply to *any* datatype where the constraints of the type are tighter than can be conveyed.  For example, a PQ that is for a true measured amount whose units are not supported in UCUM, a need to convey a REAL when the type has been constrained to INT, etc.\r\n\n                        With coded datatypes, this null flavor may only be used if the vocabulary binding has a coding strength of CNE.  By definition, all local codes and original text are part of the value set if the coding strength is CWE.";
  dcterms:description "Description:The actual value is not a member of the set of permitted data values in the constrained value domain of a variable. (e.g., concept not provided by required code system).\r\n\n                        \n                           Usage Notes: This flavor and its specializations are most commonly used with the CD datatype and its flavors.  However, it may apply to *any* datatype where the constraints of the type are tighter than can be conveyed.  For example, a PQ that is for a true measured amount whose units are not supported in UCUM, a need to convey a REAL when the type has been constrained to INT, etc.\r\n\n                        With coded datatypes, this null flavor may only be used if the vocabulary binding has a coding strength of CNE.  By definition, all local codes and original text are part of the value set if the coding strength is CWE.".

cs:NullFlavor\#NINF rdfs:subClassOf cs:NullFlavor\#OTH;
  rdfs:label "negative infinity";
  dc:title "negative infinity";
  rdfs:comment "Negative infinity of numbers.";
  dcterms:description "Negative infinity of numbers.".

cs:NullFlavor\#PINF rdfs:subClassOf cs:NullFlavor\#OTH;
  rdfs:label "positive infinity";
  dc:title "positive infinity";
  rdfs:comment "Positive infinity of numbers.";
  dcterms:description "Positive infinity of numbers.".

cs:NullFlavor\#UNC rdfs:subClassOf cs:NullFlavor\#INV;
  rdfs:label "un-encoded";
  dc:title "un-encoded";
  rdfs:comment "Description: The actual value has not yet been encoded within the approved value domain.\r\n\n                        \n                           Example: Original text or a local code has been specified but translation or encoding to the approved value set has not yet occurred due to limitations of the sending system.  Original text has been captured for a PQ, but not attempt has been made to split the value and unit or to encode the unit in UCUM.\r\n\n                        \n                           Usage Notes: If it is known that it is not possible to encode the concept, OTH should be used instead.  However, use of UNC does not necessarily guarantee the concept will be encodable, only that encoding has not been attempted.\r\n\n                        Data type properties such as original text and translations may be present when this null flavor is included.";
  dcterms:description "Description: The actual value has not yet been encoded within the approved value domain.\r\n\n                        \n                           Example: Original text or a local code has been specified but translation or encoding to the approved value set has not yet occurred due to limitations of the sending system.  Original text has been captured for a PQ, but not attempt has been made to split the value and unit or to encode the unit in UCUM.\r\n\n                        \n                           Usage Notes: If it is known that it is not possible to encode the concept, OTH should be used instead.  However, use of UNC does not necessarily guarantee the concept will be encodable, only that encoding has not been attempted.\r\n\n                        Data type properties such as original text and translations may be present when this null flavor is included.".

cs:NullFlavor\#MSK rdfs:subClassOf cs:NullFlavor\#NI;
  rdfs:label "masked";
  dc:title "masked";
  rdfs:comment "There is information on this item available but it has not been provided by the sender due to security, privacy or other reasons. There may be an alternate mechanism for gaining access to this information.\r\n\n                        Note: using this null flavor does provide information that may be a breach of confidentiality, even though no detail data is provided.  Its primary purpose is for those circumstances where it is necessary to inform the receiver that the information does exist without providing any detail.";
  dcterms:description "There is information on this item available but it has not been provided by the sender due to security, privacy or other reasons. There may be an alternate mechanism for gaining access to this information.\r\n\n                        Note: using this null flavor does provide information that may be a breach of confidentiality, even though no detail data is provided.  Its primary purpose is for those circumstances where it is necessary to inform the receiver that the information does exist without providing any detail.".

cs:NullFlavor\#NA rdfs:subClassOf cs:NullFlavor\#NI;
  rdfs:label "not applicable";
  dc:title "not applicable";
  rdfs:comment "Known to have no proper value (e.g., last menstrual period for a male).";
  dcterms:description "Known to have no proper value (e.g., last menstrual period for a male).".

cs:NullFlavor\#UNK rdfs:subClassOf cs:NullFlavor\#NI;
  rdfs:label "unknown";
  dc:title "unknown";
  rdfs:comment "Description:A proper value is applicable, but not known.\r\n\n                        \n                           Usage Notes: This means the actual value is not known.  If the only thing that is unknown is how to properly express the value in the necessary constraints (value set, datatype, etc.), then the OTH or UNC flavor should be used.  No properties should be included for a datatype with this property unless:\r\n\n                        \n                           Those properties themselves directly translate to a semantic of \"unknown\".  (E.g. a local code sent as a translation that conveys 'unknown')\n                           Those properties further qualify the nature of what is unknown.  (E.g. specifying a use code of \"H\" and a URL prefix of \"tel:\" to convey that it is the home phone number that is unknown.)";
  dcterms:description "Description:A proper value is applicable, but not known.\r\n\n                        \n                           Usage Notes: This means the actual value is not known.  If the only thing that is unknown is how to properly express the value in the necessary constraints (value set, datatype, etc.), then the OTH or UNC flavor should be used.  No properties should be included for a datatype with this property unless:\r\n\n                        \n                           Those properties themselves directly translate to a semantic of \"unknown\".  (E.g. a local code sent as a translation that conveys 'unknown')\n                           Those properties further qualify the nature of what is unknown.  (E.g. specifying a use code of \"H\" and a URL prefix of \"tel:\" to convey that it is the home phone number that is unknown.)".

cs:NullFlavor\#ASKU rdfs:subClassOf cs:NullFlavor\#UNK;
  rdfs:label "asked but unknown";
  dc:title "asked but unknown";
  rdfs:comment "Information was sought but not found (e.g., patient was asked but didn't know)";
  dcterms:description "Information was sought but not found (e.g., patient was asked but didn't know)".

cs:NullFlavor\#NAV rdfs:subClassOf cs:NullFlavor\#ASKU;
  rdfs:label "temporarily unavailable";
  dc:title "temporarily unavailable";
  rdfs:comment "Information is not available at this time but it is expected that it will be available later.";
  dcterms:description "Information is not available at this time but it is expected that it will be available later.".

cs:NullFlavor\#NASK rdfs:subClassOf cs:NullFlavor\#UNK;
  rdfs:label "not asked";
  dc:title "not asked";
  rdfs:comment "This information has not been sought (e.g., patient was not asked)";
  dcterms:description "This information has not been sought (e.g., patient was not asked)".

cs:NullFlavor\#NAVU rdfs:subClassOf cs:NullFlavor\#UNK;
  rdfs:label "Not available";
  dc:title "Not available";
  rdfs:comment "Information is not available at this time (with no expectation regarding whether it will or will not be available in the future).";
  dcterms:description "Information is not available at this time (with no expectation regarding whether it will or will not be available in the future).".

cs:NullFlavor\#QS rdfs:subClassOf cs:NullFlavor\#UNK;
  rdfs:label "Sufficient Quantity";
  dc:title "Sufficient Quantity";
  rdfs:comment "Description:The specific quantity is not known, but is known to be non-zero and is not specified because it makes up the bulk of the material. e.g. 'Add 10mg of ingredient X, 50mg of ingredient Y, and sufficient quantity of water to 100mL.' The null flavor would be used to express the quantity of water.";
  dcterms:description "Description:The specific quantity is not known, but is known to be non-zero and is not specified because it makes up the bulk of the material. e.g. 'Add 10mg of ingredient X, 50mg of ingredient Y, and sufficient quantity of water to 100mL.' The null flavor would be used to express the quantity of water.".

cs:NullFlavor\#TRC rdfs:subClassOf cs:NullFlavor\#UNK;
  rdfs:label "trace";
  dc:title "trace";
  rdfs:comment "The content is greater than zero, but too small to be quantified.";
  dcterms:description "The content is greater than zero, but too small to be quantified.".

cs:NullFlavor\#NP rdfs:subClassOf cs:NullFlavor;
  rdfs:label "not present";
  dc:title "not present";
  rdfs:comment "Value is not present in a message.  This is only defined in messages, never in application data!  All values not present in the message must be replaced by the applicable default, or no-information (NI) as the default of all defaults.";
  dcterms:description "Value is not present in a message.  This is only defined in messages, never in application data!  All values not present in the message must be replaced by the applicable default, or no-information (NI) as the default of all defaults.".

# - vs:v3-ObligationPolicy -----------------------------------------------------

vs:v3-ObligationPolicy a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "ObligationPolicy";
  dc:title "ObligationPolicy";
  rdfs:comment " Conveys the mandated workflow action that an information custodian, receiver, or user must perform.  Examples:\r\n  encrypt  Usage Note:\r\nPer OASIS XACML, an obligation is an operation specified in a policy or policy that is performed in conjunction with the enforcement of an access control decision.";
  dcterms:description " Conveys the mandated workflow action that an information custodian, receiver, or user must perform.  Examples:\r\n  encrypt  Usage Note:\r\nPer OASIS XACML, an obligation is an operation specified in a policy or policy that is performed in conjunction with the enforcement of an access control decision.";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-ObservationInterpretation --------------------------------------------

vs:v3-ObservationInterpretation a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ObservationInterpretation";
  dc:title "v3 Code System ObservationInterpretation";
  rdfs:comment " One or more codes specifying a rough qualitative interpretation of the observation, such as \"normal\", \"abnormal\", \"below normal\", \"change up\", \"resistant\", \"susceptible\", etc.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.  Note also that this might be identical to the V2 value set of interpretation codes (formerly Abnormal Flags in older versions).";
  dcterms:description " One or more codes specifying a rough qualitative interpretation of the observation, such as \"normal\", \"abnormal\", \"below normal\", \"change up\", \"resistant\", \"susceptible\", etc.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.  Note also that this might be identical to the V2 value set of interpretation codes (formerly Abnormal Flags in older versions).";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ObservationInterpretation.

cs:ObservationInterpretation.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ObservationInterpretation";
  dc:title "v3 Code System ObservationInterpretation";
  rdfs:comment " One or more codes specifying a rough qualitative interpretation of the observation, such as \"normal\", \"abnormal\", \"below normal\", \"change up\", \"resistant\", \"susceptible\", etc.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.  Note also that this might be identical to the V2 code system of interpretation codes (formerly Abnormal Flags in older versions).";
  dcterms:description " One or more codes specifying a rough qualitative interpretation of the observation, such as \"normal\", \"abnormal\", \"below normal\", \"change up\", \"resistant\", \"susceptible\", etc.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.  Note also that this might be identical to the V2 code system of interpretation codes (formerly Abnormal Flags in older versions).";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ObservationInterpretation a fhir:Concept.

cs:ObservationInterpretation\#%5fGeneticObservationInterpretation rdfs:subClassOf cs:ObservationInterpretation;
  rdfs:label "GeneticObservationInterpretation";
  dc:title "GeneticObservationInterpretation";
  rdfs:comment "Codes that specify interpretation of genetic analysis, such as \"positive\", \"negative\", \"carrier\", \"responsive\", etc.";
  dcterms:description "Codes that specify interpretation of genetic analysis, such as \"positive\", \"negative\", \"carrier\", \"responsive\", etc.".

cs:ObservationInterpretation\#CAR rdfs:subClassOf cs:ObservationInterpretation\#%5fGeneticObservationInterpretation;
  rdfs:label "Carrier";
  dc:title "Carrier";
  rdfs:comment "The patient is considered as carrier based on the testing results. A carrier is an individual who carries an altered form of a gene which can lead to having a child or offspring in future generations with a genetic disorder.";
  dcterms:description "The patient is considered as carrier based on the testing results. A carrier is an individual who carries an altered form of a gene which can lead to having a child or offspring in future generations with a genetic disorder.".

cs:ObservationInterpretation\#Carrier rdfs:subClassOf cs:ObservationInterpretation\#%5fGeneticObservationInterpretation;
  rdfs:label "Carrier";
  dc:title "Carrier";
  rdfs:comment "The patient is considered as carrier based on the testing results. A carrier is an individual who carries an altered form of a gene which can lead to having a child or offspring in future generations with a genetic disorder.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This code is currently the same string as the print name for this concept and is inconsistent with the conventions being used for the other codes in the coding system, as it is a full word with initial capitalization, rather than an all upper case mnemonic.  The recommendation from OO is to deprecate the code \"Carrier\" and to add \"CAR\" as the new active code representation for this concept.";
  dcterms:description "The patient is considered as carrier based on the testing results. A carrier is an individual who carries an altered form of a gene which can lead to having a child or offspring in future generations with a genetic disorder.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This code is currently the same string as the print name for this concept and is inconsistent with the conventions being used for the other codes in the coding system, as it is a full word with initial capitalization, rather than an all upper case mnemonic.  The recommendation from OO is to deprecate the code \"Carrier\" and to add \"CAR\" as the new active code representation for this concept.".

cs:ObservationInterpretation\#%5fObservationInterpretationChange rdfs:subClassOf cs:ObservationInterpretation;
  rdfs:label "ObservationInterpretationChange";
  dc:title "ObservationInterpretationChange";
  rdfs:comment "Interpretations of change of quantity and/or severity. At most one of B or W and one of U or D allowed.";
  dcterms:description "Interpretations of change of quantity and/or severity. At most one of B or W and one of U or D allowed.".

cs:ObservationInterpretation\#B rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationChange;
  rdfs:label "Better";
  dc:title "Better";
  rdfs:comment "The current result or observation value has improved compared to the previous result or observation value (the change is significant as defined in the respective test procedure).\r\n\n                        [Note: This can be applied to quantitative or qualitative observations.]";
  dcterms:description "The current result or observation value has improved compared to the previous result or observation value (the change is significant as defined in the respective test procedure).\r\n\n                        [Note: This can be applied to quantitative or qualitative observations.]".

cs:ObservationInterpretation\#D rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationChange;
  rdfs:label "Significant change down";
  dc:title "Significant change down";
  rdfs:comment "The current result has decreased from the previous result for a quantitative observation (the change is significant as defined in the respective test procedure).";
  dcterms:description "The current result has decreased from the previous result for a quantitative observation (the change is significant as defined in the respective test procedure).".

cs:ObservationInterpretation\#U rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationChange;
  rdfs:label "Significant change up";
  dc:title "Significant change up";
  rdfs:comment "The current result has increased from the previous result for a quantitative observation (the change is significant as defined in the respective test procedure).";
  dcterms:description "The current result has increased from the previous result for a quantitative observation (the change is significant as defined in the respective test procedure).".

cs:ObservationInterpretation\#W rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationChange;
  rdfs:label "Worse";
  dc:title "Worse";
  rdfs:comment "The current result or observation value has degraded compared to the previous result or observation value (the change is significant as defined in the respective test procedure).\r\n\n                        [Note: This can be applied to quantitative or qualitative observations.]";
  dcterms:description "The current result or observation value has degraded compared to the previous result or observation value (the change is significant as defined in the respective test procedure).\r\n\n                        [Note: This can be applied to quantitative or qualitative observations.]".

cs:ObservationInterpretation\#%5fObservationInterpretationExceptions rdfs:subClassOf cs:ObservationInterpretation;
  rdfs:label "ObservationInterpretationExceptions";
  dc:title "ObservationInterpretationExceptions";
  rdfs:comment "Technical exceptions resulting in the inability to provide an interpretation. At most one allowed. Does not imply normality or severity.";
  dcterms:description "Technical exceptions resulting in the inability to provide an interpretation. At most one allowed. Does not imply normality or severity.".

cs:ObservationInterpretation\#%3c rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationExceptions;
  rdfs:label "Off scale low";
  dc:title "Off scale low";
  rdfs:comment "The result is below the minimum detection limit (the test procedure or equipment is the limiting factor).\r\n\n                        Synonyms: Below analytical limit, low off scale.";
  dcterms:description "The result is below the minimum detection limit (the test procedure or equipment is the limiting factor).\r\n\n                        Synonyms: Below analytical limit, low off scale.".

cs:ObservationInterpretation\#%3e rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationExceptions;
  rdfs:label "Off scale high";
  dc:title "Off scale high";
  rdfs:comment "The result is above the maximum quantifiable limit (the test procedure or equipment is the limiting factor).\r\n\n                        Synonyms: Above analytical limit, high off scale.";
  dcterms:description "The result is above the maximum quantifiable limit (the test procedure or equipment is the limiting factor).\r\n\n                        Synonyms: Above analytical limit, high off scale.".

cs:ObservationInterpretation\#AC rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationExceptions;
  rdfs:label "Anti-complementary substances present";
  dc:title "Anti-complementary substances present";
  rdfs:comment "A valid result cannot be obtained for the specified component / analyte due to the presence of anti-complementary substances in the sample.";
  dcterms:description "A valid result cannot be obtained for the specified component / analyte due to the presence of anti-complementary substances in the sample.".

cs:ObservationInterpretation\#IE rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationExceptions;
  rdfs:label "Insufficient evidence";
  dc:title "Insufficient evidence";
  rdfs:comment "There is insufficient evidence that the species in question is a good target for therapy with the drug.  A categorical interpretation is not possible.\r\n\n                        [Note: A MIC with \"IE\" and/or a comment may be reported (without an accompanying S, I or R-categorization).]";
  dcterms:description "There is insufficient evidence that the species in question is a good target for therapy with the drug.  A categorical interpretation is not possible.\r\n\n                        [Note: A MIC with \"IE\" and/or a comment may be reported (without an accompanying S, I or R-categorization).]".

cs:ObservationInterpretation\#QCF rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationExceptions;
  rdfs:label "Quality control failure";
  dc:title "Quality control failure";
  rdfs:comment "A result cannot be considered valid for the specified component / analyte or organism due to failure in the quality control testing component.";
  dcterms:description "A result cannot be considered valid for the specified component / analyte or organism due to failure in the quality control testing component.".

cs:ObservationInterpretation\#TOX rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationExceptions;
  rdfs:label "Cytotoxic substance present";
  dc:title "Cytotoxic substance present";
  rdfs:comment "A valid result cannot be obtained for the specified organism or cell line due to the presence of cytotoxic substances in the sample or culture.";
  dcterms:description "A valid result cannot be obtained for the specified organism or cell line due to the presence of cytotoxic substances in the sample or culture.".

cs:ObservationInterpretation\#%5fObservationInterpretationNormality rdfs:subClassOf cs:ObservationInterpretation;
  rdfs:label "ObservationInterpretationNormality";
  dc:title "ObservationInterpretationNormality";
  rdfs:comment "Interpretation of normality or degree of abnormality (including critical or \"alert\" level). Concepts in this category are mutually exclusive, i.e., at most one is allowed.";
  dcterms:description "Interpretation of normality or degree of abnormality (including critical or \"alert\" level). Concepts in this category are mutually exclusive, i.e., at most one is allowed.".

cs:ObservationInterpretation\#A rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationNormality;
  rdfs:label "Abnormal";
  dc:title "Abnormal";
  rdfs:comment "The result or observation value is outside the reference range or expected norm (as defined for the respective test procedure).\r\n\n                        [Note: Typically applies to non-numeric results.]";
  dcterms:description "The result or observation value is outside the reference range or expected norm (as defined for the respective test procedure).\r\n\n                        [Note: Typically applies to non-numeric results.]".

cs:ObservationInterpretation\#AA rdfs:subClassOf cs:ObservationInterpretation\#A;
  rdfs:label "Critical abnormal";
  dc:title "Critical abnormal";
  rdfs:comment "The result or observation value is outside a reference range or expected norm at a level at which immediate action should be considered for patient safety (as defined for the respective test procedure).\r\n\n                        [Note: Typically applies to non-numeric results.  Analogous to critical/panic limits for numeric results.]";
  dcterms:description "The result or observation value is outside a reference range or expected norm at a level at which immediate action should be considered for patient safety (as defined for the respective test procedure).\r\n\n                        [Note: Typically applies to non-numeric results.  Analogous to critical/panic limits for numeric results.]".

cs:ObservationInterpretation\#HH rdfs:subClassOf cs:ObservationInterpretation\#AA;
  rdfs:label "Critical high";
  dc:title "Critical high";
  rdfs:comment "The result for a quantitative observation is above a reference level at which immediate action should be considered for patient safety (as defined for the respective test procedure).\r\n\n                        Synonym: Above upper panic limits.";
  dcterms:description "The result for a quantitative observation is above a reference level at which immediate action should be considered for patient safety (as defined for the respective test procedure).\r\n\n                        Synonym: Above upper panic limits.".

cs:ObservationInterpretation\#LL rdfs:subClassOf cs:ObservationInterpretation\#AA;
  rdfs:label "Critical low";
  dc:title "Critical low";
  rdfs:comment "The result for a quantitative observation is below a reference level at which immediate action should be considered for patient safety (as defined for the respective test procedure).\r\n\n                        Synonym: Below lower panic limits.";
  dcterms:description "The result for a quantitative observation is below a reference level at which immediate action should be considered for patient safety (as defined for the respective test procedure).\r\n\n                        Synonym: Below lower panic limits.".

cs:ObservationInterpretation\#H rdfs:subClassOf cs:ObservationInterpretation\#A;
  rdfs:label "High";
  dc:title "High";
  rdfs:comment "The result for a quantitative observation is above the upper limit of the reference range (as defined for the respective test procedure).\r\n\n                        Synonym: Above high normal";
  dcterms:description "The result for a quantitative observation is above the upper limit of the reference range (as defined for the respective test procedure).\r\n\n                        Synonym: Above high normal".

cs:ObservationInterpretation\#H%3e rdfs:subClassOf cs:ObservationInterpretation\#H;
  rdfs:label "Significantly high";
  dc:title "Significantly high";
  rdfs:comment "A test result that is significantly higher than the reference (normal) or therapeutic interval, but has not reached the critically high value and might need special attention, as defined by the laboratory or the clinician.[Note: This level is situated between 'H' and 'HH'.]\r\n\n                        \n                           Deprecation Comment: The code 'H>' is being deprecated in order to align with the use of the code 'HU' for \"Very high\" in V2 Table 0078 \"Interpretation Codes\".\r\n\n                        [Note: The use of code 'H>' is non-preferred, as this code is deprecated and on track to be retired; use code 'HU' instead.";
  dcterms:description "A test result that is significantly higher than the reference (normal) or therapeutic interval, but has not reached the critically high value and might need special attention, as defined by the laboratory or the clinician.[Note: This level is situated between 'H' and 'HH'.]\r\n\n                        \n                           Deprecation Comment: The code 'H>' is being deprecated in order to align with the use of the code 'HU' for \"Very high\" in V2 Table 0078 \"Interpretation Codes\".\r\n\n                        [Note: The use of code 'H>' is non-preferred, as this code is deprecated and on track to be retired; use code 'HU' instead.".

cs:ObservationInterpretation\#HU rdfs:subClassOf cs:ObservationInterpretation\#H;
  rdfs:label "Significantly high";
  dc:title "Significantly high";
  rdfs:comment "A test result that is significantly higher than the reference (normal) or therapeutic interval, but has not reached the critically high value and might need special attention, as defined by the laboratory or the clinician.";
  dcterms:description "A test result that is significantly higher than the reference (normal) or therapeutic interval, but has not reached the critically high value and might need special attention, as defined by the laboratory or the clinician.".

cs:ObservationInterpretation\#L rdfs:subClassOf cs:ObservationInterpretation\#A;
  rdfs:label "Low";
  dc:title "Low";
  rdfs:comment "The result for a quantitative observation is below the lower limit of the reference range (as defined for the respective test procedure).\r\n\n                        Synonym: Below low normal";
  dcterms:description "The result for a quantitative observation is below the lower limit of the reference range (as defined for the respective test procedure).\r\n\n                        Synonym: Below low normal".

cs:ObservationInterpretation\#L%3c rdfs:subClassOf cs:ObservationInterpretation\#L;
  rdfs:label "Significantly low";
  dc:title "Significantly low";
  rdfs:comment "A test result that is significantly lower than the reference (normal) or therapeutic interval, but has not reached the critically low value and might need special attention, as defined by the laboratory or the clinician.[Note: This level is situated between 'L' and 'LL'.]\r\n\n                        \n                           Deprecation Comment: The code 'L<' is being deprecated in order to align with the use of the code 'LU' for \"Very low\" in V2 Table 0078 \"Interpretation Codes\".\r\n\n                        [Note: The use of code 'L<' is non-preferred, as this code is deprecated and on track to be retired; use code 'LU' instead.";
  dcterms:description "A test result that is significantly lower than the reference (normal) or therapeutic interval, but has not reached the critically low value and might need special attention, as defined by the laboratory or the clinician.[Note: This level is situated between 'L' and 'LL'.]\r\n\n                        \n                           Deprecation Comment: The code 'L<' is being deprecated in order to align with the use of the code 'LU' for \"Very low\" in V2 Table 0078 \"Interpretation Codes\".\r\n\n                        [Note: The use of code 'L<' is non-preferred, as this code is deprecated and on track to be retired; use code 'LU' instead.".

cs:ObservationInterpretation\#LU rdfs:subClassOf cs:ObservationInterpretation\#L;
  rdfs:label "Significantly low";
  dc:title "Significantly low";
  rdfs:comment "A test result that is significantly lower than the reference (normal) or therapeutic interval, but has not reached the critically low value and might need special attention, as defined by the laboratory or the clinician.";
  dcterms:description "A test result that is significantly lower than the reference (normal) or therapeutic interval, but has not reached the critically low value and might need special attention, as defined by the laboratory or the clinician.".

cs:ObservationInterpretation\#N rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationNormality;
  rdfs:label "Normal";
  dc:title "Normal";
  rdfs:comment "The result or observation value is within the reference range or expected norm (as defined for the respective test procedure).\r\n\n                        [Note: Applies to numeric or non-numeric results.]";
  dcterms:description "The result or observation value is within the reference range or expected norm (as defined for the respective test procedure).\r\n\n                        [Note: Applies to numeric or non-numeric results.]".

cs:ObservationInterpretation\#%5fObservationInterpretationSusceptibility rdfs:subClassOf cs:ObservationInterpretation;
  rdfs:label "ObservationInterpretationSusceptibility";
  dc:title "ObservationInterpretationSusceptibility";
  rdfs:comment "Interpretations of anti-microbial susceptibility testing results (microbiology). At most one allowed.";
  dcterms:description "Interpretations of anti-microbial susceptibility testing results (microbiology). At most one allowed.".

cs:ObservationInterpretation\#I rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationSusceptibility;
  rdfs:label "Intermediate";
  dc:title "Intermediate";
  rdfs:comment "Bacterial strain inhibited in vitro by a concentration of an antimicrobial agent that is associated with uncertain therapeutic effect. Reference: CLSI (http://www.clsi.org/Content/NavigationMenu/Resources/HarmonizedTerminologyDatabase/Harmonized_Terminolo.htm)\nProjects: ISO 20776-1, ISO 20776-2\r\n\n                        [Note 1: Bacterial strains are categorized as intermediate by applying the appropriate breakpoints in a defined phenotypic test system.]\r\n\n                        [Note 2: This class of susceptibility implies that an infection due to the isolate can be appropriately treated in body sites where the drugs are physiologically concentrated or when a high dosage of drug can be used.]\r\n\n                        [Note 3: This class also indicates a \"buffer zone,\" to prevent small, uncontrolled, technical factors from causing major discrepancies in interpretations.]\r\n\n                        [Note 4: These breakpoints can be altered due to changes in circumstances (e.g., changes in commonly used drug dosages, emergence of new resistance mechanisms).]";
  dcterms:description "Bacterial strain inhibited in vitro by a concentration of an antimicrobial agent that is associated with uncertain therapeutic effect. Reference: CLSI (http://www.clsi.org/Content/NavigationMenu/Resources/HarmonizedTerminologyDatabase/Harmonized_Terminolo.htm)\nProjects: ISO 20776-1, ISO 20776-2\r\n\n                        [Note 1: Bacterial strains are categorized as intermediate by applying the appropriate breakpoints in a defined phenotypic test system.]\r\n\n                        [Note 2: This class of susceptibility implies that an infection due to the isolate can be appropriately treated in body sites where the drugs are physiologically concentrated or when a high dosage of drug can be used.]\r\n\n                        [Note 3: This class also indicates a \"buffer zone,\" to prevent small, uncontrolled, technical factors from causing major discrepancies in interpretations.]\r\n\n                        [Note 4: These breakpoints can be altered due to changes in circumstances (e.g., changes in commonly used drug dosages, emergence of new resistance mechanisms).]".

cs:ObservationInterpretation\#MS rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationSusceptibility;
  rdfs:label "moderately susceptible";
  dc:title "moderately susceptible";
  rdfs:comment "The patient is considered as carrier based on the testing results. A carrier is an individual who carries an altered form of a gene which can lead to having a child or offspring in future generations with a genetic disorder.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This antimicrobial susceptibility test interpretation concept is recommended by OO to be deprecated as it is no longer recommended for use in susceptibility testing by CLSI (reference CLSI document M100-S22; Vol. 32 No.3; CLSI Performance Standards for Antimicrobial Susceptibility Testing; Twenty-Second Informational Supplement. Jan 2012).";
  dcterms:description "The patient is considered as carrier based on the testing results. A carrier is an individual who carries an altered form of a gene which can lead to having a child or offspring in future generations with a genetic disorder.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This antimicrobial susceptibility test interpretation concept is recommended by OO to be deprecated as it is no longer recommended for use in susceptibility testing by CLSI (reference CLSI document M100-S22; Vol. 32 No.3; CLSI Performance Standards for Antimicrobial Susceptibility Testing; Twenty-Second Informational Supplement. Jan 2012).".

cs:ObservationInterpretation\#NS rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationSusceptibility;
  rdfs:label "Non-susceptible";
  dc:title "Non-susceptible";
  rdfs:comment "A category used for isolates for which only a susceptible interpretive criterion has been designated because of the absence or rare occurrence of resistant strains. Isolates that have MICs above or zone diameters below the value indicated for the susceptible breakpoint should be reported as non-susceptible.\r\n\n                        NOTE 1: An isolate that is interpreted as non-susceptible does not necessarily mean that the isolate has a resistance mechanism. It is possible that isolates with MICs above the susceptible breakpoint that lack resistance mechanisms may be encountered within the wild-type distribution subsequent to the time the susceptible-only breakpoint is set. \r\n\n                        NOTE 2: For strains yielding results in the \"nonsusceptible\" category, organism identification and antimicrobial susceptibility test results should be confirmed.\r\n\n                        Synonym: decreased susceptibility.";
  dcterms:description "A category used for isolates for which only a susceptible interpretive criterion has been designated because of the absence or rare occurrence of resistant strains. Isolates that have MICs above or zone diameters below the value indicated for the susceptible breakpoint should be reported as non-susceptible.\r\n\n                        NOTE 1: An isolate that is interpreted as non-susceptible does not necessarily mean that the isolate has a resistance mechanism. It is possible that isolates with MICs above the susceptible breakpoint that lack resistance mechanisms may be encountered within the wild-type distribution subsequent to the time the susceptible-only breakpoint is set. \r\n\n                        NOTE 2: For strains yielding results in the \"nonsusceptible\" category, organism identification and antimicrobial susceptibility test results should be confirmed.\r\n\n                        Synonym: decreased susceptibility.".

cs:ObservationInterpretation\#R rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationSusceptibility;
  rdfs:label "Resistant";
  dc:title "Resistant";
  rdfs:comment "Bacterial strain inhibited in vitro by a concentration of an antimicrobial agent that is associated with a high likelihood of therapeutic failure.\nReference: CLSI (http://www.clsi.org/Content/NavigationMenu/Resources/HarmonizedTerminologyDatabase/Harmonized_Terminolo.htm)  \nProjects: ISO 20776-1, ISO 20776-2\r\n\n                        [Note 1: Bacterial strains are categorized as resistant by applying the appropriate breakpoints in a defined phenotypic test system.]\r\n\n                        [Note 2: This breakpoint can be altered due to changes in circumstances (e.g., changes in commonly used drug dosages, emergence of new resistance mechanisms).]";
  dcterms:description "Bacterial strain inhibited in vitro by a concentration of an antimicrobial agent that is associated with a high likelihood of therapeutic failure.\nReference: CLSI (http://www.clsi.org/Content/NavigationMenu/Resources/HarmonizedTerminologyDatabase/Harmonized_Terminolo.htm)  \nProjects: ISO 20776-1, ISO 20776-2\r\n\n                        [Note 1: Bacterial strains are categorized as resistant by applying the appropriate breakpoints in a defined phenotypic test system.]\r\n\n                        [Note 2: This breakpoint can be altered due to changes in circumstances (e.g., changes in commonly used drug dosages, emergence of new resistance mechanisms).]".

cs:ObservationInterpretation\#SYN%2dR rdfs:subClassOf cs:ObservationInterpretation\#R;
  rdfs:label "Synergy - resistant";
  dc:title "Synergy - resistant";
  rdfs:comment "A category for isolates where the bacteria (e.g. enterococci) are not susceptible in vitro to a combination therapy (e.g., high-level aminoglycoside and cell wall active agent).  This is predictive that this combination therapy will not be effective. \r\n\n                        \n                           Usage Note: Since the use of penicillin or ampicillin alone often results in treatment failure of serious enterococcal or other bacterial infections, combination therapy is usually indicated to enhance bactericidal activity. The synergy between a cell wall active agent (such as penicillin, ampicillin, or vancomycin) and an aminoglycoside (such as gentamicin, kanamycin or streptomycin) is best predicted by screening for high-level bacterial resistance to the aminoglycoside.\r\n\n                        \n                           Open Issue: The print name of the code is very general and the description is very specific to a pair of classes of agents, which may lead to confusion of these concepts in the future should other synergies be found.";
  dcterms:description "A category for isolates where the bacteria (e.g. enterococci) are not susceptible in vitro to a combination therapy (e.g., high-level aminoglycoside and cell wall active agent).  This is predictive that this combination therapy will not be effective. \r\n\n                        \n                           Usage Note: Since the use of penicillin or ampicillin alone often results in treatment failure of serious enterococcal or other bacterial infections, combination therapy is usually indicated to enhance bactericidal activity. The synergy between a cell wall active agent (such as penicillin, ampicillin, or vancomycin) and an aminoglycoside (such as gentamicin, kanamycin or streptomycin) is best predicted by screening for high-level bacterial resistance to the aminoglycoside.\r\n\n                        \n                           Open Issue: The print name of the code is very general and the description is very specific to a pair of classes of agents, which may lead to confusion of these concepts in the future should other synergies be found.".

cs:ObservationInterpretation\#S rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationSusceptibility;
  rdfs:label "Susceptible";
  dc:title "Susceptible";
  rdfs:comment "Bacterial strain inhibited by in vitro concentration of an antimicrobial agent that is associated with a high likelihood of therapeutic success.\nReference: CLSI (http://www.clsi.org/Content/NavigationMenu/Resources/HarmonizedTerminologyDatabase/Harmonized_Terminolo.htm)\nSynonym (earlier term): Sensitive Projects: ISO 20776-1, ISO 20776-2\r\n\n                        [Note 1: Bacterial strains are categorized as susceptible by applying the appropriate breakpoints in a defined phenotypic system.]\r\n\n                        [Note 2: This breakpoint can be altered due to changes in circumstances (e.g., changes in commonly used drug dosages, emergence of new resistance mechanisms).]";
  dcterms:description "Bacterial strain inhibited by in vitro concentration of an antimicrobial agent that is associated with a high likelihood of therapeutic success.\nReference: CLSI (http://www.clsi.org/Content/NavigationMenu/Resources/HarmonizedTerminologyDatabase/Harmonized_Terminolo.htm)\nSynonym (earlier term): Sensitive Projects: ISO 20776-1, ISO 20776-2\r\n\n                        [Note 1: Bacterial strains are categorized as susceptible by applying the appropriate breakpoints in a defined phenotypic system.]\r\n\n                        [Note 2: This breakpoint can be altered due to changes in circumstances (e.g., changes in commonly used drug dosages, emergence of new resistance mechanisms).]".

cs:ObservationInterpretation\#SDD rdfs:subClassOf cs:ObservationInterpretation\#S;
  rdfs:label "Susceptible-dose dependent";
  dc:title "Susceptible-dose dependent";
  rdfs:comment "A category that includes isolates with antimicrobial agent minimum inhibitory concentrations (MICs) that approach usually attainable blood and tissue levels and for which response rates may be lower than for susceptible isolates.\r\n\n                        Reference: CLSI document M44-A2 2009 \"Method for antifungal disk diffusion susceptibility testing of yeasts; approved guideline - second edition\" - page 2.";
  dcterms:description "A category that includes isolates with antimicrobial agent minimum inhibitory concentrations (MICs) that approach usually attainable blood and tissue levels and for which response rates may be lower than for susceptible isolates.\r\n\n                        Reference: CLSI document M44-A2 2009 \"Method for antifungal disk diffusion susceptibility testing of yeasts; approved guideline - second edition\" - page 2.".

cs:ObservationInterpretation\#SYN%2dS rdfs:subClassOf cs:ObservationInterpretation\#S;
  rdfs:label "Synergy - susceptible";
  dc:title "Synergy - susceptible";
  rdfs:comment "A category for isolates where the bacteria (e.g. enterococci) are susceptible in vitro to a combination therapy (e.g., high-level aminoglycoside and cell wall active agent).  This is predictive that this combination therapy will be effective. \r\n\n                        \n                           Usage Note: Since the use of penicillin or ampicillin alone often results in treatment failure of serious enterococcal or other bacterial infections, combination therapy is usually indicated to enhance bactericidal activity. The synergy between a cell wall active agent (such as penicillin, ampicillin, or vancomycin) and an aminoglycoside (such as gentamicin, kanamycin or streptomycin) is best predicted by screening for high-level bacterial resistance to the aminoglycoside.\r\n\n                        \n                           Open Issue: The print name of the code is very general and the description is very specific to a pair of classes of agents, which may lead to confusion of these concepts in the future should other synergies be found.";
  dcterms:description "A category for isolates where the bacteria (e.g. enterococci) are susceptible in vitro to a combination therapy (e.g., high-level aminoglycoside and cell wall active agent).  This is predictive that this combination therapy will be effective. \r\n\n                        \n                           Usage Note: Since the use of penicillin or ampicillin alone often results in treatment failure of serious enterococcal or other bacterial infections, combination therapy is usually indicated to enhance bactericidal activity. The synergy between a cell wall active agent (such as penicillin, ampicillin, or vancomycin) and an aminoglycoside (such as gentamicin, kanamycin or streptomycin) is best predicted by screening for high-level bacterial resistance to the aminoglycoside.\r\n\n                        \n                           Open Issue: The print name of the code is very general and the description is very specific to a pair of classes of agents, which may lead to confusion of these concepts in the future should other synergies be found.".

cs:ObservationInterpretation\#VS rdfs:subClassOf cs:ObservationInterpretation\#%5fObservationInterpretationSusceptibility;
  rdfs:label "very susceptible";
  dc:title "very susceptible";
  rdfs:comment "The patient is considered as carrier based on the testing results. A carrier is an individual who carries an altered form of a gene which can lead to having a child or offspring in future generations with a genetic disorder.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This antimicrobial susceptibility test interpretation concept is recommended by OO to be deprecated as it is no longer recommended for use in susceptibility testing by CLSI (reference CLSI document M100-S22; Vol. 32 No.3; CLSI Performance Standards for Antimicrobial Susceptibility Testing; Twenty-Second Informational Supplement. Jan 2012).";
  dcterms:description "The patient is considered as carrier based on the testing results. A carrier is an individual who carries an altered form of a gene which can lead to having a child or offspring in future generations with a genetic disorder.\r\n\n                        \n                           \n                              Deprecation Comment: \n                           This antimicrobial susceptibility test interpretation concept is recommended by OO to be deprecated as it is no longer recommended for use in susceptibility testing by CLSI (reference CLSI document M100-S22; Vol. 32 No.3; CLSI Performance Standards for Antimicrobial Susceptibility Testing; Twenty-Second Informational Supplement. Jan 2012).".

cs:ObservationInterpretation\#EX rdfs:subClassOf cs:ObservationInterpretation;
  rdfs:label "outside threshold";
  dc:title "outside threshold";
  rdfs:comment "The observation/test result is interpreted as being outside the inclusion range for a particular protocol within which the result is being reported.\n\r\n\n                        Example: A positive result on a Hepatitis screening test.\n                           Open Issue: EX, HX, LX: These three concepts do not seem to meet a clear need in the vocabulary, and their use in observation interpretation appears likely to be covered by other existing concepts (e.g., A, H, L).  The only apparent significant difference is their reference to use in protocols for exclusion of study subjects.\nThese concepts/codes were proposed by RCRIM for use in the CTLaboratory message.  They were submitted and approved in the November 2005 Harmonization cycle in proposal \"030103C_VOCAB_RCRIM_l_quade_RCRIM Obs Interp_20051028154455\".  However, this proposal was not fully implemented in the vocabulary.  The proposal recommended creation of the x_ClinicalResearchExclusion domain in ObservationInterpretation with a value set including those three concepts/codes, but there is no subdomain of that name or equivalent with a binding to either of the value sets that contain these concepts/codes.\nMembers of the OO WG have recently attempted to contact members of RCRIM regarding these concepts, both by email and at the recent WGM in Atlanta, without response.  It is felt by OO that the best course of action to take at this time is to add this comprehensive Open Issue rather than deprecate these three concepts at this time, until further discussion is held.";
  dcterms:description "The observation/test result is interpreted as being outside the inclusion range for a particular protocol within which the result is being reported.\n\r\n\n                        Example: A positive result on a Hepatitis screening test.\n                           Open Issue: EX, HX, LX: These three concepts do not seem to meet a clear need in the vocabulary, and their use in observation interpretation appears likely to be covered by other existing concepts (e.g., A, H, L).  The only apparent significant difference is their reference to use in protocols for exclusion of study subjects.\nThese concepts/codes were proposed by RCRIM for use in the CTLaboratory message.  They were submitted and approved in the November 2005 Harmonization cycle in proposal \"030103C_VOCAB_RCRIM_l_quade_RCRIM Obs Interp_20051028154455\".  However, this proposal was not fully implemented in the vocabulary.  The proposal recommended creation of the x_ClinicalResearchExclusion domain in ObservationInterpretation with a value set including those three concepts/codes, but there is no subdomain of that name or equivalent with a binding to either of the value sets that contain these concepts/codes.\nMembers of the OO WG have recently attempted to contact members of RCRIM regarding these concepts, both by email and at the recent WGM in Atlanta, without response.  It is felt by OO that the best course of action to take at this time is to add this comprehensive Open Issue rather than deprecate these three concepts at this time, until further discussion is held.".

cs:ObservationInterpretation\#HX rdfs:subClassOf cs:ObservationInterpretation\#EX;
  rdfs:label "above high threshold";
  dc:title "above high threshold";
  rdfs:comment "The observation/test result is interpreted as being outside the inclusion range for a particular protocol within which the result is being reported.\n\r\n\n                        Example: A positive result on a Hepatitis screening test.\n                           Open Issue: EX, HX, LX: These three concepts do not seem to meet a clear need in the vocabulary, and their use in observation interpretation appears likely to be covered by other existing concepts (e.g., A, H, L).  The only apparent significant difference is their reference to use in protocols for exclusion of study subjects.  These concepts/codes were proposed by RCRIM for use in the CTLaboratory message.  They were submitted and approved in the November 2005 Harmonization cycle in proposal \"030103C_VOCAB_RCRIM_l_quade_RCRIM Obs Interp_20051028154455\". However, this proposal was not fully implemented in the vocabulary.  The proposal recommended creation of the x_ClinicalResearchExclusion domain in ObservationInterpretation with a value set including those three concepts/codes, but there is no subdomain of that name or equivalent with a binding to either of the value sets that contain these concepts/codes.  Members of the OO WG have recently attempted to contact members of RCRIM regarding these concepts, both by email and at the recent WGM in Atlanta, without response.  It is felt by OO that the best course of action to take at this time is to add this comprehensive Open Issue rather than deprecate these three concepts at this time, until further discussion is held.";
  dcterms:description "The observation/test result is interpreted as being outside the inclusion range for a particular protocol within which the result is being reported.\n\r\n\n                        Example: A positive result on a Hepatitis screening test.\n                           Open Issue: EX, HX, LX: These three concepts do not seem to meet a clear need in the vocabulary, and their use in observation interpretation appears likely to be covered by other existing concepts (e.g., A, H, L).  The only apparent significant difference is their reference to use in protocols for exclusion of study subjects.  These concepts/codes were proposed by RCRIM for use in the CTLaboratory message.  They were submitted and approved in the November 2005 Harmonization cycle in proposal \"030103C_VOCAB_RCRIM_l_quade_RCRIM Obs Interp_20051028154455\". However, this proposal was not fully implemented in the vocabulary.  The proposal recommended creation of the x_ClinicalResearchExclusion domain in ObservationInterpretation with a value set including those three concepts/codes, but there is no subdomain of that name or equivalent with a binding to either of the value sets that contain these concepts/codes.  Members of the OO WG have recently attempted to contact members of RCRIM regarding these concepts, both by email and at the recent WGM in Atlanta, without response.  It is felt by OO that the best course of action to take at this time is to add this comprehensive Open Issue rather than deprecate these three concepts at this time, until further discussion is held.".

cs:ObservationInterpretation\#LX rdfs:subClassOf cs:ObservationInterpretation\#EX;
  rdfs:label "below low threshold";
  dc:title "below low threshold";
  rdfs:comment "The numeric observation/test result is interpreted as being below the low threshold value for a particular protocol within which the result is being reported.\r\n\n                        Example: A Total White Blood Cell Count falling below a protocol-defined threshold value of 3000/mm^3\n                           Open Issue: EX, HX, LX: These three concepts do not seem to meet a clear need in the vocabulary, and their use in observation interpretation appears likely to be covered by other existing concepts (e.g., A, H, L).  The only apparent significant difference is their reference to use in protocols for exclusion of study subjects.  These concepts/codes were proposed by RCRIM for use in the CTLaboratory message.  They were submitted and approved in the November 2005 Harmonization cycle in proposal \"030103C_VOCAB_RCRIM_l_quade_RCRIM Obs Interp_20051028154455\".  However, this proposal was not fully implemented in the vocabulary.  The proposal recommended creation of the x_ClinicalResearchExclusion domain in ObservationInterpretation with a value set including those three concepts/codes, but there is no subdomain of that name or equivalent with a binding to either of the value sets that contain these concepts/codes.  Members of the OO WG have recently attempted to contact members of RCRIM regarding these concepts, both by email and at the recent WGM in Atlanta, without response.  It is felt by OO that the best course of action to take at this time is to add this comprehensive Open Issue rather than deprecate these three concepts at this time, until further discussion is held.";
  dcterms:description "The numeric observation/test result is interpreted as being below the low threshold value for a particular protocol within which the result is being reported.\r\n\n                        Example: A Total White Blood Cell Count falling below a protocol-defined threshold value of 3000/mm^3\n                           Open Issue: EX, HX, LX: These three concepts do not seem to meet a clear need in the vocabulary, and their use in observation interpretation appears likely to be covered by other existing concepts (e.g., A, H, L).  The only apparent significant difference is their reference to use in protocols for exclusion of study subjects.  These concepts/codes were proposed by RCRIM for use in the CTLaboratory message.  They were submitted and approved in the November 2005 Harmonization cycle in proposal \"030103C_VOCAB_RCRIM_l_quade_RCRIM Obs Interp_20051028154455\".  However, this proposal was not fully implemented in the vocabulary.  The proposal recommended creation of the x_ClinicalResearchExclusion domain in ObservationInterpretation with a value set including those three concepts/codes, but there is no subdomain of that name or equivalent with a binding to either of the value sets that contain these concepts/codes.  Members of the OO WG have recently attempted to contact members of RCRIM regarding these concepts, both by email and at the recent WGM in Atlanta, without response.  It is felt by OO that the best course of action to take at this time is to add this comprehensive Open Issue rather than deprecate these three concepts at this time, until further discussion is held.".

cs:ObservationInterpretation\#ObservationInterpretationDetection rdfs:subClassOf cs:ObservationInterpretation;
  rdfs:label "ObservationInterpretationDetection";
  dc:title "ObservationInterpretationDetection";
  rdfs:comment "Interpretations of the presence or absence of a component / analyte or organism in a test or of a sign in a clinical observation. In keeping with laboratory data processing practice, these concepts provide a categorical interpretation of the \"meaning\" of the quantitative value for the same observation.";
  dcterms:description "Interpretations of the presence or absence of a component / analyte or organism in a test or of a sign in a clinical observation. In keeping with laboratory data processing practice, these concepts provide a categorical interpretation of the \"meaning\" of the quantitative value for the same observation.".

cs:ObservationInterpretation\#IND rdfs:subClassOf cs:ObservationInterpretation\#ObservationInterpretationDetection;
  rdfs:label "Indeterminate";
  dc:title "Indeterminate";
  rdfs:comment "The specified component / analyte, organism or clinical sign could neither be declared positive / negative nor detected / not detected by the performed test or procedure.\r\n\n                        \n                           Usage Note: For example, if the specimen was degraded, poorly processed, or was missing the required anatomic structures, then \"indeterminate\" (i.e. \"cannot be determined\") is the appropriate response, not \"equivocal\".";
  dcterms:description "The specified component / analyte, organism or clinical sign could neither be declared positive / negative nor detected / not detected by the performed test or procedure.\r\n\n                        \n                           Usage Note: For example, if the specimen was degraded, poorly processed, or was missing the required anatomic structures, then \"indeterminate\" (i.e. \"cannot be determined\") is the appropriate response, not \"equivocal\".".

cs:ObservationInterpretation\#E rdfs:subClassOf cs:ObservationInterpretation\#IND;
  rdfs:label "Equivocal";
  dc:title "Equivocal";
  rdfs:comment "The test or procedure was successfully performed, but the results are borderline and can neither be declared positive / negative nor detected / not detected according to the current established criteria.";
  dcterms:description "The test or procedure was successfully performed, but the results are borderline and can neither be declared positive / negative nor detected / not detected according to the current established criteria.".

cs:ObservationInterpretation\#NEG rdfs:subClassOf cs:ObservationInterpretation\#ObservationInterpretationDetection;
  rdfs:label "Negative";
  dc:title "Negative";
  rdfs:comment "An absence finding of the specified component / analyte, organism or clinical sign based on the established threshold of the performed test or procedure.\r\n\n                        [Note: Negative does not necessarily imply the complete absence of the specified item.]";
  dcterms:description "An absence finding of the specified component / analyte, organism or clinical sign based on the established threshold of the performed test or procedure.\r\n\n                        [Note: Negative does not necessarily imply the complete absence of the specified item.]".

cs:ObservationInterpretation\#ND rdfs:subClassOf cs:ObservationInterpretation\#NEG;
  rdfs:label "Not detected";
  dc:title "Not detected";
  rdfs:comment "The presence of the specified component / analyte, organism or clinical sign could not be determined within the limit of detection of the performed test or procedure.";
  dcterms:description "The presence of the specified component / analyte, organism or clinical sign could not be determined within the limit of detection of the performed test or procedure.".

cs:ObservationInterpretation\#POS rdfs:subClassOf cs:ObservationInterpretation\#ObservationInterpretationDetection;
  rdfs:label "Positive";
  dc:title "Positive";
  rdfs:comment "A presence finding of the specified component / analyte, organism or clinical sign based on the established threshold of the performed test or procedure.";
  dcterms:description "A presence finding of the specified component / analyte, organism or clinical sign based on the established threshold of the performed test or procedure.".

cs:ObservationInterpretation\#DET rdfs:subClassOf cs:ObservationInterpretation\#POS;
  rdfs:label "Detected";
  dc:title "Detected";
  rdfs:comment "The measurement of the specified component / analyte, organism or clinical sign above the limit of detection of the performed test or procedure.";
  dcterms:description "The measurement of the specified component / analyte, organism or clinical sign above the limit of detection of the performed test or procedure.".

cs:ObservationInterpretation\#ObservationInterpretationExpectation rdfs:subClassOf cs:ObservationInterpretation;
  rdfs:label "ObservationInterpretationExpectation";
  dc:title "ObservationInterpretationExpectation";
  rdfs:comment "Interpretation of the observed result taking into account additional information (contraindicators) about the patient's situation. Concepts in this category are mutually exclusive, i.e., at most one is allowed.";
  dcterms:description "Interpretation of the observed result taking into account additional information (contraindicators) about the patient's situation. Concepts in this category are mutually exclusive, i.e., at most one is allowed.".

cs:ObservationInterpretation\#EXP rdfs:subClassOf cs:ObservationInterpretation\#ObservationInterpretationExpectation;
  rdfs:label "Expected";
  dc:title "Expected";
  rdfs:comment "This result has been evaluated in light of known contraindicators.  Once those contraindicators have been taken into account the result is determined to be \"Expected\"  (e.g., presence of drugs in a patient that is taking prescription medication for pain management).";
  dcterms:description "This result has been evaluated in light of known contraindicators.  Once those contraindicators have been taken into account the result is determined to be \"Expected\"  (e.g., presence of drugs in a patient that is taking prescription medication for pain management).".

cs:ObservationInterpretation\#UNE rdfs:subClassOf cs:ObservationInterpretation\#ObservationInterpretationExpectation;
  rdfs:label "Unexpected";
  dc:title "Unexpected";
  rdfs:comment "This result has been evaluated in light of known contraindicators.  Once those contraindicators have been taken into account the result is determined to be \"Unexpected\" (e.g., presence of non-prescribed drugs in a patient that is taking prescription medication for pain management).";
  dcterms:description "This result has been evaluated in light of known contraindicators.  Once those contraindicators have been taken into account the result is determined to be \"Unexpected\" (e.g., presence of non-prescribed drugs in a patient that is taking prescription medication for pain management).".

cs:ObservationInterpretation\#ReactivityObservationInterpretation rdfs:subClassOf cs:ObservationInterpretation;
  rdfs:label "ReactivityObservationInterpretation";
  dc:title "ReactivityObservationInterpretation";
  rdfs:comment "Interpretations of the presence and level of reactivity of the specified component / analyte with the reagent in the performed laboratory test.";
  dcterms:description "Interpretations of the presence and level of reactivity of the specified component / analyte with the reagent in the performed laboratory test.".

cs:ObservationInterpretation\#NR rdfs:subClassOf cs:ObservationInterpretation\#ReactivityObservationInterpretation;
  rdfs:label "Non-reactive";
  dc:title "Non-reactive";
  rdfs:comment "An absence finding used to indicate that the specified component / analyte did not react measurably with the reagent.";
  dcterms:description "An absence finding used to indicate that the specified component / analyte did not react measurably with the reagent.".

cs:ObservationInterpretation\#RR rdfs:subClassOf cs:ObservationInterpretation\#ReactivityObservationInterpretation;
  rdfs:label "Reactive";
  dc:title "Reactive";
  rdfs:comment "A presence finding used to indicate that the specified component / analyte reacted with the reagent above the reliably measurable limit of the performed test.";
  dcterms:description "A presence finding used to indicate that the specified component / analyte reacted with the reagent above the reliably measurable limit of the performed test.".

cs:ObservationInterpretation\#WR rdfs:subClassOf cs:ObservationInterpretation\#RR;
  rdfs:label "Weakly reactive";
  dc:title "Weakly reactive";
  rdfs:comment "A weighted presence finding used to indicate that the specified component / analyte reacted with the reagent, but below the reliably measurable limit of the performed test.";
  dcterms:description "A weighted presence finding used to indicate that the specified component / analyte reacted with the reagent, but below the reliably measurable limit of the performed test.".

# - vs:v3-ObservationMethod ----------------------------------------------------

vs:v3-ObservationMethod a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ObservationMethod";
  dc:title "v3 Code System ObservationMethod";
  rdfs:comment " A code that provides additional detail about the means or technique used to ascertain the observation.  Examples:\r\nBlood pressure measurement method: arterial puncture vs. sphygmomanometer (Riva-Rocci), sitting vs. supine position, etc.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.  Note that the Domain has a full discussion about use of the attribute and constraining that is not appropriate for the value set description.  Needs to be improved.";
  dcterms:description " A code that provides additional detail about the means or technique used to ascertain the observation.  Examples:\r\nBlood pressure measurement method: arterial puncture vs. sphygmomanometer (Riva-Rocci), sitting vs. supine position, etc.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.  Note that the Domain has a full discussion about use of the attribute and constraining that is not appropriate for the value set description.  Needs to be improved.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ObservationMethod.

cs:ObservationMethod.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ObservationMethod";
  dc:title "v3 Code System ObservationMethod";
  rdfs:comment " A code that provides additional detail about the means or technique used to ascertain the observation.  Examples:\r\nBlood pressure measurement method: arterial puncture vs. sphygmomanometer (Riva-Rocci), sitting vs. supine position, etc.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.  Note that the Domain has a full discussion about use of the attribute and constraining that is not appropriate for the code system description.  Needs to be improved.";
  dcterms:description " A code that provides additional detail about the means or technique used to ascertain the observation.  Examples:\r\nBlood pressure measurement method: arterial puncture vs. sphygmomanometer (Riva-Rocci), sitting vs. supine position, etc.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.  Note that the Domain has a full discussion about use of the attribute and constraining that is not appropriate for the code system description.  Needs to be improved.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ObservationMethod a fhir:Concept.

cs:ObservationMethod\#%5fDecisionObservationMethod rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "DecisionObservationMethod";
  dc:title "DecisionObservationMethod";
  rdfs:comment "Provides codes for decision methods, initially for assessing the causality of events.";
  dcterms:description "Provides codes for decision methods, initially for assessing the causality of events.".

cs:ObservationMethod\#ALGM rdfs:subClassOf cs:ObservationMethod\#%5fDecisionObservationMethod;
  rdfs:label "algorithm";
  dc:title "algorithm";
  rdfs:comment "Reaching a decision through the application of an algorithm designed to weigh the different factors involved.";
  dcterms:description "Reaching a decision through the application of an algorithm designed to weigh the different factors involved.".

cs:ObservationMethod\#BYCL rdfs:subClassOf cs:ObservationMethod\#ALGM;
  rdfs:label "bayesian calculation";
  dc:title "bayesian calculation";
  rdfs:comment "Reaching a decision through the use of Bayesian statistical analysis.";
  dcterms:description "Reaching a decision through the use of Bayesian statistical analysis.".

cs:ObservationMethod\#GINT rdfs:subClassOf cs:ObservationMethod\#%5fDecisionObservationMethod;
  rdfs:label "global introspection";
  dc:title "global introspection";
  rdfs:comment "Reaching a decision by consideration of the totality of factors involved in order to reach a judgement.";
  dcterms:description "Reaching a decision by consideration of the totality of factors involved in order to reach a judgement.".

cs:ObservationMethod\#%5fGeneticObservationMethod rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "GeneticObservationMethod";
  dc:title "GeneticObservationMethod";
  rdfs:comment "A code that provides additional detail about the means or technique used to ascertain the genetic analysis. Example, PCR, Micro Array";
  dcterms:description "A code that provides additional detail about the means or technique used to ascertain the genetic analysis. Example, PCR, Micro Array".

cs:ObservationMethod\#PCR rdfs:subClassOf cs:ObservationMethod\#%5fGeneticObservationMethod;
  rdfs:label "PCR";
  dc:title "PCR";
  rdfs:comment "Description: Polymerase Chain Reaction";
  dcterms:description "Description: Polymerase Chain Reaction".

cs:ObservationMethod\#%5fObservationMethodAggregate rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "observation method aggregate";
  dc:title "observation method aggregate";
  rdfs:comment "Provides additional detail about the aggregation methods used to compute the aggregated values for an observation. This is an abstract code.";
  dcterms:description "Provides additional detail about the aggregation methods used to compute the aggregated values for an observation. This is an abstract code.".

cs:ObservationMethod\#AVERAGE rdfs:subClassOf cs:ObservationMethod\#%5fObservationMethodAggregate;
  rdfs:label "average";
  dc:title "average";
  rdfs:comment "Average of non-null values in the referenced set of values";
  dcterms:description "Average of non-null values in the referenced set of values".

cs:ObservationMethod\#COUNT rdfs:subClassOf cs:ObservationMethod\#%5fObservationMethodAggregate;
  rdfs:label "count";
  dc:title "count";
  rdfs:comment "Count of non-null values in the referenced set of values";
  dcterms:description "Count of non-null values in the referenced set of values".

cs:ObservationMethod\#MAX rdfs:subClassOf cs:ObservationMethod\#%5fObservationMethodAggregate;
  rdfs:label "maxima";
  dc:title "maxima";
  rdfs:comment "Largest of all non-null values in the referenced set of values.";
  dcterms:description "Largest of all non-null values in the referenced set of values.".

cs:ObservationMethod\#MEDIAN rdfs:subClassOf cs:ObservationMethod\#%5fObservationMethodAggregate;
  rdfs:label "median";
  dc:title "median";
  rdfs:comment "The median of all non-null values in the referenced set of values.";
  dcterms:description "The median of all non-null values in the referenced set of values.".

cs:ObservationMethod\#MIN rdfs:subClassOf cs:ObservationMethod\#%5fObservationMethodAggregate;
  rdfs:label "minima";
  dc:title "minima";
  rdfs:comment "Smallest of all non-null values in the referenced set of values.";
  dcterms:description "Smallest of all non-null values in the referenced set of values.".

cs:ObservationMethod\#MODE rdfs:subClassOf cs:ObservationMethod\#%5fObservationMethodAggregate;
  rdfs:label "mode";
  dc:title "mode";
  rdfs:comment "The most common value of all non-null values in the referenced set of values.";
  dcterms:description "The most common value of all non-null values in the referenced set of values.".

cs:ObservationMethod\#STDEV.P rdfs:subClassOf cs:ObservationMethod\#%5fObservationMethodAggregate;
  rdfs:label "population standard deviation";
  dc:title "population standard deviation";
  rdfs:comment "Standard Deviation of the values in the referenced set of values, computed over the population.";
  dcterms:description "Standard Deviation of the values in the referenced set of values, computed over the population.".

cs:ObservationMethod\#STDEV.S rdfs:subClassOf cs:ObservationMethod\#%5fObservationMethodAggregate;
  rdfs:label "sample standard deviation";
  dc:title "sample standard deviation";
  rdfs:comment "Standard Deviation of the values in the referenced set of values, computed over a sample of the population.";
  dcterms:description "Standard Deviation of the values in the referenced set of values, computed over a sample of the population.".

cs:ObservationMethod\#SUM rdfs:subClassOf cs:ObservationMethod\#%5fObservationMethodAggregate;
  rdfs:label "sum";
  dc:title "sum";
  rdfs:comment "Sum of non-null values in the referenced set of values";
  dcterms:description "Sum of non-null values in the referenced set of values".

cs:ObservationMethod\#VARIANCE.P rdfs:subClassOf cs:ObservationMethod\#%5fObservationMethodAggregate;
  rdfs:label "population variance";
  dc:title "population variance";
  rdfs:comment "Variance of the values in the referenced set of values, computed over the population.";
  dcterms:description "Variance of the values in the referenced set of values, computed over the population.".

cs:ObservationMethod\#VARIANCE.S rdfs:subClassOf cs:ObservationMethod\#%5fObservationMethodAggregate;
  rdfs:label "sample variance";
  dc:title "sample variance";
  rdfs:comment "Variance of the values in the referenced set of values, computed over a sample of the population.";
  dcterms:description "Variance of the values in the referenced set of values, computed over a sample of the population.".

cs:ObservationMethod\#%5fVerificationMethod rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "VerificationMethod";
  dc:title "VerificationMethod";
  rdfs:comment "VerificationMethod";
  dcterms:description "VerificationMethod".

cs:ObservationMethod\#VDOC rdfs:subClassOf cs:ObservationMethod\#%5fVerificationMethod;
  rdfs:label "document verification";
  dc:title "document verification";
  rdfs:comment "Verification by means of document.\r\n\n                        \n                           Example: Fax, letter, attachment to e-mail.";
  dcterms:description "Verification by means of document.\r\n\n                        \n                           Example: Fax, letter, attachment to e-mail.".

cs:ObservationMethod\#VREG rdfs:subClassOf cs:ObservationMethod\#%5fVerificationMethod;
  rdfs:label "registry verification";
  dc:title "registry verification";
  rdfs:comment "verification by means of  a response to an electronic query\r\n\n                        \n                           Example: query message to a Covered Party registry application or Coverage Administrator.";
  dcterms:description "verification by means of  a response to an electronic query\r\n\n                        \n                           Example: query message to a Covered Party registry application or Coverage Administrator.".

cs:ObservationMethod\#VTOKEN rdfs:subClassOf cs:ObservationMethod\#%5fVerificationMethod;
  rdfs:label "electronic token verification";
  dc:title "electronic token verification";
  rdfs:comment "Verification by means of electronic token.\r\n\n                        \n                           Example: smartcard, magnetic swipe card, RFID device.";
  dcterms:description "Verification by means of electronic token.\r\n\n                        \n                           Example: smartcard, magnetic swipe card, RFID device.".

cs:ObservationMethod\#VVOICE rdfs:subClassOf cs:ObservationMethod\#%5fVerificationMethod;
  rdfs:label "voice-based verification";
  dc:title "voice-based verification";
  rdfs:comment "Verification by means of voice.\r\n\n                        \n                           Example: By speaking with or calling the Coverage Administrator or Covered Party";
  dcterms:description "Verification by means of voice.\r\n\n                        \n                           Example: By speaking with or calling the Coverage Administrator or Covered Party".

cs:ObservationMethod\#0001 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Complement fixation";
  dc:title "Complement fixation";
  rdfs:comment "Complement fixation";
  dcterms:description "Complement fixation".

cs:ObservationMethod\#0002 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Computed axial tomography";
  dc:title "Computed axial tomography";
  rdfs:comment "Computed axial tomography";
  dcterms:description "Computed axial tomography".

cs:ObservationMethod\#0003 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "HLAR agar test";
  dc:title "HLAR agar test";
  rdfs:comment "Susceptibility, High Level Aminoglycoside Resistance agar test";
  dcterms:description "Susceptibility, High Level Aminoglycoside Resistance agar test".

cs:ObservationMethod\#0004 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Macroscopic observation";
  dc:title "Macroscopic observation";
  rdfs:comment "Visual, Macroscopic observation";
  dcterms:description "Visual, Macroscopic observation".

cs:ObservationMethod\#0005 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Magnetic resonance";
  dc:title "Magnetic resonance";
  rdfs:comment "Computed, Magnetic resonance";
  dcterms:description "Computed, Magnetic resonance".

cs:ObservationMethod\#0006 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Morphometry";
  dc:title "Morphometry";
  rdfs:comment "Computed, Morphometry";
  dcterms:description "Computed, Morphometry".

cs:ObservationMethod\#0007 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Positron emission tomography";
  dc:title "Positron emission tomography";
  rdfs:comment "Computed, Positron emission tomography";
  dcterms:description "Computed, Positron emission tomography".

cs:ObservationMethod\#0008 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "SAMHSA confirmation";
  dc:title "SAMHSA confirmation";
  rdfs:comment "SAMHSA drug assay confirmation";
  dcterms:description "SAMHSA drug assay confirmation".

cs:ObservationMethod\#0009 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "SAMHSA screening";
  dc:title "SAMHSA screening";
  rdfs:comment "SAMHSA drug assay screening";
  dcterms:description "SAMHSA drug assay screening".

cs:ObservationMethod\#0010 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Serum Neutralization";
  dc:title "Serum Neutralization";
  rdfs:comment "Serum Neutralization";
  dcterms:description "Serum Neutralization".

cs:ObservationMethod\#0011 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Titration";
  dc:title "Titration";
  rdfs:comment "Titration";
  dcterms:description "Titration".

cs:ObservationMethod\#0012 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Ultrasound";
  dc:title "Ultrasound";
  rdfs:comment "Ultrasound";
  dcterms:description "Ultrasound".

cs:ObservationMethod\#0013 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "X-ray crystallography";
  dc:title "X-ray crystallography";
  rdfs:comment "X-ray crystallography";
  dcterms:description "X-ray crystallography".

cs:ObservationMethod\#0014 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Agglutination";
  dc:title "Agglutination";
  rdfs:comment "Agglutination";
  dcterms:description "Agglutination".

cs:ObservationMethod\#0015 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Buffered acidified plate agglutination";
  dc:title "Buffered acidified plate agglutination";
  rdfs:comment "Agglutination, Buffered acidified plate";
  dcterms:description "Agglutination, Buffered acidified plate".

cs:ObservationMethod\#0016 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Card agglutination";
  dc:title "Card agglutination";
  rdfs:comment "Agglutination, Card";
  dcterms:description "Agglutination, Card".

cs:ObservationMethod\#0017 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Hemagglutination";
  dc:title "Hemagglutination";
  rdfs:comment "Agglutination, Hemagglutination";
  dcterms:description "Agglutination, Hemagglutination".

cs:ObservationMethod\#0018 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Hemagglutination inhibition";
  dc:title "Hemagglutination inhibition";
  rdfs:comment "Agglutination, Hemagglutination inhibition";
  dcterms:description "Agglutination, Hemagglutination inhibition".

cs:ObservationMethod\#0019 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Latex agglutination";
  dc:title "Latex agglutination";
  rdfs:comment "Agglutination, Latex";
  dcterms:description "Agglutination, Latex".

cs:ObservationMethod\#0020 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Plate agglutination";
  dc:title "Plate agglutination";
  rdfs:comment "Agglutination, Plate";
  dcterms:description "Agglutination, Plate".

cs:ObservationMethod\#0021 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Rapid agglutination";
  dc:title "Rapid agglutination";
  rdfs:comment "Agglutination, Rapid Plate";
  dcterms:description "Agglutination, Rapid Plate".

cs:ObservationMethod\#0022 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "RBC agglutination";
  dc:title "RBC agglutination";
  rdfs:comment "Agglutination, RBC";
  dcterms:description "Agglutination, RBC".

cs:ObservationMethod\#0023 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Rivanol agglutination";
  dc:title "Rivanol agglutination";
  rdfs:comment "Agglutination, Rivanol";
  dcterms:description "Agglutination, Rivanol".

cs:ObservationMethod\#0024 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Tube agglutination";
  dc:title "Tube agglutination";
  rdfs:comment "Agglutination, Tube";
  dcterms:description "Agglutination, Tube".

cs:ObservationMethod\#0025 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Bioassay";
  dc:title "Bioassay";
  rdfs:comment "Bioassay";
  dcterms:description "Bioassay".

cs:ObservationMethod\#0026 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Animal Inoculation";
  dc:title "Animal Inoculation";
  rdfs:comment "Bioassay, Animal Inoculation";
  dcterms:description "Bioassay, Animal Inoculation".

cs:ObservationMethod\#0027 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Cytotoxicity";
  dc:title "Cytotoxicity";
  rdfs:comment "Bioassay, Cytotoxicity";
  dcterms:description "Bioassay, Cytotoxicity".

cs:ObservationMethod\#0028 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Embryo infective dose 50";
  dc:title "Embryo infective dose 50";
  rdfs:comment "Bioassay, Embryo Infective Dose 50";
  dcterms:description "Bioassay, Embryo Infective Dose 50".

cs:ObservationMethod\#0029 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Embryo lethal dose 50";
  dc:title "Embryo lethal dose 50";
  rdfs:comment "Bioassay, Embryo Lethal Dose 50";
  dcterms:description "Bioassay, Embryo Lethal Dose 50".

cs:ObservationMethod\#0030 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Mouse intercerebral inoculation";
  dc:title "Mouse intercerebral inoculation";
  rdfs:comment "Bioassay, Mouse intercerebral inoculation";
  dcterms:description "Bioassay, Mouse intercerebral inoculation".

cs:ObservationMethod\#0031 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Bioassay, qualitative";
  dc:title "Bioassay, qualitative";
  rdfs:comment "Bioassay, qualitative";
  dcterms:description "Bioassay, qualitative".

cs:ObservationMethod\#0032 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Bioassay, quantitative";
  dc:title "Bioassay, quantitative";
  rdfs:comment "Bioassay, quantitative";
  dcterms:description "Bioassay, quantitative".

cs:ObservationMethod\#0033 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Chemical method";
  dc:title "Chemical method";
  rdfs:comment "Chemical";
  dcterms:description "Chemical".

cs:ObservationMethod\#0034 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Differential light absorption chemical test";
  dc:title "Differential light absorption chemical test";
  rdfs:comment "Chemical, Differential light absorption";
  dcterms:description "Chemical, Differential light absorption".

cs:ObservationMethod\#0035 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Dipstick";
  dc:title "Dipstick";
  rdfs:comment "Chemical, Dipstick";
  dcterms:description "Chemical, Dipstick".

cs:ObservationMethod\#0036 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Dipstick colorimetric laboratory test";
  dc:title "Dipstick colorimetric laboratory test";
  rdfs:comment "Chemical, Dipstick colorimetric laboratory test";
  dcterms:description "Chemical, Dipstick colorimetric laboratory test".

cs:ObservationMethod\#0037 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Test strip";
  dc:title "Test strip";
  rdfs:comment "Chemical, Test strip";
  dcterms:description "Chemical, Test strip".

cs:ObservationMethod\#0038 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Chromatography";
  dc:title "Chromatography";
  rdfs:comment "Chromatography";
  dcterms:description "Chromatography".

cs:ObservationMethod\#0039 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Affinity chromatography";
  dc:title "Affinity chromatography";
  rdfs:comment "Chromatography, Affinity";
  dcterms:description "Chromatography, Affinity".

cs:ObservationMethod\#0040 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Gas liquid chromatography";
  dc:title "Gas liquid chromatography";
  rdfs:comment "Chromatography, Gas liquid";
  dcterms:description "Chromatography, Gas liquid".

cs:ObservationMethod\#0041 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "High performance liquid chromatography";
  dc:title "High performance liquid chromatography";
  rdfs:comment "Chromatography, High performance liquid";
  dcterms:description "Chromatography, High performance liquid".

cs:ObservationMethod\#0042 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Liquid Chromatography";
  dc:title "Liquid Chromatography";
  rdfs:comment "Chromatography, Liquid";
  dcterms:description "Chromatography, Liquid".

cs:ObservationMethod\#0043 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Protein A affinity chromatography";
  dc:title "Protein A affinity chromatography";
  rdfs:comment "Chromatography, Protein A affinity";
  dcterms:description "Chromatography, Protein A affinity".

cs:ObservationMethod\#0044 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Coagulation";
  dc:title "Coagulation";
  rdfs:comment "Coagulation";
  dcterms:description "Coagulation".

cs:ObservationMethod\#0045 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Tilt tube coagulation time";
  dc:title "Tilt tube coagulation time";
  rdfs:comment "Coagulation, Tilt tube";
  dcterms:description "Coagulation, Tilt tube".

cs:ObservationMethod\#0046 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Tilt tube reptilase induced coagulation";
  dc:title "Tilt tube reptilase induced coagulation";
  rdfs:comment "Coagulation, Tilt tube reptilase induced";
  dcterms:description "Coagulation, Tilt tube reptilase induced".

cs:ObservationMethod\#0047 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Automated count";
  dc:title "Automated count";
  rdfs:comment "Count, Automated";
  dcterms:description "Count, Automated".

cs:ObservationMethod\#0048 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Manual cell count";
  dc:title "Manual cell count";
  rdfs:comment "Count, Manual";
  dcterms:description "Count, Manual".

cs:ObservationMethod\#0049 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Platelet count, Rees-Ecker";
  dc:title "Platelet count, Rees-Ecker";
  rdfs:comment "Count, Platelet, Rees-Ecker";
  dcterms:description "Count, Platelet, Rees-Ecker".

cs:ObservationMethod\#0050 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Aerobic Culture";
  dc:title "Aerobic Culture";
  rdfs:comment "Culture, Aerobic";
  dcterms:description "Culture, Aerobic".

cs:ObservationMethod\#0051 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Anaerobic Culture";
  dc:title "Anaerobic Culture";
  rdfs:comment "Culture, Anaerobic";
  dcterms:description "Culture, Anaerobic".

cs:ObservationMethod\#0052 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Chicken embryo culture";
  dc:title "Chicken embryo culture";
  rdfs:comment "Culture, Chicken Embryo";
  dcterms:description "Culture, Chicken Embryo".

cs:ObservationMethod\#0053 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Delayed secondary enrichment";
  dc:title "Delayed secondary enrichment";
  rdfs:comment "Culture, Delayed secondary enrichment";
  dcterms:description "Culture, Delayed secondary enrichment".

cs:ObservationMethod\#0054 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Microaerophilic Culture";
  dc:title "Microaerophilic Culture";
  rdfs:comment "Culture, Microaerophilic";
  dcterms:description "Culture, Microaerophilic".

cs:ObservationMethod\#0055 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Quantitative microbial culture, cup";
  dc:title "Quantitative microbial culture, cup";
  rdfs:comment "Culture, Quantitative microbial, cup";
  dcterms:description "Culture, Quantitative microbial, cup".

cs:ObservationMethod\#0056 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Quantitative microbial culture, droplet";
  dc:title "Quantitative microbial culture, droplet";
  rdfs:comment "Culture, Quantitative microbial, droplet";
  dcterms:description "Culture, Quantitative microbial, droplet".

cs:ObservationMethod\#0057 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Quantitative microbial culture, filter paper";
  dc:title "Quantitative microbial culture, filter paper";
  rdfs:comment "Culture, Quantitative microbial, filter paper";
  dcterms:description "Culture, Quantitative microbial, filter paper".

cs:ObservationMethod\#0058 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Quantitative microbial culture, pad culture";
  dc:title "Quantitative microbial culture, pad culture";
  rdfs:comment "Culture, Quantitative microbial, pad";
  dcterms:description "Culture, Quantitative microbial, pad".

cs:ObservationMethod\#0059 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Quantitative microbial culture, pour plate";
  dc:title "Quantitative microbial culture, pour plate";
  rdfs:comment "Culture, Quantitative microbial, pour plate";
  dcterms:description "Culture, Quantitative microbial, pour plate".

cs:ObservationMethod\#0060 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Quantitative microbial culture, surface streak";
  dc:title "Quantitative microbial culture, surface streak";
  rdfs:comment "Culture, Quantitative microbial, surface streak";
  dcterms:description "Culture, Quantitative microbial, surface streak".

cs:ObservationMethod\#0061 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Somatic Cell culture";
  dc:title "Somatic Cell culture";
  rdfs:comment "Culture, Somatic Cell";
  dcterms:description "Culture, Somatic Cell".

cs:ObservationMethod\#0062 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Agar diffusion";
  dc:title "Agar diffusion";
  rdfs:comment "Diffusion, Agar";
  dcterms:description "Diffusion, Agar".

cs:ObservationMethod\#0063 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Agar Gel Immunodiffusion";
  dc:title "Agar Gel Immunodiffusion";
  rdfs:comment "Diffusion, Agar Gel Immunodiffusion";
  dcterms:description "Diffusion, Agar Gel Immunodiffusion".

cs:ObservationMethod\#0064 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Electrophoresis";
  dc:title "Electrophoresis";
  rdfs:comment "Electrophoresis";
  dcterms:description "Electrophoresis".

cs:ObservationMethod\#0065 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Agaorse gel electrophoresis";
  dc:title "Agaorse gel electrophoresis";
  rdfs:comment "Electrophoresis, Agaorse gel";
  dcterms:description "Electrophoresis, Agaorse gel".

cs:ObservationMethod\#0066 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Electrophoresis, citrate agar";
  dc:title "Electrophoresis, citrate agar";
  rdfs:comment "Electrophoresis, citrate agar";
  dcterms:description "Electrophoresis, citrate agar".

cs:ObservationMethod\#0067 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immunoelectrophoresis";
  dc:title "Immunoelectrophoresis";
  rdfs:comment "Electrophoresis, Immuno";
  dcterms:description "Electrophoresis, Immuno".

cs:ObservationMethod\#0068 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Polyacrylamide gel electrophoresis";
  dc:title "Polyacrylamide gel electrophoresis";
  rdfs:comment "Electrophoresis, Polyacrylamide gel";
  dcterms:description "Electrophoresis, Polyacrylamide gel".

cs:ObservationMethod\#0069 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Starch gel electrophoresis";
  dc:title "Starch gel electrophoresis";
  rdfs:comment "Electrophoresis, Starch gel";
  dcterms:description "Electrophoresis, Starch gel".

cs:ObservationMethod\#0070 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "ELISA";
  dc:title "ELISA";
  rdfs:comment "ELISA";
  dcterms:description "ELISA".

cs:ObservationMethod\#0071 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "ELISA, antigen capture";
  dc:title "ELISA, antigen capture";
  rdfs:comment "ELISA, antigen capture";
  dcterms:description "ELISA, antigen capture".

cs:ObservationMethod\#0072 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "ELISA, avidin biotin peroxidase complex";
  dc:title "ELISA, avidin biotin peroxidase complex";
  rdfs:comment "ELISA, avidin biotin peroxidase complex";
  dcterms:description "ELISA, avidin biotin peroxidase complex".

cs:ObservationMethod\#0073 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Kinetic ELISA";
  dc:title "Kinetic ELISA";
  rdfs:comment "ELISA, Kinetic";
  dcterms:description "ELISA, Kinetic".

cs:ObservationMethod\#0074 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "ELISA, peroxidase-antiperoxidase";
  dc:title "ELISA, peroxidase-antiperoxidase";
  rdfs:comment "ELISA, peroxidase-antiperoxidase";
  dcterms:description "ELISA, peroxidase-antiperoxidase".

cs:ObservationMethod\#0075 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "API 20 Strep";
  dc:title "API 20 Strep";
  rdfs:comment "Identification, API 20 Strep";
  dcterms:description "Identification, API 20 Strep".

cs:ObservationMethod\#0076 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "API 20A";
  dc:title "API 20A";
  rdfs:comment "Identification, API 20A";
  dcterms:description "Identification, API 20A".

cs:ObservationMethod\#0077 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "API 20C AUX";
  dc:title "API 20C AUX";
  rdfs:comment "Identification, API 20C AUX";
  dcterms:description "Identification, API 20C AUX".

cs:ObservationMethod\#0078 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "API 20E";
  dc:title "API 20E";
  rdfs:comment "Identification, API 20E";
  dcterms:description "Identification, API 20E".

cs:ObservationMethod\#0079 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "API 20NE";
  dc:title "API 20NE";
  rdfs:comment "Identification, API 20NE";
  dcterms:description "Identification, API 20NE".

cs:ObservationMethod\#0080 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "API 50 CH";
  dc:title "API 50 CH";
  rdfs:comment "Identification, API 50 CH";
  dcterms:description "Identification, API 50 CH".

cs:ObservationMethod\#0081 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "API An-IDENT";
  dc:title "API An-IDENT";
  rdfs:comment "Identification, API An-IDENT";
  dcterms:description "Identification, API An-IDENT".

cs:ObservationMethod\#0082 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "API Coryne";
  dc:title "API Coryne";
  rdfs:comment "Identification, API Coryne";
  dcterms:description "Identification, API Coryne".

cs:ObservationMethod\#0083 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "API Rapid 20E";
  dc:title "API Rapid 20E";
  rdfs:comment "Identification, API Rapid 20E";
  dcterms:description "Identification, API Rapid 20E".

cs:ObservationMethod\#0084 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "API Staph";
  dc:title "API Staph";
  rdfs:comment "Identification, API Staph";
  dcterms:description "Identification, API Staph".

cs:ObservationMethod\#0085 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "API ZYM";
  dc:title "API ZYM";
  rdfs:comment "Identification, API ZYM";
  dcterms:description "Identification, API ZYM".

cs:ObservationMethod\#0086 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Bacterial identification";
  dc:title "Bacterial identification";
  rdfs:comment "Identification, Bacterial";
  dcterms:description "Identification, Bacterial".

cs:ObservationMethod\#0087 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "mini VIDAS";
  dc:title "mini VIDAS";
  rdfs:comment "Identification, mini VIDAS";
  dcterms:description "Identification, mini VIDAS".

cs:ObservationMethod\#0088 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Phage susceptibility typing";
  dc:title "Phage susceptibility typing";
  rdfs:comment "Identification, Phage susceptibility typing";
  dcterms:description "Identification, Phage susceptibility typing".

cs:ObservationMethod\#0089 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Quad-FERM+";
  dc:title "Quad-FERM+";
  rdfs:comment "Identification, Quad-FERM+";
  dcterms:description "Identification, Quad-FERM+".

cs:ObservationMethod\#0090 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "RAPIDEC Staph";
  dc:title "RAPIDEC Staph";
  rdfs:comment "Identification, RAPIDEC Staph";
  dcterms:description "Identification, RAPIDEC Staph".

cs:ObservationMethod\#0091 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Staphaurex";
  dc:title "Staphaurex";
  rdfs:comment "Identification, Staphaurex";
  dcterms:description "Identification, Staphaurex".

cs:ObservationMethod\#0092 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "VIDAS";
  dc:title "VIDAS";
  rdfs:comment "Identification, VIDAS";
  dcterms:description "Identification, VIDAS".

cs:ObservationMethod\#0093 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Vitek";
  dc:title "Vitek";
  rdfs:comment "Identification, Vitek";
  dcterms:description "Identification, Vitek".

cs:ObservationMethod\#0094 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "VITEK 2";
  dc:title "VITEK 2";
  rdfs:comment "Identification, VITEK 2";
  dcterms:description "Identification, VITEK 2".

cs:ObservationMethod\#0095 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immune stain";
  dc:title "Immune stain";
  rdfs:comment "Immune stain";
  dcterms:description "Immune stain".

cs:ObservationMethod\#0096 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immunofluorescent antibody, direct";
  dc:title "Immunofluorescent antibody, direct";
  rdfs:comment "Immune stain, Immunofluorescent antibody, direct";
  dcterms:description "Immune stain, Immunofluorescent antibody, direct".

cs:ObservationMethod\#0097 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immunofluorescent antibody, indirect";
  dc:title "Immunofluorescent antibody, indirect";
  rdfs:comment "Immune stain, Immunofluorescent antibody, indirect";
  dcterms:description "Immune stain, Immunofluorescent antibody, indirect".

cs:ObservationMethod\#0098 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immunoperoxidase, Avidin-Biotin Complex";
  dc:title "Immunoperoxidase, Avidin-Biotin Complex";
  rdfs:comment "Immune stain, Immunoperoxidase, Avidin-Biotin Complex";
  dcterms:description "Immune stain, Immunoperoxidase, Avidin-Biotin Complex".

cs:ObservationMethod\#0099 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immunoperoxidase, Peroxidase anti-peroxidase complex";
  dc:title "Immunoperoxidase, Peroxidase anti-peroxidase complex";
  rdfs:comment "Immune stain, Immunoperoxidase, Peroxidase anti-peroxidase complex";
  dcterms:description "Immune stain, Immunoperoxidase, Peroxidase anti-peroxidase complex".

cs:ObservationMethod\#0100 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immunoperoxidase, Protein A-peroxidase complex";
  dc:title "Immunoperoxidase, Protein A-peroxidase complex";
  rdfs:comment "Immune stain, Immunoperoxidase, Protein A-peroxidase complex";
  dcterms:description "Immune stain, Immunoperoxidase, Protein A-peroxidase complex".

cs:ObservationMethod\#0101 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immunoassay";
  dc:title "Immunoassay";
  rdfs:comment "Immunoassay";
  dcterms:description "Immunoassay".

cs:ObservationMethod\#0102 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immunoassay, qualitative, multiple step";
  dc:title "Immunoassay, qualitative, multiple step";
  rdfs:comment "Immunoassay, qualitative, multiple step";
  dcterms:description "Immunoassay, qualitative, multiple step".

cs:ObservationMethod\#0103 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immunoassay, qualitative, single step";
  dc:title "Immunoassay, qualitative, single step";
  rdfs:comment "Immunoassay, qualitative, single step";
  dcterms:description "Immunoassay, qualitative, single step".

cs:ObservationMethod\#0104 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Radioimmunoassay";
  dc:title "Radioimmunoassay";
  rdfs:comment "Immunoassay, Radioimmunoassay";
  dcterms:description "Immunoassay, Radioimmunoassay".

cs:ObservationMethod\#0105 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immunoassay, semi-quantitative, multiple step";
  dc:title "Immunoassay, semi-quantitative, multiple step";
  rdfs:comment "Immunoassay, semi-quantitative, multiple step";
  dcterms:description "Immunoassay, semi-quantitative, multiple step".

cs:ObservationMethod\#0106 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immunoassay, semi-quantitative, single step";
  dc:title "Immunoassay, semi-quantitative, single step";
  rdfs:comment "Immunoassay, semi-quantitative, single step";
  dcterms:description "Immunoassay, semi-quantitative, single step".

cs:ObservationMethod\#0107 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Microscopy";
  dc:title "Microscopy";
  rdfs:comment "Microscopy";
  dcterms:description "Microscopy".

cs:ObservationMethod\#0108 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Darkfield microscopy";
  dc:title "Darkfield microscopy";
  rdfs:comment "Microscopy, Darkfield";
  dcterms:description "Microscopy, Darkfield".

cs:ObservationMethod\#0109 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Electron microscopy";
  dc:title "Electron microscopy";
  rdfs:comment "Microscopy, Electron";
  dcterms:description "Microscopy, Electron".

cs:ObservationMethod\#0110 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Electron microscopy tomography";
  dc:title "Electron microscopy tomography";
  rdfs:comment "Microscopy, Electron microscopy tomography";
  dcterms:description "Microscopy, Electron microscopy tomography".

cs:ObservationMethod\#0111 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Electron microscopy, negative stain";
  dc:title "Electron microscopy, negative stain";
  rdfs:comment "Microscopy, Electron, negative stain";
  dcterms:description "Microscopy, Electron, negative stain".

cs:ObservationMethod\#0112 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Electron microscopy, thick section";
  dc:title "Electron microscopy, thick section";
  rdfs:comment "Microscopy, Electron, thick section transmission";
  dcterms:description "Microscopy, Electron, thick section transmission".

cs:ObservationMethod\#0113 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Electron microscopy, thin section";
  dc:title "Electron microscopy, thin section";
  rdfs:comment "Microscopy, Electron, thin section transmission";
  dcterms:description "Microscopy, Electron, thin section transmission".

cs:ObservationMethod\#0114 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Microscopy, Light";
  dc:title "Microscopy, Light";
  rdfs:comment "Microscopy, Light";
  dcterms:description "Microscopy, Light".

cs:ObservationMethod\#0115 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Polarizing light microscopy";
  dc:title "Polarizing light microscopy";
  rdfs:comment "Microscopy, Polarized light";
  dcterms:description "Microscopy, Polarized light".

cs:ObservationMethod\#0116 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Scanning electron microscopy";
  dc:title "Scanning electron microscopy";
  rdfs:comment "Microscopy, Scanning electron";
  dcterms:description "Microscopy, Scanning electron".

cs:ObservationMethod\#0117 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Transmission electron microscopy";
  dc:title "Transmission electron microscopy";
  rdfs:comment "Microscopy, Transmission electron";
  dcterms:description "Microscopy, Transmission electron".

cs:ObservationMethod\#0118 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Transparent tape direct examination";
  dc:title "Transparent tape direct examination";
  rdfs:comment "Microscopy, Transparent tape direct examination";
  dcterms:description "Microscopy, Transparent tape direct examination".

cs:ObservationMethod\#0119 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "3 Self-Sustaining Sequence Replication";
  dc:title "3 Self-Sustaining Sequence Replication";
  rdfs:comment "Molecular, 3 Self-Sustaining Sequence Replication";
  dcterms:description "Molecular, 3 Self-Sustaining Sequence Replication".

cs:ObservationMethod\#0120 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Branched Chain DNA";
  dc:title "Branched Chain DNA";
  rdfs:comment "Molecular, Branched Chain DNA";
  dcterms:description "Molecular, Branched Chain DNA".

cs:ObservationMethod\#0121 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Hybridization Protection Assay";
  dc:title "Hybridization Protection Assay";
  rdfs:comment "Molecular, Hybridization Protection Assay";
  dcterms:description "Molecular, Hybridization Protection Assay".

cs:ObservationMethod\#0122 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immune blot";
  dc:title "Immune blot";
  rdfs:comment "Molecular, Immune blot";
  dcterms:description "Molecular, Immune blot".

cs:ObservationMethod\#0123 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "In-situ hybridization";
  dc:title "In-situ hybridization";
  rdfs:comment "Molecular, In-situ hybridization";
  dcterms:description "Molecular, In-situ hybridization".

cs:ObservationMethod\#0124 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Ligase Chain Reaction";
  dc:title "Ligase Chain Reaction";
  rdfs:comment "Molecular, Ligase Chain Reaction";
  dcterms:description "Molecular, Ligase Chain Reaction".

cs:ObservationMethod\#0125 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Ligation Activated Transcription";
  dc:title "Ligation Activated Transcription";
  rdfs:comment "Molecular, Ligation Activated Transcription";
  dcterms:description "Molecular, Ligation Activated Transcription".

cs:ObservationMethod\#0126 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Nucleic Acid Probe";
  dc:title "Nucleic Acid Probe";
  rdfs:comment "Molecular, Nucleic Acid Probe";
  dcterms:description "Molecular, Nucleic Acid Probe".

cs:ObservationMethod\#0128 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Nucleic acid probe with amplification";
  dc:title "Nucleic acid probe with amplification";
  rdfs:comment "Molecular, Nucleic acid probe with amplification\r\n\n                        \r\n\n                        Rationale: Duplicate of code 0126. Use code 0126 instead.";
  dcterms:description "Molecular, Nucleic acid probe with amplification\r\n\n                        \r\n\n                        Rationale: Duplicate of code 0126. Use code 0126 instead.".

cs:ObservationMethod\#0129 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Nucleic acid probe with target amplification";
  dc:title "Nucleic acid probe with target amplification";
  rdfs:comment "Molecular, Nucleic acid probe with target amplification";
  dcterms:description "Molecular, Nucleic acid probe with target amplification".

cs:ObservationMethod\#0130 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Nucleic acid reverse transcription";
  dc:title "Nucleic acid reverse transcription";
  rdfs:comment "Molecular, Nucleic acid reverse transcription";
  dcterms:description "Molecular, Nucleic acid reverse transcription".

cs:ObservationMethod\#0131 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Nucleic Acid Sequence Based Analysis";
  dc:title "Nucleic Acid Sequence Based Analysis";
  rdfs:comment "Molecular, Nucleic Acid Sequence Based Analysis";
  dcterms:description "Molecular, Nucleic Acid Sequence Based Analysis".

cs:ObservationMethod\#0132 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Polymerase chain reaction";
  dc:title "Polymerase chain reaction";
  rdfs:comment "Molecular, Polymerase chain reaction";
  dcterms:description "Molecular, Polymerase chain reaction".

cs:ObservationMethod\#0133 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Q-Beta Replicase or probe amplification category method";
  dc:title "Q-Beta Replicase or probe amplification category method";
  rdfs:comment "Molecular, Q-Beta Replicase or probe amplification category method";
  dcterms:description "Molecular, Q-Beta Replicase or probe amplification category method".

cs:ObservationMethod\#0134 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Restriction Fragment Length Polymorphism";
  dc:title "Restriction Fragment Length Polymorphism";
  rdfs:comment "Molecular, Restriction Fragment Length Polymorphism";
  dcterms:description "Molecular, Restriction Fragment Length Polymorphism".

cs:ObservationMethod\#0135 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Southern Blot";
  dc:title "Southern Blot";
  rdfs:comment "Molecular, Southern Blot";
  dcterms:description "Molecular, Southern Blot".

cs:ObservationMethod\#0136 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Strand Displacement Amplification";
  dc:title "Strand Displacement Amplification";
  rdfs:comment "Molecular, Strand Displacement Amplification";
  dcterms:description "Molecular, Strand Displacement Amplification".

cs:ObservationMethod\#0137 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Transcription Mediated Amplification";
  dc:title "Transcription Mediated Amplification";
  rdfs:comment "Molecular, Transcription Mediated Amplification";
  dcterms:description "Molecular, Transcription Mediated Amplification".

cs:ObservationMethod\#0138 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Western Blot";
  dc:title "Western Blot";
  rdfs:comment "Molecular, Western Blot";
  dcterms:description "Molecular, Western Blot".

cs:ObservationMethod\#0139 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Flocculation";
  dc:title "Flocculation";
  rdfs:comment "Precipitation, Flocculation";
  dcterms:description "Precipitation, Flocculation".

cs:ObservationMethod\#0140 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immune precipitation";
  dc:title "Immune precipitation";
  rdfs:comment "Precipitation, Immune precipitation";
  dcterms:description "Precipitation, Immune precipitation".

cs:ObservationMethod\#0141 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Milk ring test";
  dc:title "Milk ring test";
  rdfs:comment "Precipitation, Milk ring test";
  dcterms:description "Precipitation, Milk ring test".

cs:ObservationMethod\#0142 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Precipitin";
  dc:title "Precipitin";
  rdfs:comment "Precipitation, Precipitin";
  dcterms:description "Precipitation, Precipitin".

cs:ObservationMethod\#0143 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Acid fast stain";
  dc:title "Acid fast stain";
  rdfs:comment "Stain, Acid fast";
  dcterms:description "Stain, Acid fast".

cs:ObservationMethod\#0144 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Acid fast stain, fluorochrome";
  dc:title "Acid fast stain, fluorochrome";
  rdfs:comment "Stain, Acid fast, fluorochrome";
  dcterms:description "Stain, Acid fast, fluorochrome".

cs:ObservationMethod\#0145 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Acid fast stain, Kinyoun's cold carbolfuchsin";
  dc:title "Acid fast stain, Kinyoun's cold carbolfuchsin";
  rdfs:comment "Stain, Acid fast, Kinyoun's cold carbolfuchsin";
  dcterms:description "Stain, Acid fast, Kinyoun's cold carbolfuchsin".

cs:ObservationMethod\#0146 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Acid fast stain, Ziehl-Neelsen";
  dc:title "Acid fast stain, Ziehl-Neelsen";
  rdfs:comment "Stain, Acid fast, Ziehl-Neelsen";
  dcterms:description "Stain, Acid fast, Ziehl-Neelsen".

cs:ObservationMethod\#0147 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Acid phosphatase stain";
  dc:title "Acid phosphatase stain";
  rdfs:comment "Stain, Acid phosphatase";
  dcterms:description "Stain, Acid phosphatase".

cs:ObservationMethod\#0148 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Acridine orange stain";
  dc:title "Acridine orange stain";
  rdfs:comment "Stain, Acridine orange";
  dcterms:description "Stain, Acridine orange".

cs:ObservationMethod\#0149 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Active brilliant orange KH stain";
  dc:title "Active brilliant orange KH stain";
  rdfs:comment "Stain, Active brilliant orange KH";
  dcterms:description "Stain, Active brilliant orange KH".

cs:ObservationMethod\#0150 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Alazarin red S stain";
  dc:title "Alazarin red S stain";
  rdfs:comment "Stain, Alazarin red S";
  dcterms:description "Stain, Alazarin red S".

cs:ObservationMethod\#0151 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Alcian blue stain";
  dc:title "Alcian blue stain";
  rdfs:comment "Stain, Alcian blue";
  dcterms:description "Stain, Alcian blue".

cs:ObservationMethod\#0152 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Alcian blue with Periodic acid Schiff stain";
  dc:title "Alcian blue with Periodic acid Schiff stain";
  rdfs:comment "Stain, Alcian blue with Periodic acid Schiff";
  dcterms:description "Stain, Alcian blue with Periodic acid Schiff".

cs:ObservationMethod\#0153 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Argentaffin stain";
  dc:title "Argentaffin stain";
  rdfs:comment "Stain, Argentaffin";
  dcterms:description "Stain, Argentaffin".

cs:ObservationMethod\#0154 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Argentaffin silver stain";
  dc:title "Argentaffin silver stain";
  rdfs:comment "Stain, Argentaffin silver";
  dcterms:description "Stain, Argentaffin silver".

cs:ObservationMethod\#0155 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Azure-eosin stain";
  dc:title "Azure-eosin stain";
  rdfs:comment "Stain, Azure-eosin";
  dcterms:description "Stain, Azure-eosin".

cs:ObservationMethod\#0156 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Basic Fuschin stain";
  dc:title "Basic Fuschin stain";
  rdfs:comment "Stain, Basic Fuschin";
  dcterms:description "Stain, Basic Fuschin".

cs:ObservationMethod\#0157 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Bennhold stain";
  dc:title "Bennhold stain";
  rdfs:comment "Stain, Bennhold";
  dcterms:description "Stain, Bennhold".

cs:ObservationMethod\#0158 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Bennhold's Congo red stain";
  dc:title "Bennhold's Congo red stain";
  rdfs:comment "Stain, Bennhold's Congo red";
  dcterms:description "Stain, Bennhold's Congo red".

cs:ObservationMethod\#0159 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Bielschowsky stain";
  dc:title "Bielschowsky stain";
  rdfs:comment "Stain, Bielschowsky";
  dcterms:description "Stain, Bielschowsky".

cs:ObservationMethod\#0160 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Bielschowsky's silver stain";
  dc:title "Bielschowsky's silver stain";
  rdfs:comment "Stain, Bielschowsky's silver";
  dcterms:description "Stain, Bielschowsky's silver".

cs:ObservationMethod\#0161 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Bleach stain";
  dc:title "Bleach stain";
  rdfs:comment "Stain, Bleach";
  dcterms:description "Stain, Bleach".

cs:ObservationMethod\#0162 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Bodian stain";
  dc:title "Bodian stain";
  rdfs:comment "Stain, Bodian";
  dcterms:description "Stain, Bodian".

cs:ObservationMethod\#0163 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Brown-Brenn stain";
  dc:title "Brown-Brenn stain";
  rdfs:comment "Stain, Brown-Brenn";
  dcterms:description "Stain, Brown-Brenn".

cs:ObservationMethod\#0164 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Butyrate-esterase stain";
  dc:title "Butyrate-esterase stain";
  rdfs:comment "Stain, Butyrate-esterase";
  dcterms:description "Stain, Butyrate-esterase".

cs:ObservationMethod\#0165 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Calcofluor white fluorescent stain";
  dc:title "Calcofluor white fluorescent stain";
  rdfs:comment "Stain, Calcofluor white fluorescent";
  dcterms:description "Stain, Calcofluor white fluorescent".

cs:ObservationMethod\#0166 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Carbol-fuchsin stain";
  dc:title "Carbol-fuchsin stain";
  rdfs:comment "Stain, Carbol-fuchsin";
  dcterms:description "Stain, Carbol-fuchsin".

cs:ObservationMethod\#0167 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Carmine stain";
  dc:title "Carmine stain";
  rdfs:comment "Stain, Carmine";
  dcterms:description "Stain, Carmine".

cs:ObservationMethod\#0168 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Churukian-Schenk stain";
  dc:title "Churukian-Schenk stain";
  rdfs:comment "Stain, Churukian-Schenk";
  dcterms:description "Stain, Churukian-Schenk".

cs:ObservationMethod\#0169 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Congo red stain";
  dc:title "Congo red stain";
  rdfs:comment "Stain, Congo red";
  dcterms:description "Stain, Congo red".

cs:ObservationMethod\#0170 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Cresyl echt violet stain";
  dc:title "Cresyl echt violet stain";
  rdfs:comment "Stain, Cresyl echt violet";
  dcterms:description "Stain, Cresyl echt violet".

cs:ObservationMethod\#0171 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Crystal violet stain";
  dc:title "Crystal violet stain";
  rdfs:comment "Stain, Crystal violet";
  dcterms:description "Stain, Crystal violet".

cs:ObservationMethod\#0172 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "De Galantha stain";
  dc:title "De Galantha stain";
  rdfs:comment "Stain, De Galantha";
  dcterms:description "Stain, De Galantha".

cs:ObservationMethod\#0173 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Dieterle silver impregnation stain";
  dc:title "Dieterle silver impregnation stain";
  rdfs:comment "Stain, Dieterle silver impregnation";
  dcterms:description "Stain, Dieterle silver impregnation".

cs:ObservationMethod\#0174 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Fite-Farco stain";
  dc:title "Fite-Farco stain";
  rdfs:comment "Stain, Fite-Farco";
  dcterms:description "Stain, Fite-Farco".

cs:ObservationMethod\#0175 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Fontana-Masson silver stain";
  dc:title "Fontana-Masson silver stain";
  rdfs:comment "Stain, Fontana-Masson silver";
  dcterms:description "Stain, Fontana-Masson silver".

cs:ObservationMethod\#0176 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Fouchet stain";
  dc:title "Fouchet stain";
  rdfs:comment "Stain, Fouchet";
  dcterms:description "Stain, Fouchet".

cs:ObservationMethod\#0177 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Gomori stain";
  dc:title "Gomori stain";
  rdfs:comment "Stain, Gomori";
  dcterms:description "Stain, Gomori".

cs:ObservationMethod\#0178 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Gomori methenamine silver stain";
  dc:title "Gomori methenamine silver stain";
  rdfs:comment "Stain, Gomori methenamine silver";
  dcterms:description "Stain, Gomori methenamine silver".

cs:ObservationMethod\#0179 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Gomori-Wheatly trichrome stain";
  dc:title "Gomori-Wheatly trichrome stain";
  rdfs:comment "Stain, Gomori-Wheatly trichrome";
  dcterms:description "Stain, Gomori-Wheatly trichrome".

cs:ObservationMethod\#0180 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Gridley stain";
  dc:title "Gridley stain";
  rdfs:comment "Stain, Gridley";
  dcterms:description "Stain, Gridley".

cs:ObservationMethod\#0181 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Grimelius silver stain";
  dc:title "Grimelius silver stain";
  rdfs:comment "Stain, Grimelius silver";
  dcterms:description "Stain, Grimelius silver".

cs:ObservationMethod\#0182 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Grocott stain";
  dc:title "Grocott stain";
  rdfs:comment "Stain, Grocott";
  dcterms:description "Stain, Grocott".

cs:ObservationMethod\#0183 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Grocott methenamine silver stain";
  dc:title "Grocott methenamine silver stain";
  rdfs:comment "Stain, Grocott methenamine silver";
  dcterms:description "Stain, Grocott methenamine silver".

cs:ObservationMethod\#0184 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Hale's colloidal ferric oxide stain";
  dc:title "Hale's colloidal ferric oxide stain";
  rdfs:comment "Stain, Hale's colloidal ferric oxide";
  dcterms:description "Stain, Hale's colloidal ferric oxide".

cs:ObservationMethod\#0185 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Hale's colloidal iron stain";
  dc:title "Hale's colloidal iron stain";
  rdfs:comment "Stain, Hale's colloidal iron";
  dcterms:description "Stain, Hale's colloidal iron".

cs:ObservationMethod\#0186 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Hansel stain";
  dc:title "Hansel stain";
  rdfs:comment "Stain, Hansel";
  dcterms:description "Stain, Hansel".

cs:ObservationMethod\#0187 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Harris regressive hematoxylin and eosin stain";
  dc:title "Harris regressive hematoxylin and eosin stain";
  rdfs:comment "Stain, Harris regressive hematoxylin and eosin";
  dcterms:description "Stain, Harris regressive hematoxylin and eosin".

cs:ObservationMethod\#0188 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Hematoxylin and eosin stain";
  dc:title "Hematoxylin and eosin stain";
  rdfs:comment "Stain, Hematoxylin and eosin";
  dcterms:description "Stain, Hematoxylin and eosin".

cs:ObservationMethod\#0189 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Highman stain";
  dc:title "Highman stain";
  rdfs:comment "Stain, Highman";
  dcterms:description "Stain, Highman".

cs:ObservationMethod\#0190 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Holzer stain";
  dc:title "Holzer stain";
  rdfs:comment "Stain, Holzer";
  dcterms:description "Stain, Holzer".

cs:ObservationMethod\#0191 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Iron hematoxylin stain";
  dc:title "Iron hematoxylin stain";
  rdfs:comment "Stain, Iron hematoxylin";
  dcterms:description "Stain, Iron hematoxylin".

cs:ObservationMethod\#0192 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Jones stain";
  dc:title "Jones stain";
  rdfs:comment "Stain, Jones";
  dcterms:description "Stain, Jones".

cs:ObservationMethod\#0193 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Jones methenamine silver stain";
  dc:title "Jones methenamine silver stain";
  rdfs:comment "Stain, Jones methenamine silver";
  dcterms:description "Stain, Jones methenamine silver".

cs:ObservationMethod\#0194 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Kossa stain";
  dc:title "Kossa stain";
  rdfs:comment "Stain, Kossa";
  dcterms:description "Stain, Kossa".

cs:ObservationMethod\#0195 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Lawson-Van Gieson stain";
  dc:title "Lawson-Van Gieson stain";
  rdfs:comment "Stain, Lawson-Van Gieson";
  dcterms:description "Stain, Lawson-Van Gieson".

cs:ObservationMethod\#0196 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Loeffler methylene blue stain";
  dc:title "Loeffler methylene blue stain";
  rdfs:comment "Stain, Loeffler methylene blue";
  dcterms:description "Stain, Loeffler methylene blue".

cs:ObservationMethod\#0197 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Luxol fast blue with cresyl violet stain";
  dc:title "Luxol fast blue with cresyl violet stain";
  rdfs:comment "Stain, Luxol fast blue with cresyl violet";
  dcterms:description "Stain, Luxol fast blue with cresyl violet".

cs:ObservationMethod\#0198 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Luxol fast blue with Periodic acid-Schiff stain";
  dc:title "Luxol fast blue with Periodic acid-Schiff stain";
  rdfs:comment "Stain, Luxol fast blue with Periodic acid-Schiff";
  dcterms:description "Stain, Luxol fast blue with Periodic acid-Schiff".

cs:ObservationMethod\#0199 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "MacNeal's tetrachrome blood stain";
  dc:title "MacNeal's tetrachrome blood stain";
  rdfs:comment "Stain, MacNeal's tetrachrome blood";
  dcterms:description "Stain, MacNeal's tetrachrome blood".

cs:ObservationMethod\#0200 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Mallory-Heidenhain stain";
  dc:title "Mallory-Heidenhain stain";
  rdfs:comment "Stain, Mallory-Heidenhain";
  dcterms:description "Stain, Mallory-Heidenhain".

cs:ObservationMethod\#0201 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Masson trichrome stain";
  dc:title "Masson trichrome stain";
  rdfs:comment "Stain, Masson trichrome";
  dcterms:description "Stain, Masson trichrome".

cs:ObservationMethod\#0202 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Mayer mucicarmine stain";
  dc:title "Mayer mucicarmine stain";
  rdfs:comment "Stain, Mayer mucicarmine";
  dcterms:description "Stain, Mayer mucicarmine".

cs:ObservationMethod\#0203 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Mayers progressive hematoxylin and eosin stain";
  dc:title "Mayers progressive hematoxylin and eosin stain";
  rdfs:comment "Stain, Mayers progressive hematoxylin and eosin";
  dcterms:description "Stain, Mayers progressive hematoxylin and eosin".

cs:ObservationMethod\#0204 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "May-Grunwald Giemsa stain";
  dc:title "May-Grunwald Giemsa stain";
  rdfs:comment "Stain, May-Grunwald Giemsa";
  dcterms:description "Stain, May-Grunwald Giemsa".

cs:ObservationMethod\#0205 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Methyl green stain";
  dc:title "Methyl green stain";
  rdfs:comment "Stain, Methyl green";
  dcterms:description "Stain, Methyl green".

cs:ObservationMethod\#0206 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Methyl green pyronin stain";
  dc:title "Methyl green pyronin stain";
  rdfs:comment "Stain, Methyl green pyronin";
  dcterms:description "Stain, Methyl green pyronin".

cs:ObservationMethod\#0207 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Modified Gomori-Wheatly trichrome stain";
  dc:title "Modified Gomori-Wheatly trichrome stain";
  rdfs:comment "Stain, Modified Gomori-Wheatly trichrome";
  dcterms:description "Stain, Modified Gomori-Wheatly trichrome".

cs:ObservationMethod\#0208 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Modified Masson trichrome stain";
  dc:title "Modified Masson trichrome stain";
  rdfs:comment "Stain, Modified Masson trichrome";
  dcterms:description "Stain, Modified Masson trichrome".

cs:ObservationMethod\#0209 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Modified trichrome stain";
  dc:title "Modified trichrome stain";
  rdfs:comment "Stain, Modified trichrome";
  dcterms:description "Stain, Modified trichrome".

cs:ObservationMethod\#0210 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Movat pentachrome stain";
  dc:title "Movat pentachrome stain";
  rdfs:comment "Stain, Movat pentachrome";
  dcterms:description "Stain, Movat pentachrome".

cs:ObservationMethod\#0211 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Mucicarmine stain";
  dc:title "Mucicarmine stain";
  rdfs:comment "Stain, Mucicarmine";
  dcterms:description "Stain, Mucicarmine".

cs:ObservationMethod\#0212 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Neutral red stain";
  dc:title "Neutral red stain";
  rdfs:comment "Stain, Neutral red";
  dcterms:description "Stain, Neutral red".

cs:ObservationMethod\#0213 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Night blue stain";
  dc:title "Night blue stain";
  rdfs:comment "Stain, Night blue";
  dcterms:description "Stain, Night blue".

cs:ObservationMethod\#0214 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Non-specific esterase stain";
  dc:title "Non-specific esterase stain";
  rdfs:comment "Stain, Non-specific esterase";
  dcterms:description "Stain, Non-specific esterase".

cs:ObservationMethod\#0215 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Oil red-O stain";
  dc:title "Oil red-O stain";
  rdfs:comment "Stain, Oil red-O";
  dcterms:description "Stain, Oil red-O".

cs:ObservationMethod\#0216 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Orcein stain";
  dc:title "Orcein stain";
  rdfs:comment "Stain, Orcein";
  dcterms:description "Stain, Orcein".

cs:ObservationMethod\#0217 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Perls' stain";
  dc:title "Perls' stain";
  rdfs:comment "Stain, Perls'";
  dcterms:description "Stain, Perls'".

cs:ObservationMethod\#0218 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Phosphotungstic acid-hematoxylin stain";
  dc:title "Phosphotungstic acid-hematoxylin stain";
  rdfs:comment "Stain, Phosphotungstic acid-hematoxylin";
  dcterms:description "Stain, Phosphotungstic acid-hematoxylin".

cs:ObservationMethod\#0219 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Potassium ferrocyanide stain";
  dc:title "Potassium ferrocyanide stain";
  rdfs:comment "Stain, Potassium ferrocyanide";
  dcterms:description "Stain, Potassium ferrocyanide".

cs:ObservationMethod\#0220 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Prussian blue stain";
  dc:title "Prussian blue stain";
  rdfs:comment "Stain, Prussian blue";
  dcterms:description "Stain, Prussian blue".

cs:ObservationMethod\#0221 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Putchler modified Bennhold stain";
  dc:title "Putchler modified Bennhold stain";
  rdfs:comment "Stain, Putchler modified Bennhold";
  dcterms:description "Stain, Putchler modified Bennhold".

cs:ObservationMethod\#0222 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Quinacrine fluorescent stain";
  dc:title "Quinacrine fluorescent stain";
  rdfs:comment "Stain, Quinacrine fluorescent";
  dcterms:description "Stain, Quinacrine fluorescent".

cs:ObservationMethod\#0223 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Reticulin stain";
  dc:title "Reticulin stain";
  rdfs:comment "Stain, Reticulin";
  dcterms:description "Stain, Reticulin".

cs:ObservationMethod\#0224 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Rhodamine stain";
  dc:title "Rhodamine stain";
  rdfs:comment "Stain, Rhodamine";
  dcterms:description "Stain, Rhodamine".

cs:ObservationMethod\#0225 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Safranin stain";
  dc:title "Safranin stain";
  rdfs:comment "Stain, Safranin";
  dcterms:description "Stain, Safranin".

cs:ObservationMethod\#0226 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Schmorl stain";
  dc:title "Schmorl stain";
  rdfs:comment "Stain, Schmorl";
  dcterms:description "Stain, Schmorl".

cs:ObservationMethod\#0227 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Seiver-Munger stain";
  dc:title "Seiver-Munger stain";
  rdfs:comment "Stain, Seiver-Munger";
  dcterms:description "Stain, Seiver-Munger".

cs:ObservationMethod\#0228 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Silver stain";
  dc:title "Silver stain";
  rdfs:comment "Stain, Silver";
  dcterms:description "Stain, Silver".

cs:ObservationMethod\#0229 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Specific esterase stain";
  dc:title "Specific esterase stain";
  rdfs:comment "Stain, Specific esterase";
  dcterms:description "Stain, Specific esterase".

cs:ObservationMethod\#0230 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Steiner silver stain";
  dc:title "Steiner silver stain";
  rdfs:comment "Stain, Steiner silver";
  dcterms:description "Stain, Steiner silver".

cs:ObservationMethod\#0231 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Sudan III stain";
  dc:title "Sudan III stain";
  rdfs:comment "Stain, Sudan III";
  dcterms:description "Stain, Sudan III".

cs:ObservationMethod\#0232 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Sudan IVI stain";
  dc:title "Sudan IVI stain";
  rdfs:comment "Stain, Sudan IVI";
  dcterms:description "Stain, Sudan IVI".

cs:ObservationMethod\#0233 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Sulfated alcian blue stain";
  dc:title "Sulfated alcian blue stain";
  rdfs:comment "Stain, Sulfated alcian blue";
  dcterms:description "Stain, Sulfated alcian blue".

cs:ObservationMethod\#0234 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Supravital stain";
  dc:title "Supravital stain";
  rdfs:comment "Stain, Supravital";
  dcterms:description "Stain, Supravital".

cs:ObservationMethod\#0235 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Thioflavine-S stain";
  dc:title "Thioflavine-S stain";
  rdfs:comment "Stain, Thioflavine-S";
  dcterms:description "Stain, Thioflavine-S".

cs:ObservationMethod\#0236 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Three micron Giemsa stain";
  dc:title "Three micron Giemsa stain";
  rdfs:comment "Stain, Three micron Giemsa";
  dcterms:description "Stain, Three micron Giemsa".

cs:ObservationMethod\#0237 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Vassar-Culling stain";
  dc:title "Vassar-Culling stain";
  rdfs:comment "Stain, Vassar-Culling";
  dcterms:description "Stain, Vassar-Culling".

cs:ObservationMethod\#0238 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Vital Stain";
  dc:title "Vital Stain";
  rdfs:comment "Stain, Vital";
  dcterms:description "Stain, Vital".

cs:ObservationMethod\#0239 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "von Kossa stain";
  dc:title "von Kossa stain";
  rdfs:comment "Stain, von Kossa";
  dcterms:description "Stain, von Kossa".

cs:ObservationMethod\#0243 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Minimum bactericidal concentration test, macrodilution";
  dc:title "Minimum bactericidal concentration test, macrodilution";
  rdfs:comment "Susceptibility, Minimum bactericidal concentration, macrodilution";
  dcterms:description "Susceptibility, Minimum bactericidal concentration, macrodilution".

cs:ObservationMethod\#0244 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Minimum bactericidal concentration test, microdilution";
  dc:title "Minimum bactericidal concentration test, microdilution";
  rdfs:comment "Susceptibility, Minimum bactericidal concentration, microdilution";
  dcterms:description "Susceptibility, Minimum bactericidal concentration, microdilution".

cs:ObservationMethod\#0247 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Turbidometric";
  dc:title "Turbidometric";
  rdfs:comment "Turbidometric";
  dcterms:description "Turbidometric".

cs:ObservationMethod\#0248 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Refractometric";
  dc:title "Refractometric";
  rdfs:comment "Turbidometric, Refractometric";
  dcterms:description "Turbidometric, Refractometric".

cs:ObservationMethod\#0249 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Thin layer chromatography (TLC)";
  dc:title "Thin layer chromatography (TLC)";
  rdfs:comment "Chromatography, Thin Layer";
  dcterms:description "Chromatography, Thin Layer".

cs:ObservationMethod\#0250 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "EMIT";
  dc:title "EMIT";
  rdfs:comment "Immunoassay, enzyme-multiplied technique (EMIT)";
  dcterms:description "Immunoassay, enzyme-multiplied technique (EMIT)".

cs:ObservationMethod\#0251 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Flow cytometry (FC)";
  dc:title "Flow cytometry (FC)";
  rdfs:comment "Flow Cytometry";
  dcterms:description "Flow Cytometry".

cs:ObservationMethod\#0252 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Radial immunodiffusion (RID)";
  dc:title "Radial immunodiffusion (RID)";
  rdfs:comment "Radial Immunodiffusion";
  dcterms:description "Radial Immunodiffusion".

cs:ObservationMethod\#0253 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Fluorescence polarization immunoassay (FPIA)";
  dc:title "Fluorescence polarization immunoassay (FPIA)";
  rdfs:comment "Immunoassay, Fluorescence Polarization";
  dcterms:description "Immunoassay, Fluorescence Polarization".

cs:ObservationMethod\#0254 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immunofixation electrophoresis (IFE)";
  dc:title "Immunofixation electrophoresis (IFE)";
  rdfs:comment "Electrophoresis, Immunofixation";
  dcterms:description "Electrophoresis, Immunofixation".

cs:ObservationMethod\#0255 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Equilibrium dialysis";
  dc:title "Equilibrium dialysis";
  rdfs:comment "Dialysis, Direct Equilibrium";
  dcterms:description "Dialysis, Direct Equilibrium".

cs:ObservationMethod\#0256 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Kleihauer-Betke acid elution";
  dc:title "Kleihauer-Betke acid elution";
  rdfs:comment "Acid Elution, Kleihauer-Betke Method";
  dcterms:description "Acid Elution, Kleihauer-Betke Method".

cs:ObservationMethod\#0257 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Anti-complement immunofluorescence (ACIF)";
  dc:title "Anti-complement immunofluorescence (ACIF)";
  rdfs:comment "Immunofluorescence, Anti-Complement";
  dcterms:description "Immunofluorescence, Anti-Complement".

cs:ObservationMethod\#0258 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "GC/MS";
  dc:title "GC/MS";
  rdfs:comment "Gas Chromatography/Mass Spectroscopy";
  dcterms:description "Gas Chromatography/Mass Spectroscopy".

cs:ObservationMethod\#0259 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Nephelometry";
  dc:title "Nephelometry";
  rdfs:comment "Light Scatter, Nephelometry";
  dcterms:description "Light Scatter, Nephelometry".

cs:ObservationMethod\#0260 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "IgE immunoassay antibody";
  dc:title "IgE immunoassay antibody";
  rdfs:comment "Immunoassay, IgE Antibody Test";
  dcterms:description "Immunoassay, IgE Antibody Test".

cs:ObservationMethod\#0261 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Lymphocyte Microcytotoxicity Assay";
  dc:title "Lymphocyte Microcytotoxicity Assay";
  rdfs:comment "Lymphocyte Microcytotoxicity Assay";
  dcterms:description "Lymphocyte Microcytotoxicity Assay".

cs:ObservationMethod\#0262 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Spectrophotometry";
  dc:title "Spectrophotometry";
  rdfs:comment "Spectrophotometry";
  dcterms:description "Spectrophotometry".

cs:ObservationMethod\#0263 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Atomic absorption spectrophotometry (AAS)";
  dc:title "Atomic absorption spectrophotometry (AAS)";
  rdfs:comment "Spectrophotometry, Atomic Absorption";
  dcterms:description "Spectrophotometry, Atomic Absorption".

cs:ObservationMethod\#0264 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Ion selective electrode (ISE)";
  dc:title "Ion selective electrode (ISE)";
  rdfs:comment "Electrochemical, Ion Selective Electrode";
  dcterms:description "Electrochemical, Ion Selective Electrode".

cs:ObservationMethod\#0265 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Gas chromatography (GC)";
  dc:title "Gas chromatography (GC)";
  rdfs:comment "Chromatography, Gas";
  dcterms:description "Chromatography, Gas".

cs:ObservationMethod\#0266 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Isoelectric focusing (IEF)";
  dc:title "Isoelectric focusing (IEF)";
  rdfs:comment "Isoelectric Focusing";
  dcterms:description "Isoelectric Focusing".

cs:ObservationMethod\#0267 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immunochemiluminescence";
  dc:title "Immunochemiluminescence";
  rdfs:comment "Immunoassay, Chemiluminescent";
  dcterms:description "Immunoassay, Chemiluminescent".

cs:ObservationMethod\#0268 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Microparticle enzyme immunoassay (MEIA)";
  dc:title "Microparticle enzyme immunoassay (MEIA)";
  rdfs:comment "Immunoassay, Microparticle Enzyme";
  dcterms:description "Immunoassay, Microparticle Enzyme".

cs:ObservationMethod\#0269 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "ICP/MS";
  dc:title "ICP/MS";
  rdfs:comment "Inductively-Coupled Plasma/Mass Spectrometry";
  dcterms:description "Inductively-Coupled Plasma/Mass Spectrometry".

cs:ObservationMethod\#0270 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Immunoradiometric assay (IRMA)";
  dc:title "Immunoradiometric assay (IRMA)";
  rdfs:comment "Immunoassay, Immunoradiometric Assay";
  dcterms:description "Immunoassay, Immunoradiometric Assay".

cs:ObservationMethod\#0271 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Photo optical clot detection";
  dc:title "Photo optical clot detection";
  rdfs:comment "Coagulation, Photo Optical Clot Detection";
  dcterms:description "Coagulation, Photo Optical Clot Detection".

cs:ObservationMethod\#0280 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Susceptibility Testing";
  dc:title "Susceptibility Testing";
  rdfs:comment "Test methods designed to determine a microorganismaTMs susceptibility to being killed by an antibiotic.";
  dcterms:description "Test methods designed to determine a microorganismaTMs susceptibility to being killed by an antibiotic.".

cs:ObservationMethod\#0240 rdfs:subClassOf cs:ObservationMethod\#0280;
  rdfs:label "Antibiotic sensitivity, disk";
  dc:title "Antibiotic sensitivity, disk";
  rdfs:comment "Susceptibility, Antibiotic sensitivity, disk";
  dcterms:description "Susceptibility, Antibiotic sensitivity, disk".

cs:ObservationMethod\#0241 rdfs:subClassOf cs:ObservationMethod\#0280;
  rdfs:label "BACTEC susceptibility test";
  dc:title "BACTEC susceptibility test";
  rdfs:comment "Susceptibility, BACTEC susceptibility test";
  dcterms:description "Susceptibility, BACTEC susceptibility test".

cs:ObservationMethod\#0242 rdfs:subClassOf cs:ObservationMethod\#0280;
  rdfs:label "Disk dilution";
  dc:title "Disk dilution";
  rdfs:comment "Susceptibility, Disk dilution";
  dcterms:description "Susceptibility, Disk dilution".

cs:ObservationMethod\#0272 rdfs:subClassOf cs:ObservationMethod\#0280;
  rdfs:label "Minimum Inhibitory Concentration";
  dc:title "Minimum Inhibitory Concentration";
  rdfs:comment "Testing to measure the minimum concentration of the antibacterial agent in a given culture medium below which bacterial growth is not inhibited.";
  dcterms:description "Testing to measure the minimum concentration of the antibacterial agent in a given culture medium below which bacterial growth is not inhibited.".

cs:ObservationMethod\#0245 rdfs:subClassOf cs:ObservationMethod\#0272;
  rdfs:label "Minimum Inhibitory Concentration, macrodilution";
  dc:title "Minimum Inhibitory Concentration, macrodilution";
  rdfs:comment "Susceptibility, Minimum Inhibitory concentration, macrodilution";
  dcterms:description "Susceptibility, Minimum Inhibitory concentration, macrodilution".

cs:ObservationMethod\#0246 rdfs:subClassOf cs:ObservationMethod\#0272;
  rdfs:label "Minimum Inhibitory Concentration, microdilution";
  dc:title "Minimum Inhibitory Concentration, microdilution";
  rdfs:comment "Susceptibility, Minimum Inhibitory concentration, microdilution";
  dcterms:description "Susceptibility, Minimum Inhibitory concentration, microdilution".

cs:ObservationMethod\#0273 rdfs:subClassOf cs:ObservationMethod\#0280;
  rdfs:label "Viral Genotype Susceptibility";
  dc:title "Viral Genotype Susceptibility";
  rdfs:comment "Viral Genotype Susceptibility";
  dcterms:description "Viral Genotype Susceptibility".

cs:ObservationMethod\#0274 rdfs:subClassOf cs:ObservationMethod\#0280;
  rdfs:label "Viral Phenotype Susceptibility";
  dc:title "Viral Phenotype Susceptibility";
  rdfs:comment "Viral Phenotype Susceptibility";
  dcterms:description "Viral Phenotype Susceptibility".

cs:ObservationMethod\#0275 rdfs:subClassOf cs:ObservationMethod\#0280;
  rdfs:label "Gradient Strip";
  dc:title "Gradient Strip";
  rdfs:comment "Gradient Strip";
  dcterms:description "Gradient Strip".

cs:ObservationMethod\#0275a rdfs:subClassOf cs:ObservationMethod\#0280;
  rdfs:label "Minimum Lethal Concentration (MLC)";
  dc:title "Minimum Lethal Concentration (MLC)";
  rdfs:comment "Minimum Lethal Concentration (MLC)";
  dcterms:description "Minimum Lethal Concentration (MLC)".

cs:ObservationMethod\#0276 rdfs:subClassOf cs:ObservationMethod\#0280;
  rdfs:label "Slow Mycobacteria Susceptibility";
  dc:title "Slow Mycobacteria Susceptibility";
  rdfs:comment "Testing to measure the minimum concentration of the antibacterial agent in a given culture medium below which bacterial growth is not inhibited.";
  dcterms:description "Testing to measure the minimum concentration of the antibacterial agent in a given culture medium below which bacterial growth is not inhibited.".

cs:ObservationMethod\#0277 rdfs:subClassOf cs:ObservationMethod\#0280;
  rdfs:label "Serum bactericidal titer";
  dc:title "Serum bactericidal titer";
  rdfs:comment "Serum bactericidal titer";
  dcterms:description "Serum bactericidal titer".

cs:ObservationMethod\#0278 rdfs:subClassOf cs:ObservationMethod\#0280;
  rdfs:label "Agar screen";
  dc:title "Agar screen";
  rdfs:comment "Agar screen";
  dcterms:description "Agar screen".

cs:ObservationMethod\#0279 rdfs:subClassOf cs:ObservationMethod\#0280;
  rdfs:label "Disk induction";
  dc:title "Disk induction";
  rdfs:comment "Disk induction";
  dcterms:description "Disk induction".

cs:ObservationMethod\#0127 rdfs:subClassOf cs:ObservationMethod;
  rdfs:label "Nucleic acid probe";
  dc:title "Nucleic acid probe";
  rdfs:comment "Molecular, Nucleic acid probe";
  dcterms:description "Molecular, Nucleic acid probe".

# - vs:v3-ObservationType ------------------------------------------------------

vs:v3-ObservationType a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "ObservationType";
  dc:title "ObservationType";
  rdfs:comment " Identifies the kinds of observations that can be performed";
  dcterms:description " Identifies the kinds of observations that can be performed";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-ObservationValue -----------------------------------------------------

vs:v3-ObservationValue a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ObservationValue";
  dc:title "v3 Code System ObservationValue";
  rdfs:comment " This domain is the root domain to which all HL7-recognized value sets for the Observation.value attribute will be linked when Observation.value has a coded data type.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be corrected..";
  dcterms:description " This domain is the root domain to which all HL7-recognized value sets for the Observation.value attribute will be linked when Observation.value has a coded data type.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be corrected..";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ObservationValue.

cs:ObservationValue.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ObservationValue";
  dc:title "v3 Code System ObservationValue";
  rdfs:comment " This domain is the root domain to which all HL7-recognized code systems for the Observation.value attribute will be linked when Observation.value has a coded data type.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be corrected..";
  dcterms:description " This domain is the root domain to which all HL7-recognized code systems for the Observation.value attribute will be linked when Observation.value has a coded data type.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be corrected..";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ObservationValue a fhir:Concept.

cs:ObservationValue\#%5fActCoverageAssessmentObservationValue rdfs:subClassOf cs:ObservationValue;
  rdfs:label "ActCoverageAssessmentObservationValue";
  dc:title "ActCoverageAssessmentObservationValue";
  rdfs:comment "Codes specify the category of observation, evidence, or document used to assess for services, e.g., discharge planning, or to establish eligibility for coverage under a policy or program. The type of evidence is coded as observation values.";
  dcterms:description "Codes specify the category of observation, evidence, or document used to assess for services, e.g., discharge planning, or to establish eligibility for coverage under a policy or program. The type of evidence is coded as observation values.".

cs:ObservationValue\#%5fActFinancialStatusObservationValue rdfs:subClassOf cs:ObservationValue\#%5fActCoverageAssessmentObservationValue;
  rdfs:label "ActFinancialStatusObservationValue";
  dc:title "ActFinancialStatusObservationValue";
  rdfs:comment "Code specifying financial indicators used to assess or establish eligibility for coverage under a policy or program; e.g., pay stub; tax or income document; asset document; living expenses.";
  dcterms:description "Code specifying financial indicators used to assess or establish eligibility for coverage under a policy or program; e.g., pay stub; tax or income document; asset document; living expenses.".

cs:ObservationValue\#ASSET rdfs:subClassOf cs:ObservationValue\#%5fActFinancialStatusObservationValue;
  rdfs:label "asset";
  dc:title "asset";
  rdfs:comment "Codes specifying asset indicators used to assess or establish eligibility for coverage under a policy or program.";
  dcterms:description "Codes specifying asset indicators used to assess or establish eligibility for coverage under a policy or program.".

cs:ObservationValue\#ANNUITY rdfs:subClassOf cs:ObservationValue\#ASSET;
  rdfs:label "annuity";
  dc:title "annuity";
  rdfs:comment "Indicator of annuity ownership or status as beneficiary.";
  dcterms:description "Indicator of annuity ownership or status as beneficiary.".

cs:ObservationValue\#PROP rdfs:subClassOf cs:ObservationValue\#ASSET;
  rdfs:label "real property";
  dc:title "real property";
  rdfs:comment "Indicator of real property ownership, e.g., deed or real estate contract.";
  dcterms:description "Indicator of real property ownership, e.g., deed or real estate contract.".

cs:ObservationValue\#RETACCT rdfs:subClassOf cs:ObservationValue\#ASSET;
  rdfs:label "retirement investment account";
  dc:title "retirement investment account";
  rdfs:comment "Indicator of retirement investment account ownership.";
  dcterms:description "Indicator of retirement investment account ownership.".

cs:ObservationValue\#TRUST rdfs:subClassOf cs:ObservationValue\#ASSET;
  rdfs:label "trust";
  dc:title "trust";
  rdfs:comment "Indicator of status as trust beneficiary.";
  dcterms:description "Indicator of status as trust beneficiary.".

cs:ObservationValue\#INCOME rdfs:subClassOf cs:ObservationValue\#%5fActFinancialStatusObservationValue;
  rdfs:label "income";
  dc:title "income";
  rdfs:comment "Code specifying income indicators used to assess or establish eligibility for coverage under a policy or program; e.g., pay or pension check, child support payments received or provided, and taxes paid.";
  dcterms:description "Code specifying income indicators used to assess or establish eligibility for coverage under a policy or program; e.g., pay or pension check, child support payments received or provided, and taxes paid.".

cs:ObservationValue\#CHILD rdfs:subClassOf cs:ObservationValue\#INCOME;
  rdfs:label "child support";
  dc:title "child support";
  rdfs:comment "Indicator of child support payments received or provided.";
  dcterms:description "Indicator of child support payments received or provided.".

cs:ObservationValue\#DISABL rdfs:subClassOf cs:ObservationValue\#INCOME;
  rdfs:label "disability pay";
  dc:title "disability pay";
  rdfs:comment "Indicator of disability income replacement payment.";
  dcterms:description "Indicator of disability income replacement payment.".

cs:ObservationValue\#INVEST rdfs:subClassOf cs:ObservationValue\#INCOME;
  rdfs:label "investment income";
  dc:title "investment income";
  rdfs:comment "Indicator of investment income, e.g., dividend check, annuity payment; real estate rent, investment divestiture proceeds; trust or endowment check.";
  dcterms:description "Indicator of investment income, e.g., dividend check, annuity payment; real estate rent, investment divestiture proceeds; trust or endowment check.".

cs:ObservationValue\#PAY rdfs:subClassOf cs:ObservationValue\#INCOME;
  rdfs:label "paid employment";
  dc:title "paid employment";
  rdfs:comment "Indicator of paid employment, e.g., letter of hire, contract, employer letter; copy of pay check or pay stub.";
  dcterms:description "Indicator of paid employment, e.g., letter of hire, contract, employer letter; copy of pay check or pay stub.".

cs:ObservationValue\#RETIRE rdfs:subClassOf cs:ObservationValue\#INCOME;
  rdfs:label "retirement pay";
  dc:title "retirement pay";
  rdfs:comment "Indicator of retirement payment, e.g., pension check.";
  dcterms:description "Indicator of retirement payment, e.g., pension check.".

cs:ObservationValue\#SPOUSAL rdfs:subClassOf cs:ObservationValue\#INCOME;
  rdfs:label "spousal or partner support";
  dc:title "spousal or partner support";
  rdfs:comment "Indicator of spousal or partner support payments received or provided; e.g., alimony payment; support stipulations in a divorce settlement.";
  dcterms:description "Indicator of spousal or partner support payments received or provided; e.g., alimony payment; support stipulations in a divorce settlement.".

cs:ObservationValue\#SUPPLE rdfs:subClassOf cs:ObservationValue\#INCOME;
  rdfs:label "income supplement";
  dc:title "income supplement";
  rdfs:comment "Indicator of income supplement, e.g., gifting, parental income support; stipend, or grant.";
  dcterms:description "Indicator of income supplement, e.g., gifting, parental income support; stipend, or grant.".

cs:ObservationValue\#TAX rdfs:subClassOf cs:ObservationValue\#INCOME;
  rdfs:label "tax obligation";
  dc:title "tax obligation";
  rdfs:comment "Indicator of tax obligation or payment, e.g., statement of taxable income.";
  dcterms:description "Indicator of tax obligation or payment, e.g., statement of taxable income.".

cs:ObservationValue\#LIVEXP rdfs:subClassOf cs:ObservationValue\#%5fActFinancialStatusObservationValue;
  rdfs:label "living expense";
  dc:title "living expense";
  rdfs:comment "Codes specifying living expense indicators used to assess or establish eligibility for coverage under a policy or program.";
  dcterms:description "Codes specifying living expense indicators used to assess or establish eligibility for coverage under a policy or program.".

cs:ObservationValue\#CLOTH rdfs:subClassOf cs:ObservationValue\#LIVEXP;
  rdfs:label "clothing expense";
  dc:title "clothing expense";
  rdfs:comment "Indicator of clothing expenses.";
  dcterms:description "Indicator of clothing expenses.".

cs:ObservationValue\#FOOD rdfs:subClassOf cs:ObservationValue\#LIVEXP;
  rdfs:label "food expense";
  dc:title "food expense";
  rdfs:comment "Indicator of transportation expenses.";
  dcterms:description "Indicator of transportation expenses.".

cs:ObservationValue\#HEALTH rdfs:subClassOf cs:ObservationValue\#LIVEXP;
  rdfs:label "health expense";
  dc:title "health expense";
  rdfs:comment "Indicator of health expenses; including medication costs, health service costs, financial participations, and health coverage premiums.";
  dcterms:description "Indicator of health expenses; including medication costs, health service costs, financial participations, and health coverage premiums.".

cs:ObservationValue\#HOUSE rdfs:subClassOf cs:ObservationValue\#LIVEXP;
  rdfs:label "household expense";
  dc:title "household expense";
  rdfs:comment "Indicator of housing expense, e.g., household appliances, fixtures, furnishings, and maintenance and repairs.";
  dcterms:description "Indicator of housing expense, e.g., household appliances, fixtures, furnishings, and maintenance and repairs.".

cs:ObservationValue\#LEGAL rdfs:subClassOf cs:ObservationValue\#LIVEXP;
  rdfs:label "legal expense";
  dc:title "legal expense";
  rdfs:comment "Indicator of legal expenses.";
  dcterms:description "Indicator of legal expenses.".

cs:ObservationValue\#MORTG rdfs:subClassOf cs:ObservationValue\#LIVEXP;
  rdfs:label "mortgage";
  dc:title "mortgage";
  rdfs:comment "Indicator of mortgage amount, interest, and payments.";
  dcterms:description "Indicator of mortgage amount, interest, and payments.".

cs:ObservationValue\#RENT rdfs:subClassOf cs:ObservationValue\#LIVEXP;
  rdfs:label "rent";
  dc:title "rent";
  rdfs:comment "Indicator of rental or lease payments.";
  dcterms:description "Indicator of rental or lease payments.".

cs:ObservationValue\#SUNDRY rdfs:subClassOf cs:ObservationValue\#LIVEXP;
  rdfs:label "sundry expense";
  dc:title "sundry expense";
  rdfs:comment "Indicator of transportation expenses.";
  dcterms:description "Indicator of transportation expenses.".

cs:ObservationValue\#TRANS rdfs:subClassOf cs:ObservationValue\#LIVEXP;
  rdfs:label "transportation expense";
  dc:title "transportation expense";
  rdfs:comment "Indicator of transportation expenses, e.g., vehicle payments, vehicle insurance, vehicle fuel, and vehicle maintenance and repairs.";
  dcterms:description "Indicator of transportation expenses, e.g., vehicle payments, vehicle insurance, vehicle fuel, and vehicle maintenance and repairs.".

cs:ObservationValue\#UTIL rdfs:subClassOf cs:ObservationValue\#LIVEXP;
  rdfs:label "utility expense";
  dc:title "utility expense";
  rdfs:comment "Indicator of transportation expenses.";
  dcterms:description "Indicator of transportation expenses.".

cs:ObservationValue\#ELSTAT rdfs:subClassOf cs:ObservationValue\#%5fActCoverageAssessmentObservationValue;
  rdfs:label "eligibility indicator";
  dc:title "eligibility indicator";
  rdfs:comment "Code specifying eligibility indicators used to assess or establish eligibility for coverage under a policy or program eligibility status, e.g., certificates of creditable coverage; student enrollment; adoption, marriage or birth certificate.";
  dcterms:description "Code specifying eligibility indicators used to assess or establish eligibility for coverage under a policy or program eligibility status, e.g., certificates of creditable coverage; student enrollment; adoption, marriage or birth certificate.".

cs:ObservationValue\#ADOPT rdfs:subClassOf cs:ObservationValue\#ELSTAT;
  rdfs:label "adoption document";
  dc:title "adoption document";
  rdfs:comment "Indicator of adoption.";
  dcterms:description "Indicator of adoption.".

cs:ObservationValue\#BTHCERT rdfs:subClassOf cs:ObservationValue\#ELSTAT;
  rdfs:label "birth certificate";
  dc:title "birth certificate";
  rdfs:comment "Indicator of birth.";
  dcterms:description "Indicator of birth.".

cs:ObservationValue\#CCOC rdfs:subClassOf cs:ObservationValue\#ELSTAT;
  rdfs:label "creditable coverage document";
  dc:title "creditable coverage document";
  rdfs:comment "Indicator of creditable coverage.";
  dcterms:description "Indicator of creditable coverage.".

cs:ObservationValue\#DRLIC rdfs:subClassOf cs:ObservationValue\#ELSTAT;
  rdfs:label "driver license";
  dc:title "driver license";
  rdfs:comment "Indicator of driving status.";
  dcterms:description "Indicator of driving status.".

cs:ObservationValue\#FOSTER rdfs:subClassOf cs:ObservationValue\#ELSTAT;
  rdfs:label "foster child document";
  dc:title "foster child document";
  rdfs:comment "Indicator of foster child status.";
  dcterms:description "Indicator of foster child status.".

cs:ObservationValue\#MEMBER rdfs:subClassOf cs:ObservationValue\#ELSTAT;
  rdfs:label "program or policy member";
  dc:title "program or policy member";
  rdfs:comment "Indicator of status as covered member under a policy or program, e.g., member id card or coverage document.";
  dcterms:description "Indicator of status as covered member under a policy or program, e.g., member id card or coverage document.".

cs:ObservationValue\#MIL rdfs:subClassOf cs:ObservationValue\#ELSTAT;
  rdfs:label "military identification";
  dc:title "military identification";
  rdfs:comment "Indicator of military status.";
  dcterms:description "Indicator of military status.".

cs:ObservationValue\#MRGCERT rdfs:subClassOf cs:ObservationValue\#ELSTAT;
  rdfs:label "marriage certificate";
  dc:title "marriage certificate";
  rdfs:comment "Indicator of marriage status.";
  dcterms:description "Indicator of marriage status.".

cs:ObservationValue\#PASSPORT rdfs:subClassOf cs:ObservationValue\#ELSTAT;
  rdfs:label "passport";
  dc:title "passport";
  rdfs:comment "Indicator of citizenship.";
  dcterms:description "Indicator of citizenship.".

cs:ObservationValue\#STUDENRL rdfs:subClassOf cs:ObservationValue\#ELSTAT;
  rdfs:label "student enrollment";
  dc:title "student enrollment";
  rdfs:comment "Indicator of student status.";
  dcterms:description "Indicator of student status.".

cs:ObservationValue\#HLSTAT rdfs:subClassOf cs:ObservationValue\#%5fActCoverageAssessmentObservationValue;
  rdfs:label "health status";
  dc:title "health status";
  rdfs:comment "Code specifying non-clinical indicators related to health status used to assess or establish eligibility for coverage under a policy or program, e.g., pregnancy, disability, drug use, mental health issues.";
  dcterms:description "Code specifying non-clinical indicators related to health status used to assess or establish eligibility for coverage under a policy or program, e.g., pregnancy, disability, drug use, mental health issues.".

cs:ObservationValue\#DISABLE rdfs:subClassOf cs:ObservationValue\#HLSTAT;
  rdfs:label "disabled";
  dc:title "disabled";
  rdfs:comment "Indication of disability.";
  dcterms:description "Indication of disability.".

cs:ObservationValue\#DRUG rdfs:subClassOf cs:ObservationValue\#HLSTAT;
  rdfs:label "drug use";
  dc:title "drug use";
  rdfs:comment "Indication of drug use.";
  dcterms:description "Indication of drug use.".

cs:ObservationValue\#IVDRG rdfs:subClassOf cs:ObservationValue\#HLSTAT;
  rdfs:label "IV drug use";
  dc:title "IV drug use";
  rdfs:comment "Indication of IV drug use .";
  dcterms:description "Indication of IV drug use .".

cs:ObservationValue\#PGNT rdfs:subClassOf cs:ObservationValue\#HLSTAT;
  rdfs:label "pregnant";
  dc:title "pregnant";
  rdfs:comment "Non-clinical report of pregnancy.";
  dcterms:description "Non-clinical report of pregnancy.".

cs:ObservationValue\#LIVDEP rdfs:subClassOf cs:ObservationValue\#%5fActCoverageAssessmentObservationValue;
  rdfs:label "living dependency";
  dc:title "living dependency";
  rdfs:comment "Code specifying observations related to living dependency, such as dependent upon spouse for activities of daily living.";
  dcterms:description "Code specifying observations related to living dependency, such as dependent upon spouse for activities of daily living.".

cs:ObservationValue\#RELDEP rdfs:subClassOf cs:ObservationValue\#LIVDEP;
  rdfs:label "relative dependent";
  dc:title "relative dependent";
  rdfs:comment "Continued living in private residence requires functional and health care assistance from one or more relatives.";
  dcterms:description "Continued living in private residence requires functional and health care assistance from one or more relatives.".

cs:ObservationValue\#SPSDEP rdfs:subClassOf cs:ObservationValue\#LIVDEP;
  rdfs:label "spouse dependent";
  dc:title "spouse dependent";
  rdfs:comment "Continued living in private residence requires functional and health care assistance from spouse or life partner.";
  dcterms:description "Continued living in private residence requires functional and health care assistance from spouse or life partner.".

cs:ObservationValue\#URELDEP rdfs:subClassOf cs:ObservationValue\#LIVDEP;
  rdfs:label "unrelated person dependent";
  dc:title "unrelated person dependent";
  rdfs:comment "Continued living in private residence requires functional and health care assistance from one or more unrelated persons.";
  dcterms:description "Continued living in private residence requires functional and health care assistance from one or more unrelated persons.".

cs:ObservationValue\#LIVSIT rdfs:subClassOf cs:ObservationValue\#%5fActCoverageAssessmentObservationValue;
  rdfs:label "living situation";
  dc:title "living situation";
  rdfs:comment "Code specifying observations related to living situation for a person in a private residence.";
  dcterms:description "Code specifying observations related to living situation for a person in a private residence.".

cs:ObservationValue\#ALONE rdfs:subClassOf cs:ObservationValue\#LIVSIT;
  rdfs:label "alone";
  dc:title "alone";
  rdfs:comment "Living alone.  Maps to PD1-2   Living arrangement   (IS)   00742 [A]";
  dcterms:description "Living alone.  Maps to PD1-2   Living arrangement   (IS)   00742 [A]".

cs:ObservationValue\#DEPCHD rdfs:subClassOf cs:ObservationValue\#LIVSIT;
  rdfs:label "dependent children";
  dc:title "dependent children";
  rdfs:comment "Living with one or more dependent children requiring moderate supervision.";
  dcterms:description "Living with one or more dependent children requiring moderate supervision.".

cs:ObservationValue\#DEPSPS rdfs:subClassOf cs:ObservationValue\#LIVSIT;
  rdfs:label "dependent spouse";
  dc:title "dependent spouse";
  rdfs:comment "Living with disabled spouse requiring functional and health care assistance";
  dcterms:description "Living with disabled spouse requiring functional and health care assistance".

cs:ObservationValue\#DEPYGCHD rdfs:subClassOf cs:ObservationValue\#LIVSIT;
  rdfs:label "dependent young children";
  dc:title "dependent young children";
  rdfs:comment "Living with one or more dependent children requiring intensive supervision";
  dcterms:description "Living with one or more dependent children requiring intensive supervision".

cs:ObservationValue\#FAM rdfs:subClassOf cs:ObservationValue\#LIVSIT;
  rdfs:label "live with family";
  dc:title "live with family";
  rdfs:comment "Living with family. Maps to PD1-2   Living arrangement   (IS)   00742 [F]";
  dcterms:description "Living with family. Maps to PD1-2   Living arrangement   (IS)   00742 [F]".

cs:ObservationValue\#RELAT rdfs:subClassOf cs:ObservationValue\#LIVSIT;
  rdfs:label "relative";
  dc:title "relative";
  rdfs:comment "Living with one or more relatives. Maps to PD1-2   Living arrangement   (IS)   00742 [R]";
  dcterms:description "Living with one or more relatives. Maps to PD1-2   Living arrangement   (IS)   00742 [R]".

cs:ObservationValue\#SPS rdfs:subClassOf cs:ObservationValue\#LIVSIT;
  rdfs:label "spouse only";
  dc:title "spouse only";
  rdfs:comment "Living only with spouse or life partner. Maps to PD1-2   Living arrangement   (IS)   00742 [S]";
  dcterms:description "Living only with spouse or life partner. Maps to PD1-2   Living arrangement   (IS)   00742 [S]".

cs:ObservationValue\#UNREL rdfs:subClassOf cs:ObservationValue\#LIVSIT;
  rdfs:label "unrelated person";
  dc:title "unrelated person";
  rdfs:comment "Living with one or more unrelated persons.";
  dcterms:description "Living with one or more unrelated persons.".

cs:ObservationValue\#SOECSTAT rdfs:subClassOf cs:ObservationValue\#%5fActCoverageAssessmentObservationValue;
  rdfs:label "socio economic status";
  dc:title "socio economic status";
  rdfs:comment "Code specifying observations or indicators related to socio-economic status used to assess to assess for services, e.g., discharge planning, or to establish eligibility for coverage under a policy or program.";
  dcterms:description "Code specifying observations or indicators related to socio-economic status used to assess to assess for services, e.g., discharge planning, or to establish eligibility for coverage under a policy or program.".

cs:ObservationValue\#ABUSE rdfs:subClassOf cs:ObservationValue\#SOECSTAT;
  rdfs:label "abuse victim";
  dc:title "abuse victim";
  rdfs:comment "Indication of abuse victim.";
  dcterms:description "Indication of abuse victim.".

cs:ObservationValue\#HMLESS rdfs:subClassOf cs:ObservationValue\#SOECSTAT;
  rdfs:label "homeless";
  dc:title "homeless";
  rdfs:comment "Indication of status as homeless.";
  dcterms:description "Indication of status as homeless.".

cs:ObservationValue\#ILGIM rdfs:subClassOf cs:ObservationValue\#SOECSTAT;
  rdfs:label "illegal immigrant";
  dc:title "illegal immigrant";
  rdfs:comment "Indication of status as illegal immigrant.";
  dcterms:description "Indication of status as illegal immigrant.".

cs:ObservationValue\#INCAR rdfs:subClassOf cs:ObservationValue\#SOECSTAT;
  rdfs:label "incarcerated";
  dc:title "incarcerated";
  rdfs:comment "Indication of status as incarcerated.";
  dcterms:description "Indication of status as incarcerated.".

cs:ObservationValue\#PROB rdfs:subClassOf cs:ObservationValue\#SOECSTAT;
  rdfs:label "probation";
  dc:title "probation";
  rdfs:comment "Indication of probation status.";
  dcterms:description "Indication of probation status.".

cs:ObservationValue\#REFUG rdfs:subClassOf cs:ObservationValue\#SOECSTAT;
  rdfs:label "refugee";
  dc:title "refugee";
  rdfs:comment "Indication of refugee status.";
  dcterms:description "Indication of refugee status.".

cs:ObservationValue\#UNEMPL rdfs:subClassOf cs:ObservationValue\#SOECSTAT;
  rdfs:label "unemployed";
  dc:title "unemployed";
  rdfs:comment "Indication of unemployed status.";
  dcterms:description "Indication of unemployed status.".

cs:ObservationValue\#%5fAllergyTestValue rdfs:subClassOf cs:ObservationValue;
  rdfs:label "AllergyTestValue";
  dc:title "AllergyTestValue";
  rdfs:comment "Indicates the result of a particular allergy test.  E.g. Negative, Mild, Moderate, Severe";
  dcterms:description "Indicates the result of a particular allergy test.  E.g. Negative, Mild, Moderate, Severe".

cs:ObservationValue\#A0 rdfs:subClassOf cs:ObservationValue\#%5fAllergyTestValue;
  rdfs:label "no reaction";
  dc:title "no reaction";
  rdfs:comment "Description:Patient exhibits no reaction to the challenge agent.";
  dcterms:description "Description:Patient exhibits no reaction to the challenge agent.".

cs:ObservationValue\#A1 rdfs:subClassOf cs:ObservationValue\#%5fAllergyTestValue;
  rdfs:label "minimal reaction";
  dc:title "minimal reaction";
  rdfs:comment "Description:Patient exhibits a minimal reaction to the challenge agent.";
  dcterms:description "Description:Patient exhibits a minimal reaction to the challenge agent.".

cs:ObservationValue\#A2 rdfs:subClassOf cs:ObservationValue\#%5fAllergyTestValue;
  rdfs:label "mild reaction";
  dc:title "mild reaction";
  rdfs:comment "Description:Patient exhibits a mild reaction to the challenge agent.";
  dcterms:description "Description:Patient exhibits a mild reaction to the challenge agent.".

cs:ObservationValue\#A3 rdfs:subClassOf cs:ObservationValue\#%5fAllergyTestValue;
  rdfs:label "moderate reaction";
  dc:title "moderate reaction";
  rdfs:comment "Description:Patient exhibits moderate reaction to the challenge agent.";
  dcterms:description "Description:Patient exhibits moderate reaction to the challenge agent.".

cs:ObservationValue\#A4 rdfs:subClassOf cs:ObservationValue\#%5fAllergyTestValue;
  rdfs:label "severe reaction";
  dc:title "severe reaction";
  rdfs:comment "Description:Patient exhibits a severe reaction to the challenge agent.";
  dcterms:description "Description:Patient exhibits a severe reaction to the challenge agent.".

cs:ObservationValue\#%5fCoverageLimitObservationValue rdfs:subClassOf cs:ObservationValue;
  rdfs:label "CoverageLimitObservationValue";
  dc:title "CoverageLimitObservationValue";
  rdfs:comment "Description:Coded observation values for coverage limitations, for e.g., types of claims or types of parties covered under a policy or program.";
  dcterms:description "Description:Coded observation values for coverage limitations, for e.g., types of claims or types of parties covered under a policy or program.".

cs:ObservationValue\#%5fCoverageLevelObservationValue rdfs:subClassOf cs:ObservationValue\#%5fCoverageLimitObservationValue;
  rdfs:label "CoverageLevelObservationValue";
  dc:title "CoverageLevelObservationValue";
  rdfs:comment "Description:Coded observation values for types of covered parties under a policy or program based on their personal relationships or employment status.";
  dcterms:description "Description:Coded observation values for types of covered parties under a policy or program based on their personal relationships or employment status.".

cs:ObservationValue\#ADC rdfs:subClassOf cs:ObservationValue\#%5fCoverageLevelObservationValue;
  rdfs:label "adult child";
  dc:title "adult child";
  rdfs:comment "Description:Child over an age as specified by coverage policy or program, e.g., student, differently abled, and income dependent.";
  dcterms:description "Description:Child over an age as specified by coverage policy or program, e.g., student, differently abled, and income dependent.".

cs:ObservationValue\#CHD rdfs:subClassOf cs:ObservationValue\#%5fCoverageLevelObservationValue;
  rdfs:label "child";
  dc:title "child";
  rdfs:comment "Description:Dependent biological, adopted, foster child as specified by coverage policy or program.";
  dcterms:description "Description:Dependent biological, adopted, foster child as specified by coverage policy or program.".

cs:ObservationValue\#DEP rdfs:subClassOf cs:ObservationValue\#%5fCoverageLevelObservationValue;
  rdfs:label "dependent";
  dc:title "dependent";
  rdfs:comment "Description:Person requiring functional and/or financial assistance from another person as specified by coverage policy or program.";
  dcterms:description "Description:Person requiring functional and/or financial assistance from another person as specified by coverage policy or program.".

cs:ObservationValue\#DP rdfs:subClassOf cs:ObservationValue\#%5fCoverageLevelObservationValue;
  rdfs:label "domestic partner";
  dc:title "domestic partner";
  rdfs:comment "Description:Persons registered as a family unit in a domestic partner registry as specified by law and by coverage policy or program.";
  dcterms:description "Description:Persons registered as a family unit in a domestic partner registry as specified by law and by coverage policy or program.".

cs:ObservationValue\#ECH rdfs:subClassOf cs:ObservationValue\#%5fCoverageLevelObservationValue;
  rdfs:label "employee";
  dc:title "employee";
  rdfs:comment "Description:An individual employed by an employer who receive remuneration in wages, salary, commission, tips, piece-rates, or pay-in-kind through the employeraTMs payment system (i.e., not a contractor) as specified by coverage policy or program.";
  dcterms:description "Description:An individual employed by an employer who receive remuneration in wages, salary, commission, tips, piece-rates, or pay-in-kind through the employeraTMs payment system (i.e., not a contractor) as specified by coverage policy or program.".

cs:ObservationValue\#FLY rdfs:subClassOf cs:ObservationValue\#%5fCoverageLevelObservationValue;
  rdfs:label "family coverage";
  dc:title "family coverage";
  rdfs:comment "Description:As specified by coverage policy or program.";
  dcterms:description "Description:As specified by coverage policy or program.".

cs:ObservationValue\#IND rdfs:subClassOf cs:ObservationValue\#%5fCoverageLevelObservationValue;
  rdfs:label "individual";
  dc:title "individual";
  rdfs:comment "Description:Person as specified by coverage policy or program.";
  dcterms:description "Description:Person as specified by coverage policy or program.".

cs:ObservationValue\#SSP rdfs:subClassOf cs:ObservationValue\#%5fCoverageLevelObservationValue;
  rdfs:label "same sex partner";
  dc:title "same sex partner";
  rdfs:comment "Description:A pair of people of the same gender who live together as a family as specified by coverage policy or program, e.g., Naomi and Ruth from the Book of Ruth; Socrates and Alcibiades";
  dcterms:description "Description:A pair of people of the same gender who live together as a family as specified by coverage policy or program, e.g., Naomi and Ruth from the Book of Ruth; Socrates and Alcibiades".

cs:ObservationValue\#%5fCriticalityObservationValue rdfs:subClassOf cs:ObservationValue;
  rdfs:label "CriticalityObservationValue";
  dc:title "CriticalityObservationValue";
  rdfs:comment "A clinical judgment as to the worst case result of a future exposure (including substance administration). When the worst case result is assessed to have a life-threatening or organ system threatening potential, it is considered to be of high criticality.";
  dcterms:description "A clinical judgment as to the worst case result of a future exposure (including substance administration). When the worst case result is assessed to have a life-threatening or organ system threatening potential, it is considered to be of high criticality.".

cs:ObservationValue\#CRITH rdfs:subClassOf cs:ObservationValue\#%5fCriticalityObservationValue;
  rdfs:label "high criticality";
  dc:title "high criticality";
  rdfs:comment "Worst case result of a future exposure is assessed to be life-threatening or having high potential for organ system failure.";
  dcterms:description "Worst case result of a future exposure is assessed to be life-threatening or having high potential for organ system failure.".

cs:ObservationValue\#CRITL rdfs:subClassOf cs:ObservationValue\#%5fCriticalityObservationValue;
  rdfs:label "low criticality";
  dc:title "low criticality";
  rdfs:comment "Worst case result of a future exposure is not assessed to be life-threatening or having high potential for organ system failure.";
  dcterms:description "Worst case result of a future exposure is not assessed to be life-threatening or having high potential for organ system failure.".

cs:ObservationValue\#CRITU rdfs:subClassOf cs:ObservationValue\#%5fCriticalityObservationValue;
  rdfs:label "unable to assess criticality";
  dc:title "unable to assess criticality";
  rdfs:comment "Unable to assess the worst case result of a future exposure.";
  dcterms:description "Unable to assess the worst case result of a future exposure.".

cs:ObservationValue\#%5fGeneticObservationValue rdfs:subClassOf cs:ObservationValue;
  rdfs:label "GeneticObservationValue";
  dc:title "GeneticObservationValue";
  rdfs:comment "Description: The domain contains genetic analysis specific observation values, e.g. Homozygote, Heterozygote, etc.";
  dcterms:description "Description: The domain contains genetic analysis specific observation values, e.g. Homozygote, Heterozygote, etc.".

cs:ObservationValue\#Homozygote rdfs:subClassOf cs:ObservationValue\#%5fGeneticObservationValue;
  rdfs:label "HOMO";
  dc:title "HOMO";
  rdfs:comment "Description: An individual having different alleles at one or more loci regarding a specific character";
  dcterms:description "Description: An individual having different alleles at one or more loci regarding a specific character".

cs:ObservationValue\#%5fObservationMeasureScoring rdfs:subClassOf cs:ObservationValue;
  rdfs:label "ObservationMeasureScoring";
  dc:title "ObservationMeasureScoring";
  rdfs:comment "Observation values used to indicate the type of scoring (e.g. proportion, ratio) used by a health quality measure.";
  dcterms:description "Observation values used to indicate the type of scoring (e.g. proportion, ratio) used by a health quality measure.".

cs:ObservationValue\#COHORT rdfs:subClassOf cs:ObservationValue\#%5fObservationMeasureScoring;
  rdfs:label "cohort measure scoring";
  dc:title "cohort measure scoring";
  rdfs:comment "A measure in which either short-term cross-section or long-term longitudinal analysis is performed over a group of subjects defined by a set of common properties or defining characteristics (e.g., Male smokers between the ages of 40 and 50 years, exposure to treatment, exposure duration).";
  dcterms:description "A measure in which either short-term cross-section or long-term longitudinal analysis is performed over a group of subjects defined by a set of common properties or defining characteristics (e.g., Male smokers between the ages of 40 and 50 years, exposure to treatment, exposure duration).".

cs:ObservationValue\#CONTVAR rdfs:subClassOf cs:ObservationValue\#%5fObservationMeasureScoring;
  rdfs:label "continuous variable measure scoring";
  dc:title "continuous variable measure scoring";
  rdfs:comment "A measure score in which each individual value for the measure can fall anywhere along a continuous scale (e.g., mean time to thrombolytics which aggregates the time in minutes from a case presenting with chest pain to the time of administration of thrombolytics).";
  dcterms:description "A measure score in which each individual value for the measure can fall anywhere along a continuous scale (e.g., mean time to thrombolytics which aggregates the time in minutes from a case presenting with chest pain to the time of administration of thrombolytics).".

cs:ObservationValue\#PROPOR rdfs:subClassOf cs:ObservationValue\#%5fObservationMeasureScoring;
  rdfs:label "proportion measure scoring";
  dc:title "proportion measure scoring";
  rdfs:comment "A score derived by dividing the number of cases that meet a criterion for quality (the numerator) by the number of eligible cases within a given time frame (the denominator) where the numerator cases are a subset of the denominator cases (e.g., percentage of eligible women with a mammogram performed in the last year).";
  dcterms:description "A score derived by dividing the number of cases that meet a criterion for quality (the numerator) by the number of eligible cases within a given time frame (the denominator) where the numerator cases are a subset of the denominator cases (e.g., percentage of eligible women with a mammogram performed in the last year).".

cs:ObservationValue\#RATIO rdfs:subClassOf cs:ObservationValue\#%5fObservationMeasureScoring;
  rdfs:label "ratio measure scoring";
  dc:title "ratio measure scoring";
  rdfs:comment "A score that may have a value of zero or greater that is derived by dividing a count of one type of data by a count of another type of data (e.g., the number of patients with central lines who develop infection divided by the number of central line days).";
  dcterms:description "A score that may have a value of zero or greater that is derived by dividing a count of one type of data by a count of another type of data (e.g., the number of patients with central lines who develop infection divided by the number of central line days).".

cs:ObservationValue\#%5fObservationMeasureType rdfs:subClassOf cs:ObservationValue;
  rdfs:label "ObservationMeasureType";
  dc:title "ObservationMeasureType";
  rdfs:comment "Observation values used to indicate what kind of health quality measure is used.";
  dcterms:description "Observation values used to indicate what kind of health quality measure is used.".

cs:ObservationValue\#COMPOSITE rdfs:subClassOf cs:ObservationValue\#%5fObservationMeasureType;
  rdfs:label "composite measure type";
  dc:title "composite measure type";
  rdfs:comment "A measure that is composed from one or more other measures and indicates an overall summary of those measures.";
  dcterms:description "A measure that is composed from one or more other measures and indicates an overall summary of those measures.".

cs:ObservationValue\#EFFICIENCY rdfs:subClassOf cs:ObservationValue\#%5fObservationMeasureType;
  rdfs:label "efficiency measure type";
  dc:title "efficiency measure type";
  rdfs:comment "A measure related to the efficiency of medical treatment.";
  dcterms:description "A measure related to the efficiency of medical treatment.".

cs:ObservationValue\#EXPERIENCE rdfs:subClassOf cs:ObservationValue\#%5fObservationMeasureType;
  rdfs:label "experience measure type";
  dc:title "experience measure type";
  rdfs:comment "A measure related to the level of patient engagement or patient experience of care.";
  dcterms:description "A measure related to the level of patient engagement or patient experience of care.".

cs:ObservationValue\#OUTCOME rdfs:subClassOf cs:ObservationValue\#%5fObservationMeasureType;
  rdfs:label "outcome measure type";
  dc:title "outcome measure type";
  rdfs:comment "A measure that indicates the result of the performance (or non-performance) of a function or process.";
  dcterms:description "A measure that indicates the result of the performance (or non-performance) of a function or process.".

cs:ObservationValue\#PROCESS rdfs:subClassOf cs:ObservationValue\#%5fObservationMeasureType;
  rdfs:label "process measure type";
  dc:title "process measure type";
  rdfs:comment "A measure which focuses on a process which leads to a certain outcome, meaning that a scientific basis exists for believing that the process, when executed well, will increase the probability of achieving a desired outcome.";
  dcterms:description "A measure which focuses on a process which leads to a certain outcome, meaning that a scientific basis exists for believing that the process, when executed well, will increase the probability of achieving a desired outcome.".

cs:ObservationValue\#RESOURCE rdfs:subClassOf cs:ObservationValue\#%5fObservationMeasureType;
  rdfs:label "resource use measure type";
  dc:title "resource use measure type";
  rdfs:comment "A measure related to the extent of use of clinical resources or cost of care.";
  dcterms:description "A measure related to the extent of use of clinical resources or cost of care.".

cs:ObservationValue\#STRUCTURE rdfs:subClassOf cs:ObservationValue\#%5fObservationMeasureType;
  rdfs:label "structure measure type";
  dc:title "structure measure type";
  rdfs:comment "A measure related to the structure of patient care.";
  dcterms:description "A measure related to the structure of patient care.".

cs:ObservationValue\#%5fObservationPopulationInclusion rdfs:subClassOf cs:ObservationValue;
  rdfs:label "ObservationPopulationInclusion";
  dc:title "ObservationPopulationInclusion";
  rdfs:comment "Observation values used to assert various populations that a subject falls into.";
  dcterms:description "Observation values used to assert various populations that a subject falls into.".

cs:ObservationValue\#DENEX rdfs:subClassOf cs:ObservationValue\#%5fObservationPopulationInclusion;
  rdfs:label "denominator exclusions";
  dc:title "denominator exclusions";
  rdfs:comment "Patients who should be removed from the eMeasure population and denominator before determining if numerator criteria are met. Denominator exclusions are used in proportion and ratio measures to help narrow the denominator.";
  dcterms:description "Patients who should be removed from the eMeasure population and denominator before determining if numerator criteria are met. Denominator exclusions are used in proportion and ratio measures to help narrow the denominator.".

cs:ObservationValue\#DENEXCEP rdfs:subClassOf cs:ObservationValue\#%5fObservationPopulationInclusion;
  rdfs:label "denominator exceptions";
  dc:title "denominator exceptions";
  rdfs:comment "Denominator exceptions are those conditions that should remove a patient, procedure or unit of measurement from the denominator only if the numerator criteria are not met. Denominator exceptions allow for adjustment of the calculated score for those providers with higher risk populations. Denominator exceptions are used only in proportion eMeasures. They are not appropriate for ratio or continuous variable eMeasures.  Denominator exceptions allow for the exercise of clinical judgment and should be specifically defined where capturing the information in a structured manner fits the clinical workflow. Generic denominator exception reasons used in proportion eMeasures fall into three general categories:\r\n\n                        \n                           Medical reasons\n                           Patient reasons\n                           System reasons";
  dcterms:description "Denominator exceptions are those conditions that should remove a patient, procedure or unit of measurement from the denominator only if the numerator criteria are not met. Denominator exceptions allow for adjustment of the calculated score for those providers with higher risk populations. Denominator exceptions are used only in proportion eMeasures. They are not appropriate for ratio or continuous variable eMeasures.  Denominator exceptions allow for the exercise of clinical judgment and should be specifically defined where capturing the information in a structured manner fits the clinical workflow. Generic denominator exception reasons used in proportion eMeasures fall into three general categories:\r\n\n                        \n                           Medical reasons\n                           Patient reasons\n                           System reasons".

cs:ObservationValue\#DENOM rdfs:subClassOf cs:ObservationValue\#%5fObservationPopulationInclusion;
  rdfs:label "denominator";
  dc:title "denominator";
  rdfs:comment "It can be the same as the initial patient population or a subset of the initial patient population to further constrain the population for the purpose of the eMeasure. Different measures within an eMeasure set may have different Denominators. Continuous Variable eMeasures do not have a Denominator, but instead define a Measure Population.";
  dcterms:description "It can be the same as the initial patient population or a subset of the initial patient population to further constrain the population for the purpose of the eMeasure. Different measures within an eMeasure set may have different Denominators. Continuous Variable eMeasures do not have a Denominator, but instead define a Measure Population.".

cs:ObservationValue\#IP rdfs:subClassOf cs:ObservationValue\#%5fObservationPopulationInclusion;
  rdfs:label "initial population";
  dc:title "initial population";
  rdfs:comment "The initial population refers to all entities to be evaluated by a specific quality measure who share a common set of specified characteristics within a specific measurement set to which a given measure belongs.";
  dcterms:description "The initial population refers to all entities to be evaluated by a specific quality measure who share a common set of specified characteristics within a specific measurement set to which a given measure belongs.".

cs:ObservationValue\#IPP rdfs:subClassOf cs:ObservationValue\#IP;
  rdfs:label "initial patient population";
  dc:title "initial patient population";
  rdfs:comment "The initial patient population refers to all patients to be evaluated by a specific quality measure who share a common set of specified characteristics within a specific measurement set to which a given measure belongs. Details often include information based upon specific age groups, diagnoses, diagnostic and procedure codes, and enrollment periods.";
  dcterms:description "The initial patient population refers to all patients to be evaluated by a specific quality measure who share a common set of specified characteristics within a specific measurement set to which a given measure belongs. Details often include information based upon specific age groups, diagnoses, diagnostic and procedure codes, and enrollment periods.".

cs:ObservationValue\#MSRPOPL rdfs:subClassOf cs:ObservationValue\#%5fObservationPopulationInclusion;
  rdfs:label "measure population";
  dc:title "measure population";
  rdfs:comment "Measure population is used only in continuous variable eMeasures. It is a narrative description of the eMeasure population. \n(e.g., all patients seen in the Emergency Department during the measurement period).";
  dcterms:description "Measure population is used only in continuous variable eMeasures. It is a narrative description of the eMeasure population. \n(e.g., all patients seen in the Emergency Department during the measurement period).".

cs:ObservationValue\#NUMER rdfs:subClassOf cs:ObservationValue\#%5fObservationPopulationInclusion;
  rdfs:label "numerator";
  dc:title "numerator";
  rdfs:comment "Numerators are used in proportion and ratio eMeasures. In proportion measures the numerator criteria are the processes or outcomes expected for each patient, procedure, or other unit of measurement defined in the denominator. In ratio measures the numerator is related, but not directly derived from the denominator (e.g., a numerator listing the number of central line blood stream infections and a denominator indicating the days per thousand of central line usage in a specific time period).";
  dcterms:description "Numerators are used in proportion and ratio eMeasures. In proportion measures the numerator criteria are the processes or outcomes expected for each patient, procedure, or other unit of measurement defined in the denominator. In ratio measures the numerator is related, but not directly derived from the denominator (e.g., a numerator listing the number of central line blood stream infections and a denominator indicating the days per thousand of central line usage in a specific time period).".

cs:ObservationValue\#NUMEX rdfs:subClassOf cs:ObservationValue\#%5fObservationPopulationInclusion;
  rdfs:label "numerator exclusions";
  dc:title "numerator exclusions";
  rdfs:comment "Numerator Exclusions are used only in ratio eMeasures to define instances that should not be included in the numerator data. (e.g., if the number of central line blood stream infections per 1000 catheter days were to exclude infections with a specific bacterium, that bacterium would be listed as a numerator exclusion.)";
  dcterms:description "Numerator Exclusions are used only in ratio eMeasures to define instances that should not be included in the numerator data. (e.g., if the number of central line blood stream infections per 1000 catheter days were to exclude infections with a specific bacterium, that bacterium would be listed as a numerator exclusion.)".

cs:ObservationValue\#%5fPartialCompletionScale rdfs:subClassOf cs:ObservationValue;
  rdfs:label "PartialCompletionScale";
  dc:title "PartialCompletionScale";
  rdfs:comment "PartialCompletionScale";
  dcterms:description "PartialCompletionScale".

cs:ObservationValue\#G rdfs:subClassOf cs:ObservationValue\#%5fPartialCompletionScale;
  rdfs:label "Great extent";
  dc:title "Great extent";
  rdfs:comment "Value for Act.partialCompletionCode attribute that implies 81-99% completion";
  dcterms:description "Value for Act.partialCompletionCode attribute that implies 81-99% completion".

cs:ObservationValue\#LE rdfs:subClassOf cs:ObservationValue\#%5fPartialCompletionScale;
  rdfs:label "Large extent";
  dc:title "Large extent";
  rdfs:comment "Value for Act.partialCompletionCode attribute that implies 61-80% completion";
  dcterms:description "Value for Act.partialCompletionCode attribute that implies 61-80% completion".

cs:ObservationValue\#ME rdfs:subClassOf cs:ObservationValue\#%5fPartialCompletionScale;
  rdfs:label "Medium extent";
  dc:title "Medium extent";
  rdfs:comment "Value for Act.partialCompletionCode attribute that implies 41-60% completion";
  dcterms:description "Value for Act.partialCompletionCode attribute that implies 41-60% completion".

cs:ObservationValue\#MI rdfs:subClassOf cs:ObservationValue\#%5fPartialCompletionScale;
  rdfs:label "Minimal extent";
  dc:title "Minimal extent";
  rdfs:comment "Value for Act.partialCompletionCode attribute that implies 1-20% completion";
  dcterms:description "Value for Act.partialCompletionCode attribute that implies 1-20% completion".

cs:ObservationValue\#N rdfs:subClassOf cs:ObservationValue\#%5fPartialCompletionScale;
  rdfs:label "None";
  dc:title "None";
  rdfs:comment "Value for Act.partialCompletionCode attribute that implies 0% completion";
  dcterms:description "Value for Act.partialCompletionCode attribute that implies 0% completion".

cs:ObservationValue\#S rdfs:subClassOf cs:ObservationValue\#%5fPartialCompletionScale;
  rdfs:label "Some extent";
  dc:title "Some extent";
  rdfs:comment "Value for Act.partialCompletionCode attribute that implies 21-40% completion";
  dcterms:description "Value for Act.partialCompletionCode attribute that implies 21-40% completion".

cs:ObservationValue\#%5fSecurityObservationValue rdfs:subClassOf cs:ObservationValue;
  rdfs:label "SecurityObservationValue";
  dc:title "SecurityObservationValue";
  rdfs:comment "Observation values used to indicate security observation metadata.";
  dcterms:description "Observation values used to indicate security observation metadata.".

cs:ObservationValue\#%5fSECINTOBV rdfs:subClassOf cs:ObservationValue\#%5fSecurityObservationValue;
  rdfs:label "security integrity";
  dc:title "security integrity";
  rdfs:comment "Abstract security observation values used to indicate security integrity metadata.\r\n\n                        \n                           Examples: Codes conveying integrity status, integrity confidence, and provenance.";
  dcterms:description "Abstract security observation values used to indicate security integrity metadata.\r\n\n                        \n                           Examples: Codes conveying integrity status, integrity confidence, and provenance.".

cs:ObservationValue\#%5fSECALTINTOBV rdfs:subClassOf cs:ObservationValue\#%5fSECINTOBV;
  rdfs:label "alteration integrity";
  dc:title "alteration integrity";
  rdfs:comment "Abstract security metadata observation values used to indicate mechanism used for authorized alteration of an IT resource (data, information object, service, or system capability)";
  dcterms:description "Abstract security metadata observation values used to indicate mechanism used for authorized alteration of an IT resource (data, information object, service, or system capability)".

cs:ObservationValue\#ABSTRED rdfs:subClassOf cs:ObservationValue\#%5fSECALTINTOBV;
  rdfs:label "abstracted";
  dc:title "abstracted";
  rdfs:comment "Security metadata observation values used to indicate the use of a more abstract version of the content, e.g., replacing exact value of an age or date field with a range, or remove the left digits of a credit card number or SSN.";
  dcterms:description "Security metadata observation values used to indicate the use of a more abstract version of the content, e.g., replacing exact value of an age or date field with a range, or remove the left digits of a credit card number or SSN.".

cs:ObservationValue\#AGGRED rdfs:subClassOf cs:ObservationValue\#%5fSECALTINTOBV;
  rdfs:label "aggregated";
  dc:title "aggregated";
  rdfs:comment "Security metadata observation values used to indicate the use of an algorithmic combination of actual values with the result of an aggregate function, e.g., average, sum, or count in order to limit disclosure of an IT resource (data, information object, service, or system capability) to the minimum necessary.";
  dcterms:description "Security metadata observation values used to indicate the use of an algorithmic combination of actual values with the result of an aggregate function, e.g., average, sum, or count in order to limit disclosure of an IT resource (data, information object, service, or system capability) to the minimum necessary.".

cs:ObservationValue\#ANONYED rdfs:subClassOf cs:ObservationValue\#%5fSECALTINTOBV;
  rdfs:label "anonymized";
  dc:title "anonymized";
  rdfs:comment "Security metadata observation value conveying the alteration integrity of an IT resource (data, information object, service, or system capability) by used to indicate the mechanism by which software systems can strip portions of the resource that could allow the identification of the source of the information or the information subject.  No key to relink the data is retained.";
  dcterms:description "Security metadata observation value conveying the alteration integrity of an IT resource (data, information object, service, or system capability) by used to indicate the mechanism by which software systems can strip portions of the resource that could allow the identification of the source of the information or the information subject.  No key to relink the data is retained.".

cs:ObservationValue\#MAPPED rdfs:subClassOf cs:ObservationValue\#%5fSECALTINTOBV;
  rdfs:label "mapped";
  dc:title "mapped";
  rdfs:comment "Security metadata observation value used to indicate that the IT resource semantic content has been transformed from one encoding to another.\r\n\n                        \n                           Usage Note: \"MAP\" code does not indicate the semantic fidelity of the transformed content.\r\n\n                        To indicate semantic fidelity for maps of HL7 to other code systems, this security alteration integrity observation may be further specified using an Act valued with Value Set: MapRelationship (2.16.840.1.113883.1.11.11052).\r\n\n                        Semantic fidelity of the mapped IT Resource may also be indicated using a SecurityIntegrityConfidenceObservation.";
  dcterms:description "Security metadata observation value used to indicate that the IT resource semantic content has been transformed from one encoding to another.\r\n\n                        \n                           Usage Note: \"MAP\" code does not indicate the semantic fidelity of the transformed content.\r\n\n                        To indicate semantic fidelity for maps of HL7 to other code systems, this security alteration integrity observation may be further specified using an Act valued with Value Set: MapRelationship (2.16.840.1.113883.1.11.11052).\r\n\n                        Semantic fidelity of the mapped IT Resource may also be indicated using a SecurityIntegrityConfidenceObservation.".

cs:ObservationValue\#MASKED rdfs:subClassOf cs:ObservationValue\#%5fSECALTINTOBV;
  rdfs:label "masked";
  dc:title "masked";
  rdfs:comment "Security metadata observation value conveying the alteration integrity of an IT resource (data, information object, service, or system capability) by indicating the mechanism by which software systems can make data unintelligible (that is, as unreadable and unusable by algorithmically transforming plaintext into ciphertext) such that it can only be accessed or used by authorized users.  An authorized user may be provided a key to decrypt per license or \"shared secret\".\r\n\n                        \n                           Usage Note: \"MASKED\" may be used, per applicable policy, as a flag to indicate to a user or receiver that some portion of an IT resource has been further encrypted, and may be accessed only by an authorized user or receiver to which a decryption key is provided.";
  dcterms:description "Security metadata observation value conveying the alteration integrity of an IT resource (data, information object, service, or system capability) by indicating the mechanism by which software systems can make data unintelligible (that is, as unreadable and unusable by algorithmically transforming plaintext into ciphertext) such that it can only be accessed or used by authorized users.  An authorized user may be provided a key to decrypt per license or \"shared secret\".\r\n\n                        \n                           Usage Note: \"MASKED\" may be used, per applicable policy, as a flag to indicate to a user or receiver that some portion of an IT resource has been further encrypted, and may be accessed only by an authorized user or receiver to which a decryption key is provided.".

cs:ObservationValue\#PSEUDED rdfs:subClassOf cs:ObservationValue\#%5fSECALTINTOBV;
  rdfs:label "pseudonymized";
  dc:title "pseudonymized";
  rdfs:comment "Security metadata observation value conveying the alteration integrity of an IT resource (data, information object, service, or system capability), by indicating the mechanism by which software systems can strip portions of the resource that could allow the identification of the source of the information or the information subject.  Custodian may retain a key to relink data necessary to reidentify the information subject.\r\n\n                        \n                           Rationale: Personal data which has been processed to make it impossible to know whose data it is. Used particularly for secondary use of health data. In some cases, it may be possible for authorized individuals to restore the identity of the individual, e.g.,for public health case management.  Based on ISO/TS 25237:2008 Health informaticsâ€”Pseudonymization";
  dcterms:description "Security metadata observation value conveying the alteration integrity of an IT resource (data, information object, service, or system capability), by indicating the mechanism by which software systems can strip portions of the resource that could allow the identification of the source of the information or the information subject.  Custodian may retain a key to relink data necessary to reidentify the information subject.\r\n\n                        \n                           Rationale: Personal data which has been processed to make it impossible to know whose data it is. Used particularly for secondary use of health data. In some cases, it may be possible for authorized individuals to restore the identity of the individual, e.g.,for public health case management.  Based on ISO/TS 25237:2008 Health informaticsâ€”Pseudonymization".

cs:ObservationValue\#REDACTED rdfs:subClassOf cs:ObservationValue\#%5fSECALTINTOBV;
  rdfs:label "redacted";
  dc:title "redacted";
  rdfs:comment "Security metadata observation value used to indicate the mechanism by which software systems can filter an IT resource (data, information object, service, or system capability) to remove any portion of the resource that is not authorized to be access, used, or disclosed.\r\n\n                        \n                           Usage Note: \"REDACTED\" may be used, per applicable policy, as a flag to indicate to a user or receiver that some portion of an IT resource has filtered and not included in the content accessed or received.";
  dcterms:description "Security metadata observation value used to indicate the mechanism by which software systems can filter an IT resource (data, information object, service, or system capability) to remove any portion of the resource that is not authorized to be access, used, or disclosed.\r\n\n                        \n                           Usage Note: \"REDACTED\" may be used, per applicable policy, as a flag to indicate to a user or receiver that some portion of an IT resource has filtered and not included in the content accessed or received.".

cs:ObservationValue\#SUBSETTED rdfs:subClassOf cs:ObservationValue\#%5fSECALTINTOBV;
  rdfs:label "subsetted";
  dc:title "subsetted";
  rdfs:comment "Metadata observation used to indicate that some information has been removed from the source object when the view this object contains was constructed because of configuration options when the view was created. The content may not be suitable for use as the basis of a record update\r\n\n                        \n                           Usage Note: This is not suitable to be used when information is removed for security reasons - see the code REDACTED for this use.";
  dcterms:description "Metadata observation used to indicate that some information has been removed from the source object when the view this object contains was constructed because of configuration options when the view was created. The content may not be suitable for use as the basis of a record update\r\n\n                        \n                           Usage Note: This is not suitable to be used when information is removed for security reasons - see the code REDACTED for this use.".

cs:ObservationValue\#SYNTAC rdfs:subClassOf cs:ObservationValue\#%5fSECALTINTOBV;
  rdfs:label "syntactic transform";
  dc:title "syntactic transform";
  rdfs:comment "Security metadata observation value used to indicate that the IT resource syntax has been transformed from one syntactical representation to another.  \r\n\n                        \n                           Usage Note: \"SYNTAC\" code does not indicate the syntactical correctness of the syntactically transformed IT resource.";
  dcterms:description "Security metadata observation value used to indicate that the IT resource syntax has been transformed from one syntactical representation to another.  \r\n\n                        \n                           Usage Note: \"SYNTAC\" code does not indicate the syntactical correctness of the syntactically transformed IT resource.".

cs:ObservationValue\#TRSLT rdfs:subClassOf cs:ObservationValue\#%5fSECALTINTOBV;
  rdfs:label "translated";
  dc:title "translated";
  rdfs:comment "Security metadata observation value used to indicate that the IT resource has been translated from one human language to another.  \r\n\n                        \n                           Usage Note: \"TRSLT\" does not indicate the fidelity of the translation or the languages translated.\r\n\n                        The fidelity of the IT Resource translation may be indicated using a SecurityIntegrityConfidenceObservation.\r\n\n                        To indicate languages, use the Value Set:HumanLanguage (2.16.840.1.113883.1.11.11526)";
  dcterms:description "Security metadata observation value used to indicate that the IT resource has been translated from one human language to another.  \r\n\n                        \n                           Usage Note: \"TRSLT\" does not indicate the fidelity of the translation or the languages translated.\r\n\n                        The fidelity of the IT Resource translation may be indicated using a SecurityIntegrityConfidenceObservation.\r\n\n                        To indicate languages, use the Value Set:HumanLanguage (2.16.840.1.113883.1.11.11526)".

cs:ObservationValue\#VERSIONED rdfs:subClassOf cs:ObservationValue\#%5fSECALTINTOBV;
  rdfs:label "versioned";
  dc:title "versioned";
  rdfs:comment "Security metadata observation value conveying the alteration integrity of an IT resource (data, information object, service, or system capability)  which indicates that the resource only retains versions of an IT resource  for access and use per applicable policy\r\n\n                        \n                           Usage Note: When this code is used, expectation is that the system has removed historical versions of the data that falls outside the time period deemed to be the effective time of the applicable version.";
  dcterms:description "Security metadata observation value conveying the alteration integrity of an IT resource (data, information object, service, or system capability)  which indicates that the resource only retains versions of an IT resource  for access and use per applicable policy\r\n\n                        \n                           Usage Note: When this code is used, expectation is that the system has removed historical versions of the data that falls outside the time period deemed to be the effective time of the applicable version.".

cs:ObservationValue\#%5fSECDATINTOBV rdfs:subClassOf cs:ObservationValue\#%5fSECINTOBV;
  rdfs:label "data integrity";
  dc:title "data integrity";
  rdfs:comment "Abstract security observation values used to indicate data integrity metadata.\r\n\n                        \n                           Examples: Codes conveying the mechanism used to preserve the accuracy and consistency of an IT resource such as a digital signature and a cryptographic hash function.";
  dcterms:description "Abstract security observation values used to indicate data integrity metadata.\r\n\n                        \n                           Examples: Codes conveying the mechanism used to preserve the accuracy and consistency of an IT resource such as a digital signature and a cryptographic hash function.".

cs:ObservationValue\#CRYTOHASH rdfs:subClassOf cs:ObservationValue\#%5fSECDATINTOBV;
  rdfs:label "cryptographic hash function";
  dc:title "cryptographic hash function";
  rdfs:comment "Security metadata observation value used to indicate the mechanism by which software systems can establish that data was not modified in transit.\r\n\n                        \n                           Rationale: This definition is intended to align with the ISO 22600-2 3.3.19 definition of cryptographic checkvalue: Information which is derived by performing a cryptographic transformation (see cryptography) on the data unit.  The derivation of the checkvalue may be performed in one or more steps and is a result of a mathematical function of the key and a data unit. It is usually used to check the integrity of a data unit.\r\n\n                        \n                           Examples: \n                        \r\n\n                        \n                           SHA-1\n                           SHA-2 (Secure Hash Algorithm)";
  dcterms:description "Security metadata observation value used to indicate the mechanism by which software systems can establish that data was not modified in transit.\r\n\n                        \n                           Rationale: This definition is intended to align with the ISO 22600-2 3.3.19 definition of cryptographic checkvalue: Information which is derived by performing a cryptographic transformation (see cryptography) on the data unit.  The derivation of the checkvalue may be performed in one or more steps and is a result of a mathematical function of the key and a data unit. It is usually used to check the integrity of a data unit.\r\n\n                        \n                           Examples: \n                        \r\n\n                        \n                           SHA-1\n                           SHA-2 (Secure Hash Algorithm)".

cs:ObservationValue\#DIGSIG rdfs:subClassOf cs:ObservationValue\#%5fSECDATINTOBV;
  rdfs:label "digital signature";
  dc:title "digital signature";
  rdfs:comment "Security metadata observation value used to indicate the mechanism by which software systems use digital signature to establish that data has not been modified.  \r\n\n                        \n                           Rationale: This definition is intended to align with the ISO 22600-2 3.3.26 definition of digital signature:  Data appended to, or a cryptographic transformation (see cryptography) of, a data unit that allows a recipient of the data unit to prove the source and integrity of the data unit and protect against forgery e.g., by the recipient.";
  dcterms:description "Security metadata observation value used to indicate the mechanism by which software systems use digital signature to establish that data has not been modified.  \r\n\n                        \n                           Rationale: This definition is intended to align with the ISO 22600-2 3.3.26 definition of digital signature:  Data appended to, or a cryptographic transformation (see cryptography) of, a data unit that allows a recipient of the data unit to prove the source and integrity of the data unit and protect against forgery e.g., by the recipient.".

cs:ObservationValue\#%5fSECINTCONOBV rdfs:subClassOf cs:ObservationValue\#%5fSECINTOBV;
  rdfs:label "integrity confidence";
  dc:title "integrity confidence";
  rdfs:comment "Abstract security observation value used to indicate integrity confidence metadata.\r\n\n                        \n                           Examples: Codes conveying the level of reliability and trustworthiness of an IT resource.";
  dcterms:description "Abstract security observation value used to indicate integrity confidence metadata.\r\n\n                        \n                           Examples: Codes conveying the level of reliability and trustworthiness of an IT resource.".

cs:ObservationValue\#HRELIABLE rdfs:subClassOf cs:ObservationValue\#%5fSECINTCONOBV;
  rdfs:label "highly reliable";
  dc:title "highly reliable";
  rdfs:comment "Security metadata observation value used to indicate that the veracity or trustworthiness of an IT resource (data, information object, service, or system capability) for a specified purpose of use is perceived to be or deemed by policy to be very high.";
  dcterms:description "Security metadata observation value used to indicate that the veracity or trustworthiness of an IT resource (data, information object, service, or system capability) for a specified purpose of use is perceived to be or deemed by policy to be very high.".

cs:ObservationValue\#RELIABLE rdfs:subClassOf cs:ObservationValue\#%5fSECINTCONOBV;
  rdfs:label "reliable";
  dc:title "reliable";
  rdfs:comment "Security metadata observation value used to indicate that the veracity or trustworthiness of an IT resource (data, information object, service, or system capability) for a specified purpose of use is perceived to be or deemed by policy to be adequate.";
  dcterms:description "Security metadata observation value used to indicate that the veracity or trustworthiness of an IT resource (data, information object, service, or system capability) for a specified purpose of use is perceived to be or deemed by policy to be adequate.".

cs:ObservationValue\#UNCERTREL rdfs:subClassOf cs:ObservationValue\#%5fSECINTCONOBV;
  rdfs:label "uncertain reliability";
  dc:title "uncertain reliability";
  rdfs:comment "Security metadata observation value used to indicate that the veracity or trustworthiness of an IT resource (data, information object, service, or system capability) for a specified purpose of use is perceived to be or deemed by policy to be uncertain.";
  dcterms:description "Security metadata observation value used to indicate that the veracity or trustworthiness of an IT resource (data, information object, service, or system capability) for a specified purpose of use is perceived to be or deemed by policy to be uncertain.".

cs:ObservationValue\#UNRELIABLE rdfs:subClassOf cs:ObservationValue\#%5fSECINTCONOBV;
  rdfs:label "unreliable";
  dc:title "unreliable";
  rdfs:comment "Security metadata observation value used to indicate that the veracity or trustworthiness of an IT resource (data, information object, service, or system capability) for a specified purpose of use is perceived to be or deemed by policy to be inadequate.";
  dcterms:description "Security metadata observation value used to indicate that the veracity or trustworthiness of an IT resource (data, information object, service, or system capability) for a specified purpose of use is perceived to be or deemed by policy to be inadequate.".

cs:ObservationValue\#%5fSECINTPRVOBV rdfs:subClassOf cs:ObservationValue\#%5fSECINTOBV;
  rdfs:label "provenance";
  dc:title "provenance";
  rdfs:comment "Abstract security metadata observation value used to indicate the provenance of an IT resource (data, information object, service, or system capability).\r\n\n                        \n                           Examples: Codes conveying the provenance metadata about the entity reporting an IT resource.";
  dcterms:description "Abstract security metadata observation value used to indicate the provenance of an IT resource (data, information object, service, or system capability).\r\n\n                        \n                           Examples: Codes conveying the provenance metadata about the entity reporting an IT resource.".

cs:ObservationValue\#%5fSECINTPRVABOBV rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVOBV;
  rdfs:label "provenance asserted by";
  dc:title "provenance asserted by";
  rdfs:comment "Abstract security provenance metadata observation value used to indicate the entity that asserted an IT resource (data, information object, service, or system capability).\r\n\n                        \n                           Examples: Codes conveying the provenance metadata about the entity asserting the resource.";
  dcterms:description "Abstract security provenance metadata observation value used to indicate the entity that asserted an IT resource (data, information object, service, or system capability).\r\n\n                        \n                           Examples: Codes conveying the provenance metadata about the entity asserting the resource.".

cs:ObservationValue\#CLINAST rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVABOBV;
  rdfs:label "clinician asserted";
  dc:title "clinician asserted";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a clinician.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a clinician.".

cs:ObservationValue\#DEVAST rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVABOBV;
  rdfs:label "device asserted";
  dc:title "device asserted";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a device.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a device.".

cs:ObservationValue\#HCPAST rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVABOBV;
  rdfs:label "healthcare professional asserted";
  dc:title "healthcare professional asserted";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a healthcare professional.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a healthcare professional.".

cs:ObservationValue\#PACQAST rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVABOBV;
  rdfs:label "patient acquaintance asserted";
  dc:title "patient acquaintance asserted";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a patient acquaintance.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a patient acquaintance.".

cs:ObservationValue\#PATAST rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVABOBV;
  rdfs:label "patient asserted";
  dc:title "patient asserted";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a patient.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a patient.".

cs:ObservationValue\#PAYAST rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVABOBV;
  rdfs:label "payer asserted";
  dc:title "payer asserted";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a payer.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a payer.".

cs:ObservationValue\#PROAST rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVABOBV;
  rdfs:label "professional asserted";
  dc:title "professional asserted";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a professional.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a professional.".

cs:ObservationValue\#SDMAST rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVABOBV;
  rdfs:label "substitute decision maker asserted";
  dc:title "substitute decision maker asserted";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a substitute decision maker.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was asserted by a substitute decision maker.".

cs:ObservationValue\#%5fSECINTPRVRBOBV rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVOBV;
  rdfs:label "provenance reported by";
  dc:title "provenance reported by";
  rdfs:comment "Abstract security provenance metadata observation value used to indicate the entity that reported the resource (data, information object, service, or system capability).\r\n\n                        \n                           Examples: Codes conveying the provenance metadata about the entity reporting an IT resource.";
  dcterms:description "Abstract security provenance metadata observation value used to indicate the entity that reported the resource (data, information object, service, or system capability).\r\n\n                        \n                           Examples: Codes conveying the provenance metadata about the entity reporting an IT resource.".

cs:ObservationValue\#CLINRPT rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVRBOBV;
  rdfs:label "clinician reported";
  dc:title "clinician reported";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a clinician.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a clinician.".

cs:ObservationValue\#DEVRPT rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVRBOBV;
  rdfs:label "device reported";
  dc:title "device reported";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a device.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a device.".

cs:ObservationValue\#HCPRPT rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVRBOBV;
  rdfs:label "healthcare professional reported";
  dc:title "healthcare professional reported";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a healthcare professional.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a healthcare professional.".

cs:ObservationValue\#PACQRPT rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVRBOBV;
  rdfs:label "patient acquaintance reported";
  dc:title "patient acquaintance reported";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a patient acquaintance.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a patient acquaintance.".

cs:ObservationValue\#PATRPT rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVRBOBV;
  rdfs:label "patient reported";
  dc:title "patient reported";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a patient.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a patient.".

cs:ObservationValue\#PAYRPT rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVRBOBV;
  rdfs:label "payer reported";
  dc:title "payer reported";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a payer.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a payer.".

cs:ObservationValue\#PRORPT rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVRBOBV;
  rdfs:label "professional reported";
  dc:title "professional reported";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a professional.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a professional.".

cs:ObservationValue\#SDMRPT rdfs:subClassOf cs:ObservationValue\#%5fSECINTPRVRBOBV;
  rdfs:label "substitute decision maker reported";
  dc:title "substitute decision maker reported";
  rdfs:comment "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a substitute decision maker.";
  dcterms:description "Security provenance metadata observation value used to indicate that an IT resource (data, information object, service, or system capability) was reported by a substitute decision maker.".

cs:ObservationValue\#SECTRSTOBV rdfs:subClassOf cs:ObservationValue\#%5fSecurityObservationValue;
  rdfs:label "security trust observation";
  dc:title "security trust observation";
  rdfs:comment "Observation value used to indicate aspects of trust applicable to an IT resource (data, information object, service, or system capability).";
  dcterms:description "Observation value used to indicate aspects of trust applicable to an IT resource (data, information object, service, or system capability).".

cs:ObservationValue\#TRSTACCRDOBV rdfs:subClassOf cs:ObservationValue\#SECTRSTOBV;
  rdfs:label "trust accreditation observation";
  dc:title "trust accreditation observation";
  rdfs:comment "Values for security trust accreditation metadata observation made about the formal declaration by an authority or neutral third party that validates the technical, security, trust, and business practice conformance of Trust Agents to facilitate security, interoperability, and trust among participants within a security domain or trust framework.";
  dcterms:description "Values for security trust accreditation metadata observation made about the formal declaration by an authority or neutral third party that validates the technical, security, trust, and business practice conformance of Trust Agents to facilitate security, interoperability, and trust among participants within a security domain or trust framework.".

cs:ObservationValue\#TRSTAGREOBV rdfs:subClassOf cs:ObservationValue\#SECTRSTOBV;
  rdfs:label "trust agreement observation";
  dc:title "trust agreement observation";
  rdfs:comment "Values for security trust agreement metadata observation made about privacy and security requirements with which a security domain must comply. [ISO IEC 10181-1]\n[ISO IEC 10181-1]";
  dcterms:description "Values for security trust agreement metadata observation made about privacy and security requirements with which a security domain must comply. [ISO IEC 10181-1]\n[ISO IEC 10181-1]".

cs:ObservationValue\#TRSTCERTOBV rdfs:subClassOf cs:ObservationValue\#SECTRSTOBV;
  rdfs:label "trust certificate observation";
  dc:title "trust certificate observation";
  rdfs:comment "Values for security trust certificate metadata observation made about a set of security-relevant data issued by a security authority or trusted third party, together with security information which is used to provide the integrity and data origin authentication services for an IT resource (data, information object, service, or system capability). [Based on ISO IEC 10181-1]\r\n\n                        For example, a Certificate Policy (CP), which is a named set of rules that indicates the applicability of a certificate to a particular community and/or class of application with common security requirements.  A particular Certificate Policy might indicate the applicability of a type of certificate to the authentication of electronic data interchange transactions for the trading of goods within a given price range.  Another example is Cross Certification with Federal Bridge.";
  dcterms:description "Values for security trust certificate metadata observation made about a set of security-relevant data issued by a security authority or trusted third party, together with security information which is used to provide the integrity and data origin authentication services for an IT resource (data, information object, service, or system capability). [Based on ISO IEC 10181-1]\r\n\n                        For example, a Certificate Policy (CP), which is a named set of rules that indicates the applicability of a certificate to a particular community and/or class of application with common security requirements.  A particular Certificate Policy might indicate the applicability of a type of certificate to the authentication of electronic data interchange transactions for the trading of goods within a given price range.  Another example is Cross Certification with Federal Bridge.".

cs:ObservationValue\#TRSTLOAOBV rdfs:subClassOf cs:ObservationValue\#SECTRSTOBV;
  rdfs:label "trust assurance observation";
  dc:title "trust assurance observation";
  rdfs:comment "Values for security trust assurance metadata observation made about the digital quality or reliability of a trust assertion, activity, capability, information exchange, mechanism, process, or protocol.";
  dcterms:description "Values for security trust assurance metadata observation made about the digital quality or reliability of a trust assertion, activity, capability, information exchange, mechanism, process, or protocol.".

cs:ObservationValue\#LOAAN rdfs:subClassOf cs:ObservationValue\#TRSTLOAOBV;
  rdfs:label "authentication level of assurance value";
  dc:title "authentication level of assurance value";
  rdfs:comment "The value assigned as the indicator of the digital quality or reliability of the verification and validation process used to verify the claimed identity of an entity by securely associating an identifier and its authenticator. [Based on ISO 7498-2]\r\n\n                        For example, the degree of confidence in the vetting process used to establish the identity of the individual to whom the credential was issued, and 2) the degree of confidence that the individual who uses the credential is the individual to whom the credential was issued. [OMB M-04-04 E-Authentication Guidance for Federal Agencies]";
  dcterms:description "The value assigned as the indicator of the digital quality or reliability of the verification and validation process used to verify the claimed identity of an entity by securely associating an identifier and its authenticator. [Based on ISO 7498-2]\r\n\n                        For example, the degree of confidence in the vetting process used to establish the identity of the individual to whom the credential was issued, and 2) the degree of confidence that the individual who uses the credential is the individual to whom the credential was issued. [OMB M-04-04 E-Authentication Guidance for Federal Agencies]".

cs:ObservationValue\#LOAAN1 rdfs:subClassOf cs:ObservationValue\#LOAAN;
  rdfs:label "low authentication level of assurance";
  dc:title "low authentication level of assurance";
  rdfs:comment "Indicator of low digital quality or reliability of the digital reliability of the verification and validation process used to verify the claimed identity of an entity by securely associating an identifier and its authenticator. [Based on ISO 7498-2] \r\n\n                        The degree of confidence in the vetting process used to establish the identity of the individual to whom the credential was issued, and 2) the degree of confidence that the individual who uses the credential is the individual to whom the credential was issued. [OMB M-04-04 E-Authentication Guidance for Federal Agencies] \r\n\n                        Low authentication level of assurance indicates that the relying party may have little or no confidence in the asserted identity's validity. Level 1 requires little or no confidence in the asserted identity. No identity proofing is required at this level, but the authentication mechanism should provide some assurance that the same claimant is accessing the protected transaction or data. A wide range of available authentication technologies can be employed and any of the token methods of Levels 2, 3, or 4, including Personal Identification Numbers (PINs), may be used. To be authenticated, the claimant must prove control of the token through a secure authentication protocol. At Level 1, long-term shared authentication secrets may be revealed to verifiers.  Assertions issued about claimants as a result of a successful authentication are either cryptographically authenticated by relying parties (using approved methods) or are obtained directly from a trusted party via a secure authentication protocol.   [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]";
  dcterms:description "Indicator of low digital quality or reliability of the digital reliability of the verification and validation process used to verify the claimed identity of an entity by securely associating an identifier and its authenticator. [Based on ISO 7498-2] \r\n\n                        The degree of confidence in the vetting process used to establish the identity of the individual to whom the credential was issued, and 2) the degree of confidence that the individual who uses the credential is the individual to whom the credential was issued. [OMB M-04-04 E-Authentication Guidance for Federal Agencies] \r\n\n                        Low authentication level of assurance indicates that the relying party may have little or no confidence in the asserted identity's validity. Level 1 requires little or no confidence in the asserted identity. No identity proofing is required at this level, but the authentication mechanism should provide some assurance that the same claimant is accessing the protected transaction or data. A wide range of available authentication technologies can be employed and any of the token methods of Levels 2, 3, or 4, including Personal Identification Numbers (PINs), may be used. To be authenticated, the claimant must prove control of the token through a secure authentication protocol. At Level 1, long-term shared authentication secrets may be revealed to verifiers.  Assertions issued about claimants as a result of a successful authentication are either cryptographically authenticated by relying parties (using approved methods) or are obtained directly from a trusted party via a secure authentication protocol.   [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]".

cs:ObservationValue\#LOAAN2 rdfs:subClassOf cs:ObservationValue\#LOAAN;
  rdfs:label "basic authentication level of assurance";
  dc:title "basic authentication level of assurance";
  rdfs:comment "Indicator of basic digital quality or reliability of the digital reliability of the verification and validation process used to verify the claimed identity of an entity by securely associating an identifier and its authenticator. [Based on ISO 7498-2] \r\n\n                        The degree of confidence in the vetting process used to establish the identity of the individual to whom the credential was issued, and 2) the degree of confidence that the individual who uses the credential is the individual to whom the credential was issued. [OMB M-04-04 E-Authentication Guidance for Federal Agencies]\r\n\n                        Basic authentication level of assurance indicates that the relying party may have some confidence in the asserted identity's validity. Level 2 requires confidence that the asserted identity is accurate. Level 2 provides for single-factor remote network authentication, including identity-proofing requirements for presentation of identifying materials or information. A wide range of available authentication technologies can be employed, including any of the token methods of Levels 3 or 4, as well as passwords. Successful authentication requires that the claimant prove through a secure authentication protocol that the claimant controls the token.  Eavesdropper, replay, and online guessing attacks are prevented.  \nLong-term shared authentication secrets, if used, are never revealed to any party except the claimant and verifiers operated by the CSP; however, session (temporary) shared secrets may be provided to independent verifiers by the CSP. Approved cryptographic techniques are required. Assertions issued about claimants as a result of a successful authentication are either cryptographically authenticated by relying parties (using approved methods) or are obtained directly from a trusted party via a secure authentication protocol.   [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]";
  dcterms:description "Indicator of basic digital quality or reliability of the digital reliability of the verification and validation process used to verify the claimed identity of an entity by securely associating an identifier and its authenticator. [Based on ISO 7498-2] \r\n\n                        The degree of confidence in the vetting process used to establish the identity of the individual to whom the credential was issued, and 2) the degree of confidence that the individual who uses the credential is the individual to whom the credential was issued. [OMB M-04-04 E-Authentication Guidance for Federal Agencies]\r\n\n                        Basic authentication level of assurance indicates that the relying party may have some confidence in the asserted identity's validity. Level 2 requires confidence that the asserted identity is accurate. Level 2 provides for single-factor remote network authentication, including identity-proofing requirements for presentation of identifying materials or information. A wide range of available authentication technologies can be employed, including any of the token methods of Levels 3 or 4, as well as passwords. Successful authentication requires that the claimant prove through a secure authentication protocol that the claimant controls the token.  Eavesdropper, replay, and online guessing attacks are prevented.  \nLong-term shared authentication secrets, if used, are never revealed to any party except the claimant and verifiers operated by the CSP; however, session (temporary) shared secrets may be provided to independent verifiers by the CSP. Approved cryptographic techniques are required. Assertions issued about claimants as a result of a successful authentication are either cryptographically authenticated by relying parties (using approved methods) or are obtained directly from a trusted party via a secure authentication protocol.   [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]".

cs:ObservationValue\#LOAAN3 rdfs:subClassOf cs:ObservationValue\#LOAAN;
  rdfs:label "medium authentication level of assurance";
  dc:title "medium authentication level of assurance";
  rdfs:comment "Indicator of medium digital quality or reliability of the digital reliability of verification and validation of the process used to verify the claimed identity of an entity by securely associating an identifier and its authenticator. [Based on ISO 7498-2] \r\n\n                        The degree of confidence in the vetting process used to establish the identity of the individual to whom the credential was issued, and 2) the degree of confidence that the individual who uses the credential is the individual to whom the credential was issued. [OMB M-04-04 E-Authentication Guidance for Federal Agencies] \r\n\n                        Medium authentication level of assurance indicates that the relying party may have high confidence in the asserted identity's validity.  Level 3 is appropriate for transactions that need high confidence in the accuracy of the asserted identity. Level 3 provides multifactor remote network authentication. At this level, identity-proofing procedures require verification of identifying materials and information. Authentication is based on proof of possession of a key or password through a cryptographic protocol. Cryptographic strength mechanisms should protect the primary authentication token (a cryptographic key) against compromise by the protocol threats, including eavesdropper, replay, online guessing, verifier impersonation, and man-in-the-middle attacks. A minimum of two authentication factors is required. Three kinds of tokens may be used:\r\n\n                        \n                           \"soft\" cryptographic token, which has the key stored on a general-purpose computer, \n                           \"hard\" cryptographic token, which has the key stored on a special hardware device, and \n                           \"one-time password\" device token, which has symmetric key stored on a personal hardware device that is a cryptographic module validated at FIPS 140-2 Level 1 or higher. Validation testing of cryptographic modules and algorithms for conformance to Federal Information Processing Standard (FIPS) 140-2, Security Requirements for Cryptographic Modules, is managed by NIST.\n                        \n                        Authentication requires that the claimant prove control of the token through a secure authentication protocol. The token must be unlocked with a password or biometric representation, or a password must be used in a secure authentication protocol, to establish two-factor authentication. Long-term shared authentication secrets, if used, are never revealed to any party except the claimant and verifiers operated directly by the CSP; however, session (temporary) shared secrets may be provided to independent verifiers by the CSP. Approved cryptographic techniques are used for all operations.  Assertions issued about claimants as a result of a successful authentication are either cryptographically authenticated by relying parties (using approved methods) or are obtained directly from a trusted party via a secure authentication protocol.    [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]";
  dcterms:description "Indicator of medium digital quality or reliability of the digital reliability of verification and validation of the process used to verify the claimed identity of an entity by securely associating an identifier and its authenticator. [Based on ISO 7498-2] \r\n\n                        The degree of confidence in the vetting process used to establish the identity of the individual to whom the credential was issued, and 2) the degree of confidence that the individual who uses the credential is the individual to whom the credential was issued. [OMB M-04-04 E-Authentication Guidance for Federal Agencies] \r\n\n                        Medium authentication level of assurance indicates that the relying party may have high confidence in the asserted identity's validity.  Level 3 is appropriate for transactions that need high confidence in the accuracy of the asserted identity. Level 3 provides multifactor remote network authentication. At this level, identity-proofing procedures require verification of identifying materials and information. Authentication is based on proof of possession of a key or password through a cryptographic protocol. Cryptographic strength mechanisms should protect the primary authentication token (a cryptographic key) against compromise by the protocol threats, including eavesdropper, replay, online guessing, verifier impersonation, and man-in-the-middle attacks. A minimum of two authentication factors is required. Three kinds of tokens may be used:\r\n\n                        \n                           \"soft\" cryptographic token, which has the key stored on a general-purpose computer, \n                           \"hard\" cryptographic token, which has the key stored on a special hardware device, and \n                           \"one-time password\" device token, which has symmetric key stored on a personal hardware device that is a cryptographic module validated at FIPS 140-2 Level 1 or higher. Validation testing of cryptographic modules and algorithms for conformance to Federal Information Processing Standard (FIPS) 140-2, Security Requirements for Cryptographic Modules, is managed by NIST.\n                        \n                        Authentication requires that the claimant prove control of the token through a secure authentication protocol. The token must be unlocked with a password or biometric representation, or a password must be used in a secure authentication protocol, to establish two-factor authentication. Long-term shared authentication secrets, if used, are never revealed to any party except the claimant and verifiers operated directly by the CSP; however, session (temporary) shared secrets may be provided to independent verifiers by the CSP. Approved cryptographic techniques are used for all operations.  Assertions issued about claimants as a result of a successful authentication are either cryptographically authenticated by relying parties (using approved methods) or are obtained directly from a trusted party via a secure authentication protocol.    [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]".

cs:ObservationValue\#LOAAN4 rdfs:subClassOf cs:ObservationValue\#LOAAN;
  rdfs:label "high authentication level of assurance";
  dc:title "high authentication level of assurance";
  rdfs:comment "Indicator of high digital quality or reliability of the digital reliability of the verification and validation process used to verify the claimed identity of an entity by securely associating an identifier and its authenticator. [Based on ISO 7498-2] \r\n\n                        The degree of confidence in the vetting process used to establish the identity of the individual to whom the credential was issued, and 2) the degree of confidence that the individual who uses the credential is the individual to whom the credential was issued. [OMB M-04-04 E-Authentication Guidance for Federal Agencies]\r\n\n                        High authentication level of assurance indicates that the relying party may have very high confidence in the asserted identity's validity. Level 4 is for transactions that need very high confidence in the accuracy of the asserted identity. Level 4 provides the highest practical assurance of remote network authentication. Authentication is based on proof of possession of a key through a cryptographic protocol. This level is similar to Level 3 except that only â€œhardâ€? cryptographic tokens are allowed, cryptographic module validation requirements are strengthened, and subsequent critical data transfers must be authenticated via a key that is bound to the authentication process. The token should be a hardware cryptographic module validated at FIPS 140-2 Level 2 or higher overall with at least FIPS 140-2 Level 3 physical security. This level requires a physical token, which cannot readily be copied, and operator authentication at Level 2 and higher, and ensures good, two-factor remote authentication.\r\n\n                        Level 4 requires strong cryptographic authentication of all parties and all sensitive data transfers between the parties. Either public key or symmetric key technology may be used. Authentication requires that the claimant prove through a secure authentication protocol that the claimant controls the token. Eavesdropper, replay, online guessing, verifier impersonation, and man-in-the-middle attacks are prevented. Long-term shared authentication secrets, if used, are never revealed to any party except the claimant and verifiers operated directly by the CSP; however, session (temporary) shared secrets may be provided to independent verifiers by the CSP. Strong approved cryptographic techniques are used for all operations. All sensitive data transfers are cryptographically authenticated using keys bound to the authentication process.   [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]";
  dcterms:description "Indicator of high digital quality or reliability of the digital reliability of the verification and validation process used to verify the claimed identity of an entity by securely associating an identifier and its authenticator. [Based on ISO 7498-2] \r\n\n                        The degree of confidence in the vetting process used to establish the identity of the individual to whom the credential was issued, and 2) the degree of confidence that the individual who uses the credential is the individual to whom the credential was issued. [OMB M-04-04 E-Authentication Guidance for Federal Agencies]\r\n\n                        High authentication level of assurance indicates that the relying party may have very high confidence in the asserted identity's validity. Level 4 is for transactions that need very high confidence in the accuracy of the asserted identity. Level 4 provides the highest practical assurance of remote network authentication. Authentication is based on proof of possession of a key through a cryptographic protocol. This level is similar to Level 3 except that only â€œhardâ€? cryptographic tokens are allowed, cryptographic module validation requirements are strengthened, and subsequent critical data transfers must be authenticated via a key that is bound to the authentication process. The token should be a hardware cryptographic module validated at FIPS 140-2 Level 2 or higher overall with at least FIPS 140-2 Level 3 physical security. This level requires a physical token, which cannot readily be copied, and operator authentication at Level 2 and higher, and ensures good, two-factor remote authentication.\r\n\n                        Level 4 requires strong cryptographic authentication of all parties and all sensitive data transfers between the parties. Either public key or symmetric key technology may be used. Authentication requires that the claimant prove through a secure authentication protocol that the claimant controls the token. Eavesdropper, replay, online guessing, verifier impersonation, and man-in-the-middle attacks are prevented. Long-term shared authentication secrets, if used, are never revealed to any party except the claimant and verifiers operated directly by the CSP; however, session (temporary) shared secrets may be provided to independent verifiers by the CSP. Strong approved cryptographic techniques are used for all operations. All sensitive data transfers are cryptographically authenticated using keys bound to the authentication process.   [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]".

cs:ObservationValue\#LOAAP rdfs:subClassOf cs:ObservationValue\#TRSTLOAOBV;
  rdfs:label "authentication process level of assurance value";
  dc:title "authentication process level of assurance value";
  rdfs:comment "The value assigned as the indicator of the digital quality or reliability of a defined sequence of messages between a Claimant and a Verifier that demonstrates that the Claimant has possession and control of a valid token to establish his/her identity, and optionally, demonstrates to the Claimant that he or she is communicating with the intended Verifier. [Based on NIST SP 800-63-2]";
  dcterms:description "The value assigned as the indicator of the digital quality or reliability of a defined sequence of messages between a Claimant and a Verifier that demonstrates that the Claimant has possession and control of a valid token to establish his/her identity, and optionally, demonstrates to the Claimant that he or she is communicating with the intended Verifier. [Based on NIST SP 800-63-2]".

cs:ObservationValue\#LOAAP1 rdfs:subClassOf cs:ObservationValue\#LOAAP;
  rdfs:label "low authentication process level of assurance";
  dc:title "low authentication process level of assurance";
  rdfs:comment "Indicator of the low digital quality or reliability of a defined sequence of messages between a Claimant and a Verifier that demonstrates that the Claimant has possession and control of a valid token to establish his/her identity, and optionally, demonstrates to the Claimant that he or she is communicating with the intended Verifier. [Based on NIST SP 800-63-2]\r\n\n                        Low authentication process level of assurance indicates that (1) long-term shared authentication secrets may be revealed to verifiers; and (2) assertions and assertion references require protection from manufacture/modification and reuse attacks.  [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]";
  dcterms:description "Indicator of the low digital quality or reliability of a defined sequence of messages between a Claimant and a Verifier that demonstrates that the Claimant has possession and control of a valid token to establish his/her identity, and optionally, demonstrates to the Claimant that he or she is communicating with the intended Verifier. [Based on NIST SP 800-63-2]\r\n\n                        Low authentication process level of assurance indicates that (1) long-term shared authentication secrets may be revealed to verifiers; and (2) assertions and assertion references require protection from manufacture/modification and reuse attacks.  [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]".

cs:ObservationValue\#LOAAP2 rdfs:subClassOf cs:ObservationValue\#LOAAP;
  rdfs:label "basic authentication process level of assurance";
  dc:title "basic authentication process level of assurance";
  rdfs:comment "Indicator of the basic digital quality or reliability of a defined sequence of messages between a Claimant and a Verifier that demonstrates that the Claimant has possession and control of a valid token to establish his/her identity, and optionally, demonstrates to the Claimant that he or she is communicating with the intended Verifier. [Based on NIST SP 800-63-2]\r\n\n                        Basic authentication process level of assurance indicates that long-term shared authentication secrets are never revealed to any other party except Credential Service Provider (CSP).  Sessions (temporary) shared secrets may be provided to independent verifiers by CSP. Long-term shared authentication secrets, if used, are never revealed to any other party except Verifiers operated by the Credential Service Provider (CSP); however, session (temporary) shared secrets may be provided to independent Verifiers by the CSP. In addition to Level 1 requirements, assertions are resistant to disclosure, redirection, capture and substitution attacks. Approved cryptographic techniques are required.  [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]";
  dcterms:description "Indicator of the basic digital quality or reliability of a defined sequence of messages between a Claimant and a Verifier that demonstrates that the Claimant has possession and control of a valid token to establish his/her identity, and optionally, demonstrates to the Claimant that he or she is communicating with the intended Verifier. [Based on NIST SP 800-63-2]\r\n\n                        Basic authentication process level of assurance indicates that long-term shared authentication secrets are never revealed to any other party except Credential Service Provider (CSP).  Sessions (temporary) shared secrets may be provided to independent verifiers by CSP. Long-term shared authentication secrets, if used, are never revealed to any other party except Verifiers operated by the Credential Service Provider (CSP); however, session (temporary) shared secrets may be provided to independent Verifiers by the CSP. In addition to Level 1 requirements, assertions are resistant to disclosure, redirection, capture and substitution attacks. Approved cryptographic techniques are required.  [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]".

cs:ObservationValue\#LOAAP3 rdfs:subClassOf cs:ObservationValue\#LOAAP;
  rdfs:label "medium authentication process level of assurance";
  dc:title "medium authentication process level of assurance";
  rdfs:comment "Indicator of the medium digital quality or reliability of a defined sequence of messages between a Claimant and a Verifier that demonstrates that the Claimant has possession and control of a valid token to establish his/her identity, and optionally, demonstrates to the Claimant that he or she is communicating with the intended Verifier. [Based on NIST SP 800-63-2]\r\n\n                        Medium authentication process level of assurance indicates that the token can be unlocked with password, biometric, or uses a secure multi-token authentication protocol to establish two-factor authentication.  Long-term shared authentication secrets are never revealed to any party except the Claimant and Credential Service Provider (CSP).\r\n\n                        Authentication requires that the Claimant prove, through a secure authentication protocol, that he or she controls the token. The Claimant unlocks the token with a password or biometric, or uses a secure multi-token authentication protocol to establish two-factor authentication (through proof of possession of a physical or software token in combination with some memorized secret knowledge). Long-term shared authentication secrets, if used, are never revealed to any party except the Claimant and Verifiers operated directly by the CSP; however, session (temporary) shared secrets may be provided to independent Verifiers by the CSP. In addition to Level 2 requirements, assertions are protected against repudiation by the Verifier.";
  dcterms:description "Indicator of the medium digital quality or reliability of a defined sequence of messages between a Claimant and a Verifier that demonstrates that the Claimant has possession and control of a valid token to establish his/her identity, and optionally, demonstrates to the Claimant that he or she is communicating with the intended Verifier. [Based on NIST SP 800-63-2]\r\n\n                        Medium authentication process level of assurance indicates that the token can be unlocked with password, biometric, or uses a secure multi-token authentication protocol to establish two-factor authentication.  Long-term shared authentication secrets are never revealed to any party except the Claimant and Credential Service Provider (CSP).\r\n\n                        Authentication requires that the Claimant prove, through a secure authentication protocol, that he or she controls the token. The Claimant unlocks the token with a password or biometric, or uses a secure multi-token authentication protocol to establish two-factor authentication (through proof of possession of a physical or software token in combination with some memorized secret knowledge). Long-term shared authentication secrets, if used, are never revealed to any party except the Claimant and Verifiers operated directly by the CSP; however, session (temporary) shared secrets may be provided to independent Verifiers by the CSP. In addition to Level 2 requirements, assertions are protected against repudiation by the Verifier.".

cs:ObservationValue\#LOAAP4 rdfs:subClassOf cs:ObservationValue\#LOAAP;
  rdfs:label "high authentication process level of assurance";
  dc:title "high authentication process level of assurance";
  rdfs:comment "Indicator of the high digital quality or reliability of a defined sequence of messages between a Claimant and a Verifier that demonstrates that the Claimant has possession and control of a valid token to establish his/her identity, and optionally, demonstrates to the Claimant that he or she is communicating with the intended Verifier. [Based on NIST SP 800-63-2]\r\n\n                        High authentication process level of assurance indicates all sensitive data transfer are cryptographically authenticated using keys bound to the authentication process.  Level 4 requires strong cryptographic authentication of all communicating parties and all sensitive data transfers between the parties. Either public key or symmetric key technology may be used. Authentication requires that the Claimant prove through a secure authentication protocol that he or she controls the token. All protocol threats at Level 3 are required to be prevented at Level 4. Protocols shall also be strongly resistant to man-in-the-middle attacks. Long-term shared authentication secrets, if used, are never revealed to any party except the Claimant and Verifiers operated directly by the CSP; however, session (temporary) shared secrets may be provided to independent Verifiers by the CSP. Approved cryptographic techniques are used for all operations. All sensitive data transfers are cryptographically authenticated using keys bound to the authentication process.   [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]";
  dcterms:description "Indicator of the high digital quality or reliability of a defined sequence of messages between a Claimant and a Verifier that demonstrates that the Claimant has possession and control of a valid token to establish his/her identity, and optionally, demonstrates to the Claimant that he or she is communicating with the intended Verifier. [Based on NIST SP 800-63-2]\r\n\n                        High authentication process level of assurance indicates all sensitive data transfer are cryptographically authenticated using keys bound to the authentication process.  Level 4 requires strong cryptographic authentication of all communicating parties and all sensitive data transfers between the parties. Either public key or symmetric key technology may be used. Authentication requires that the Claimant prove through a secure authentication protocol that he or she controls the token. All protocol threats at Level 3 are required to be prevented at Level 4. Protocols shall also be strongly resistant to man-in-the-middle attacks. Long-term shared authentication secrets, if used, are never revealed to any party except the Claimant and Verifiers operated directly by the CSP; however, session (temporary) shared secrets may be provided to independent Verifiers by the CSP. Approved cryptographic techniques are used for all operations. All sensitive data transfers are cryptographically authenticated using keys bound to the authentication process.   [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]".

cs:ObservationValue\#LOAAS rdfs:subClassOf cs:ObservationValue\#TRSTLOAOBV;
  rdfs:label "assertion level of assurance value";
  dc:title "assertion level of assurance value";
  rdfs:comment "The value assigned as the indicator of the high quality or reliability of the statement from a Verifier to a Relying Party (RP) that contains identity information about a Subscriber. Assertions may also contain verified attributes.";
  dcterms:description "The value assigned as the indicator of the high quality or reliability of the statement from a Verifier to a Relying Party (RP) that contains identity information about a Subscriber. Assertions may also contain verified attributes.".

cs:ObservationValue\#LOAAS1 rdfs:subClassOf cs:ObservationValue\#LOAAS;
  rdfs:label "low assertion level of assurance";
  dc:title "low assertion level of assurance";
  rdfs:comment "Indicator of the low quality or reliability of the statement from a Verifier to a Relying Party (RP) that contains identity information about a Subscriber. Assertions may also contain verified attributes.\r\n\n                        Assertions and assertion references require protection from modification and reuse attacks.  [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]";
  dcterms:description "Indicator of the low quality or reliability of the statement from a Verifier to a Relying Party (RP) that contains identity information about a Subscriber. Assertions may also contain verified attributes.\r\n\n                        Assertions and assertion references require protection from modification and reuse attacks.  [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]".

cs:ObservationValue\#LOAAS2 rdfs:subClassOf cs:ObservationValue\#LOAAS;
  rdfs:label "basic assertion level of assurance";
  dc:title "basic assertion level of assurance";
  rdfs:comment "Indicator of the basic quality or reliability of the statement from a Verifier to a Relying Party (RP) that contains identity information about a Subscriber. Assertions may also contain verified attributes.\r\n\n                        Assertions are resistant to disclosure, redirection, capture and substitution attacks.  Approved cryptographic techniques are required for all assertion protocols.  [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]";
  dcterms:description "Indicator of the basic quality or reliability of the statement from a Verifier to a Relying Party (RP) that contains identity information about a Subscriber. Assertions may also contain verified attributes.\r\n\n                        Assertions are resistant to disclosure, redirection, capture and substitution attacks.  Approved cryptographic techniques are required for all assertion protocols.  [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]".

cs:ObservationValue\#LOAAS3 rdfs:subClassOf cs:ObservationValue\#LOAAS;
  rdfs:label "medium assertion level of assurance";
  dc:title "medium assertion level of assurance";
  rdfs:comment "Indicator of the medium quality or reliability of the statement from a Verifier to a Relying Party (RP) that contains identity information about a Subscriber. Assertions may also contain verified attributes.\r\n\n                        Assertions are protected against repudiation by the verifier.  [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]";
  dcterms:description "Indicator of the medium quality or reliability of the statement from a Verifier to a Relying Party (RP) that contains identity information about a Subscriber. Assertions may also contain verified attributes.\r\n\n                        Assertions are protected against repudiation by the verifier.  [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]".

cs:ObservationValue\#LOAAS4 rdfs:subClassOf cs:ObservationValue\#LOAAS;
  rdfs:label "high assertion level of assurance";
  dc:title "high assertion level of assurance";
  rdfs:comment "Indicator of the high quality or reliability of the statement from a Verifier to a Relying Party (RP) that contains identity information about a Subscriber. Assertions may also contain verified attributes.\r\n\n                        Strongly resistant to man-in-the-middle attacks. \"Bearer\" assertions are not used.  \"Holder-of-key\" assertions may be used. RP maintains records of the assertions.  [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]";
  dcterms:description "Indicator of the high quality or reliability of the statement from a Verifier to a Relying Party (RP) that contains identity information about a Subscriber. Assertions may also contain verified attributes.\r\n\n                        Strongly resistant to man-in-the-middle attacks. \"Bearer\" assertions are not used.  \"Holder-of-key\" assertions may be used. RP maintains records of the assertions.  [Summary of the technical requirements specified in NIST SP 800-63 for the four levels of assurance defined by the December 2003, the Office of Management and Budget (OMB) issued Memorandum M-04-04, E-Authentication Guidance for Federal Agencies.]".

cs:ObservationValue\#LOACM rdfs:subClassOf cs:ObservationValue\#TRSTLOAOBV;
  rdfs:label "token and credential management level of assurance value)";
  dc:title "token and credential management level of assurance value)";
  rdfs:comment "Indicator of the digital quality or reliability of the activities performed by the Credential Service Provider (CSP) subsequent to electronic authentication registration, identity proofing and issuance activities to manage and safeguard the integrity of an issued credential and its binding to an identity. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]";
  dcterms:description "Indicator of the digital quality or reliability of the activities performed by the Credential Service Provider (CSP) subsequent to electronic authentication registration, identity proofing and issuance activities to manage and safeguard the integrity of an issued credential and its binding to an identity. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]".

cs:ObservationValue\#LOACM1 rdfs:subClassOf cs:ObservationValue\#LOACM;
  rdfs:label "low token and credential management level of assurance";
  dc:title "low token and credential management level of assurance";
  rdfs:comment "Indicator of the low digital quality or reliability of the activities performed by the Credential Service Provider (CSP) subsequent to electronic authentication registration, identity proofing and issuance activities to manage and safeguard the integrity of an issued credential and its binding to an identity. Little or no confidence that an individual has maintained control over a token that has been entrusted to him or her and that that token has not been compromised. Characteristics include weak identity binding to tokens and plaintext passwords or secrets not transmitted across a network. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]";
  dcterms:description "Indicator of the low digital quality or reliability of the activities performed by the Credential Service Provider (CSP) subsequent to electronic authentication registration, identity proofing and issuance activities to manage and safeguard the integrity of an issued credential and its binding to an identity. Little or no confidence that an individual has maintained control over a token that has been entrusted to him or her and that that token has not been compromised. Characteristics include weak identity binding to tokens and plaintext passwords or secrets not transmitted across a network. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]".

cs:ObservationValue\#LOACM2 rdfs:subClassOf cs:ObservationValue\#LOACM;
  rdfs:label "basic token and credential management level of assurance";
  dc:title "basic token and credential management level of assurance";
  rdfs:comment "Indicator of the basic digital quality or reliability of the activities performed by the Credential Service Provider (CSP) subsequent to electronic authentication registration, identity proofing and issuance activities to manage and safeguard the integrity of an issued credential and its binding to an identity.  Some confidence that an individual has maintained control over a token that has been entrusted to him or her and that that token has not been compromised. Characteristics include:  Verification must prove claimant controls the token; token resists online guessing, replay, session hijacking, and eavesdropping attacks; and  token is at least weakly resistant to man-in-the middle attacks. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]";
  dcterms:description "Indicator of the basic digital quality or reliability of the activities performed by the Credential Service Provider (CSP) subsequent to electronic authentication registration, identity proofing and issuance activities to manage and safeguard the integrity of an issued credential and its binding to an identity.  Some confidence that an individual has maintained control over a token that has been entrusted to him or her and that that token has not been compromised. Characteristics include:  Verification must prove claimant controls the token; token resists online guessing, replay, session hijacking, and eavesdropping attacks; and  token is at least weakly resistant to man-in-the middle attacks. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]".

cs:ObservationValue\#LOACM3 rdfs:subClassOf cs:ObservationValue\#LOACM;
  rdfs:label "medium token and credential management level of assurance";
  dc:title "medium token and credential management level of assurance";
  rdfs:comment "Indicator of the medium digital quality or reliability of the activities performed by the Credential Service Provider (CSP) subsequent to electronic authentication registration, identity proofing and issuance activities to manage and safeguard the integrity of an issued credential and itâ€™s binding to an identity.  High confidence that an individual has maintained control over a token that has been entrusted to him or her and that that token has not been compromised. Characteristics  include: Ownership of token verifiable through security authentication protocol and credential management protects against verifier impersonation attacks. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]";
  dcterms:description "Indicator of the medium digital quality or reliability of the activities performed by the Credential Service Provider (CSP) subsequent to electronic authentication registration, identity proofing and issuance activities to manage and safeguard the integrity of an issued credential and itâ€™s binding to an identity.  High confidence that an individual has maintained control over a token that has been entrusted to him or her and that that token has not been compromised. Characteristics  include: Ownership of token verifiable through security authentication protocol and credential management protects against verifier impersonation attacks. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]".

cs:ObservationValue\#LOACM4 rdfs:subClassOf cs:ObservationValue\#LOACM;
  rdfs:label "high token and credential management level of assurance";
  dc:title "high token and credential management level of assurance";
  rdfs:comment "Indicator of the high digital quality or reliability of the activities performed by the Credential Service Provider (CSP) subsequent to electronic authentication registration, identity proofing and issuance activities to manage and safeguard the integrity of an issued credential and itâ€™s binding to an identity.  Very high confidence that an individual has maintained control over a token that has been entrusted to him or her and that that token has not been compromised. Characteristics include: Verifier can prove control of token through a secure protocol; credential management supports strong cryptographic authentication of all communication parties. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]";
  dcterms:description "Indicator of the high digital quality or reliability of the activities performed by the Credential Service Provider (CSP) subsequent to electronic authentication registration, identity proofing and issuance activities to manage and safeguard the integrity of an issued credential and itâ€™s binding to an identity.  Very high confidence that an individual has maintained control over a token that has been entrusted to him or her and that that token has not been compromised. Characteristics include: Verifier can prove control of token through a secure protocol; credential management supports strong cryptographic authentication of all communication parties. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]".

cs:ObservationValue\#LOAID rdfs:subClassOf cs:ObservationValue\#TRSTLOAOBV;
  rdfs:label "identity proofing level of assurance";
  dc:title "identity proofing level of assurance";
  rdfs:comment "Indicator of the quality or reliability in the process of ascertaining that an individual is who he or she claims to be.";
  dcterms:description "Indicator of the quality or reliability in the process of ascertaining that an individual is who he or she claims to be.".

cs:ObservationValue\#LOAID1 rdfs:subClassOf cs:ObservationValue\#LOAID;
  rdfs:label "low identity proofing level of assurance";
  dc:title "low identity proofing level of assurance";
  rdfs:comment "Indicator of low digital quality or reliability in the process of ascertaining that an individual is who he or she claims to be.  Requires that a continuity of identity be maintained but does not require identity proofing. [Based on Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]";
  dcterms:description "Indicator of low digital quality or reliability in the process of ascertaining that an individual is who he or she claims to be.  Requires that a continuity of identity be maintained but does not require identity proofing. [Based on Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]".

cs:ObservationValue\#LOAID2 rdfs:subClassOf cs:ObservationValue\#LOAID;
  rdfs:label "basic identity proofing level of assurance";
  dc:title "basic identity proofing level of assurance";
  rdfs:comment "Indicator of some digital quality or reliability in the process of ascertaining that that an individual is who he or she claims to be. Requires identity proofing via presentation of identifying material or information. [Based on Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]";
  dcterms:description "Indicator of some digital quality or reliability in the process of ascertaining that that an individual is who he or she claims to be. Requires identity proofing via presentation of identifying material or information. [Based on Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]".

cs:ObservationValue\#LOAID3 rdfs:subClassOf cs:ObservationValue\#LOAID;
  rdfs:label "medium identity proofing level of assurance";
  dc:title "medium identity proofing level of assurance";
  rdfs:comment "Indicator of high digital quality or reliability in the process of ascertaining that an individual is who he or she claims to be.  Requires identity proofing procedures for verification of identifying materials and information. [Based on Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]";
  dcterms:description "Indicator of high digital quality or reliability in the process of ascertaining that an individual is who he or she claims to be.  Requires identity proofing procedures for verification of identifying materials and information. [Based on Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]".

cs:ObservationValue\#LOAID4 rdfs:subClassOf cs:ObservationValue\#LOAID;
  rdfs:label "high identity proofing level of assurance";
  dc:title "high identity proofing level of assurance";
  rdfs:comment "Indicator of high digital quality or reliability in the process of ascertaining that an individual is who he or she claims to be.  Requires identity proofing procedures for verification of identifying materials and information. [Based on Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]";
  dcterms:description "Indicator of high digital quality or reliability in the process of ascertaining that an individual is who he or she claims to be.  Requires identity proofing procedures for verification of identifying materials and information. [Based on Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]".

cs:ObservationValue\#LOANR rdfs:subClassOf cs:ObservationValue\#TRSTLOAOBV;
  rdfs:label "non-repudiation level of assurance value";
  dc:title "non-repudiation level of assurance value";
  rdfs:comment "Indicator of the digital quality or reliability in the process of establishing proof of delivery and proof of origin. [Based on ISO 7498-2]";
  dcterms:description "Indicator of the digital quality or reliability in the process of establishing proof of delivery and proof of origin. [Based on ISO 7498-2]".

cs:ObservationValue\#LOANR1 rdfs:subClassOf cs:ObservationValue\#LOANR;
  rdfs:label "low non-repudiation level of assurance";
  dc:title "low non-repudiation level of assurance";
  rdfs:comment "Indicator of low digital quality or reliability in the process of establishing proof of delivery and proof of origin. [Based on ISO 7498-2]";
  dcterms:description "Indicator of low digital quality or reliability in the process of establishing proof of delivery and proof of origin. [Based on ISO 7498-2]".

cs:ObservationValue\#LOANR2 rdfs:subClassOf cs:ObservationValue\#LOANR;
  rdfs:label "basic non-repudiation level of assurance";
  dc:title "basic non-repudiation level of assurance";
  rdfs:comment "Indicator of basic digital quality or reliability in the process of establishing proof of delivery and proof of origin. [Based on ISO 7498-2]";
  dcterms:description "Indicator of basic digital quality or reliability in the process of establishing proof of delivery and proof of origin. [Based on ISO 7498-2]".

cs:ObservationValue\#LOANR3 rdfs:subClassOf cs:ObservationValue\#LOANR;
  rdfs:label "medium non-repudiation level of assurance";
  dc:title "medium non-repudiation level of assurance";
  rdfs:comment "Indicator of medium digital quality or reliability in the process of establishing proof of delivery and proof of origin. [Based on ISO 7498-2]";
  dcterms:description "Indicator of medium digital quality or reliability in the process of establishing proof of delivery and proof of origin. [Based on ISO 7498-2]".

cs:ObservationValue\#LOANR4 rdfs:subClassOf cs:ObservationValue\#LOANR;
  rdfs:label "high non-repudiation level of assurance";
  dc:title "high non-repudiation level of assurance";
  rdfs:comment "Indicator of high digital quality or reliability in the process of establishing proof of delivery and proof of origin. [Based on ISO 7498-2]";
  dcterms:description "Indicator of high digital quality or reliability in the process of establishing proof of delivery and proof of origin. [Based on ISO 7498-2]".

cs:ObservationValue\#LOARA rdfs:subClassOf cs:ObservationValue\#TRSTLOAOBV;
  rdfs:label "remote access level of assurance value";
  dc:title "remote access level of assurance value";
  rdfs:comment "Indicator of the digital quality or reliability of the information exchange between network-connected devices where the information cannot be reliably protected end-to-end by a single organizationâ€™s security controls. [Based on NIST SP 800-63-2]";
  dcterms:description "Indicator of the digital quality or reliability of the information exchange between network-connected devices where the information cannot be reliably protected end-to-end by a single organizationâ€™s security controls. [Based on NIST SP 800-63-2]".

cs:ObservationValue\#LOARA1 rdfs:subClassOf cs:ObservationValue\#LOARA;
  rdfs:label "low remote access level of assurance";
  dc:title "low remote access level of assurance";
  rdfs:comment "Indicator of low digital quality or reliability of the information exchange between network-connected devices where the information cannot be reliably protected end-to-end by a single organizationâ€™s security controls. [Based on NIST SP 800-63-2]";
  dcterms:description "Indicator of low digital quality or reliability of the information exchange between network-connected devices where the information cannot be reliably protected end-to-end by a single organizationâ€™s security controls. [Based on NIST SP 800-63-2]".

cs:ObservationValue\#LOARA2 rdfs:subClassOf cs:ObservationValue\#LOARA;
  rdfs:label "basic remote access level of assurance";
  dc:title "basic remote access level of assurance";
  rdfs:comment "Indicator of basic digital quality or reliability of the information exchange between network-connected devices where the information cannot be reliably protected end-to-end by a single organizationâ€™s security controls. [Based on NIST SP 800-63-2]";
  dcterms:description "Indicator of basic digital quality or reliability of the information exchange between network-connected devices where the information cannot be reliably protected end-to-end by a single organizationâ€™s security controls. [Based on NIST SP 800-63-2]".

cs:ObservationValue\#LOARA3 rdfs:subClassOf cs:ObservationValue\#LOARA;
  rdfs:label "medium remote access level of assurance";
  dc:title "medium remote access level of assurance";
  rdfs:comment "Indicator of medium digital quality or reliability of the information exchange between network-connected devices where the information cannot be reliably protected end-to-end by a single organizationâ€™s security controls. [Based on NIST SP 800-63-2]";
  dcterms:description "Indicator of medium digital quality or reliability of the information exchange between network-connected devices where the information cannot be reliably protected end-to-end by a single organizationâ€™s security controls. [Based on NIST SP 800-63-2]".

cs:ObservationValue\#LOARA4 rdfs:subClassOf cs:ObservationValue\#LOARA;
  rdfs:label "high remote access level of assurance";
  dc:title "high remote access level of assurance";
  rdfs:comment "Indicator of high digital quality or reliability of the information exchange between network-connected devices where the information cannot be reliably protected end-to-end by a single organization's security controls. [Based on NIST SP 800-63-2]";
  dcterms:description "Indicator of high digital quality or reliability of the information exchange between network-connected devices where the information cannot be reliably protected end-to-end by a single organization's security controls. [Based on NIST SP 800-63-2]".

cs:ObservationValue\#LOATK rdfs:subClassOf cs:ObservationValue\#TRSTLOAOBV;
  rdfs:label "token level of assurance value";
  dc:title "token level of assurance value";
  rdfs:comment "Indicator of the digital quality or reliability of single and multi-token authentication. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]";
  dcterms:description "Indicator of the digital quality or reliability of single and multi-token authentication. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]".

cs:ObservationValue\#LOATK1 rdfs:subClassOf cs:ObservationValue\#LOATK;
  rdfs:label "low token level of assurance";
  dc:title "low token level of assurance";
  rdfs:comment "Indicator of the low digital quality or reliability of single and multi-token authentication. Permits the use of any of the token methods of Levels 2, 3, or 4. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]";
  dcterms:description "Indicator of the low digital quality or reliability of single and multi-token authentication. Permits the use of any of the token methods of Levels 2, 3, or 4. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]".

cs:ObservationValue\#LOATK2 rdfs:subClassOf cs:ObservationValue\#LOATK;
  rdfs:label "basic token level of assurance";
  dc:title "basic token level of assurance";
  rdfs:comment "Indicator of the basic digital quality or reliability of single and multi-token authentication. Requires single factor authentication using memorized secret tokens, pre-registered knowledge tokens, look-up secret tokens, out of band tokens, or single factor one-time password devices. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]";
  dcterms:description "Indicator of the basic digital quality or reliability of single and multi-token authentication. Requires single factor authentication using memorized secret tokens, pre-registered knowledge tokens, look-up secret tokens, out of band tokens, or single factor one-time password devices. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]".

cs:ObservationValue\#LOATK3 rdfs:subClassOf cs:ObservationValue\#LOATK;
  rdfs:label "medium token level of assurance";
  dc:title "medium token level of assurance";
  rdfs:comment "Indicator of the medium digital quality or reliability of single and multi-token authentication. Requires two authentication factors. Provides multi-factor remote network authentication. Permits multi-factor software cryptographic token. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]";
  dcterms:description "Indicator of the medium digital quality or reliability of single and multi-token authentication. Requires two authentication factors. Provides multi-factor remote network authentication. Permits multi-factor software cryptographic token. [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]".

cs:ObservationValue\#LOATK4 rdfs:subClassOf cs:ObservationValue\#LOATK;
  rdfs:label "high token level of assurance";
  dc:title "high token level of assurance";
  rdfs:comment "Indicator of the high digital quality or reliability of single and multi-token authentication. Requires token that is a hardware cryptographic module validated at validated at Federal Information Processing Standard (FIPS) 140-2 Level 2 or higher overall with at least FIPS 140-2 Level 3 physical security. Level 4 token requirements can be met by using the PIV authentication key of a FIPS 201 compliant Personal Identity Verification (PIV) Card.  [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]";
  dcterms:description "Indicator of the high digital quality or reliability of single and multi-token authentication. Requires token that is a hardware cryptographic module validated at validated at Federal Information Processing Standard (FIPS) 140-2 Level 2 or higher overall with at least FIPS 140-2 Level 3 physical security. Level 4 token requirements can be met by using the PIV authentication key of a FIPS 201 compliant Personal Identity Verification (PIV) Card.  [Electronic Authentication Guideline - Recommendations of the National Institute of Standards and Technology, NIST Special Publication 800-63-1, Dec 2011]".

cs:ObservationValue\#TRSTMECOBV rdfs:subClassOf cs:ObservationValue\#SECTRSTOBV;
  rdfs:label "none supplied 6";
  dc:title "none supplied 6";
  rdfs:comment "Values for security trust mechanism metadata observation made about a security architecture system component that supports enforcement of security policies.";
  dcterms:description "Values for security trust mechanism metadata observation made about a security architecture system component that supports enforcement of security policies.".

cs:ObservationValue\#%5fSeverityObservation rdfs:subClassOf cs:ObservationValue;
  rdfs:label "SeverityObservation";
  dc:title "SeverityObservation";
  rdfs:comment "Potential values for observations of severity.";
  dcterms:description "Potential values for observations of severity.".

cs:ObservationValue\#H rdfs:subClassOf cs:ObservationValue\#%5fSeverityObservation;
  rdfs:label "High";
  dc:title "High";
  rdfs:comment "Indicates the condition may be life-threatening or has the potential to cause permanent injury.";
  dcterms:description "Indicates the condition may be life-threatening or has the potential to cause permanent injury.".

cs:ObservationValue\#L rdfs:subClassOf cs:ObservationValue\#%5fSeverityObservation;
  rdfs:label "Low";
  dc:title "Low";
  rdfs:comment "Indicates the condition may result in some adverse consequences but is unlikely to substantially affect the situation of the subject.";
  dcterms:description "Indicates the condition may result in some adverse consequences but is unlikely to substantially affect the situation of the subject.".

cs:ObservationValue\#M rdfs:subClassOf cs:ObservationValue\#%5fSeverityObservation;
  rdfs:label "Moderate";
  dc:title "Moderate";
  rdfs:comment "Indicates the condition may result in noticable adverse adverse consequences but is unlikely to be life-threatening or cause permanent injury.";
  dcterms:description "Indicates the condition may result in noticable adverse adverse consequences but is unlikely to be life-threatening or cause permanent injury.".

cs:ObservationValue\#%5fSubjectBodyPosition rdfs:subClassOf cs:ObservationValue;
  rdfs:label "_SubjectBodyPosition";
  dc:title "_SubjectBodyPosition";
  rdfs:comment "Contains codes for defining the observed, physical position of a subject, such as during an observation, assessment, collection of a specimen, etc.  ECG waveforms and vital signs, such as blood pressure, are two examples where a general, observed position typically needs to be noted.";
  dcterms:description "Contains codes for defining the observed, physical position of a subject, such as during an observation, assessment, collection of a specimen, etc.  ECG waveforms and vital signs, such as blood pressure, are two examples where a general, observed position typically needs to be noted.".

cs:ObservationValue\#LLD rdfs:subClassOf cs:ObservationValue\#%5fSubjectBodyPosition;
  rdfs:label "left lateral decubitus";
  dc:title "left lateral decubitus";
  rdfs:comment "Lying on the left side.";
  dcterms:description "Lying on the left side.".

cs:ObservationValue\#PRN rdfs:subClassOf cs:ObservationValue\#%5fSubjectBodyPosition;
  rdfs:label "prone";
  dc:title "prone";
  rdfs:comment "Lying with the front or ventral surface downward; lying face down.";
  dcterms:description "Lying with the front or ventral surface downward; lying face down.".

cs:ObservationValue\#RLD rdfs:subClassOf cs:ObservationValue\#%5fSubjectBodyPosition;
  rdfs:label "right lateral decubitus";
  dc:title "right lateral decubitus";
  rdfs:comment "Lying on the right side.";
  dcterms:description "Lying on the right side.".

cs:ObservationValue\#SFWL rdfs:subClassOf cs:ObservationValue\#%5fSubjectBodyPosition;
  rdfs:label "Semi-Fowler's";
  dc:title "Semi-Fowler's";
  rdfs:comment "A semi-sitting position in bed with the head of the bed elevated approximately 45 degrees.";
  dcterms:description "A semi-sitting position in bed with the head of the bed elevated approximately 45 degrees.".

cs:ObservationValue\#SIT rdfs:subClassOf cs:ObservationValue\#%5fSubjectBodyPosition;
  rdfs:label "sitting";
  dc:title "sitting";
  rdfs:comment "Resting the body on the buttocks, typically with upper torso erect or semi erect.";
  dcterms:description "Resting the body on the buttocks, typically with upper torso erect or semi erect.".

cs:ObservationValue\#STN rdfs:subClassOf cs:ObservationValue\#%5fSubjectBodyPosition;
  rdfs:label "standing";
  dc:title "standing";
  rdfs:comment "To be stationary, upright, vertical, on one's legs.";
  dcterms:description "To be stationary, upright, vertical, on one's legs.".

cs:ObservationValue\#SUP rdfs:subClassOf cs:ObservationValue\#%5fSubjectBodyPosition;
  rdfs:label "supine";
  dc:title "supine";
  rdfs:comment "supine";
  dcterms:description "supine".

cs:ObservationValue\#RTRD rdfs:subClassOf cs:ObservationValue\#SUP;
  rdfs:label "reverse trendelenburg";
  dc:title "reverse trendelenburg";
  rdfs:comment "Lying on the back, on an inclined plane, typically about 30-45 degrees with head raised and feet lowered.";
  dcterms:description "Lying on the back, on an inclined plane, typically about 30-45 degrees with head raised and feet lowered.".

cs:ObservationValue\#TRD rdfs:subClassOf cs:ObservationValue\#SUP;
  rdfs:label "trendelenburg";
  dc:title "trendelenburg";
  rdfs:comment "Lying on the back, on an inclined plane, typically about 30-45 degrees, with  head lowered and feet raised.";
  dcterms:description "Lying on the back, on an inclined plane, typically about 30-45 degrees, with  head lowered and feet raised.".

cs:ObservationValue\#%5fVerificationOutcomeValue rdfs:subClassOf cs:ObservationValue;
  rdfs:label "verification outcome";
  dc:title "verification outcome";
  rdfs:comment "Values for observations of verification act results\r\n\n                        \n                           Examples: Verified, not verified, verified with warning.";
  dcterms:description "Values for observations of verification act results\r\n\n                        \n                           Examples: Verified, not verified, verified with warning.".

cs:ObservationValue\#ACT rdfs:subClassOf cs:ObservationValue\#%5fVerificationOutcomeValue;
  rdfs:label "active coverage";
  dc:title "active coverage";
  rdfs:comment "Definition: Coverage is in effect for healthcare service(s) and/or product(s).";
  dcterms:description "Definition: Coverage is in effect for healthcare service(s) and/or product(s).".

cs:ObservationValue\#ACTPEND rdfs:subClassOf cs:ObservationValue\#%5fVerificationOutcomeValue;
  rdfs:label "active - pending investigation";
  dc:title "active - pending investigation";
  rdfs:comment "Definition: Coverage is in effect for healthcare service(s) and/or product(s) - Pending Investigation";
  dcterms:description "Definition: Coverage is in effect for healthcare service(s) and/or product(s) - Pending Investigation".

cs:ObservationValue\#ELG rdfs:subClassOf cs:ObservationValue\#%5fVerificationOutcomeValue;
  rdfs:label "eligible";
  dc:title "eligible";
  rdfs:comment "Definition: Coverage is in effect for healthcare service(s) and/or product(s).";
  dcterms:description "Definition: Coverage is in effect for healthcare service(s) and/or product(s).".

cs:ObservationValue\#INACT rdfs:subClassOf cs:ObservationValue\#%5fVerificationOutcomeValue;
  rdfs:label "inactive";
  dc:title "inactive";
  rdfs:comment "Definition: Coverage is not in effect for healthcare service(s) and/or product(s).";
  dcterms:description "Definition: Coverage is not in effect for healthcare service(s) and/or product(s).".

cs:ObservationValue\#INPNDINV rdfs:subClassOf cs:ObservationValue\#%5fVerificationOutcomeValue;
  rdfs:label "inactive - pending investigation";
  dc:title "inactive - pending investigation";
  rdfs:comment "Definition: Coverage is not in effect for healthcare service(s) and/or product(s) - Pending Investigation.";
  dcterms:description "Definition: Coverage is not in effect for healthcare service(s) and/or product(s) - Pending Investigation.".

cs:ObservationValue\#INPNDUPD rdfs:subClassOf cs:ObservationValue\#%5fVerificationOutcomeValue;
  rdfs:label "inactive - pending eligibility update";
  dc:title "inactive - pending eligibility update";
  rdfs:comment "Definition: Coverage is not in effect for healthcare service(s) and/or product(s) - Pending Eligibility Update.";
  dcterms:description "Definition: Coverage is not in effect for healthcare service(s) and/or product(s) - Pending Eligibility Update.".

cs:ObservationValue\#NELG rdfs:subClassOf cs:ObservationValue\#%5fVerificationOutcomeValue;
  rdfs:label "not eligible";
  dc:title "not eligible";
  rdfs:comment "Definition: Coverage is not in effect for healthcare service(s) and/or product(s). May optionally include reasons for the ineligibility.";
  dcterms:description "Definition: Coverage is not in effect for healthcare service(s) and/or product(s). May optionally include reasons for the ineligibility.".

cs:ObservationValue\#%5fAnnotationValue rdfs:subClassOf cs:ObservationValue;
  rdfs:label "AnnotationValue";
  dc:title "AnnotationValue";
  rdfs:comment "AnnotationValue";
  dcterms:description "AnnotationValue".

cs:ObservationValue\#%5fCommonClinicalObservationValue rdfs:subClassOf cs:ObservationValue;
  rdfs:label "common clinical observation";
  dc:title "common clinical observation";
  rdfs:comment "Description:Used in a patient care message to value simple clinical (non-lab) observations.";
  dcterms:description "Description:Used in a patient care message to value simple clinical (non-lab) observations.".

cs:ObservationValue\#%5fIndividualCaseSafetyReportValueDomains rdfs:subClassOf cs:ObservationValue;
  rdfs:label "Individual Case Safety Report Value Domains";
  dc:title "Individual Case Safety Report Value Domains";
  rdfs:comment "This domain is established as a parent to a variety of value domains being defined to support the communication of Individual Case Safety Reports to regulatory bodies. Arguably, this aggregation is not taxonomically pure, but the grouping will facilitate the management of these domains.";
  dcterms:description "This domain is established as a parent to a variety of value domains being defined to support the communication of Individual Case Safety Reports to regulatory bodies. Arguably, this aggregation is not taxonomically pure, but the grouping will facilitate the management of these domains.".

cs:ObservationValue\#%5fIndicationValue rdfs:subClassOf cs:ObservationValue;
  rdfs:label "IndicationValue";
  dc:title "IndicationValue";
  rdfs:comment "Indicates the specific observation result which is the reason for the action (prescription, lab test, etc.). E.g. Headache, Ear infection, planned diagnostic image (requiring contrast agent), etc.";
  dcterms:description "Indicates the specific observation result which is the reason for the action (prescription, lab test, etc.). E.g. Headache, Ear infection, planned diagnostic image (requiring contrast agent), etc.".

# - vs:v3-ParticipationFunction ------------------------------------------------

vs:v3-ParticipationFunction a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ParticipationFunction";
  dc:title "v3 Code System ParticipationFunction";
  rdfs:comment " This code is used to specify the exact function an actor had in a service in all necessary detail. This domain may include local extensions (CWE).";
  dcterms:description " This code is used to specify the exact function an actor had in a service in all necessary detail. This domain may include local extensions (CWE).";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ParticipationFunction.

cs:ParticipationFunction.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ParticipationFunction";
  dc:title "v3 Code System ParticipationFunction";
  rdfs:comment " This code is used to specify the exact function an actor had in a service in all necessary detail. This domain may include local extensions (CWE).";
  dcterms:description " This code is used to specify the exact function an actor had in a service in all necessary detail. This domain may include local extensions (CWE).";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ParticipationFunction a fhir:Concept.

cs:ParticipationFunction\#%5fAuthorizedParticipationFunction rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "AuthorizedParticipationFunction";
  dc:title "AuthorizedParticipationFunction";
  rdfs:comment "This code is used to specify the exact function an actor is authorized to have in a service in all necessary detail.";
  dcterms:description "This code is used to specify the exact function an actor is authorized to have in a service in all necessary detail.".

cs:ParticipationFunction\#%5fAuthorizedReceiverParticipationFunction rdfs:subClassOf cs:ParticipationFunction\#%5fAuthorizedParticipationFunction;
  rdfs:label "AuthorizedReceiverParticipationFunction";
  dc:title "AuthorizedReceiverParticipationFunction";
  rdfs:comment "This code is used to specify the exact function an actor is authorized to have as a receiver of information that is the subject of a consent directive or consent override.";
  dcterms:description "This code is used to specify the exact function an actor is authorized to have as a receiver of information that is the subject of a consent directive or consent override.".

cs:ParticipationFunction\#AUCG rdfs:subClassOf cs:ParticipationFunction\#%5fAuthorizedReceiverParticipationFunction;
  rdfs:label "caregiver information receiver";
  dc:title "caregiver information receiver";
  rdfs:comment "Description:Caregiver authorized to receive patient health information.";
  dcterms:description "Description:Caregiver authorized to receive patient health information.".

cs:ParticipationFunction\#AULR rdfs:subClassOf cs:ParticipationFunction\#%5fAuthorizedReceiverParticipationFunction;
  rdfs:label "legitimate relationship information receiver";
  dc:title "legitimate relationship information receiver";
  rdfs:comment "Description:Provider with legitimate relationship authorized to receive patient health information.";
  dcterms:description "Description:Provider with legitimate relationship authorized to receive patient health information.".

cs:ParticipationFunction\#AUTM rdfs:subClassOf cs:ParticipationFunction\#%5fAuthorizedReceiverParticipationFunction;
  rdfs:label "care team information receiver";
  dc:title "care team information receiver";
  rdfs:comment "Description:Member of care team authorized to receive patient health information.";
  dcterms:description "Description:Member of care team authorized to receive patient health information.".

cs:ParticipationFunction\#AUWA rdfs:subClassOf cs:ParticipationFunction\#%5fAuthorizedReceiverParticipationFunction;
  rdfs:label "work area information receiver";
  dc:title "work area information receiver";
  rdfs:comment "Description:Entities within specified work area authorized to receive patient health information.";
  dcterms:description "Description:Entities within specified work area authorized to receive patient health information.".

cs:ParticipationFunction\#%5fConsenterParticipationFunction rdfs:subClassOf cs:ParticipationFunction\#%5fAuthorizedParticipationFunction;
  rdfs:label "ConsenterParticipationFunction";
  dc:title "ConsenterParticipationFunction";
  rdfs:comment "This code is used to specify the exact function an actor is authorized to have in authoring a consent directive.";
  dcterms:description "This code is used to specify the exact function an actor is authorized to have in authoring a consent directive.".

cs:ParticipationFunction\#GRDCON rdfs:subClassOf cs:ParticipationFunction\#%5fConsenterParticipationFunction;
  rdfs:label "legal guardian consent author";
  dc:title "legal guardian consent author";
  rdfs:comment "Description:Legal guardian of the subject of consent authorized to author a consent directive for the subject of consent.";
  dcterms:description "Description:Legal guardian of the subject of consent authorized to author a consent directive for the subject of consent.".

cs:ParticipationFunction\#POACON rdfs:subClassOf cs:ParticipationFunction\#%5fConsenterParticipationFunction;
  rdfs:label "healthcare power of attorney consent author";
  dc:title "healthcare power of attorney consent author";
  rdfs:comment "Description:Person authorized with healthcare power of attorney to author a  consent directive for the subject of consent.";
  dcterms:description "Description:Person authorized with healthcare power of attorney to author a  consent directive for the subject of consent.".

cs:ParticipationFunction\#PRCON rdfs:subClassOf cs:ParticipationFunction\#%5fConsenterParticipationFunction;
  rdfs:label "personal representative consent author";
  dc:title "personal representative consent author";
  rdfs:comment "Description:Personal representative of the subject of consent authorized to author a consent directive for the subject of consent.";
  dcterms:description "Description:Personal representative of the subject of consent authorized to author a consent directive for the subject of consent.".

cs:ParticipationFunction\#PROMSK rdfs:subClassOf cs:ParticipationFunction\#%5fConsenterParticipationFunction;
  rdfs:label "authorized provider masking author";
  dc:title "authorized provider masking author";
  rdfs:comment "Definition:Provider authorized to mask information to protect the patient, a third party, or to ensure that the provider has consulted with the patient prior to release of this information.";
  dcterms:description "Definition:Provider authorized to mask information to protect the patient, a third party, or to ensure that the provider has consulted with the patient prior to release of this information.".

cs:ParticipationFunction\#SUBCON rdfs:subClassOf cs:ParticipationFunction\#%5fConsenterParticipationFunction;
  rdfs:label "subject of consent author";
  dc:title "subject of consent author";
  rdfs:comment "Description:Subject of consent authorized to author a consent directive.";
  dcterms:description "Description:Subject of consent authorized to author a consent directive.".

cs:ParticipationFunction\#%5fOverriderParticipationFunction rdfs:subClassOf cs:ParticipationFunction\#%5fAuthorizedParticipationFunction;
  rdfs:label "OverriderParticipationFunction";
  dc:title "OverriderParticipationFunction";
  rdfs:comment "This code is used to specify the exact function an actor is authorized to have in authoring a consent override.";
  dcterms:description "This code is used to specify the exact function an actor is authorized to have in authoring a consent override.".

cs:ParticipationFunction\#AUCOV rdfs:subClassOf cs:ParticipationFunction\#%5fOverriderParticipationFunction;
  rdfs:label "consent overrider";
  dc:title "consent overrider";
  rdfs:comment "Description:Entity authorized to override a consent directive.";
  dcterms:description "Description:Entity authorized to override a consent directive.".

cs:ParticipationFunction\#AUEMROV rdfs:subClassOf cs:ParticipationFunction\#%5fOverriderParticipationFunction;
  rdfs:label "emergency overrider";
  dc:title "emergency overrider";
  rdfs:comment "Description:Entity  authorized to override a consent directive or privacy policy in an emergency.";
  dcterms:description "Description:Entity  authorized to override a consent directive or privacy policy in an emergency.".

cs:ParticipationFunction\#%5fCoverageParticipationFunction rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "CoverageParticipationFunction";
  dc:title "CoverageParticipationFunction";
  rdfs:comment "Definition: Set of codes indicating the manner in which sponsors, underwriters, and payers participate in a policy or program.";
  dcterms:description "Definition: Set of codes indicating the manner in which sponsors, underwriters, and payers participate in a policy or program.".

cs:ParticipationFunction\#%5fPayorParticipationFunction rdfs:subClassOf cs:ParticipationFunction\#%5fCoverageParticipationFunction;
  rdfs:label "PayorParticipationFunction";
  dc:title "PayorParticipationFunction";
  rdfs:comment "Definition: Set of codes indicating the manner in which payors participate in a policy or program.</";
  dcterms:description "Definition: Set of codes indicating the manner in which payors participate in a policy or program.</".

cs:ParticipationFunction\#CLMADJ rdfs:subClassOf cs:ParticipationFunction\#%5fPayorParticipationFunction;
  rdfs:label "claims adjudication";
  dc:title "claims adjudication";
  rdfs:comment "Definition: Manages all operations required to adjudicate fee for service claims or managed care encounter reports.";
  dcterms:description "Definition: Manages all operations required to adjudicate fee for service claims or managed care encounter reports.".

cs:ParticipationFunction\#ENROLL rdfs:subClassOf cs:ParticipationFunction\#%5fPayorParticipationFunction;
  rdfs:label "enrollment broker";
  dc:title "enrollment broker";
  rdfs:comment "Definition: Managing the enrollment of covered parties.";
  dcterms:description "Definition: Managing the enrollment of covered parties.".

cs:ParticipationFunction\#FFSMGT rdfs:subClassOf cs:ParticipationFunction\#%5fPayorParticipationFunction;
  rdfs:label "ffs management";
  dc:title "ffs management";
  rdfs:comment "Definition: Managing all operations required to administer a fee for service or indemnity health plan including enrolling covered parties and providing customer service, provider contracting, claims payment, care management and utilization review.";
  dcterms:description "Definition: Managing all operations required to administer a fee for service or indemnity health plan including enrolling covered parties and providing customer service, provider contracting, claims payment, care management and utilization review.".

cs:ParticipationFunction\#MCMGT rdfs:subClassOf cs:ParticipationFunction\#%5fPayorParticipationFunction;
  rdfs:label "managed care management";
  dc:title "managed care management";
  rdfs:comment "Definition: Managing all operations required to administer a managed care plan including enrolling covered parties and providing customer service,, provider contracting, claims payment, care management and utilization review.";
  dcterms:description "Definition: Managing all operations required to administer a managed care plan including enrolling covered parties and providing customer service,, provider contracting, claims payment, care management and utilization review.".

cs:ParticipationFunction\#PROVMGT rdfs:subClassOf cs:ParticipationFunction\#%5fPayorParticipationFunction;
  rdfs:label "provider management";
  dc:title "provider management";
  rdfs:comment "Definition: Managing provider contracting, provider services, credentialing, profiling, performance measures, and ensuring network adequacy.";
  dcterms:description "Definition: Managing provider contracting, provider services, credentialing, profiling, performance measures, and ensuring network adequacy.".

cs:ParticipationFunction\#UMGT rdfs:subClassOf cs:ParticipationFunction\#%5fPayorParticipationFunction;
  rdfs:label "utilization management";
  dc:title "utilization management";
  rdfs:comment "Definition: Managing utilization of services by ensuring that providers adhere to, e.g., payeraTMs clinical protocols for medical appropriateness and standards of medical necessity.  May include management of authorizations for services and referrals.";
  dcterms:description "Definition: Managing utilization of services by ensuring that providers adhere to, e.g., payeraTMs clinical protocols for medical appropriateness and standards of medical necessity.  May include management of authorizations for services and referrals.".

cs:ParticipationFunction\#%5fSponsorParticipationFunction rdfs:subClassOf cs:ParticipationFunction\#%5fCoverageParticipationFunction;
  rdfs:label "SponsorParticipationFunction";
  dc:title "SponsorParticipationFunction";
  rdfs:comment "Definition: Set of codes indicating the manner in which sponsors participate in a policy or program. NOTE: use only when the Sponsor is not further specified with a SponsorRoleType as being either a fully insured sponsor or a self insured sponsor.";
  dcterms:description "Definition: Set of codes indicating the manner in which sponsors participate in a policy or program. NOTE: use only when the Sponsor is not further specified with a SponsorRoleType as being either a fully insured sponsor or a self insured sponsor.".

cs:ParticipationFunction\#FULINRD rdfs:subClassOf cs:ParticipationFunction\#%5fSponsorParticipationFunction;
  rdfs:label "fully insured";
  dc:title "fully insured";
  rdfs:comment "Definition: Responsibility taken by a sponsor to contract with one or more underwriters for the assumption of full responsibility for the risk and administration of a policy or program.";
  dcterms:description "Definition: Responsibility taken by a sponsor to contract with one or more underwriters for the assumption of full responsibility for the risk and administration of a policy or program.".

cs:ParticipationFunction\#SELFINRD rdfs:subClassOf cs:ParticipationFunction\#%5fSponsorParticipationFunction;
  rdfs:label "self insured";
  dc:title "self insured";
  rdfs:comment "Definition: Responsibility taken by a sponsor to organize the underwriting of risk and administration of a policy or program.";
  dcterms:description "Definition: Responsibility taken by a sponsor to organize the underwriting of risk and administration of a policy or program.".

cs:ParticipationFunction\#%5fUnderwriterParticipationFunction rdfs:subClassOf cs:ParticipationFunction\#%5fCoverageParticipationFunction;
  rdfs:label "UnderwriterParticipationFunction";
  dc:title "UnderwriterParticipationFunction";
  rdfs:comment "Definition: Set of codes indicating the manner in which underwriters participate in a policy or program.";
  dcterms:description "Definition: Set of codes indicating the manner in which underwriters participate in a policy or program.".

cs:ParticipationFunction\#PAYORCNTR rdfs:subClassOf cs:ParticipationFunction\#%5fUnderwriterParticipationFunction;
  rdfs:label "payor contracting";
  dc:title "payor contracting";
  rdfs:comment "Definition: Contracting for the provision and administration of health services to payors while retaining the risk for coverage.  Contracting may be for all provision and administration; or for provision of certain types of services; for provision of services by region; and by types of administration, e.g., claims adjudication, enrollment, provider management, and utilization management.  Typically done by underwriters for sponsors who need coverage provided to covered parties in multiple regions.  The underwriter may act as the payor in some, but not all of the regions in which coverage is provided.";
  dcterms:description "Definition: Contracting for the provision and administration of health services to payors while retaining the risk for coverage.  Contracting may be for all provision and administration; or for provision of certain types of services; for provision of services by region; and by types of administration, e.g., claims adjudication, enrollment, provider management, and utilization management.  Typically done by underwriters for sponsors who need coverage provided to covered parties in multiple regions.  The underwriter may act as the payor in some, but not all of the regions in which coverage is provided.".

cs:ParticipationFunction\#REINS rdfs:subClassOf cs:ParticipationFunction\#%5fUnderwriterParticipationFunction;
  rdfs:label "reinsures";
  dc:title "reinsures";
  rdfs:comment "Definition: Underwriting reinsurance for another underwriter for the policy or program.";
  dcterms:description "Definition: Underwriting reinsurance for another underwriter for the policy or program.".

cs:ParticipationFunction\#RETROCES rdfs:subClassOf cs:ParticipationFunction\#%5fUnderwriterParticipationFunction;
  rdfs:label "retrocessionaires";
  dc:title "retrocessionaires";
  rdfs:comment "Definition: Underwriting reinsurance for another reinsurer.";
  dcterms:description "Definition: Underwriting reinsurance for another reinsurer.".

cs:ParticipationFunction\#SUBCTRT rdfs:subClassOf cs:ParticipationFunction\#%5fUnderwriterParticipationFunction;
  rdfs:label "subcontracting risk";
  dc:title "subcontracting risk";
  rdfs:comment "Definition: Delegating risk for a policy or program to one or more subcontracting underwriters, e.g., a major health insurer may delegate risk for provision of coverage under a national health plan to other underwriters by region .";
  dcterms:description "Definition: Delegating risk for a policy or program to one or more subcontracting underwriters, e.g., a major health insurer may delegate risk for provision of coverage under a national health plan to other underwriters by region .".

cs:ParticipationFunction\#UNDERWRTNG rdfs:subClassOf cs:ParticipationFunction\#%5fUnderwriterParticipationFunction;
  rdfs:label "underwriting";
  dc:title "underwriting";
  rdfs:comment "Definition: Provision of underwriting analysis for another underwriter without assumption of risk.";
  dcterms:description "Definition: Provision of underwriting analysis for another underwriter without assumption of risk.".

cs:ParticipationFunction\#ADMPHYS rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "admitting physician";
  dc:title "admitting physician";
  rdfs:comment "A physician who admitted a patient to a hospital or other care unit that is the context of this service.";
  dcterms:description "A physician who admitted a patient to a hospital or other care unit that is the context of this service.".

cs:ParticipationFunction\#ANEST rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "anesthesist";
  dc:title "anesthesist";
  rdfs:comment "In a typical anesthesia setting an anesthesiologist or anesthesia resident in charge of the anesthesia and life support, but only a witness to the surgical procedure itself.  To clarify responsibilities anesthesia should always be represented as a separate service related to the surgery.";
  dcterms:description "In a typical anesthesia setting an anesthesiologist or anesthesia resident in charge of the anesthesia and life support, but only a witness to the surgical procedure itself.  To clarify responsibilities anesthesia should always be represented as a separate service related to the surgery.".

cs:ParticipationFunction\#ANRS rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "anesthesia nurse";
  dc:title "anesthesia nurse";
  rdfs:comment "In a typical anesthesia setting the nurse principally assisting the anesthesiologist during the critical periods.";
  dcterms:description "In a typical anesthesia setting the nurse principally assisting the anesthesiologist during the critical periods.".

cs:ParticipationFunction\#ASSEMBLER rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "assembly software";
  dc:title "assembly software";
  rdfs:comment "A device that operates independently of an author on custodian's algorithms for data extraction of existing information for purpose of generating a new artifact.\n                           UsageConstraint: ASSEMBLER ParticipationFunction should be used with DEV (device) ParticipationType.";
  dcterms:description "A device that operates independently of an author on custodian's algorithms for data extraction of existing information for purpose of generating a new artifact.\n                           UsageConstraint: ASSEMBLER ParticipationFunction should be used with DEV (device) ParticipationType.".

cs:ParticipationFunction\#ATTPHYS rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "attending physician";
  dc:title "attending physician";
  rdfs:comment "A physician who is primarily responsible for a patient during the hospitalization, which is the context of the service.";
  dcterms:description "A physician who is primarily responsible for a patient during the hospitalization, which is the context of the service.".

cs:ParticipationFunction\#COMPOSER rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "composer software";
  dc:title "composer software";
  rdfs:comment "A device used by an author to record new information, which may also be used by the author to select existing information for aggregation with newly recorded information for the purpose of generating a new artifact.\n                           UsageConstraint: COMPOSER ParticipationFunction should be used with DEV (device) ParticipationType.\r\n\n                        \n                           Usage Note: This code will enable implementers to more specifically represent the manner in which a Device participated in and facilitated the generation of a CDA Clinical Document or a CDA Entry by the responsible Author, which is comprised of the Author's newly entered content, and may include the pre-existing content selected by the Author, for the purpose of establishing the provenance and accountability for these acts.";
  dcterms:description "A device used by an author to record new information, which may also be used by the author to select existing information for aggregation with newly recorded information for the purpose of generating a new artifact.\n                           UsageConstraint: COMPOSER ParticipationFunction should be used with DEV (device) ParticipationType.\r\n\n                        \n                           Usage Note: This code will enable implementers to more specifically represent the manner in which a Device participated in and facilitated the generation of a CDA Clinical Document or a CDA Entry by the responsible Author, which is comprised of the Author's newly entered content, and may include the pre-existing content selected by the Author, for the purpose of establishing the provenance and accountability for these acts.".

cs:ParticipationFunction\#DISPHYS rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "discharging physician";
  dc:title "discharging physician";
  rdfs:comment "A physician who discharged a patient from a hospital or other care unit that is the context of this service.";
  dcterms:description "A physician who discharged a patient from a hospital or other care unit that is the context of this service.".

cs:ParticipationFunction\#FASST rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "first assistant surgeon";
  dc:title "first assistant surgeon";
  rdfs:comment "In a typical surgery setting the assistant facing the primary surgeon.  The first assistant performs parts of the operation and assists in others (e.g., incision, approach, electrocoutering, ligatures, sutures).";
  dcterms:description "In a typical surgery setting the assistant facing the primary surgeon.  The first assistant performs parts of the operation and assists in others (e.g., incision, approach, electrocoutering, ligatures, sutures).".

cs:ParticipationFunction\#MDWF rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "midwife";
  dc:title "midwife";
  rdfs:comment "A person (usually female) helping a woman deliver a baby. Responsibilities vary locally, ranging from a mere optional assistant to a full required participant, responsible for (normal) births and pre- and post-natal care for both mother and baby.";
  dcterms:description "A person (usually female) helping a woman deliver a baby. Responsibilities vary locally, ranging from a mere optional assistant to a full required participant, responsible for (normal) births and pre- and post-natal care for both mother and baby.".

cs:ParticipationFunction\#NASST rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "nurse assistant";
  dc:title "nurse assistant";
  rdfs:comment "In a typical surgery setting the non-sterile nurse handles material supply from the stock, forwards specimen to pathology, and helps with other non-sterile tasks (e.g., phone calls, etc.).";
  dcterms:description "In a typical surgery setting the non-sterile nurse handles material supply from the stock, forwards specimen to pathology, and helps with other non-sterile tasks (e.g., phone calls, etc.).".

cs:ParticipationFunction\#PCP rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "primary care physician";
  dc:title "primary care physician";
  rdfs:comment "The healthcare provider that holds primary responsibility for the overall care of a patient.";
  dcterms:description "The healthcare provider that holds primary responsibility for the overall care of a patient.".

cs:ParticipationFunction\#PRISURG rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "primary surgeon";
  dc:title "primary surgeon";
  rdfs:comment "In a typical surgery setting the primary performing surgeon.";
  dcterms:description "In a typical surgery setting the primary performing surgeon.".

cs:ParticipationFunction\#REVIEWER rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "reviewer";
  dc:title "reviewer";
  rdfs:comment "A verifier who is accountable for reviewing and asserting that the verification of an Act complies with jurisdictional or organizational policy.\r\n\n                        \n                           UsageConstraint: UsageConstraint:  Specifies the exact function that an actor is authorized to have as a verifier of an Act.  Connotes that a specialized verifier asserts compliance for veracity of the review per jurisdictional or organizational policy.  E.g., The Provider who takes responsibility for authenticity of a record submitted to a payer.\r\n\n                        REVIEW ParticipationFunction should be used with VFR (verifier)";
  dcterms:description "A verifier who is accountable for reviewing and asserting that the verification of an Act complies with jurisdictional or organizational policy.\r\n\n                        \n                           UsageConstraint: UsageConstraint:  Specifies the exact function that an actor is authorized to have as a verifier of an Act.  Connotes that a specialized verifier asserts compliance for veracity of the review per jurisdictional or organizational policy.  E.g., The Provider who takes responsibility for authenticity of a record submitted to a payer.\r\n\n                        REVIEW ParticipationFunction should be used with VFR (verifier)".

cs:ParticipationFunction\#RNDPHYS rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "rounding physician";
  dc:title "rounding physician";
  rdfs:comment "A physician who made rounds on a patient in a hospital or other care center.";
  dcterms:description "A physician who made rounds on a patient in a hospital or other care center.".

cs:ParticipationFunction\#SASST rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "second assistant surgeon";
  dc:title "second assistant surgeon";
  rdfs:comment "In a typical surgery setting the assistant who primarily holds the hooks.";
  dcterms:description "In a typical surgery setting the assistant who primarily holds the hooks.".

cs:ParticipationFunction\#SNRS rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "scrub nurse";
  dc:title "scrub nurse";
  rdfs:comment "In a typical surgery setting the nurse in charge of the instrumentation.";
  dcterms:description "In a typical surgery setting the nurse in charge of the instrumentation.".

cs:ParticipationFunction\#TASST rdfs:subClassOf cs:ParticipationFunction;
  rdfs:label "third assistant";
  dc:title "third assistant";
  rdfs:comment "In a typical surgery setting there is rarely a third assistant (e.g., in some Hip operations the third assistant postures the affected leg).";
  dcterms:description "In a typical surgery setting there is rarely a third assistant (e.g., in some Hip operations the third assistant postures the affected leg).".

# - vs:v3-ParticipationMode ----------------------------------------------------

vs:v3-ParticipationMode a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ParticipationMode";
  dc:title "v3 Code System ParticipationMode";
  rdfs:comment " A set of codes specifying the modality by which the Entity playing the Role is participating in the Act.  Examples:\r\nPhysically present, over the telephone, written communication.  Rationale:\r\nParticularly for author (originator) participants this is used to specify whether the information represented by the act was initially provided verbally, (hand-)written, or electronically.  Open Issue:\r\nThere needs to be a reexamination of the hierarchies as there seems to be some muddling between ELECTRONIC and other concepts that involve electronic communication that are in other hierarchies.";
  dcterms:description " A set of codes specifying the modality by which the Entity playing the Role is participating in the Act.  Examples:\r\nPhysically present, over the telephone, written communication.  Rationale:\r\nParticularly for author (originator) participants this is used to specify whether the information represented by the act was initially provided verbally, (hand-)written, or electronically.  Open Issue:\r\nThere needs to be a reexamination of the hierarchies as there seems to be some muddling between ELECTRONIC and other concepts that involve electronic communication that are in other hierarchies.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ParticipationMode.

cs:ParticipationMode.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ParticipationMode";
  dc:title "v3 Code System ParticipationMode";
  rdfs:comment " A set of codes specifying the modality by which the Entity playing the Role is participating in the Act.  Examples:\r\nPhysically present, over the telephone, written communication.  Rationale:\r\nParticularly for author (originator) participants this is used to specify whether the information represented by the act was initially provided verbally, (hand-)written, or electronically.  Open Issue:\r\nThere needs to be a reexamination of the hierarchies as there seems to be some muddling between ELECTRONIC and other concepts that involve electronic communication that are in other hierarchies.";
  dcterms:description " A set of codes specifying the modality by which the Entity playing the Role is participating in the Act.  Examples:\r\nPhysically present, over the telephone, written communication.  Rationale:\r\nParticularly for author (originator) participants this is used to specify whether the information represented by the act was initially provided verbally, (hand-)written, or electronically.  Open Issue:\r\nThere needs to be a reexamination of the hierarchies as there seems to be some muddling between ELECTRONIC and other concepts that involve electronic communication that are in other hierarchies.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ParticipationMode a fhir:Concept.

cs:ParticipationMode\#ELECTRONIC rdfs:subClassOf cs:ParticipationMode;
  rdfs:label "electronic data";
  dc:title "electronic data";
  rdfs:comment "Participation by non-human-languaged based electronic signal";
  dcterms:description "Participation by non-human-languaged based electronic signal".

cs:ParticipationMode\#PHYSICAL rdfs:subClassOf cs:ParticipationMode;
  rdfs:label "physical presence";
  dc:title "physical presence";
  rdfs:comment "Participation by direct action where subject and actor are in the same location. (The participation involves more than communication.)";
  dcterms:description "Participation by direct action where subject and actor are in the same location. (The participation involves more than communication.)".

cs:ParticipationMode\#REMOTE rdfs:subClassOf cs:ParticipationMode;
  rdfs:label "remote presence";
  dc:title "remote presence";
  rdfs:comment "Participation by direct action where subject and actor are in separate locations, and the actions of the actor are transmitted by electronic or mechanical means. (The participation involves more than communication.)";
  dcterms:description "Participation by direct action where subject and actor are in separate locations, and the actions of the actor are transmitted by electronic or mechanical means. (The participation involves more than communication.)".

cs:ParticipationMode\#VERBAL rdfs:subClassOf cs:ParticipationMode;
  rdfs:label "verbal";
  dc:title "verbal";
  rdfs:comment "Participation by voice communication";
  dcterms:description "Participation by voice communication".

cs:ParticipationMode\#DICTATE rdfs:subClassOf cs:ParticipationMode\#VERBAL;
  rdfs:label "dictated";
  dc:title "dictated";
  rdfs:comment "Participation by pre-recorded voice.  Communication is limited to one direction (from the recorder to recipient).";
  dcterms:description "Participation by pre-recorded voice.  Communication is limited to one direction (from the recorder to recipient).".

cs:ParticipationMode\#FACE rdfs:subClassOf cs:ParticipationMode\#VERBAL;
  rdfs:label "face-to-face";
  dc:title "face-to-face";
  rdfs:comment "Participation by voice communication where parties speak to each other directly.";
  dcterms:description "Participation by voice communication where parties speak to each other directly.".

cs:ParticipationMode\#PHONE rdfs:subClassOf cs:ParticipationMode\#VERBAL;
  rdfs:label "telephone";
  dc:title "telephone";
  rdfs:comment "Participation by voice communication where the voices of the communicating parties are transported over an electronic medium";
  dcterms:description "Participation by voice communication where the voices of the communicating parties are transported over an electronic medium".

cs:ParticipationMode\#VIDEOCONF rdfs:subClassOf cs:ParticipationMode\#VERBAL;
  rdfs:label "videoconferencing";
  dc:title "videoconferencing";
  rdfs:comment "Participation by voice and visual communication where the voices and images of the communicating parties are transported over an electronic medium";
  dcterms:description "Participation by voice and visual communication where the voices and images of the communicating parties are transported over an electronic medium".

cs:ParticipationMode\#WRITTEN rdfs:subClassOf cs:ParticipationMode;
  rdfs:label "written";
  dc:title "written";
  rdfs:comment "Participation by human language recorded on a physical material";
  dcterms:description "Participation by human language recorded on a physical material".

cs:ParticipationMode\#FAXWRIT rdfs:subClassOf cs:ParticipationMode\#WRITTEN;
  rdfs:label "telefax";
  dc:title "telefax";
  rdfs:comment "Participation by text or diagrams printed on paper that have been transmitted over a fax device";
  dcterms:description "Participation by text or diagrams printed on paper that have been transmitted over a fax device".

cs:ParticipationMode\#HANDWRIT rdfs:subClassOf cs:ParticipationMode\#WRITTEN;
  rdfs:label "handwritten";
  dc:title "handwritten";
  rdfs:comment "Participation by text or diagrams printed on paper or other recording medium";
  dcterms:description "Participation by text or diagrams printed on paper or other recording medium".

cs:ParticipationMode\#MAILWRIT rdfs:subClassOf cs:ParticipationMode\#WRITTEN;
  rdfs:label "mail";
  dc:title "mail";
  rdfs:comment "Participation by text or diagrams printed on paper transmitted physically (e.g. by courier service, postal service).";
  dcterms:description "Participation by text or diagrams printed on paper transmitted physically (e.g. by courier service, postal service).".

cs:ParticipationMode\#ONLINEWRIT rdfs:subClassOf cs:ParticipationMode\#WRITTEN;
  rdfs:label "online written";
  dc:title "online written";
  rdfs:comment "Participation by text or diagrams submitted by computer network, e.g. online survey.";
  dcterms:description "Participation by text or diagrams submitted by computer network, e.g. online survey.".

cs:ParticipationMode\#EMAILWRIT rdfs:subClassOf cs:ParticipationMode\#ONLINEWRIT;
  rdfs:label "email";
  dc:title "email";
  rdfs:comment "Participation by text or diagrams transmitted over an electronic mail system.";
  dcterms:description "Participation by text or diagrams transmitted over an electronic mail system.".

cs:ParticipationMode\#TYPEWRIT rdfs:subClassOf cs:ParticipationMode\#WRITTEN;
  rdfs:label "typewritten";
  dc:title "typewritten";
  rdfs:comment "Participation by text or diagrams printed on paper or other recording medium where the recording was performed using a typewriter, typesetter, computer or similar mechanism.";
  dcterms:description "Participation by text or diagrams printed on paper or other recording medium where the recording was performed using a typewriter, typesetter, computer or similar mechanism.".

# - vs:v3-ParticipationSignature -----------------------------------------------

vs:v3-ParticipationSignature a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ParticipationSignature";
  dc:title "v3 Code System ParticipationSignature";
  rdfs:comment " A set of codes specifying whether and how the participant has attested his participation through a signature and or whether such a signature is needed.  Examples:\r\nA surgical Procedure act object (representing a procedure report) requires a signature of the performing and responsible surgeon, and possibly other participants. (See also: Participation.signatureText.)";
  dcterms:description " A set of codes specifying whether and how the participant has attested his participation through a signature and or whether such a signature is needed.  Examples:\r\nA surgical Procedure act object (representing a procedure report) requires a signature of the performing and responsible surgeon, and possibly other participants. (See also: Participation.signatureText.)";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ParticipationSignature.

cs:ParticipationSignature.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ParticipationSignature";
  dc:title "v3 Code System ParticipationSignature";
  rdfs:comment " A set of codes specifying whether and how the participant has attested his participation through a signature and or whether such a signature is needed.  Examples:\r\nA surgical Procedure act object (representing a procedure report) requires a signature of the performing and responsible surgeon, and possibly other participants. (See also: Participation.signatureText.)";
  dcterms:description " A set of codes specifying whether and how the participant has attested his participation through a signature and or whether such a signature is needed.  Examples:\r\nA surgical Procedure act object (representing a procedure report) requires a signature of the performing and responsible surgeon, and possibly other participants. (See also: Participation.signatureText.)";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ParticipationSignature a fhir:Concept.

cs:ParticipationSignature\#I rdfs:subClassOf cs:ParticipationSignature;
  rdfs:label "intended";
  dc:title "intended";
  rdfs:comment "The particpant intends to provide a signature.";
  dcterms:description "The particpant intends to provide a signature.".

cs:ParticipationSignature\#S rdfs:subClassOf cs:ParticipationSignature;
  rdfs:label "signed";
  dc:title "signed";
  rdfs:comment "Signature has been affixed, either written on file, or electronic (incl. digital) signature in Participation.signatureText.";
  dcterms:description "Signature has been affixed, either written on file, or electronic (incl. digital) signature in Participation.signatureText.".

cs:ParticipationSignature\#X rdfs:subClassOf cs:ParticipationSignature;
  rdfs:label "required";
  dc:title "required";
  rdfs:comment "A signature for the service is required of this actor.";
  dcterms:description "A signature for the service is required of this actor.".

# - vs:v3-ParticipationType ----------------------------------------------------

vs:v3-ParticipationType a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ParticipationType";
  dc:title "v3 Code System ParticipationType";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ParticipationType.

cs:ParticipationType.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ParticipationType";
  dc:title "v3 Code System ParticipationType";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ParticipationType a fhir:Concept.

cs:ParticipationType\#PART rdfs:subClassOf cs:ParticipationType;
  rdfs:label "Participation";
  dc:title "Participation";
  rdfs:comment "Indicates that the target of the participation is involved in some manner in the act, but does not qualify how.";
  dcterms:description "Indicates that the target of the participation is involved in some manner in the act, but does not qualify how.".

cs:ParticipationType\#%5fParticipationAncillary rdfs:subClassOf cs:ParticipationType\#PART;
  rdfs:label "ParticipationAncillary";
  dc:title "ParticipationAncillary";
  rdfs:comment "Participations related, but not primary to an act. The Referring, Admitting, and Discharging practitioners must be the same person as those authoring the ControlAct event for their respective trigger events.";
  dcterms:description "Participations related, but not primary to an act. The Referring, Admitting, and Discharging practitioners must be the same person as those authoring the ControlAct event for their respective trigger events.".

cs:ParticipationType\#ADM rdfs:subClassOf cs:ParticipationType\#%5fParticipationAncillary;
  rdfs:label "admitter";
  dc:title "admitter";
  rdfs:comment "The practitioner who is responsible for admitting a patient to a patient encounter.";
  dcterms:description "The practitioner who is responsible for admitting a patient to a patient encounter.".

cs:ParticipationType\#ATND rdfs:subClassOf cs:ParticipationType\#%5fParticipationAncillary;
  rdfs:label "attender";
  dc:title "attender";
  rdfs:comment "The practitioner that has responsibility for overseeing a patient's care during a patient encounter.";
  dcterms:description "The practitioner that has responsibility for overseeing a patient's care during a patient encounter.".

cs:ParticipationType\#CALLBCK rdfs:subClassOf cs:ParticipationType\#%5fParticipationAncillary;
  rdfs:label "callback contact";
  dc:title "callback contact";
  rdfs:comment "A person or organization who should be contacted for follow-up questions about the act in place of the author.";
  dcterms:description "A person or organization who should be contacted for follow-up questions about the act in place of the author.".

cs:ParticipationType\#CON rdfs:subClassOf cs:ParticipationType\#%5fParticipationAncillary;
  rdfs:label "consultant";
  dc:title "consultant";
  rdfs:comment "An advisor participating in the service by performing evaluations and making recommendations.";
  dcterms:description "An advisor participating in the service by performing evaluations and making recommendations.".

cs:ParticipationType\#DIS rdfs:subClassOf cs:ParticipationType\#%5fParticipationAncillary;
  rdfs:label "discharger";
  dc:title "discharger";
  rdfs:comment "The practitioner who is responsible for the discharge of a patient from a patient encounter.";
  dcterms:description "The practitioner who is responsible for the discharge of a patient from a patient encounter.".

cs:ParticipationType\#ESC rdfs:subClassOf cs:ParticipationType\#%5fParticipationAncillary;
  rdfs:label "escort";
  dc:title "escort";
  rdfs:comment "Only with Transportation services.  A person who escorts the patient.";
  dcterms:description "Only with Transportation services.  A person who escorts the patient.".

cs:ParticipationType\#REF rdfs:subClassOf cs:ParticipationType\#%5fParticipationAncillary;
  rdfs:label "referrer";
  dc:title "referrer";
  rdfs:comment "A person having referred the subject of the service to the performer (referring physician).  Typically, a referring physician will receive a report.";
  dcterms:description "A person having referred the subject of the service to the performer (referring physician).  Typically, a referring physician will receive a report.".

cs:ParticipationType\#%5fParticipationInformationGenerator rdfs:subClassOf cs:ParticipationType\#PART;
  rdfs:label "ParticipationInformationGenerator";
  dc:title "ParticipationInformationGenerator";
  rdfs:comment "Parties that may or should contribute or have contributed information to the Act. Such information includes information leading to the decision to perform the Act and how to perform the Act (e.g., consultant), information that the Act itself seeks to reveal (e.g., informant of clinical history), or information about what Act was performed (e.g., informant witness).";
  dcterms:description "Parties that may or should contribute or have contributed information to the Act. Such information includes information leading to the decision to perform the Act and how to perform the Act (e.g., consultant), information that the Act itself seeks to reveal (e.g., informant of clinical history), or information about what Act was performed (e.g., informant witness).".

cs:ParticipationType\#AUT rdfs:subClassOf cs:ParticipationType\#%5fParticipationInformationGenerator;
  rdfs:label "author (originator)";
  dc:title "author (originator)";
  rdfs:comment "Definition: A party that originates the Act and therefore has responsibility for the information given in the Act and ownership of this Act.\r\n\n                        \n                           Example: the report writer, the person writing the act definition, the guideline author, the placer of an order, the EKG cart (device) creating a report etc. Every Act should have an author. Authorship is regardless of mood always actual authorship. \r\n\n                        Examples of such policies might include:\r\n\n                        \n                           \n                              The author and anyone they explicitly delegate may update the report;\r\n\n                           \n                           \n                              All administrators within the same clinic may cancel and reschedule appointments created by other administrators within that clinic;\r\n\n                           \n                        \n                        A party that is neither an author nor a party who is extended authorship maintenance rights by policy, may only amend, reverse, override, replace, or follow up in other ways on this Act, whereby the Act remains intact and is linked to another Act authored by that other party.";
  dcterms:description "Definition: A party that originates the Act and therefore has responsibility for the information given in the Act and ownership of this Act.\r\n\n                        \n                           Example: the report writer, the person writing the act definition, the guideline author, the placer of an order, the EKG cart (device) creating a report etc. Every Act should have an author. Authorship is regardless of mood always actual authorship. \r\n\n                        Examples of such policies might include:\r\n\n                        \n                           \n                              The author and anyone they explicitly delegate may update the report;\r\n\n                           \n                           \n                              All administrators within the same clinic may cancel and reschedule appointments created by other administrators within that clinic;\r\n\n                           \n                        \n                        A party that is neither an author nor a party who is extended authorship maintenance rights by policy, may only amend, reverse, override, replace, or follow up in other ways on this Act, whereby the Act remains intact and is linked to another Act authored by that other party.".

cs:ParticipationType\#INF rdfs:subClassOf cs:ParticipationType\#%5fParticipationInformationGenerator;
  rdfs:label "informant";
  dc:title "informant";
  rdfs:comment "A source of reported information (e.g., a next of kin who answers questions about the patient's history).  For history questions, the patient is logically an informant, yet the informant of history questions is implicitly the subject.";
  dcterms:description "A source of reported information (e.g., a next of kin who answers questions about the patient's history).  For history questions, the patient is logically an informant, yet the informant of history questions is implicitly the subject.".

cs:ParticipationType\#TRANS rdfs:subClassOf cs:ParticipationType\#%5fParticipationInformationGenerator;
  rdfs:label "Transcriber";
  dc:title "Transcriber";
  rdfs:comment "An entity entering the data into the originating system. The data entry entity is collected optionally for internal quality control purposes. This includes the transcriptionist for dictated text transcribed into electronic form.";
  dcterms:description "An entity entering the data into the originating system. The data entry entity is collected optionally for internal quality control purposes. This includes the transcriptionist for dictated text transcribed into electronic form.".

cs:ParticipationType\#ENT rdfs:subClassOf cs:ParticipationType\#TRANS;
  rdfs:label "data entry person";
  dc:title "data entry person";
  rdfs:comment "A person entering the data into the originating system.  The data entry person is collected optionally for internal quality control purposes.  This includes the transcriptionist for dictated text.";
  dcterms:description "A person entering the data into the originating system.  The data entry person is collected optionally for internal quality control purposes.  This includes the transcriptionist for dictated text.".

cs:ParticipationType\#WIT rdfs:subClassOf cs:ParticipationType\#%5fParticipationInformationGenerator;
  rdfs:label "witness";
  dc:title "witness";
  rdfs:comment "Only with service events.  A person witnessing the action happening without doing anything.  A witness is not necessarily aware, much less approves of anything stated in the service event.  Example for a witness is students watching an operation or an advanced directive witness.";
  dcterms:description "Only with service events.  A person witnessing the action happening without doing anything.  A witness is not necessarily aware, much less approves of anything stated in the service event.  Example for a witness is students watching an operation or an advanced directive witness.".

cs:ParticipationType\#CST rdfs:subClassOf cs:ParticipationType\#PART;
  rdfs:label "custodian";
  dc:title "custodian";
  rdfs:comment "An entity (person, organization or device) that is in charge of maintaining the information of this act (e.g., who maintains the report or the master service catalog item, etc.).";
  dcterms:description "An entity (person, organization or device) that is in charge of maintaining the information of this act (e.g., who maintains the report or the master service catalog item, etc.).".

cs:ParticipationType\#DIR rdfs:subClassOf cs:ParticipationType\#PART;
  rdfs:label "direct target";
  dc:title "direct target";
  rdfs:comment "Target participant  that is substantially present in the act  and which is directly involved in the action (includes consumed material, devices, etc.).";
  dcterms:description "Target participant  that is substantially present in the act  and which is directly involved in the action (includes consumed material, devices, etc.).".

cs:ParticipationType\#ALY rdfs:subClassOf cs:ParticipationType\#DIR;
  rdfs:label "analyte";
  dc:title "analyte";
  rdfs:comment "The target of an Observation action. Links an observation to a Role whose player is the substance or most specific component entity (material, micro-organism, etc.) being measured within the subject.\r\n\n                        \n                           Examples: A \"plasma porcelain substance concentration\" has analyte a Role with player substance Entity \"porcelain\".\r\n\n                        \n                           UsageNotes: The Role that this participation connects to may be any Role whose player is that substance measured. Very often, the scoper may indicate the system in which the component is being measured. E.g., for \"plasma porcelain\" the scoper could be \"Plasma\".";
  dcterms:description "The target of an Observation action. Links an observation to a Role whose player is the substance or most specific component entity (material, micro-organism, etc.) being measured within the subject.\r\n\n                        \n                           Examples: A \"plasma porcelain substance concentration\" has analyte a Role with player substance Entity \"porcelain\".\r\n\n                        \n                           UsageNotes: The Role that this participation connects to may be any Role whose player is that substance measured. Very often, the scoper may indicate the system in which the component is being measured. E.g., for \"plasma porcelain\" the scoper could be \"Plasma\".".

cs:ParticipationType\#BBY rdfs:subClassOf cs:ParticipationType\#DIR;
  rdfs:label "baby";
  dc:title "baby";
  rdfs:comment "In an obstetric service, the baby.";
  dcterms:description "In an obstetric service, the baby.".

cs:ParticipationType\#CAT rdfs:subClassOf cs:ParticipationType\#DIR;
  rdfs:label "catalyst";
  dc:title "catalyst";
  rdfs:comment "The catalyst of a chemical reaction, such as an enzyme or a platinum surface. In biochemical reactions, connects the enzyme with the molecular interaction";
  dcterms:description "The catalyst of a chemical reaction, such as an enzyme or a platinum surface. In biochemical reactions, connects the enzyme with the molecular interaction".

cs:ParticipationType\#CSM rdfs:subClassOf cs:ParticipationType\#DIR;
  rdfs:label "consumable";
  dc:title "consumable";
  rdfs:comment "Participant material that is taken up, diminished, altered, or disappears in the act.";
  dcterms:description "Participant material that is taken up, diminished, altered, or disappears in the act.".

cs:ParticipationType\#TPA rdfs:subClassOf cs:ParticipationType\#CSM;
  rdfs:label "therapeutic agent";
  dc:title "therapeutic agent";
  rdfs:comment "Something incorporated in the subject of a therapy service to achieve a physiologic effect (e.g., heal, relieve, provoke a condition, etc.) on the subject.  In an administration service the therapeutic agent is a consumable, in a preparation or dispense service, it is a product.  Thus, consumable or product must be specified in accordance with the kind of service.";
  dcterms:description "Something incorporated in the subject of a therapy service to achieve a physiologic effect (e.g., heal, relieve, provoke a condition, etc.) on the subject.  In an administration service the therapeutic agent is a consumable, in a preparation or dispense service, it is a product.  Thus, consumable or product must be specified in accordance with the kind of service.".

cs:ParticipationType\#DEV rdfs:subClassOf cs:ParticipationType\#DIR;
  rdfs:label "device";
  dc:title "device";
  rdfs:comment "Participant used in performing the act without being substantially affected by the act (i.e. durable or inert with respect to that particular service).\r\n\n                        \n                           Examples: monitoring equipment, tools, but also access/drainage lines, prostheses, pace maker, etc.";
  dcterms:description "Participant used in performing the act without being substantially affected by the act (i.e. durable or inert with respect to that particular service).\r\n\n                        \n                           Examples: monitoring equipment, tools, but also access/drainage lines, prostheses, pace maker, etc.".

cs:ParticipationType\#NRD rdfs:subClassOf cs:ParticipationType\#DEV;
  rdfs:label "non-reuseable device";
  dc:title "non-reuseable device";
  rdfs:comment "A device that changes ownership due to the service, e.g., a pacemaker, a prosthesis, an insulin injection equipment (pen), etc.  Such material may need to be restocked after he service.";
  dcterms:description "A device that changes ownership due to the service, e.g., a pacemaker, a prosthesis, an insulin injection equipment (pen), etc.  Such material may need to be restocked after he service.".

cs:ParticipationType\#RDV rdfs:subClassOf cs:ParticipationType\#DEV;
  rdfs:label "reusable device";
  dc:title "reusable device";
  rdfs:comment "A device that does not change ownership due to the service, i.e., a surgical instrument or tool or an endoscope.  The distinction between reuseable and non-reuseable must be made in order to know whether material must be re-stocked.";
  dcterms:description "A device that does not change ownership due to the service, i.e., a surgical instrument or tool or an endoscope.  The distinction between reuseable and non-reuseable must be made in order to know whether material must be re-stocked.".

cs:ParticipationType\#DON rdfs:subClassOf cs:ParticipationType\#DIR;
  rdfs:label "donor";
  dc:title "donor";
  rdfs:comment "In some organ transplantation services and rarely in transfusion services a donor will be a target participant in the service.  However, in most cases transplantation is decomposed in three services: explantation, transport, and implantation.  The identity of the donor (recipient) is often irrelevant for the explantation (implantation) service.";
  dcterms:description "In some organ transplantation services and rarely in transfusion services a donor will be a target participant in the service.  However, in most cases transplantation is decomposed in three services: explantation, transport, and implantation.  The identity of the donor (recipient) is often irrelevant for the explantation (implantation) service.".

cs:ParticipationType\#EXPAGNT rdfs:subClassOf cs:ParticipationType\#DIR;
  rdfs:label "ExposureAgent";
  dc:title "ExposureAgent";
  rdfs:comment "Description: The entity playing the associated role is the physical (including energy), chemical or biological substance that is participating in the exposure.  For example in communicable diseases, the associated playing entity is the disease causing pathogen.";
  dcterms:description "Description: The entity playing the associated role is the physical (including energy), chemical or biological substance that is participating in the exposure.  For example in communicable diseases, the associated playing entity is the disease causing pathogen.".

cs:ParticipationType\#EXPART rdfs:subClassOf cs:ParticipationType\#DIR;
  rdfs:label "ExposureParticipation";
  dc:title "ExposureParticipation";
  rdfs:comment "Description:Direct participation in an exposure act where it is unknown that the participant is the source or subject of the exposure.  If the participant is known to be the contact of an exposure then the SBJ participation type should be used.  If the participant is known to be the source then the EXSRC participation type should be used.";
  dcterms:description "Description:Direct participation in an exposure act where it is unknown that the participant is the source or subject of the exposure.  If the participant is known to be the contact of an exposure then the SBJ participation type should be used.  If the participant is known to be the source then the EXSRC participation type should be used.".

cs:ParticipationType\#EXPTRGT rdfs:subClassOf cs:ParticipationType\#EXPART;
  rdfs:label "ExposureTarget";
  dc:title "ExposureTarget";
  rdfs:comment "Description: The entity playing the associated role is the target (contact) of exposure.";
  dcterms:description "Description: The entity playing the associated role is the target (contact) of exposure.".

cs:ParticipationType\#EXSRC rdfs:subClassOf cs:ParticipationType\#EXPART;
  rdfs:label "ExposureSource";
  dc:title "ExposureSource";
  rdfs:comment "Description:The entity playing the associated role is the source of exposure.";
  dcterms:description "Description:The entity playing the associated role is the source of exposure.".

cs:ParticipationType\#PRD rdfs:subClassOf cs:ParticipationType\#DIR;
  rdfs:label "product";
  dc:title "product";
  rdfs:comment "Participant material that is brought forth (produced) in the act (e.g., specimen in a specimen collection, access or drainage in a placement service, medication package in a dispense service). It does not matter whether the material produced had existence prior to the service, or whether it is created in the service (e.g., in supply services the product is taken from a stock).";
  dcterms:description "Participant material that is brought forth (produced) in the act (e.g., specimen in a specimen collection, access or drainage in a placement service, medication package in a dispense service). It does not matter whether the material produced had existence prior to the service, or whether it is created in the service (e.g., in supply services the product is taken from a stock).".

cs:ParticipationType\#SBJ rdfs:subClassOf cs:ParticipationType\#DIR;
  rdfs:label "subject";
  dc:title "subject";
  rdfs:comment "The principle target on which the action happens.\r\n\n                        \n                           Examples: The patient in physical examination, a specimen in a lab observation. May also be a patient's family member (teaching) or a device or room (cleaning, disinfecting, housekeeping). \r\n\n                        \n                           UsageNotes: Not all direct targets are subjects. Consumables and devices used as tools for an act are not subjects. However, a device may be a subject of a maintenance action.";
  dcterms:description "The principle target on which the action happens.\r\n\n                        \n                           Examples: The patient in physical examination, a specimen in a lab observation. May also be a patient's family member (teaching) or a device or room (cleaning, disinfecting, housekeeping). \r\n\n                        \n                           UsageNotes: Not all direct targets are subjects. Consumables and devices used as tools for an act are not subjects. However, a device may be a subject of a maintenance action.".

cs:ParticipationType\#SPC rdfs:subClassOf cs:ParticipationType\#SBJ;
  rdfs:label "specimen";
  dc:title "specimen";
  rdfs:comment "The subject of non-clinical (e.g. laboratory) observation services is a specimen.";
  dcterms:description "The subject of non-clinical (e.g. laboratory) observation services is a specimen.".

cs:ParticipationType\#IND rdfs:subClassOf cs:ParticipationType\#PART;
  rdfs:label "indirect target";
  dc:title "indirect target";
  rdfs:comment "Target that is not substantially present in the act and which is not directly affected by the act, but which will be a focus of the record or documentation of the act.";
  dcterms:description "Target that is not substantially present in the act and which is not directly affected by the act, but which will be a focus of the record or documentation of the act.".

cs:ParticipationType\#BEN rdfs:subClassOf cs:ParticipationType\#IND;
  rdfs:label "beneficiary";
  dc:title "beneficiary";
  rdfs:comment "Target on behalf of whom the service happens, but that is not necessarily present in the service.  Can occur together with direct target to indicate that a target is both, as in the case where the patient is the indirect beneficiary of a service rendered to a family member, e.g. counseling or given home care instructions.  This concept includes a participant, such as a covered party, who derives benefits from a service act covered by a coverage act.\r\n\n                        Note that the semantic role of the intended recipient who benefits from the happening denoted by the verb in the clause.  Thus, a patient who has no coverage under a policy or program may be a beneficiary of a health service while not being the beneficiary of coverage for that service.";
  dcterms:description "Target on behalf of whom the service happens, but that is not necessarily present in the service.  Can occur together with direct target to indicate that a target is both, as in the case where the patient is the indirect beneficiary of a service rendered to a family member, e.g. counseling or given home care instructions.  This concept includes a participant, such as a covered party, who derives benefits from a service act covered by a coverage act.\r\n\n                        Note that the semantic role of the intended recipient who benefits from the happening denoted by the verb in the clause.  Thus, a patient who has no coverage under a policy or program may be a beneficiary of a health service while not being the beneficiary of coverage for that service.".

cs:ParticipationType\#CAGNT rdfs:subClassOf cs:ParticipationType\#IND;
  rdfs:label "causative agent";
  dc:title "causative agent";
  rdfs:comment "Definition: A factor, such as a microorganism, chemical substance, or form of radiation, whose presence, excessive presence, or (in deficiency diseases) relative absence is essential, in whole or in part, for the occurrence of a condition.\r\n\n                        Constraint:  The use of this participation is limited to observations.";
  dcterms:description "Definition: A factor, such as a microorganism, chemical substance, or form of radiation, whose presence, excessive presence, or (in deficiency diseases) relative absence is essential, in whole or in part, for the occurrence of a condition.\r\n\n                        Constraint:  The use of this participation is limited to observations.".

cs:ParticipationType\#COV rdfs:subClassOf cs:ParticipationType\#IND;
  rdfs:label "coverage target";
  dc:title "coverage target";
  rdfs:comment "The target participation for an individual in a health care coverage act in which the target role is either the policy holder of the coverage, or a covered party under the coverage.";
  dcterms:description "The target participation for an individual in a health care coverage act in which the target role is either the policy holder of the coverage, or a covered party under the coverage.".

cs:ParticipationType\#GUAR rdfs:subClassOf cs:ParticipationType\#IND;
  rdfs:label "guarantor party";
  dc:title "guarantor party";
  rdfs:comment "The target person or organization contractually recognized by the issuer as a participant who has assumed fiscal responsibility for another personaTMs financial obligations by guaranteeing to pay for amounts owed to a particular account\r\n\n                        \n                           Example:The subscriber of the patientaTMs health insurance policy signs a contract with the provider to be fiscally responsible for the patient billing account balance amount owed.";
  dcterms:description "The target person or organization contractually recognized by the issuer as a participant who has assumed fiscal responsibility for another personaTMs financial obligations by guaranteeing to pay for amounts owed to a particular account\r\n\n                        \n                           Example:The subscriber of the patientaTMs health insurance policy signs a contract with the provider to be fiscally responsible for the patient billing account balance amount owed.".

cs:ParticipationType\#HLD rdfs:subClassOf cs:ParticipationType\#IND;
  rdfs:label "holder";
  dc:title "holder";
  rdfs:comment "Participant who posses an instrument such as a financial contract (insurance policy) usually based on some agreement with the author.";
  dcterms:description "Participant who posses an instrument such as a financial contract (insurance policy) usually based on some agreement with the author.".

cs:ParticipationType\#RCT rdfs:subClassOf cs:ParticipationType\#IND;
  rdfs:label "record target";
  dc:title "record target";
  rdfs:comment "The record target indicates whose medical record holds the documentation of this act.  This is especially important when the subject of a service is not the patient himself.";
  dcterms:description "The record target indicates whose medical record holds the documentation of this act.  This is especially important when the subject of a service is not the patient himself.".

cs:ParticipationType\#RCV rdfs:subClassOf cs:ParticipationType\#IND;
  rdfs:label "receiver";
  dc:title "receiver";
  rdfs:comment "The person (or organization) who receives the product of an Act.";
  dcterms:description "The person (or organization) who receives the product of an Act.".

cs:ParticipationType\#IRCP rdfs:subClassOf cs:ParticipationType\#PART;
  rdfs:label "information recipient";
  dc:title "information recipient";
  rdfs:comment "A party, who may or should receive or who has recieved the Act or subsequent or derivative information of that Act. Information recipient is inert, i.e., independent of mood.\" Rationale: this is a generalization of a too diverse family that the definition can't be any more specific, and the concept is abstract so one of the specializations should be used.";
  dcterms:description "A party, who may or should receive or who has recieved the Act or subsequent or derivative information of that Act. Information recipient is inert, i.e., independent of mood.\" Rationale: this is a generalization of a too diverse family that the definition can't be any more specific, and the concept is abstract so one of the specializations should be used.".

cs:ParticipationType\#NOT rdfs:subClassOf cs:ParticipationType\#IRCP;
  rdfs:label "ugent notification contact";
  dc:title "ugent notification contact";
  rdfs:comment "An information recipient to notify for urgent matters about this Act. (e.g., in a laboratory order, critical results are being called by phone right away, this is the contact to call; or for an inpatient encounter, a next of kin to notify when the patient becomes critically ill).";
  dcterms:description "An information recipient to notify for urgent matters about this Act. (e.g., in a laboratory order, critical results are being called by phone right away, this is the contact to call; or for an inpatient encounter, a next of kin to notify when the patient becomes critically ill).".

cs:ParticipationType\#PRCP rdfs:subClassOf cs:ParticipationType\#IRCP;
  rdfs:label "primary information recipient";
  dc:title "primary information recipient";
  rdfs:comment "Information recipient to whom an act statement is primarily directed. E.g., a primary care provider receiving a discharge letter from a hospitalist, a health department receiving information on a suspected case of infectious disease. Multiple of these participations may exist on the same act without requiring that recipients be ranked as primary vs. secondary.";
  dcterms:description "Information recipient to whom an act statement is primarily directed. E.g., a primary care provider receiving a discharge letter from a hospitalist, a health department receiving information on a suspected case of infectious disease. Multiple of these participations may exist on the same act without requiring that recipients be ranked as primary vs. secondary.".

cs:ParticipationType\#REFB rdfs:subClassOf cs:ParticipationType\#IRCP;
  rdfs:label "Referred By";
  dc:title "Referred By";
  rdfs:comment "A participant (e.g. provider) who has referred the subject of an act (e.g. patient).\r\n\n                        Typically, a referred by participant will provide a report (e.g. referral).";
  dcterms:description "A participant (e.g. provider) who has referred the subject of an act (e.g. patient).\r\n\n                        Typically, a referred by participant will provide a report (e.g. referral).".

cs:ParticipationType\#REFT rdfs:subClassOf cs:ParticipationType\#IRCP;
  rdfs:label "Referred to";
  dc:title "Referred to";
  rdfs:comment "The person who receives the patient";
  dcterms:description "The person who receives the patient".

cs:ParticipationType\#TRC rdfs:subClassOf cs:ParticipationType\#IRCP;
  rdfs:label "tracker";
  dc:title "tracker";
  rdfs:comment "A secondary information recipient, who receives copies (e.g., a primary care provider receiving copies of results as ordered by specialist).";
  dcterms:description "A secondary information recipient, who receives copies (e.g., a primary care provider receiving copies of results as ordered by specialist).".

cs:ParticipationType\#LOC rdfs:subClassOf cs:ParticipationType\#PART;
  rdfs:label "location";
  dc:title "location";
  rdfs:comment "The facility where the service is done.  May be a static building (or room therein) or a moving location (e.g., ambulance, helicopter, aircraft, train, truck, ship, etc.)";
  dcterms:description "The facility where the service is done.  May be a static building (or room therein) or a moving location (e.g., ambulance, helicopter, aircraft, train, truck, ship, etc.)".

cs:ParticipationType\#DST rdfs:subClassOf cs:ParticipationType\#LOC;
  rdfs:label "destination";
  dc:title "destination";
  rdfs:comment "The destination for services.  May be a static building (or room therein) or a movable facility (e.g., ship).";
  dcterms:description "The destination for services.  May be a static building (or room therein) or a movable facility (e.g., ship).".

cs:ParticipationType\#ELOC rdfs:subClassOf cs:ParticipationType\#LOC;
  rdfs:label "entry location";
  dc:title "entry location";
  rdfs:comment "A location where data about an Act was entered.";
  dcterms:description "A location where data about an Act was entered.".

cs:ParticipationType\#ORG rdfs:subClassOf cs:ParticipationType\#LOC;
  rdfs:label "origin";
  dc:title "origin";
  rdfs:comment "The location of origin for services.  May be a static building (or room therein) or a movable facility (e.g., ship).";
  dcterms:description "The location of origin for services.  May be a static building (or room therein) or a movable facility (e.g., ship).".

cs:ParticipationType\#RML rdfs:subClassOf cs:ParticipationType\#LOC;
  rdfs:label "remote";
  dc:title "remote";
  rdfs:comment "Some services take place at multiple concurrent locations (e.g., telemedicine, telephone consultation).  The location where the principal performing actor is located is taken as the primary location (LOC) while the other location(s) are considered \"remote.\"";
  dcterms:description "Some services take place at multiple concurrent locations (e.g., telemedicine, telephone consultation).  The location where the principal performing actor is located is taken as the primary location (LOC) while the other location(s) are considered \"remote.\"".

cs:ParticipationType\#VIA rdfs:subClassOf cs:ParticipationType\#LOC;
  rdfs:label "via";
  dc:title "via";
  rdfs:comment "For services, an intermediate location that specifies a path between origin an destination.";
  dcterms:description "For services, an intermediate location that specifies a path between origin an destination.".

cs:ParticipationType\#PRF rdfs:subClassOf cs:ParticipationType\#PART;
  rdfs:label "performer";
  dc:title "performer";
  rdfs:comment "Definition: A person, non-person living subject, organization or device that who actually and principally carries out the action. Device should only be assigned as a performer in circumstances where the device is performing independent of human intervention.  Need not be the principal responsible actor.\r\n\n                        \n                           Exampe: A surgery resident operating under supervision of attending surgeon, a search and rescue dog locating survivors, an electronic laboratory analyzer or the laboratory discipline requested to perform a laboratory test. The performer may also be the patient in self-care, e.g. fingerstick blood sugar. The traditional order filler is a performer. This information should accompany every service event.\r\n\n                        \n                           Note: that existing HL7 designs assign an organization as the playing entity of the Role that is the performer.  These designs should be revised in subsequent releases to make this the scooping entity for the role involved.";
  dcterms:description "Definition: A person, non-person living subject, organization or device that who actually and principally carries out the action. Device should only be assigned as a performer in circumstances where the device is performing independent of human intervention.  Need not be the principal responsible actor.\r\n\n                        \n                           Exampe: A surgery resident operating under supervision of attending surgeon, a search and rescue dog locating survivors, an electronic laboratory analyzer or the laboratory discipline requested to perform a laboratory test. The performer may also be the patient in self-care, e.g. fingerstick blood sugar. The traditional order filler is a performer. This information should accompany every service event.\r\n\n                        \n                           Note: that existing HL7 designs assign an organization as the playing entity of the Role that is the performer.  These designs should be revised in subsequent releases to make this the scooping entity for the role involved.".

cs:ParticipationType\#DIST rdfs:subClassOf cs:ParticipationType\#PRF;
  rdfs:label "distributor";
  dc:title "distributor";
  rdfs:comment "Distributes material used in or generated during the act.";
  dcterms:description "Distributes material used in or generated during the act.".

cs:ParticipationType\#PPRF rdfs:subClassOf cs:ParticipationType\#PRF;
  rdfs:label "primary performer";
  dc:title "primary performer";
  rdfs:comment "The principal or primary performer of the act.";
  dcterms:description "The principal or primary performer of the act.".

cs:ParticipationType\#SPRF rdfs:subClassOf cs:ParticipationType\#PRF;
  rdfs:label "secondary performer";
  dc:title "secondary performer";
  rdfs:comment "A person assisting in an act through his substantial presence and involvement   This includes: assistants, technicians, associates, or whatever the job titles may be.";
  dcterms:description "A person assisting in an act through his substantial presence and involvement   This includes: assistants, technicians, associates, or whatever the job titles may be.".

cs:ParticipationType\#RESP rdfs:subClassOf cs:ParticipationType\#PART;
  rdfs:label "responsible party";
  dc:title "responsible party";
  rdfs:comment "The person or organization that has primary responsibility for the act.  The responsible party is not necessarily present in an action, but is accountable for the action through the power to delegate, and the duty to review actions with the performing actor after the fact.  This responsibility may be ethical, legal, contractual, fiscal, or fiduciary in nature.\r\n\n                        \n                           Example: A person who is the head of a biochemical laboratory; a sponsor for a policy or government program.";
  dcterms:description "The person or organization that has primary responsibility for the act.  The responsible party is not necessarily present in an action, but is accountable for the action through the power to delegate, and the duty to review actions with the performing actor after the fact.  This responsibility may be ethical, legal, contractual, fiscal, or fiduciary in nature.\r\n\n                        \n                           Example: A person who is the head of a biochemical laboratory; a sponsor for a policy or government program.".

cs:ParticipationType\#VRF rdfs:subClassOf cs:ParticipationType\#PART;
  rdfs:label "verifier";
  dc:title "verifier";
  rdfs:comment "A person who verifies the correctness and appropriateness of the service (plan, order, event, etc.) and hence takes on accountability.";
  dcterms:description "A person who verifies the correctness and appropriateness of the service (plan, order, event, etc.) and hence takes on accountability.".

cs:ParticipationType\#AUTHEN rdfs:subClassOf cs:ParticipationType\#VRF;
  rdfs:label "authenticator";
  dc:title "authenticator";
  rdfs:comment "A verifier who attests to the accuracy of an act, but who does not have privileges to legally authenticate the act. An example would be a resident physician who sees a patient and dictates a note, then later signs it. Their signature constitutes an authentication.";
  dcterms:description "A verifier who attests to the accuracy of an act, but who does not have privileges to legally authenticate the act. An example would be a resident physician who sees a patient and dictates a note, then later signs it. Their signature constitutes an authentication.".

cs:ParticipationType\#LA rdfs:subClassOf cs:ParticipationType\#VRF;
  rdfs:label "legal authenticator";
  dc:title "legal authenticator";
  rdfs:comment "A verifier who legally authenticates the accuracy of an act. An example would be a staff physician who sees a patient and dictates a note, then later signs it. Their signature constitutes a legal authentication.";
  dcterms:description "A verifier who legally authenticates the accuracy of an act. An example would be a staff physician who sees a patient and dictates a note, then later signs it. Their signature constitutes a legal authentication.".

# - vs:v3-PatientImportance ----------------------------------------------------

vs:v3-PatientImportance a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System PatientImportance";
  dc:title "v3 Code System PatientImportance";
  rdfs:comment " Patient VIP code";
  dcterms:description " Patient VIP code";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:PatientImportance.

cs:PatientImportance.system a fhir:CodeSystem;
  rdfs:label "v3 Code System PatientImportance";
  dc:title "v3 Code System PatientImportance";
  rdfs:comment " Patient VIP code";
  dcterms:description " Patient VIP code";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:PatientImportance a fhir:Concept.

cs:PatientImportance\#BM rdfs:subClassOf cs:PatientImportance;
  rdfs:label "Board Member";
  dc:title "Board Member";
  rdfs:comment "Board member of health care organization";
  dcterms:description "Board member of health care organization".

cs:PatientImportance\#DFM rdfs:subClassOf cs:PatientImportance;
  rdfs:label "Physician Family Member";
  dc:title "Physician Family Member";
  rdfs:comment "Family member of staff physician";
  dcterms:description "Family member of staff physician".

cs:PatientImportance\#DR rdfs:subClassOf cs:PatientImportance;
  rdfs:label "Staff Physician";
  dc:title "Staff Physician";
  rdfs:comment "Member of the health care organization physician staff";
  dcterms:description "Member of the health care organization physician staff".

cs:PatientImportance\#FD rdfs:subClassOf cs:PatientImportance;
  rdfs:label "Financial Donor";
  dc:title "Financial Donor";
  rdfs:comment "Financial donor to the health care organization";
  dcterms:description "Financial donor to the health care organization".

cs:PatientImportance\#FOR rdfs:subClassOf cs:PatientImportance;
  rdfs:label "Foreign Dignitary";
  dc:title "Foreign Dignitary";
  rdfs:comment "Foreign citizen dignitary of interest to the health care organization";
  dcterms:description "Foreign citizen dignitary of interest to the health care organization".

cs:PatientImportance\#GOVT rdfs:subClassOf cs:PatientImportance;
  rdfs:label "Government Dignitary";
  dc:title "Government Dignitary";
  rdfs:comment "Government dignitary of interest to the organization";
  dcterms:description "Government dignitary of interest to the organization".

cs:PatientImportance\#SFM rdfs:subClassOf cs:PatientImportance;
  rdfs:label "Staff Family Member";
  dc:title "Staff Family Member";
  rdfs:comment "Family member of staff member";
  dcterms:description "Family member of staff member".

cs:PatientImportance\#STF rdfs:subClassOf cs:PatientImportance;
  rdfs:label "Staff Member";
  dc:title "Staff Member";
  rdfs:comment "Staff member of the health care organization";
  dcterms:description "Staff member of the health care organization".

cs:PatientImportance\#VIP rdfs:subClassOf cs:PatientImportance;
  rdfs:label "Very Important Person";
  dc:title "Very Important Person";
  rdfs:comment "Very important person of interest to the health care organization";
  dcterms:description "Very important person of interest to the health care organization".

# - vs:v3-PaymentTerms ---------------------------------------------------------

vs:v3-PaymentTerms a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System PaymentTerms";
  dc:title "v3 Code System PaymentTerms";
  rdfs:comment " Describes payment terms for a financial transaction, used in an invoice. This is typically expressed as a responsibility of the acceptor or payor of an invoice.";
  dcterms:description " Describes payment terms for a financial transaction, used in an invoice. This is typically expressed as a responsibility of the acceptor or payor of an invoice.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:PaymentTerms.

cs:PaymentTerms.system a fhir:CodeSystem;
  rdfs:label "v3 Code System PaymentTerms";
  dc:title "v3 Code System PaymentTerms";
  rdfs:comment " Describes payment terms for a financial transaction, used in an invoice. This is typically expressed as a responsibility of the acceptor or payor of an invoice.";
  dcterms:description " Describes payment terms for a financial transaction, used in an invoice. This is typically expressed as a responsibility of the acceptor or payor of an invoice.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:PaymentTerms a fhir:Concept.

cs:PaymentTerms\#COD rdfs:subClassOf cs:PaymentTerms;
  rdfs:label "Cash on Delivery";
  dc:title "Cash on Delivery";
  rdfs:comment "Payment in full for products and/or services is required as soon as the service is performed or goods delivered.";
  dcterms:description "Payment in full for products and/or services is required as soon as the service is performed or goods delivered.".

cs:PaymentTerms\#N30 rdfs:subClassOf cs:PaymentTerms;
  rdfs:label "Net 30 days";
  dc:title "Net 30 days";
  rdfs:comment "Payment in full for products and/or services is required 30 days from the time the service is performed or goods delivered.";
  dcterms:description "Payment in full for products and/or services is required 30 days from the time the service is performed or goods delivered.".

cs:PaymentTerms\#N60 rdfs:subClassOf cs:PaymentTerms;
  rdfs:label "Net 60 days";
  dc:title "Net 60 days";
  rdfs:comment "Payment in full for products and/or services is required 60 days from the time the service is performed or goods delivered.";
  dcterms:description "Payment in full for products and/or services is required 60 days from the time the service is performed or goods delivered.".

cs:PaymentTerms\#N90 rdfs:subClassOf cs:PaymentTerms;
  rdfs:label "Net 90 days";
  dc:title "Net 90 days";
  rdfs:comment "Payment in full for products and/or services is required 90 days from the time the service is performed or goods delivered.";
  dcterms:description "Payment in full for products and/or services is required 90 days from the time the service is performed or goods delivered.".

# - vs:v3-PersonDisabilityType -------------------------------------------------

vs:v3-PersonDisabilityType a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System PersonDisabilityType";
  dc:title "v3 Code System PersonDisabilityType";
  rdfs:comment " A code identifying a person's disability.";
  dcterms:description " A code identifying a person's disability.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:PersonDisabilityType.

cs:PersonDisabilityType.system a fhir:CodeSystem;
  rdfs:label "v3 Code System PersonDisabilityType";
  dc:title "v3 Code System PersonDisabilityType";
  rdfs:comment " A code identifying a person's disability.";
  dcterms:description " A code identifying a person's disability.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:PersonDisabilityType a fhir:Concept.

cs:PersonDisabilityType\#1 rdfs:subClassOf cs:PersonDisabilityType;
  rdfs:label "Vision impaired";
  dc:title "Vision impaired";
  rdfs:comment "Vision impaired";
  dcterms:description "Vision impaired".

cs:PersonDisabilityType\#2 rdfs:subClassOf cs:PersonDisabilityType;
  rdfs:label "Hearing impaired";
  dc:title "Hearing impaired";
  rdfs:comment "Hearing impaired";
  dcterms:description "Hearing impaired".

cs:PersonDisabilityType\#3 rdfs:subClassOf cs:PersonDisabilityType;
  rdfs:label "Speech impaired";
  dc:title "Speech impaired";
  rdfs:comment "Speech impaired";
  dcterms:description "Speech impaired".

cs:PersonDisabilityType\#4 rdfs:subClassOf cs:PersonDisabilityType;
  rdfs:label "Mentally impaired";
  dc:title "Mentally impaired";
  rdfs:comment "Mentally impaired";
  dcterms:description "Mentally impaired".

cs:PersonDisabilityType\#5 rdfs:subClassOf cs:PersonDisabilityType;
  rdfs:label "Mobility impaired";
  dc:title "Mobility impaired";
  rdfs:comment "Mobility impaired";
  dcterms:description "Mobility impaired".

cs:PersonDisabilityType\#CB rdfs:subClassOf cs:PersonDisabilityType\#5;
  rdfs:label "Requires crib";
  dc:title "Requires crib";
  rdfs:comment "A crib is required to move the person";
  dcterms:description "A crib is required to move the person".

cs:PersonDisabilityType\#CR rdfs:subClassOf cs:PersonDisabilityType\#5;
  rdfs:label "Requires crutches";
  dc:title "Requires crutches";
  rdfs:comment "Person requires crutches to ambulate";
  dcterms:description "Person requires crutches to ambulate".

cs:PersonDisabilityType\#G rdfs:subClassOf cs:PersonDisabilityType\#5;
  rdfs:label "Requires gurney";
  dc:title "Requires gurney";
  rdfs:comment "A gurney is required to move the person";
  dcterms:description "A gurney is required to move the person".

cs:PersonDisabilityType\#WC rdfs:subClassOf cs:PersonDisabilityType\#5;
  rdfs:label "Requires wheelchair";
  dc:title "Requires wheelchair";
  rdfs:comment "Person requires a wheelchair to be ambulatory";
  dcterms:description "Person requires a wheelchair to be ambulatory".

cs:PersonDisabilityType\#WK rdfs:subClassOf cs:PersonDisabilityType\#5;
  rdfs:label "Requires walker";
  dc:title "Requires walker";
  rdfs:comment "Person requires a walker to ambulate";
  dcterms:description "Person requires a walker to ambulate".

# - vs:v3-PersonalRelationshipRoleType -----------------------------------------

vs:v3-PersonalRelationshipRoleType a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "PersonalRelationshipRoleType";
  dc:title "PersonalRelationshipRoleType";
  rdfs:comment " Types of personal relationships between two living subjects.  Example:\r\nParent, sibling, unrelated friend, neighbor";
  dcterms:description " Types of personal relationships between two living subjects.  Example:\r\nParent, sibling, unrelated friend, neighbor";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-ProbabilityDistributionType ------------------------------------------

vs:v3-ProbabilityDistributionType a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ProbabilityDistributionType";
  dc:title "v3 Code System ProbabilityDistributionType";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ProbabilityDistributionType.

cs:ProbabilityDistributionType.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ProbabilityDistributionType";
  dc:title "v3 Code System ProbabilityDistributionType";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ProbabilityDistributionType a fhir:Concept.

cs:ProbabilityDistributionType\#B rdfs:subClassOf cs:ProbabilityDistributionType;
  rdfs:label "beta";
  dc:title "beta";
  rdfs:comment "The beta-distribution is used for data that is bounded on both sides and may or may not be skewed (e.g., occurs when probabilities are estimated.)  Two parameters a and b  are available to adjust the curve.  The mean m and variance s2 relate as follows: m = a/ (a + b) and s2 = ab/((a + b)2 (a + b + 1)).";
  dcterms:description "The beta-distribution is used for data that is bounded on both sides and may or may not be skewed (e.g., occurs when probabilities are estimated.)  Two parameters a and b  are available to adjust the curve.  The mean m and variance s2 relate as follows: m = a/ (a + b) and s2 = ab/((a + b)2 (a + b + 1)).".

cs:ProbabilityDistributionType\#E rdfs:subClassOf cs:ProbabilityDistributionType;
  rdfs:label "exponential";
  dc:title "exponential";
  rdfs:comment "Used for data that describes extinction.  The exponential distribution is a special form of g-distribution where a = 1, hence, the relationship to mean m and variance s2 are m = b and s2 = b2.";
  dcterms:description "Used for data that describes extinction.  The exponential distribution is a special form of g-distribution where a = 1, hence, the relationship to mean m and variance s2 are m = b and s2 = b2.".

cs:ProbabilityDistributionType\#F rdfs:subClassOf cs:ProbabilityDistributionType;
  rdfs:label "F";
  dc:title "F";
  rdfs:comment "Used to describe the quotient of two c2 random variables.  The F-distribution has two parameters n1 and n2, which are the numbers of degrees of freedom of the numerator and denominator variable respectively. The relationship to mean m  and variance s2 are: m = n2 / (n2 - 2) and s2 = (2 n2 (n2 + n1 - 2)) / (n1 (n2 - 2)2 (n2 - 4)).";
  dcterms:description "Used to describe the quotient of two c2 random variables.  The F-distribution has two parameters n1 and n2, which are the numbers of degrees of freedom of the numerator and denominator variable respectively. The relationship to mean m  and variance s2 are: m = n2 / (n2 - 2) and s2 = (2 n2 (n2 + n1 - 2)) / (n1 (n2 - 2)2 (n2 - 4)).".

cs:ProbabilityDistributionType\#G rdfs:subClassOf cs:ProbabilityDistributionType;
  rdfs:label "(gamma)";
  dc:title "(gamma)";
  rdfs:comment "The gamma-distribution used for data that is skewed and bounded to the right, i.e. where the maximum of the distribution curve is located near the origin.  The g-distribution has a two parameters a and b.  The relationship to mean m and variance s2 is m = a b and s2 = a b2.";
  dcterms:description "The gamma-distribution used for data that is skewed and bounded to the right, i.e. where the maximum of the distribution curve is located near the origin.  The g-distribution has a two parameters a and b.  The relationship to mean m and variance s2 is m = a b and s2 = a b2.".

cs:ProbabilityDistributionType\#LN rdfs:subClassOf cs:ProbabilityDistributionType;
  rdfs:label "log-normal";
  dc:title "log-normal";
  rdfs:comment "The logarithmic normal distribution is used to transform skewed random variable X into a normally distributed random variable U = log X. The log-normal distribution can be specified with the properties mean m and standard deviation s.  Note however that mean m and standard deviation s are the parameters of the raw value distribution, not the transformed parameters of the lognormal distribution that are conventionally referred to by the same letters.  Those log-normal parameters mlog and slog relate to the mean m and standard deviation s of the data value through slog2 = log (s2/m2 + 1) and mlog = log m - slog2/2.";
  dcterms:description "The logarithmic normal distribution is used to transform skewed random variable X into a normally distributed random variable U = log X. The log-normal distribution can be specified with the properties mean m and standard deviation s.  Note however that mean m and standard deviation s are the parameters of the raw value distribution, not the transformed parameters of the lognormal distribution that are conventionally referred to by the same letters.  Those log-normal parameters mlog and slog relate to the mean m and standard deviation s of the data value through slog2 = log (s2/m2 + 1) and mlog = log m - slog2/2.".

cs:ProbabilityDistributionType\#N rdfs:subClassOf cs:ProbabilityDistributionType;
  rdfs:label "normal (Gaussian)";
  dc:title "normal (Gaussian)";
  rdfs:comment "This is the well-known bell-shaped normal distribution.  Because of the central limit theorem, the normal distribution is the distribution of choice for an unbounded random variable that is an outcome of a combination of many stochastic processes.  Even for values bounded on a single side (i.e. greater than 0) the normal distribution may be accurate enough if the mean is \"far away\" from the bound of the scale measured in terms of standard deviations.";
  dcterms:description "This is the well-known bell-shaped normal distribution.  Because of the central limit theorem, the normal distribution is the distribution of choice for an unbounded random variable that is an outcome of a combination of many stochastic processes.  Even for values bounded on a single side (i.e. greater than 0) the normal distribution may be accurate enough if the mean is \"far away\" from the bound of the scale measured in terms of standard deviations.".

cs:ProbabilityDistributionType\#T rdfs:subClassOf cs:ProbabilityDistributionType;
  rdfs:label "T";
  dc:title "T";
  rdfs:comment "Used to describe the quotient of a normal random variable and the square root of a c2 random variable.  The t-distribution has one parameter n, the number of degrees of freedom. The relationship to mean m  and variance s2 are: m = 0 and s2 = n / (n - 2)";
  dcterms:description "Used to describe the quotient of a normal random variable and the square root of a c2 random variable.  The t-distribution has one parameter n, the number of degrees of freedom. The relationship to mean m  and variance s2 are: m = 0 and s2 = n / (n - 2)".

cs:ProbabilityDistributionType\#U rdfs:subClassOf cs:ProbabilityDistributionType;
  rdfs:label "uniform";
  dc:title "uniform";
  rdfs:comment "The uniform distribution assigns a constant probability over the entire interval of possible outcomes, while all outcomes outside this interval are assumed to have zero probability.  The width of this interval is 2s sqrt(3).  Thus, the uniform distribution assigns the probability densities f(x) = sqrt(2 s sqrt(3))  to values m - s sqrt(3) >= x <= m + s sqrt(3) and f(x) = 0 otherwise.";
  dcterms:description "The uniform distribution assigns a constant probability over the entire interval of possible outcomes, while all outcomes outside this interval are assumed to have zero probability.  The width of this interval is 2s sqrt(3).  Thus, the uniform distribution assigns the probability densities f(x) = sqrt(2 s sqrt(3))  to values m - s sqrt(3) >= x <= m + s sqrt(3) and f(x) = 0 otherwise.".

cs:ProbabilityDistributionType\#X2 rdfs:subClassOf cs:ProbabilityDistributionType;
  rdfs:label "chi square";
  dc:title "chi square";
  rdfs:comment "Used to describe the sum of squares of random variables which occurs when a variance is estimated (rather than presumed) from the sample.  The only parameter of the c2-distribution is n, so called the number of degrees of freedom (which is the number of independent parts in the sum).  The c2-distribution is a special type of g-distribution with parameter a = n /2 and b  = 2.  Hence, m = n and s2 = 2 n.";
  dcterms:description "Used to describe the sum of squares of random variables which occurs when a variance is estimated (rather than presumed) from the sample.  The only parameter of the c2-distribution is n, so called the number of degrees of freedom (which is the number of independent parts in the sum).  The c2-distribution is a special type of g-distribution with parameter a = n /2 and b  = 2.  Hence, m = n and s2 = 2 n.".

# - vs:v3-ProcessingID ---------------------------------------------------------

vs:v3-ProcessingID a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ProcessingID";
  dc:title "v3 Code System ProcessingID";
  rdfs:comment " Codes used to specify whether a message is part of a production, training, or debugging system.";
  dcterms:description " Codes used to specify whether a message is part of a production, training, or debugging system.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ProcessingID.

cs:ProcessingID.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ProcessingID";
  dc:title "v3 Code System ProcessingID";
  rdfs:comment " Codes used to specify whether a message is part of a production, training, or debugging system.";
  dcterms:description " Codes used to specify whether a message is part of a production, training, or debugging system.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ProcessingID a fhir:Concept.

cs:ProcessingID\#D rdfs:subClassOf cs:ProcessingID;
  rdfs:label "Debugging";
  dc:title "Debugging";
  rdfs:comment "Identifies debugging type of processing.";
  dcterms:description "Identifies debugging type of processing.".

cs:ProcessingID\#P rdfs:subClassOf cs:ProcessingID;
  rdfs:label "Production";
  dc:title "Production";
  rdfs:comment "Identifies production type of processing.";
  dcterms:description "Identifies production type of processing.".

cs:ProcessingID\#T rdfs:subClassOf cs:ProcessingID;
  rdfs:label "Training";
  dc:title "Training";
  rdfs:comment "Identifies training type of processing.";
  dcterms:description "Identifies training type of processing.".

# - vs:v3-ProcessingMode -------------------------------------------------------

vs:v3-ProcessingMode a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ProcessingMode";
  dc:title "v3 Code System ProcessingMode";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ProcessingMode.

cs:ProcessingMode.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ProcessingMode";
  dc:title "v3 Code System ProcessingMode";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ProcessingMode a fhir:Concept.

cs:ProcessingMode\#A rdfs:subClassOf cs:ProcessingMode;
  rdfs:label "Archive";
  dc:title "Archive";
  rdfs:comment "Identifies archive mode of processing.";
  dcterms:description "Identifies archive mode of processing.".

cs:ProcessingMode\#I rdfs:subClassOf cs:ProcessingMode;
  rdfs:label "Initial load";
  dc:title "Initial load";
  rdfs:comment "Identifies initial load mode of processing.";
  dcterms:description "Identifies initial load mode of processing.".

cs:ProcessingMode\#R rdfs:subClassOf cs:ProcessingMode;
  rdfs:label "Restore from archive";
  dc:title "Restore from archive";
  rdfs:comment "Identifies restore mode of processing.";
  dcterms:description "Identifies restore mode of processing.".

cs:ProcessingMode\#T rdfs:subClassOf cs:ProcessingMode;
  rdfs:label "Current processing";
  dc:title "Current processing";
  rdfs:comment "Identifies on-line mode of processing.";
  dcterms:description "Identifies on-line mode of processing.".

# - vs:v3-ProvenanceEventCurrentState ------------------------------------------

vs:v3-ProvenanceEventCurrentState a fhir:ValueSet;
  fhir:version "2014-08-07";
  rdfs:label "ProvenanceEventCurrentState";
  dc:title "ProvenanceEventCurrentState";
  rdfs:comment " Specifies the state change of a target  Act, such as a document or an entry, from its previous state as a predecessor Act. For example, if the target Act is the result of a predecessor Act being \"obsoleted\" and replaced with the target Act, the source ProvenanceEventCurrentState Act code would be  \"obsoleted\".";
  dcterms:description " Specifies the state change of a target  Act, such as a document or an entry, from its previous state as a predecessor Act. For example, if the target Act is the result of a predecessor Act being \"obsoleted\" and replaced with the target Act, the source ProvenanceEventCurrentState Act code would be  \"obsoleted\".";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-ProvenanceEventCurrentState-AS ---------------------------------------

vs:v3-ProvenanceEventCurrentState-AS a fhir:ValueSet;
  fhir:version "2014-08-07";
  rdfs:label "ProvenanceEventCurrentState-AS";
  dc:title "ProvenanceEventCurrentState-AS";
  rdfs:comment " Specifies the state change of a target Act, using ActStatus codes, from its previous state as a predecessor Act. For example, if the target Act is the result of a predecessor Act being \"obsoleted\" and replaced with the target Act, the source ProvenanceEventCurrentState Act code would be \"obsoleted\".";
  dcterms:description " Specifies the state change of a target Act, using ActStatus codes, from its previous state as a predecessor Act. For example, if the target Act is the result of a predecessor Act being \"obsoleted\" and replaced with the target Act, the source ProvenanceEventCurrentState Act code would be \"obsoleted\".";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-ProvenanceEventCurrentState-DC ---------------------------------------

vs:v3-ProvenanceEventCurrentState-DC a fhir:ValueSet;
  fhir:version "2014-08-07";
  rdfs:label "ProvenanceEventCurrentState-DC";
  dc:title "ProvenanceEventCurrentState-DC";
  rdfs:comment " Specifies the state change of a target Act using DocuymentCompletion codes, from its previous state as a predecessor Act. For example, if the target Act is the result of a predecessor Act being \"obsoleted\" and replaced with the target Act, the source ProvenanceEventCurrentState Act code would be \"obsoleted\".";
  dcterms:description " Specifies the state change of a target Act using DocuymentCompletion codes, from its previous state as a predecessor Act. For example, if the target Act is the result of a predecessor Act being \"obsoleted\" and replaced with the target Act, the source ProvenanceEventCurrentState Act code would be \"obsoleted\".";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-PurposeOfUse ---------------------------------------------------------

vs:v3-PurposeOfUse a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "PurposeOfUse";
  dc:title "PurposeOfUse";
  rdfs:comment " Supports communication of purpose of use at a general level.";
  dcterms:description " Supports communication of purpose of use at a general level.";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-QueryParameterValue --------------------------------------------------

vs:v3-QueryParameterValue a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System QueryParameterValue";
  dc:title "v3 Code System QueryParameterValue";
  rdfs:comment " The domain of coded values used as parameters within QueryByParameter queries.";
  dcterms:description " The domain of coded values used as parameters within QueryByParameter queries.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:QueryParameterValue.

cs:QueryParameterValue.system a fhir:CodeSystem;
  rdfs:label "v3 Code System QueryParameterValue";
  dc:title "v3 Code System QueryParameterValue";
  rdfs:comment " The domain of coded values used as parameters within QueryByParameter queries.";
  dcterms:description " The domain of coded values used as parameters within QueryByParameter queries.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:QueryParameterValue a fhir:Concept.

cs:QueryParameterValue\#%5fDispenseQueryFilterCode rdfs:subClassOf cs:QueryParameterValue;
  rdfs:label "dispense query filter code";
  dc:title "dispense query filter code";
  rdfs:comment "Description:Filter codes used to manage volume of dispenses returned by  a parameter-based queries.";
  dcterms:description "Description:Filter codes used to manage volume of dispenses returned by  a parameter-based queries.".

cs:QueryParameterValue\#ALLDISP rdfs:subClassOf cs:QueryParameterValue\#%5fDispenseQueryFilterCode;
  rdfs:label "all dispenses";
  dc:title "all dispenses";
  rdfs:comment "Description:Returns all dispenses to date for a prescription.";
  dcterms:description "Description:Returns all dispenses to date for a prescription.".

cs:QueryParameterValue\#LASTDISP rdfs:subClassOf cs:QueryParameterValue\#%5fDispenseQueryFilterCode;
  rdfs:label "last dispense";
  dc:title "last dispense";
  rdfs:comment "Description:Returns the most recent dispense for a prescription.";
  dcterms:description "Description:Returns the most recent dispense for a prescription.".

cs:QueryParameterValue\#NODISP rdfs:subClassOf cs:QueryParameterValue\#%5fDispenseQueryFilterCode;
  rdfs:label "no dispense";
  dc:title "no dispense";
  rdfs:comment "Description:Returns no dispense for a prescription.";
  dcterms:description "Description:Returns no dispense for a prescription.".

cs:QueryParameterValue\#%5fOrderFilterCode rdfs:subClassOf cs:QueryParameterValue;
  rdfs:label "_OrderFilterCode";
  dc:title "_OrderFilterCode";
  rdfs:comment "Filter codes used to manage types of orders being returned by a parameter-based query.";
  dcterms:description "Filter codes used to manage types of orders being returned by a parameter-based query.".

cs:QueryParameterValue\#AO rdfs:subClassOf cs:QueryParameterValue\#%5fOrderFilterCode;
  rdfs:label "all orders";
  dc:title "all orders";
  rdfs:comment "Return all orders.";
  dcterms:description "Return all orders.".

cs:QueryParameterValue\#ONR rdfs:subClassOf cs:QueryParameterValue\#%5fOrderFilterCode;
  rdfs:label "orders without results";
  dc:title "orders without results";
  rdfs:comment "Return only those orders that do not have results.";
  dcterms:description "Return only those orders that do not have results.".

cs:QueryParameterValue\#OWR rdfs:subClassOf cs:QueryParameterValue\#%5fOrderFilterCode;
  rdfs:label "orders with results";
  dc:title "orders with results";
  rdfs:comment "Return only those orders that have results.";
  dcterms:description "Return only those orders that have results.".

cs:QueryParameterValue\#%5fPrescriptionDispenseFilterCode rdfs:subClassOf cs:QueryParameterValue;
  rdfs:label "Prescription Dispense Filter Code";
  dc:title "Prescription Dispense Filter Code";
  rdfs:comment "A \"helper\" vocabulary used to construct complex query filters based on how and whether a prescription has been dispensed.";
  dcterms:description "A \"helper\" vocabulary used to construct complex query filters based on how and whether a prescription has been dispensed.".

cs:QueryParameterValue\#C rdfs:subClassOf cs:QueryParameterValue\#%5fPrescriptionDispenseFilterCode;
  rdfs:label "Completely dispensed";
  dc:title "Completely dispensed";
  rdfs:comment "Filter to only include SubstanceAdministration orders which have no remaining quantity authorized to be dispensed.";
  dcterms:description "Filter to only include SubstanceAdministration orders which have no remaining quantity authorized to be dispensed.".

cs:QueryParameterValue\#N rdfs:subClassOf cs:QueryParameterValue\#%5fPrescriptionDispenseFilterCode;
  rdfs:label "Never Dispensed";
  dc:title "Never Dispensed";
  rdfs:comment "Filter to only include SubstanceAdministration orders which have no fulfilling supply events performed.";
  dcterms:description "Filter to only include SubstanceAdministration orders which have no fulfilling supply events performed.".

cs:QueryParameterValue\#R rdfs:subClassOf cs:QueryParameterValue\#%5fPrescriptionDispenseFilterCode;
  rdfs:label "Dispensed with remaining fills";
  dc:title "Dispensed with remaining fills";
  rdfs:comment "Filter to only include SubstanceAdministration orders which have had at least one fulfilling supply event, but which still have outstanding quantity remaining to be authorized.";
  dcterms:description "Filter to only include SubstanceAdministration orders which have had at least one fulfilling supply event, but which still have outstanding quantity remaining to be authorized.".

cs:QueryParameterValue\#%5fQueryParameterValue rdfs:subClassOf cs:QueryParameterValue;
  rdfs:label "QueryParameterValue";
  dc:title "QueryParameterValue";
  rdfs:comment "Description:Indicates how result sets should be filtered based on whether they have associated issues.";
  dcterms:description "Description:Indicates how result sets should be filtered based on whether they have associated issues.".

cs:QueryParameterValue\#ISSFA rdfs:subClassOf cs:QueryParameterValue\#%5fQueryParameterValue;
  rdfs:label "all";
  dc:title "all";
  rdfs:comment "Description:Result set should not be filtered based on the presence of issues.";
  dcterms:description "Description:Result set should not be filtered based on the presence of issues.".

cs:QueryParameterValue\#ISSFI rdfs:subClassOf cs:QueryParameterValue\#%5fQueryParameterValue;
  rdfs:label "with issues";
  dc:title "with issues";
  rdfs:comment "Description:Result set should be filtered to only include records with associated issues.";
  dcterms:description "Description:Result set should be filtered to only include records with associated issues.".

cs:QueryParameterValue\#ISSFU rdfs:subClassOf cs:QueryParameterValue\#%5fQueryParameterValue;
  rdfs:label "with unmanaged issues";
  dc:title "with unmanaged issues";
  rdfs:comment "Description:Result set should be filtered to only include records with associated unmanaged issues.";
  dcterms:description "Description:Result set should be filtered to only include records with associated unmanaged issues.".

# - vs:v3-QueryPriority --------------------------------------------------------

vs:v3-QueryPriority a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System QueryPriority";
  dc:title "v3 Code System QueryPriority";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:QueryPriority.

cs:QueryPriority.system a fhir:CodeSystem;
  rdfs:label "v3 Code System QueryPriority";
  dc:title "v3 Code System QueryPriority";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:QueryPriority a fhir:Concept.

cs:QueryPriority\#D rdfs:subClassOf cs:QueryPriority;
  rdfs:label "Deferred";
  dc:title "Deferred";
  rdfs:comment "Query response is deferred.";
  dcterms:description "Query response is deferred.".

cs:QueryPriority\#I rdfs:subClassOf cs:QueryPriority;
  rdfs:label "Immediate";
  dc:title "Immediate";
  rdfs:comment "Query response is immediate.";
  dcterms:description "Query response is immediate.".

# - vs:v3-QueryRequestLimit ----------------------------------------------------

vs:v3-QueryRequestLimit a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System QueryRequestLimit";
  dc:title "v3 Code System QueryRequestLimit";
  rdfs:comment "  Definition:\r\nDefines the units associated with the magnitude of the maximum size limit of a query response that can be accepted by the requesting application.";
  dcterms:description "  Definition:\r\nDefines the units associated with the magnitude of the maximum size limit of a query response that can be accepted by the requesting application.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:QueryRequestLimit.

cs:QueryRequestLimit.system a fhir:CodeSystem;
  rdfs:label "v3 Code System QueryRequestLimit";
  dc:title "v3 Code System QueryRequestLimit";
  rdfs:comment "  Definition:\r\nDefines the units associated with the magnitude of the maximum size limit of a query response that can be accepted by the requesting application.";
  dcterms:description "  Definition:\r\nDefines the units associated with the magnitude of the maximum size limit of a query response that can be accepted by the requesting application.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:QueryRequestLimit a fhir:Concept.

cs:QueryRequestLimit\#%5fQueryRequestLimit rdfs:subClassOf cs:QueryRequestLimit;
  rdfs:label "QueryRequestLimit";
  dc:title "QueryRequestLimit";
  rdfs:comment "Definition: The number of matching instances (number of focal classes). The document header class is the focal class of a document, a record would therefore be equal to a document.";
  dcterms:description "Definition: The number of matching instances (number of focal classes). The document header class is the focal class of a document, a record would therefore be equal to a document.".

cs:QueryRequestLimit\#RD rdfs:subClassOf cs:QueryRequestLimit\#%5fQueryRequestLimit;
  rdfs:label "record";
  dc:title "record";
  rdfs:comment "Definition: The number of matching instances (number of focal classes). The document header class is the focal class of a document, a record would therefore be equal to a document.";
  dcterms:description "Definition: The number of matching instances (number of focal classes). The document header class is the focal class of a document, a record would therefore be equal to a document.".

# - vs:v3-QueryResponse --------------------------------------------------------

vs:v3-QueryResponse a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System QueryResponse";
  dc:title "v3 Code System QueryResponse";
  rdfs:comment " A code classifying the general nature of the response to a given query. Includes whether or not data was found, or whether an error occurred.";
  dcterms:description " A code classifying the general nature of the response to a given query. Includes whether or not data was found, or whether an error occurred.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:QueryResponse.

cs:QueryResponse.system a fhir:CodeSystem;
  rdfs:label "v3 Code System QueryResponse";
  dc:title "v3 Code System QueryResponse";
  rdfs:comment " A code classifying the general nature of the response to a given query. Includes whether or not data was found, or whether an error occurred.";
  dcterms:description " A code classifying the general nature of the response to a given query. Includes whether or not data was found, or whether an error occurred.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:QueryResponse a fhir:Concept.

cs:QueryResponse\#AE rdfs:subClassOf cs:QueryResponse;
  rdfs:label "ApplicationError";
  dc:title "ApplicationError";
  rdfs:comment "Query Error.  Application Error.";
  dcterms:description "Query Error.  Application Error.".

cs:QueryResponse\#NF rdfs:subClassOf cs:QueryResponse;
  rdfs:label "No data found";
  dc:title "No data found";
  rdfs:comment "No errors, but no data was found matching the query request specification.";
  dcterms:description "No errors, but no data was found matching the query request specification.".

cs:QueryResponse\#OK rdfs:subClassOf cs:QueryResponse;
  rdfs:label "Data found";
  dc:title "Data found";
  rdfs:comment "Query reponse data found for 1 or more result sets matching the query request specification.";
  dcterms:description "Query reponse data found for 1 or more result sets matching the query request specification.".

cs:QueryResponse\#QE rdfs:subClassOf cs:QueryResponse;
  rdfs:label "QueryParameterError";
  dc:title "QueryParameterError";
  rdfs:comment "QueryError. Problem with input ParmetersError";
  dcterms:description "QueryError. Problem with input ParmetersError".

# - vs:v3-QueryStatusCode ------------------------------------------------------

vs:v3-QueryStatusCode a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System QueryStatusCode";
  dc:title "v3 Code System QueryStatusCode";
  rdfs:comment " A code specifying the state of the Query.";
  dcterms:description " A code specifying the state of the Query.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:QueryStatusCode.

cs:QueryStatusCode.system a fhir:CodeSystem;
  rdfs:label "v3 Code System QueryStatusCode";
  dc:title "v3 Code System QueryStatusCode";
  rdfs:comment " A code specifying the state of the Query.";
  dcterms:description " A code specifying the state of the Query.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:QueryStatusCode a fhir:Concept.

cs:QueryStatusCode\#aborted rdfs:subClassOf cs:QueryStatusCode;
  rdfs:label "aborted";
  dc:title "aborted";
  rdfs:comment "Query status aborted";
  dcterms:description "Query status aborted".

cs:QueryStatusCode\#deliveredResponse rdfs:subClassOf cs:QueryStatusCode;
  rdfs:label "deliveredResponse";
  dc:title "deliveredResponse";
  rdfs:comment "Query Status delivered response";
  dcterms:description "Query Status delivered response".

cs:QueryStatusCode\#executing rdfs:subClassOf cs:QueryStatusCode;
  rdfs:label "executing";
  dc:title "executing";
  rdfs:comment "Query Status executing";
  dcterms:description "Query Status executing".

cs:QueryStatusCode\#new rdfs:subClassOf cs:QueryStatusCode;
  rdfs:label "new";
  dc:title "new";
  rdfs:comment "Query Status new";
  dcterms:description "Query Status new".

cs:QueryStatusCode\#waitContinuedQueryResponse rdfs:subClassOf cs:QueryStatusCode;
  rdfs:label "waitContinuedQueryResponse";
  dc:title "waitContinuedQueryResponse";
  rdfs:comment "Query Status wait continued";
  dcterms:description "Query Status wait continued".

# - vs:v3-Race -----------------------------------------------------------------

vs:v3-Race a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System Race";
  dc:title "v3 Code System Race";
  rdfs:comment " In the United States, federal standards for classifying data on race determine the categories used by federal agencies and exert a strong influence on categorization by state and local agencies and private sector organizations.  The federal standards do not conceptually define race, and they recognize the absence of an anthropological or scientific basis for racial classification.  Instead, the federal standards acknowledge that race is a social-political construct in which an individual's own identification with one more race categories is preferred to observer identification. The standards use a variety of features to define five minimum race categories. Among these features are descent from \"the original peoples\" of a specified region or nation.  The minimum race categories are American Indian or Alaska Native, Asian, Black or African American, Native Hawaiian or Other Pacific Islander, and White.  The federal standards stipulate that race data need not be limited to the five minimum categories, but any expansion must be collapsible to those categories.";
  dcterms:description " In the United States, federal standards for classifying data on race determine the categories used by federal agencies and exert a strong influence on categorization by state and local agencies and private sector organizations.  The federal standards do not conceptually define race, and they recognize the absence of an anthropological or scientific basis for racial classification.  Instead, the federal standards acknowledge that race is a social-political construct in which an individual's own identification with one more race categories is preferred to observer identification. The standards use a variety of features to define five minimum race categories. Among these features are descent from \"the original peoples\" of a specified region or nation.  The minimum race categories are American Indian or Alaska Native, Asian, Black or African American, Native Hawaiian or Other Pacific Islander, and White.  The federal standards stipulate that race data need not be limited to the five minimum categories, but any expansion must be collapsible to those categories.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:Race.

cs:Race.system a fhir:CodeSystem;
  rdfs:label "v3 Code System Race";
  dc:title "v3 Code System Race";
  rdfs:comment " In the United States, federal standards for classifying data on race determine the categories used by federal agencies and exert a strong influence on categorization by state and local agencies and private sector organizations.  The federal standards do not conceptually define race, and they recognize the absence of an anthropological or scientific basis for racial classification.  Instead, the federal standards acknowledge that race is a social-political construct in which an individual's own identification with one more race categories is preferred to observer identification. The standards use a variety of features to define five minimum race categories. Among these features are descent from \"the original peoples\" of a specified region or nation.  The minimum race categories are American Indian or Alaska Native, Asian, Black or African American, Native Hawaiian or Other Pacific Islander, and White.  The federal standards stipulate that race data need not be limited to the five minimum categories, but any expansion must be collapsible to those categories.";
  dcterms:description " In the United States, federal standards for classifying data on race determine the categories used by federal agencies and exert a strong influence on categorization by state and local agencies and private sector organizations.  The federal standards do not conceptually define race, and they recognize the absence of an anthropological or scientific basis for racial classification.  Instead, the federal standards acknowledge that race is a social-political construct in which an individual's own identification with one more race categories is preferred to observer identification. The standards use a variety of features to define five minimum race categories. Among these features are descent from \"the original peoples\" of a specified region or nation.  The minimum race categories are American Indian or Alaska Native, Asian, Black or African American, Native Hawaiian or Other Pacific Islander, and White.  The federal standards stipulate that race data need not be limited to the five minimum categories, but any expansion must be collapsible to those categories.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:Race a fhir:Concept.

cs:Race\#1002%2d5 rdfs:subClassOf cs:Race;
  rdfs:label "American Indian or Alaska Native";
  dc:title "American Indian or Alaska Native";
  rdfs:comment "American Indian or Alaska Native";
  dcterms:description "American Indian or Alaska Native".

cs:Race\#1004%2d1 rdfs:subClassOf cs:Race\#1002%2d5;
  rdfs:label "American Indian";
  dc:title "American Indian";
  rdfs:comment "American Indian";
  dcterms:description "American Indian".

cs:Race\#1006%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Abenaki";
  dc:title "Abenaki";
  rdfs:comment "Abenaki";
  dcterms:description "Abenaki".

cs:Race\#1008%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Algonquian";
  dc:title "Algonquian";
  rdfs:comment "Algonquian";
  dcterms:description "Algonquian".

cs:Race\#1010%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Apache";
  dc:title "Apache";
  rdfs:comment "Apache";
  dcterms:description "Apache".

cs:Race\#1011%2d6 rdfs:subClassOf cs:Race\#1010%2d8;
  rdfs:label "Chiricahua";
  dc:title "Chiricahua";
  rdfs:comment "Chiricahua";
  dcterms:description "Chiricahua".

cs:Race\#1012%2d4 rdfs:subClassOf cs:Race\#1010%2d8;
  rdfs:label "Fort Sill Apache";
  dc:title "Fort Sill Apache";
  rdfs:comment "Fort Sill Apache";
  dcterms:description "Fort Sill Apache".

cs:Race\#1013%2d2 rdfs:subClassOf cs:Race\#1010%2d8;
  rdfs:label "Jicarilla Apache";
  dc:title "Jicarilla Apache";
  rdfs:comment "Jicarilla Apache";
  dcterms:description "Jicarilla Apache".

cs:Race\#1014%2d0 rdfs:subClassOf cs:Race\#1010%2d8;
  rdfs:label "Lipan Apache";
  dc:title "Lipan Apache";
  rdfs:comment "Lipan Apache";
  dcterms:description "Lipan Apache".

cs:Race\#1015%2d7 rdfs:subClassOf cs:Race\#1010%2d8;
  rdfs:label "Mescalero Apache";
  dc:title "Mescalero Apache";
  rdfs:comment "Mescalero Apache";
  dcterms:description "Mescalero Apache".

cs:Race\#1016%2d5 rdfs:subClassOf cs:Race\#1010%2d8;
  rdfs:label "Oklahoma Apache";
  dc:title "Oklahoma Apache";
  rdfs:comment "Oklahoma Apache";
  dcterms:description "Oklahoma Apache".

cs:Race\#1017%2d3 rdfs:subClassOf cs:Race\#1010%2d8;
  rdfs:label "Payson Apache";
  dc:title "Payson Apache";
  rdfs:comment "Payson Apache";
  dcterms:description "Payson Apache".

cs:Race\#1018%2d1 rdfs:subClassOf cs:Race\#1010%2d8;
  rdfs:label "San Carlos Apache";
  dc:title "San Carlos Apache";
  rdfs:comment "San Carlos Apache";
  dcterms:description "San Carlos Apache".

cs:Race\#1019%2d9 rdfs:subClassOf cs:Race\#1010%2d8;
  rdfs:label "White Mountain Apache";
  dc:title "White Mountain Apache";
  rdfs:comment "White Mountain Apache";
  dcterms:description "White Mountain Apache".

cs:Race\#1021%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Arapaho";
  dc:title "Arapaho";
  rdfs:comment "Arapaho";
  dcterms:description "Arapaho".

cs:Race\#1022%2d3 rdfs:subClassOf cs:Race\#1021%2d5;
  rdfs:label "Northern Arapaho";
  dc:title "Northern Arapaho";
  rdfs:comment "Northern Arapaho";
  dcterms:description "Northern Arapaho".

cs:Race\#1023%2d1 rdfs:subClassOf cs:Race\#1021%2d5;
  rdfs:label "Southern Arapaho";
  dc:title "Southern Arapaho";
  rdfs:comment "Southern Arapaho";
  dcterms:description "Southern Arapaho".

cs:Race\#1024%2d9 rdfs:subClassOf cs:Race\#1021%2d5;
  rdfs:label "Wind River Arapaho";
  dc:title "Wind River Arapaho";
  rdfs:comment "Wind River Arapaho";
  dcterms:description "Wind River Arapaho".

cs:Race\#1026%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Arikara";
  dc:title "Arikara";
  rdfs:comment "Arikara";
  dcterms:description "Arikara".

cs:Race\#1028%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Assiniboine";
  dc:title "Assiniboine";
  rdfs:comment "Assiniboine";
  dcterms:description "Assiniboine".

cs:Race\#1030%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Assiniboine Sioux";
  dc:title "Assiniboine Sioux";
  rdfs:comment "Assiniboine Sioux";
  dcterms:description "Assiniboine Sioux".

cs:Race\#1031%2d4 rdfs:subClassOf cs:Race\#1030%2d6;
  rdfs:label "Fort Peck Assiniboine Sioux";
  dc:title "Fort Peck Assiniboine Sioux";
  rdfs:comment "Fort Peck Assiniboine Sioux";
  dcterms:description "Fort Peck Assiniboine Sioux".

cs:Race\#1033%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Bannock";
  dc:title "Bannock";
  rdfs:comment "Bannock";
  dcterms:description "Bannock".

cs:Race\#1035%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Blackfeet";
  dc:title "Blackfeet";
  rdfs:comment "Blackfeet";
  dcterms:description "Blackfeet".

cs:Race\#1037%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Brotherton";
  dc:title "Brotherton";
  rdfs:comment "Brotherton";
  dcterms:description "Brotherton".

cs:Race\#1039%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Burt Lake Band";
  dc:title "Burt Lake Band";
  rdfs:comment "Burt Lake Band";
  dcterms:description "Burt Lake Band".

cs:Race\#1041%2d3 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Caddo";
  dc:title "Caddo";
  rdfs:comment "Caddo";
  dcterms:description "Caddo".

cs:Race\#1042%2d1 rdfs:subClassOf cs:Race\#1041%2d3;
  rdfs:label "Oklahoma Cado";
  dc:title "Oklahoma Cado";
  rdfs:comment "Oklahoma Cado";
  dcterms:description "Oklahoma Cado".

cs:Race\#1044%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Cahuilla";
  dc:title "Cahuilla";
  rdfs:comment "Cahuilla";
  dcterms:description "Cahuilla".

cs:Race\#1045%2d4 rdfs:subClassOf cs:Race\#1044%2d7;
  rdfs:label "Agua Caliente Cahuilla";
  dc:title "Agua Caliente Cahuilla";
  rdfs:comment "Agua Caliente Cahuilla";
  dcterms:description "Agua Caliente Cahuilla".

cs:Race\#1046%2d2 rdfs:subClassOf cs:Race\#1044%2d7;
  rdfs:label "Augustine";
  dc:title "Augustine";
  rdfs:comment "Augustine";
  dcterms:description "Augustine".

cs:Race\#1047%2d0 rdfs:subClassOf cs:Race\#1044%2d7;
  rdfs:label "Cabazon";
  dc:title "Cabazon";
  rdfs:comment "Cabazon";
  dcterms:description "Cabazon".

cs:Race\#1048%2d8 rdfs:subClassOf cs:Race\#1044%2d7;
  rdfs:label "Los Coyotes";
  dc:title "Los Coyotes";
  rdfs:comment "Los Coyotes";
  dcterms:description "Los Coyotes".

cs:Race\#1049%2d6 rdfs:subClassOf cs:Race\#1044%2d7;
  rdfs:label "Morongo";
  dc:title "Morongo";
  rdfs:comment "Morongo";
  dcterms:description "Morongo".

cs:Race\#1050%2d4 rdfs:subClassOf cs:Race\#1044%2d7;
  rdfs:label "Santa Rosa Cahuilla";
  dc:title "Santa Rosa Cahuilla";
  rdfs:comment "Santa Rosa Cahuilla";
  dcterms:description "Santa Rosa Cahuilla".

cs:Race\#1051%2d2 rdfs:subClassOf cs:Race\#1044%2d7;
  rdfs:label "Torres-Martinez";
  dc:title "Torres-Martinez";
  rdfs:comment "Torres-Martinez";
  dcterms:description "Torres-Martinez".

cs:Race\#1053%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "California Tribes";
  dc:title "California Tribes";
  rdfs:comment "California Tribes";
  dcterms:description "California Tribes".

cs:Race\#1054%2d6 rdfs:subClassOf cs:Race\#1053%2d8;
  rdfs:label "Cahto";
  dc:title "Cahto";
  rdfs:comment "Cahto";
  dcterms:description "Cahto".

cs:Race\#1055%2d3 rdfs:subClassOf cs:Race\#1053%2d8;
  rdfs:label "Chimariko";
  dc:title "Chimariko";
  rdfs:comment "Chimariko";
  dcterms:description "Chimariko".

cs:Race\#1056%2d1 rdfs:subClassOf cs:Race\#1053%2d8;
  rdfs:label "Coast Miwok";
  dc:title "Coast Miwok";
  rdfs:comment "Coast Miwok";
  dcterms:description "Coast Miwok".

cs:Race\#1057%2d9 rdfs:subClassOf cs:Race\#1053%2d8;
  rdfs:label "Digger";
  dc:title "Digger";
  rdfs:comment "Digger";
  dcterms:description "Digger".

cs:Race\#1058%2d7 rdfs:subClassOf cs:Race\#1053%2d8;
  rdfs:label "Kawaiisu";
  dc:title "Kawaiisu";
  rdfs:comment "Kawaiisu";
  dcterms:description "Kawaiisu".

cs:Race\#1059%2d5 rdfs:subClassOf cs:Race\#1053%2d8;
  rdfs:label "Kern River";
  dc:title "Kern River";
  rdfs:comment "Kern River";
  dcterms:description "Kern River".

cs:Race\#1060%2d3 rdfs:subClassOf cs:Race\#1053%2d8;
  rdfs:label "Mattole";
  dc:title "Mattole";
  rdfs:comment "Mattole";
  dcterms:description "Mattole".

cs:Race\#1061%2d1 rdfs:subClassOf cs:Race\#1053%2d8;
  rdfs:label "Red Wood";
  dc:title "Red Wood";
  rdfs:comment "Red Wood";
  dcterms:description "Red Wood".

cs:Race\#1062%2d9 rdfs:subClassOf cs:Race\#1053%2d8;
  rdfs:label "Santa Rosa";
  dc:title "Santa Rosa";
  rdfs:comment "Santa Rosa";
  dcterms:description "Santa Rosa".

cs:Race\#1063%2d7 rdfs:subClassOf cs:Race\#1053%2d8;
  rdfs:label "Takelma";
  dc:title "Takelma";
  rdfs:comment "Takelma";
  dcterms:description "Takelma".

cs:Race\#1064%2d5 rdfs:subClassOf cs:Race\#1053%2d8;
  rdfs:label "Wappo";
  dc:title "Wappo";
  rdfs:comment "Wappo";
  dcterms:description "Wappo".

cs:Race\#1065%2d2 rdfs:subClassOf cs:Race\#1053%2d8;
  rdfs:label "Yana";
  dc:title "Yana";
  rdfs:comment "Yana";
  dcterms:description "Yana".

cs:Race\#1066%2d0 rdfs:subClassOf cs:Race\#1053%2d8;
  rdfs:label "Yuki";
  dc:title "Yuki";
  rdfs:comment "Yuki";
  dcterms:description "Yuki".

cs:Race\#1068%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Canadian and Latin American Indian";
  dc:title "Canadian and Latin American Indian";
  rdfs:comment "Canadian and Latin American Indian";
  dcterms:description "Canadian and Latin American Indian".

cs:Race\#1069%2d4 rdfs:subClassOf cs:Race\#1068%2d6;
  rdfs:label "Canadian Indian";
  dc:title "Canadian Indian";
  rdfs:comment "Canadian Indian";
  dcterms:description "Canadian Indian".

cs:Race\#1070%2d2 rdfs:subClassOf cs:Race\#1068%2d6;
  rdfs:label "Central American Indian";
  dc:title "Central American Indian";
  rdfs:comment "Central American Indian";
  dcterms:description "Central American Indian".

cs:Race\#1071%2d0 rdfs:subClassOf cs:Race\#1068%2d6;
  rdfs:label "French American Indian";
  dc:title "French American Indian";
  rdfs:comment "French American Indian";
  dcterms:description "French American Indian".

cs:Race\#1072%2d8 rdfs:subClassOf cs:Race\#1068%2d6;
  rdfs:label "Mexican American Indian";
  dc:title "Mexican American Indian";
  rdfs:comment "Mexican American Indian";
  dcterms:description "Mexican American Indian".

cs:Race\#1073%2d6 rdfs:subClassOf cs:Race\#1068%2d6;
  rdfs:label "South American Indian";
  dc:title "South American Indian";
  rdfs:comment "South American Indian";
  dcterms:description "South American Indian".

cs:Race\#1074%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Spanish American Indian";
  dc:title "Spanish American Indian";
  rdfs:comment "Spanish American Indian";
  dcterms:description "Spanish American Indian".

cs:Race\#1076%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Catawba";
  dc:title "Catawba";
  rdfs:comment "Catawba";
  dcterms:description "Catawba".

cs:Race\#1741%2d8 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Alatna";
  dc:title "Alatna";
  rdfs:comment "Alatna";
  dcterms:description "Alatna".

cs:Race\#1742%2d6 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Alexander";
  dc:title "Alexander";
  rdfs:comment "Alexander";
  dcterms:description "Alexander".

cs:Race\#1743%2d4 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Allakaket";
  dc:title "Allakaket";
  rdfs:comment "Allakaket";
  dcterms:description "Allakaket".

cs:Race\#1744%2d2 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Alanvik";
  dc:title "Alanvik";
  rdfs:comment "Alanvik";
  dcterms:description "Alanvik".

cs:Race\#1745%2d9 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Anvik";
  dc:title "Anvik";
  rdfs:comment "Anvik";
  dcterms:description "Anvik".

cs:Race\#1746%2d7 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Arctic";
  dc:title "Arctic";
  rdfs:comment "Arctic";
  dcterms:description "Arctic".

cs:Race\#1747%2d5 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Beaver";
  dc:title "Beaver";
  rdfs:comment "Beaver";
  dcterms:description "Beaver".

cs:Race\#1748%2d3 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Birch Creek";
  dc:title "Birch Creek";
  rdfs:comment "Birch Creek";
  dcterms:description "Birch Creek".

cs:Race\#1749%2d1 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Cantwell";
  dc:title "Cantwell";
  rdfs:comment "Cantwell";
  dcterms:description "Cantwell".

cs:Race\#1750%2d9 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Chalkyitsik";
  dc:title "Chalkyitsik";
  rdfs:comment "Chalkyitsik";
  dcterms:description "Chalkyitsik".

cs:Race\#1751%2d7 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Chickaloon";
  dc:title "Chickaloon";
  rdfs:comment "Chickaloon";
  dcterms:description "Chickaloon".

cs:Race\#1752%2d5 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Chistochina";
  dc:title "Chistochina";
  rdfs:comment "Chistochina";
  dcterms:description "Chistochina".

cs:Race\#1753%2d3 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Chitina";
  dc:title "Chitina";
  rdfs:comment "Chitina";
  dcterms:description "Chitina".

cs:Race\#1754%2d1 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Circle";
  dc:title "Circle";
  rdfs:comment "Circle";
  dcterms:description "Circle".

cs:Race\#1755%2d8 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Cook Inlet";
  dc:title "Cook Inlet";
  rdfs:comment "Cook Inlet";
  dcterms:description "Cook Inlet".

cs:Race\#1756%2d6 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Copper Center";
  dc:title "Copper Center";
  rdfs:comment "Copper Center";
  dcterms:description "Copper Center".

cs:Race\#1757%2d4 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Copper River";
  dc:title "Copper River";
  rdfs:comment "Copper River";
  dcterms:description "Copper River".

cs:Race\#1758%2d2 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Dot Lake";
  dc:title "Dot Lake";
  rdfs:comment "Dot Lake";
  dcterms:description "Dot Lake".

cs:Race\#1759%2d0 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Doyon";
  dc:title "Doyon";
  rdfs:comment "Doyon";
  dcterms:description "Doyon".

cs:Race\#1760%2d8 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Eagle";
  dc:title "Eagle";
  rdfs:comment "Eagle";
  dcterms:description "Eagle".

cs:Race\#1761%2d6 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Eklutna";
  dc:title "Eklutna";
  rdfs:comment "Eklutna";
  dcterms:description "Eklutna".

cs:Race\#1762%2d4 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Evansville";
  dc:title "Evansville";
  rdfs:comment "Evansville";
  dcterms:description "Evansville".

cs:Race\#1763%2d2 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Fort Yukon";
  dc:title "Fort Yukon";
  rdfs:comment "Fort Yukon";
  dcterms:description "Fort Yukon".

cs:Race\#1764%2d0 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Gakona";
  dc:title "Gakona";
  rdfs:comment "Gakona";
  dcterms:description "Gakona".

cs:Race\#1765%2d7 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Galena";
  dc:title "Galena";
  rdfs:comment "Galena";
  dcterms:description "Galena".

cs:Race\#1766%2d5 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Grayling";
  dc:title "Grayling";
  rdfs:comment "Grayling";
  dcterms:description "Grayling".

cs:Race\#1767%2d3 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Gulkana";
  dc:title "Gulkana";
  rdfs:comment "Gulkana";
  dcterms:description "Gulkana".

cs:Race\#1768%2d1 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Healy Lake";
  dc:title "Healy Lake";
  rdfs:comment "Healy Lake";
  dcterms:description "Healy Lake".

cs:Race\#1769%2d9 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Holy Cross";
  dc:title "Holy Cross";
  rdfs:comment "Holy Cross";
  dcterms:description "Holy Cross".

cs:Race\#1770%2d7 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Hughes";
  dc:title "Hughes";
  rdfs:comment "Hughes";
  dcterms:description "Hughes".

cs:Race\#1771%2d5 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Huslia";
  dc:title "Huslia";
  rdfs:comment "Huslia";
  dcterms:description "Huslia".

cs:Race\#1772%2d3 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Iliamna";
  dc:title "Iliamna";
  rdfs:comment "Iliamna";
  dcterms:description "Iliamna".

cs:Race\#1773%2d1 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Kaltag";
  dc:title "Kaltag";
  rdfs:comment "Kaltag";
  dcterms:description "Kaltag".

cs:Race\#1774%2d9 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Kluti Kaah";
  dc:title "Kluti Kaah";
  rdfs:comment "Kluti Kaah";
  dcterms:description "Kluti Kaah".

cs:Race\#1775%2d6 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Knik";
  dc:title "Knik";
  rdfs:comment "Knik";
  dcterms:description "Knik".

cs:Race\#1776%2d4 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Koyukuk";
  dc:title "Koyukuk";
  rdfs:comment "Koyukuk";
  dcterms:description "Koyukuk".

cs:Race\#1777%2d2 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Lake Minchumina";
  dc:title "Lake Minchumina";
  rdfs:comment "Lake Minchumina";
  dcterms:description "Lake Minchumina".

cs:Race\#1778%2d0 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Lime";
  dc:title "Lime";
  rdfs:comment "Lime";
  dcterms:description "Lime".

cs:Race\#1779%2d8 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Mcgrath";
  dc:title "Mcgrath";
  rdfs:comment "Mcgrath";
  dcterms:description "Mcgrath".

cs:Race\#1780%2d6 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Manley Hot Springs";
  dc:title "Manley Hot Springs";
  rdfs:comment "Manley Hot Springs";
  dcterms:description "Manley Hot Springs".

cs:Race\#1781%2d4 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Mentasta Lake";
  dc:title "Mentasta Lake";
  rdfs:comment "Mentasta Lake";
  dcterms:description "Mentasta Lake".

cs:Race\#1782%2d2 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Minto";
  dc:title "Minto";
  rdfs:comment "Minto";
  dcterms:description "Minto".

cs:Race\#1783%2d0 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Nenana";
  dc:title "Nenana";
  rdfs:comment "Nenana";
  dcterms:description "Nenana".

cs:Race\#1784%2d8 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Nikolai";
  dc:title "Nikolai";
  rdfs:comment "Nikolai";
  dcterms:description "Nikolai".

cs:Race\#1785%2d5 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Ninilchik";
  dc:title "Ninilchik";
  rdfs:comment "Ninilchik";
  dcterms:description "Ninilchik".

cs:Race\#1786%2d3 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Nondalton";
  dc:title "Nondalton";
  rdfs:comment "Nondalton";
  dcterms:description "Nondalton".

cs:Race\#1787%2d1 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Northway";
  dc:title "Northway";
  rdfs:comment "Northway";
  dcterms:description "Northway".

cs:Race\#1788%2d9 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Nulato";
  dc:title "Nulato";
  rdfs:comment "Nulato";
  dcterms:description "Nulato".

cs:Race\#1789%2d7 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Pedro Bay";
  dc:title "Pedro Bay";
  rdfs:comment "Pedro Bay";
  dcterms:description "Pedro Bay".

cs:Race\#1790%2d5 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Rampart";
  dc:title "Rampart";
  rdfs:comment "Rampart";
  dcterms:description "Rampart".

cs:Race\#1791%2d3 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Ruby";
  dc:title "Ruby";
  rdfs:comment "Ruby";
  dcterms:description "Ruby".

cs:Race\#1792%2d1 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Salamatof";
  dc:title "Salamatof";
  rdfs:comment "Salamatof";
  dcterms:description "Salamatof".

cs:Race\#1793%2d9 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Seldovia";
  dc:title "Seldovia";
  rdfs:comment "Seldovia";
  dcterms:description "Seldovia".

cs:Race\#1794%2d7 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Slana";
  dc:title "Slana";
  rdfs:comment "Slana";
  dcterms:description "Slana".

cs:Race\#1795%2d4 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Shageluk";
  dc:title "Shageluk";
  rdfs:comment "Shageluk";
  dcterms:description "Shageluk".

cs:Race\#1796%2d2 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Stevens";
  dc:title "Stevens";
  rdfs:comment "Stevens";
  dcterms:description "Stevens".

cs:Race\#1797%2d0 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Stony River";
  dc:title "Stony River";
  rdfs:comment "Stony River";
  dcterms:description "Stony River".

cs:Race\#1798%2d8 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Takotna";
  dc:title "Takotna";
  rdfs:comment "Takotna";
  dcterms:description "Takotna".

cs:Race\#1799%2d6 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Tanacross";
  dc:title "Tanacross";
  rdfs:comment "Tanacross";
  dcterms:description "Tanacross".

cs:Race\#1800%2d2 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Tanaina";
  dc:title "Tanaina";
  rdfs:comment "Tanaina";
  dcterms:description "Tanaina".

cs:Race\#1801%2d0 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Tanana";
  dc:title "Tanana";
  rdfs:comment "Tanana";
  dcterms:description "Tanana".

cs:Race\#1802%2d8 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Tanana Chiefs";
  dc:title "Tanana Chiefs";
  rdfs:comment "Tanana Chiefs";
  dcterms:description "Tanana Chiefs".

cs:Race\#1803%2d6 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Tazlina";
  dc:title "Tazlina";
  rdfs:comment "Tazlina";
  dcterms:description "Tazlina".

cs:Race\#1804%2d4 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Telida";
  dc:title "Telida";
  rdfs:comment "Telida";
  dcterms:description "Telida".

cs:Race\#1805%2d1 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Tetlin";
  dc:title "Tetlin";
  rdfs:comment "Tetlin";
  dcterms:description "Tetlin".

cs:Race\#1806%2d9 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Tok";
  dc:title "Tok";
  rdfs:comment "Tok";
  dcterms:description "Tok".

cs:Race\#1807%2d7 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Tyonek";
  dc:title "Tyonek";
  rdfs:comment "Tyonek";
  dcterms:description "Tyonek".

cs:Race\#1808%2d5 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Venetie";
  dc:title "Venetie";
  rdfs:comment "Venetie";
  dcterms:description "Venetie".

cs:Race\#1809%2d3 rdfs:subClassOf cs:Race\#1076%2d9;
  rdfs:label "Wiseman";
  dc:title "Wiseman";
  rdfs:comment "Wiseman";
  dcterms:description "Wiseman".

cs:Race\#1078%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Cayuse";
  dc:title "Cayuse";
  rdfs:comment "Cayuse";
  dcterms:description "Cayuse".

cs:Race\#1080%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Chehalis";
  dc:title "Chehalis";
  rdfs:comment "Chehalis";
  dcterms:description "Chehalis".

cs:Race\#1082%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Chemakuan";
  dc:title "Chemakuan";
  rdfs:comment "Chemakuan";
  dcterms:description "Chemakuan".

cs:Race\#1083%2d5 rdfs:subClassOf cs:Race\#1082%2d7;
  rdfs:label "Hoh";
  dc:title "Hoh";
  rdfs:comment "Hoh";
  dcterms:description "Hoh".

cs:Race\#1084%2d3 rdfs:subClassOf cs:Race\#1082%2d7;
  rdfs:label "Quileute";
  dc:title "Quileute";
  rdfs:comment "Quileute";
  dcterms:description "Quileute".

cs:Race\#1086%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Chemehuevi";
  dc:title "Chemehuevi";
  rdfs:comment "Chemehuevi";
  dcterms:description "Chemehuevi".

cs:Race\#1088%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Cherokee";
  dc:title "Cherokee";
  rdfs:comment "Cherokee";
  dcterms:description "Cherokee".

cs:Race\#1089%2d2 rdfs:subClassOf cs:Race\#1088%2d4;
  rdfs:label "Cherokee Alabama";
  dc:title "Cherokee Alabama";
  rdfs:comment "Cherokee Alabama";
  dcterms:description "Cherokee Alabama".

cs:Race\#1090%2d0 rdfs:subClassOf cs:Race\#1088%2d4;
  rdfs:label "Cherokees of Northeast Alabama";
  dc:title "Cherokees of Northeast Alabama";
  rdfs:comment "Cherokees of Northeast Alabama";
  dcterms:description "Cherokees of Northeast Alabama".

cs:Race\#1091%2d8 rdfs:subClassOf cs:Race\#1088%2d4;
  rdfs:label "Cherokees of Southeast Alabama";
  dc:title "Cherokees of Southeast Alabama";
  rdfs:comment "Cherokees of Southeast Alabama";
  dcterms:description "Cherokees of Southeast Alabama".

cs:Race\#1092%2d6 rdfs:subClassOf cs:Race\#1088%2d4;
  rdfs:label "Eastern Cherokee";
  dc:title "Eastern Cherokee";
  rdfs:comment "Eastern Cherokee";
  dcterms:description "Eastern Cherokee".

cs:Race\#1093%2d4 rdfs:subClassOf cs:Race\#1088%2d4;
  rdfs:label "Echota Cherokee";
  dc:title "Echota Cherokee";
  rdfs:comment "Echota Cherokee";
  dcterms:description "Echota Cherokee".

cs:Race\#1094%2d2 rdfs:subClassOf cs:Race\#1088%2d4;
  rdfs:label "Etowah Cherokee";
  dc:title "Etowah Cherokee";
  rdfs:comment "Etowah Cherokee";
  dcterms:description "Etowah Cherokee".

cs:Race\#1095%2d9 rdfs:subClassOf cs:Race\#1088%2d4;
  rdfs:label "Northern Cherokee";
  dc:title "Northern Cherokee";
  rdfs:comment "Northern Cherokee";
  dcterms:description "Northern Cherokee".

cs:Race\#1096%2d7 rdfs:subClassOf cs:Race\#1088%2d4;
  rdfs:label "Tuscola";
  dc:title "Tuscola";
  rdfs:comment "Tuscola";
  dcterms:description "Tuscola".

cs:Race\#1097%2d5 rdfs:subClassOf cs:Race\#1088%2d4;
  rdfs:label "United Keetowah Band of Cherokee";
  dc:title "United Keetowah Band of Cherokee";
  rdfs:comment "United Keetowah Band of Cherokee";
  dcterms:description "United Keetowah Band of Cherokee".

cs:Race\#1098%2d3 rdfs:subClassOf cs:Race\#1088%2d4;
  rdfs:label "Western Cherokee";
  dc:title "Western Cherokee";
  rdfs:comment "Western Cherokee";
  dcterms:description "Western Cherokee".

cs:Race\#1100%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Cherokee Shawnee";
  dc:title "Cherokee Shawnee";
  rdfs:comment "Cherokee Shawnee";
  dcterms:description "Cherokee Shawnee".

cs:Race\#1102%2d3 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Cheyenne";
  dc:title "Cheyenne";
  rdfs:comment "Cheyenne";
  dcterms:description "Cheyenne".

cs:Race\#1103%2d1 rdfs:subClassOf cs:Race\#1102%2d3;
  rdfs:label "Northern Cheyenne";
  dc:title "Northern Cheyenne";
  rdfs:comment "Northern Cheyenne";
  dcterms:description "Northern Cheyenne".

cs:Race\#1104%2d9 rdfs:subClassOf cs:Race\#1102%2d3;
  rdfs:label "Southern Cheyenne";
  dc:title "Southern Cheyenne";
  rdfs:comment "Southern Cheyenne";
  dcterms:description "Southern Cheyenne".

cs:Race\#1106%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Cheyenne-Arapaho";
  dc:title "Cheyenne-Arapaho";
  rdfs:comment "Cheyenne-Arapaho";
  dcterms:description "Cheyenne-Arapaho".

cs:Race\#1108%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Chickahominy";
  dc:title "Chickahominy";
  rdfs:comment "Chickahominy";
  dcterms:description "Chickahominy".

cs:Race\#1109%2d8 rdfs:subClassOf cs:Race\#1108%2d0;
  rdfs:label "Eastern Chickahominy";
  dc:title "Eastern Chickahominy";
  rdfs:comment "Eastern Chickahominy";
  dcterms:description "Eastern Chickahominy".

cs:Race\#1110%2d6 rdfs:subClassOf cs:Race\#1108%2d0;
  rdfs:label "Western Chickahominy";
  dc:title "Western Chickahominy";
  rdfs:comment "Western Chickahominy";
  dcterms:description "Western Chickahominy".

cs:Race\#1112%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Chickasaw";
  dc:title "Chickasaw";
  rdfs:comment "Chickasaw";
  dcterms:description "Chickasaw".

cs:Race\#1114%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Chinook";
  dc:title "Chinook";
  rdfs:comment "Chinook";
  dcterms:description "Chinook".

cs:Race\#1115%2d5 rdfs:subClassOf cs:Race\#1114%2d8;
  rdfs:label "Clatsop";
  dc:title "Clatsop";
  rdfs:comment "Clatsop";
  dcterms:description "Clatsop".

cs:Race\#1116%2d3 rdfs:subClassOf cs:Race\#1114%2d8;
  rdfs:label "Columbia River Chinook";
  dc:title "Columbia River Chinook";
  rdfs:comment "Columbia River Chinook";
  dcterms:description "Columbia River Chinook".

cs:Race\#1117%2d1 rdfs:subClassOf cs:Race\#1114%2d8;
  rdfs:label "Kathlamet";
  dc:title "Kathlamet";
  rdfs:comment "Kathlamet";
  dcterms:description "Kathlamet".

cs:Race\#1118%2d9 rdfs:subClassOf cs:Race\#1114%2d8;
  rdfs:label "Upper Chinook";
  dc:title "Upper Chinook";
  rdfs:comment "Upper Chinook";
  dcterms:description "Upper Chinook".

cs:Race\#1119%2d7 rdfs:subClassOf cs:Race\#1114%2d8;
  rdfs:label "Wakiakum Chinook";
  dc:title "Wakiakum Chinook";
  rdfs:comment "Wakiakum Chinook";
  dcterms:description "Wakiakum Chinook".

cs:Race\#1120%2d5 rdfs:subClassOf cs:Race\#1114%2d8;
  rdfs:label "Willapa Chinook";
  dc:title "Willapa Chinook";
  rdfs:comment "Willapa Chinook";
  dcterms:description "Willapa Chinook".

cs:Race\#1121%2d3 rdfs:subClassOf cs:Race\#1114%2d8;
  rdfs:label "Wishram";
  dc:title "Wishram";
  rdfs:comment "Wishram";
  dcterms:description "Wishram".

cs:Race\#1123%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Chippewa";
  dc:title "Chippewa";
  rdfs:comment "Chippewa";
  dcterms:description "Chippewa".

cs:Race\#1124%2d7 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Bad River";
  dc:title "Bad River";
  rdfs:comment "Bad River";
  dcterms:description "Bad River".

cs:Race\#1125%2d4 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Bay Mills Chippewa";
  dc:title "Bay Mills Chippewa";
  rdfs:comment "Bay Mills Chippewa";
  dcterms:description "Bay Mills Chippewa".

cs:Race\#1126%2d2 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Bois Forte";
  dc:title "Bois Forte";
  rdfs:comment "Bois Forte";
  dcterms:description "Bois Forte".

cs:Race\#1127%2d0 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Burt Lake Chippewa";
  dc:title "Burt Lake Chippewa";
  rdfs:comment "Burt Lake Chippewa";
  dcterms:description "Burt Lake Chippewa".

cs:Race\#1128%2d8 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Fond du Lac";
  dc:title "Fond du Lac";
  rdfs:comment "Fond du Lac";
  dcterms:description "Fond du Lac".

cs:Race\#1129%2d6 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Grand Portage";
  dc:title "Grand Portage";
  rdfs:comment "Grand Portage";
  dcterms:description "Grand Portage".

cs:Race\#1130%2d4 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Grand Traverse Band of Ottawa-Chippewa";
  dc:title "Grand Traverse Band of Ottawa-Chippewa";
  rdfs:comment "Grand Traverse Band of Ottawa-Chippewa";
  dcterms:description "Grand Traverse Band of Ottawa-Chippewa".

cs:Race\#1131%2d2 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Keweenaw";
  dc:title "Keweenaw";
  rdfs:comment "Keweenaw";
  dcterms:description "Keweenaw".

cs:Race\#1132%2d0 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Lac Courte Oreilles";
  dc:title "Lac Courte Oreilles";
  rdfs:comment "Lac Courte Oreilles";
  dcterms:description "Lac Courte Oreilles".

cs:Race\#1133%2d8 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Lac du Flambeau";
  dc:title "Lac du Flambeau";
  rdfs:comment "Lac du Flambeau";
  dcterms:description "Lac du Flambeau".

cs:Race\#1134%2d6 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Lac Vieux Desert Chippewa";
  dc:title "Lac Vieux Desert Chippewa";
  rdfs:comment "Lac Vieux Desert Chippewa";
  dcterms:description "Lac Vieux Desert Chippewa".

cs:Race\#1135%2d3 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Lake Superior";
  dc:title "Lake Superior";
  rdfs:comment "Lake Superior";
  dcterms:description "Lake Superior".

cs:Race\#1136%2d1 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Leech Lake";
  dc:title "Leech Lake";
  rdfs:comment "Leech Lake";
  dcterms:description "Leech Lake".

cs:Race\#1137%2d9 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Little Shell Chippewa";
  dc:title "Little Shell Chippewa";
  rdfs:comment "Little Shell Chippewa";
  dcterms:description "Little Shell Chippewa".

cs:Race\#1138%2d7 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Mille Lacs";
  dc:title "Mille Lacs";
  rdfs:comment "Mille Lacs";
  dcterms:description "Mille Lacs".

cs:Race\#1139%2d5 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Minnesota Chippewa";
  dc:title "Minnesota Chippewa";
  rdfs:comment "Minnesota Chippewa";
  dcterms:description "Minnesota Chippewa".

cs:Race\#1140%2d3 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Ontonagon";
  dc:title "Ontonagon";
  rdfs:comment "Ontonagon";
  dcterms:description "Ontonagon".

cs:Race\#1141%2d1 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Red Cliff Chippewa";
  dc:title "Red Cliff Chippewa";
  rdfs:comment "Red Cliff Chippewa";
  dcterms:description "Red Cliff Chippewa".

cs:Race\#1142%2d9 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Red Lake Chippewa";
  dc:title "Red Lake Chippewa";
  rdfs:comment "Red Lake Chippewa";
  dcterms:description "Red Lake Chippewa".

cs:Race\#1143%2d7 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Saginaw Chippewa";
  dc:title "Saginaw Chippewa";
  rdfs:comment "Saginaw Chippewa";
  dcterms:description "Saginaw Chippewa".

cs:Race\#1144%2d5 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "St. Croix Chippewa";
  dc:title "St. Croix Chippewa";
  rdfs:comment "St. Croix Chippewa";
  dcterms:description "St. Croix Chippewa".

cs:Race\#1145%2d2 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Sault Ste. Marie Chippewa";
  dc:title "Sault Ste. Marie Chippewa";
  rdfs:comment "Sault Ste. Marie Chippewa";
  dcterms:description "Sault Ste. Marie Chippewa".

cs:Race\#1146%2d0 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Sokoagon Chippewa";
  dc:title "Sokoagon Chippewa";
  rdfs:comment "Sokoagon Chippewa";
  dcterms:description "Sokoagon Chippewa".

cs:Race\#1147%2d8 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "Turtle Mountain";
  dc:title "Turtle Mountain";
  rdfs:comment "Turtle Mountain";
  dcterms:description "Turtle Mountain".

cs:Race\#1148%2d6 rdfs:subClassOf cs:Race\#1123%2d9;
  rdfs:label "White Earth";
  dc:title "White Earth";
  rdfs:comment "White Earth";
  dcterms:description "White Earth".

cs:Race\#1150%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Chippewa Cree";
  dc:title "Chippewa Cree";
  rdfs:comment "Chippewa Cree";
  dcterms:description "Chippewa Cree".

cs:Race\#1151%2d0 rdfs:subClassOf cs:Race\#1150%2d2;
  rdfs:label "Rocky Boy's Chippewa Cree";
  dc:title "Rocky Boy's Chippewa Cree";
  rdfs:comment "Rocky Boy's Chippewa Cree";
  dcterms:description "Rocky Boy's Chippewa Cree".

cs:Race\#1153%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Chitimacha";
  dc:title "Chitimacha";
  rdfs:comment "Chitimacha";
  dcterms:description "Chitimacha".

cs:Race\#1155%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Choctaw";
  dc:title "Choctaw";
  rdfs:comment "Choctaw";
  dcterms:description "Choctaw".

cs:Race\#1156%2d9 rdfs:subClassOf cs:Race\#1155%2d1;
  rdfs:label "Clifton Choctaw";
  dc:title "Clifton Choctaw";
  rdfs:comment "Clifton Choctaw";
  dcterms:description "Clifton Choctaw".

cs:Race\#1157%2d7 rdfs:subClassOf cs:Race\#1155%2d1;
  rdfs:label "Jena Choctaw";
  dc:title "Jena Choctaw";
  rdfs:comment "Jena Choctaw";
  dcterms:description "Jena Choctaw".

cs:Race\#1158%2d5 rdfs:subClassOf cs:Race\#1155%2d1;
  rdfs:label "Mississippi Choctaw";
  dc:title "Mississippi Choctaw";
  rdfs:comment "Mississippi Choctaw";
  dcterms:description "Mississippi Choctaw".

cs:Race\#1159%2d3 rdfs:subClassOf cs:Race\#1155%2d1;
  rdfs:label "Mowa Band of Choctaw";
  dc:title "Mowa Band of Choctaw";
  rdfs:comment "Mowa Band of Choctaw";
  dcterms:description "Mowa Band of Choctaw".

cs:Race\#1160%2d1 rdfs:subClassOf cs:Race\#1155%2d1;
  rdfs:label "Oklahoma Choctaw";
  dc:title "Oklahoma Choctaw";
  rdfs:comment "Oklahoma Choctaw";
  dcterms:description "Oklahoma Choctaw".

cs:Race\#1162%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Chumash";
  dc:title "Chumash";
  rdfs:comment "Chumash";
  dcterms:description "Chumash".

cs:Race\#1163%2d5 rdfs:subClassOf cs:Race\#1162%2d7;
  rdfs:label "Santa Ynez";
  dc:title "Santa Ynez";
  rdfs:comment "Santa Ynez";
  dcterms:description "Santa Ynez".

cs:Race\#1165%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Clear Lake";
  dc:title "Clear Lake";
  rdfs:comment "Clear Lake";
  dcterms:description "Clear Lake".

cs:Race\#1167%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Coeur D'Alene";
  dc:title "Coeur D'Alene";
  rdfs:comment "Coeur D'Alene";
  dcterms:description "Coeur D'Alene".

cs:Race\#1169%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Coharie";
  dc:title "Coharie";
  rdfs:comment "Coharie";
  dcterms:description "Coharie".

cs:Race\#1171%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Colorado River";
  dc:title "Colorado River";
  rdfs:comment "Colorado River";
  dcterms:description "Colorado River".

cs:Race\#1173%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Colville";
  dc:title "Colville";
  rdfs:comment "Colville";
  dcterms:description "Colville".

cs:Race\#1175%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Comanche";
  dc:title "Comanche";
  rdfs:comment "Comanche";
  dcterms:description "Comanche".

cs:Race\#1176%2d7 rdfs:subClassOf cs:Race\#1175%2d9;
  rdfs:label "Oklahoma Comanche";
  dc:title "Oklahoma Comanche";
  rdfs:comment "Oklahoma Comanche";
  dcterms:description "Oklahoma Comanche".

cs:Race\#1178%2d3 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Coos, Lower Umpqua, Siuslaw";
  dc:title "Coos, Lower Umpqua, Siuslaw";
  rdfs:comment "Coos, Lower Umpqua, Siuslaw";
  dcterms:description "Coos, Lower Umpqua, Siuslaw".

cs:Race\#1180%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Coos";
  dc:title "Coos";
  rdfs:comment "Coos";
  dcterms:description "Coos".

cs:Race\#1182%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Coquilles";
  dc:title "Coquilles";
  rdfs:comment "Coquilles";
  dcterms:description "Coquilles".

cs:Race\#1184%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Costanoan";
  dc:title "Costanoan";
  rdfs:comment "Costanoan";
  dcterms:description "Costanoan".

cs:Race\#1186%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Coushatta";
  dc:title "Coushatta";
  rdfs:comment "Coushatta";
  dcterms:description "Coushatta".

cs:Race\#1187%2d4 rdfs:subClassOf cs:Race\#1186%2d6;
  rdfs:label "Alabama Coushatta";
  dc:title "Alabama Coushatta";
  rdfs:comment "Alabama Coushatta";
  dcterms:description "Alabama Coushatta".

cs:Race\#1189%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Cowlitz";
  dc:title "Cowlitz";
  rdfs:comment "Cowlitz";
  dcterms:description "Cowlitz".

cs:Race\#1191%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Cree";
  dc:title "Cree";
  rdfs:comment "Cree";
  dcterms:description "Cree".

cs:Race\#1193%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Creek";
  dc:title "Creek";
  rdfs:comment "Creek";
  dcterms:description "Creek".

cs:Race\#1194%2d0 rdfs:subClassOf cs:Race\#1193%2d2;
  rdfs:label "Alabama Creek";
  dc:title "Alabama Creek";
  rdfs:comment "Alabama Creek";
  dcterms:description "Alabama Creek".

cs:Race\#1195%2d7 rdfs:subClassOf cs:Race\#1193%2d2;
  rdfs:label "Alabama Quassarte";
  dc:title "Alabama Quassarte";
  rdfs:comment "Alabama Quassarte";
  dcterms:description "Alabama Quassarte".

cs:Race\#1196%2d5 rdfs:subClassOf cs:Race\#1193%2d2;
  rdfs:label "Eastern Creek";
  dc:title "Eastern Creek";
  rdfs:comment "Eastern Creek";
  dcterms:description "Eastern Creek".

cs:Race\#1197%2d3 rdfs:subClassOf cs:Race\#1193%2d2;
  rdfs:label "Eastern Muscogee";
  dc:title "Eastern Muscogee";
  rdfs:comment "Eastern Muscogee";
  dcterms:description "Eastern Muscogee".

cs:Race\#1198%2d1 rdfs:subClassOf cs:Race\#1193%2d2;
  rdfs:label "Kialegee";
  dc:title "Kialegee";
  rdfs:comment "Kialegee";
  dcterms:description "Kialegee".

cs:Race\#1199%2d9 rdfs:subClassOf cs:Race\#1193%2d2;
  rdfs:label "Lower Muscogee";
  dc:title "Lower Muscogee";
  rdfs:comment "Lower Muscogee";
  dcterms:description "Lower Muscogee".

cs:Race\#1200%2d5 rdfs:subClassOf cs:Race\#1193%2d2;
  rdfs:label "Machis Lower Creek Indian";
  dc:title "Machis Lower Creek Indian";
  rdfs:comment "Machis Lower Creek Indian";
  dcterms:description "Machis Lower Creek Indian".

cs:Race\#1201%2d3 rdfs:subClassOf cs:Race\#1193%2d2;
  rdfs:label "Poarch Band";
  dc:title "Poarch Band";
  rdfs:comment "Poarch Band";
  dcterms:description "Poarch Band".

cs:Race\#1202%2d1 rdfs:subClassOf cs:Race\#1193%2d2;
  rdfs:label "Principal Creek Indian Nation";
  dc:title "Principal Creek Indian Nation";
  rdfs:comment "Principal Creek Indian Nation";
  dcterms:description "Principal Creek Indian Nation".

cs:Race\#1203%2d9 rdfs:subClassOf cs:Race\#1193%2d2;
  rdfs:label "Star Clan of Muscogee Creeks";
  dc:title "Star Clan of Muscogee Creeks";
  rdfs:comment "Star Clan of Muscogee Creeks";
  dcterms:description "Star Clan of Muscogee Creeks".

cs:Race\#1204%2d7 rdfs:subClassOf cs:Race\#1193%2d2;
  rdfs:label "Thlopthlocco";
  dc:title "Thlopthlocco";
  rdfs:comment "Thlopthlocco";
  dcterms:description "Thlopthlocco".

cs:Race\#1205%2d4 rdfs:subClassOf cs:Race\#1193%2d2;
  rdfs:label "Tuckabachee";
  dc:title "Tuckabachee";
  rdfs:comment "Tuckabachee";
  dcterms:description "Tuckabachee".

cs:Race\#1207%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Croatan";
  dc:title "Croatan";
  rdfs:comment "Croatan";
  dcterms:description "Croatan".

cs:Race\#1209%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Crow";
  dc:title "Crow";
  rdfs:comment "Crow";
  dcterms:description "Crow".

cs:Race\#1211%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Cupeno";
  dc:title "Cupeno";
  rdfs:comment "Cupeno";
  dcterms:description "Cupeno".

cs:Race\#1212%2d0 rdfs:subClassOf cs:Race\#1211%2d2;
  rdfs:label "Agua Caliente";
  dc:title "Agua Caliente";
  rdfs:comment "Agua Caliente";
  dcterms:description "Agua Caliente".

cs:Race\#1214%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Delaware";
  dc:title "Delaware";
  rdfs:comment "Delaware";
  dcterms:description "Delaware".

cs:Race\#1215%2d3 rdfs:subClassOf cs:Race\#1214%2d6;
  rdfs:label "Eastern Delaware";
  dc:title "Eastern Delaware";
  rdfs:comment "Eastern Delaware";
  dcterms:description "Eastern Delaware".

cs:Race\#1216%2d1 rdfs:subClassOf cs:Race\#1214%2d6;
  rdfs:label "Lenni-Lenape";
  dc:title "Lenni-Lenape";
  rdfs:comment "Lenni-Lenape";
  dcterms:description "Lenni-Lenape".

cs:Race\#1217%2d9 rdfs:subClassOf cs:Race\#1214%2d6;
  rdfs:label "Munsee";
  dc:title "Munsee";
  rdfs:comment "Munsee";
  dcterms:description "Munsee".

cs:Race\#1218%2d7 rdfs:subClassOf cs:Race\#1214%2d6;
  rdfs:label "Oklahoma Delaware";
  dc:title "Oklahoma Delaware";
  rdfs:comment "Oklahoma Delaware";
  dcterms:description "Oklahoma Delaware".

cs:Race\#1219%2d5 rdfs:subClassOf cs:Race\#1214%2d6;
  rdfs:label "Rampough Mountain";
  dc:title "Rampough Mountain";
  rdfs:comment "Rampough Mountain";
  dcterms:description "Rampough Mountain".

cs:Race\#1220%2d3 rdfs:subClassOf cs:Race\#1214%2d6;
  rdfs:label "Sand Hill";
  dc:title "Sand Hill";
  rdfs:comment "Sand Hill";
  dcterms:description "Sand Hill".

cs:Race\#1222%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Diegueno";
  dc:title "Diegueno";
  rdfs:comment "Diegueno";
  dcterms:description "Diegueno".

cs:Race\#1223%2d7 rdfs:subClassOf cs:Race\#1222%2d9;
  rdfs:label "Campo";
  dc:title "Campo";
  rdfs:comment "Campo";
  dcterms:description "Campo".

cs:Race\#1224%2d5 rdfs:subClassOf cs:Race\#1222%2d9;
  rdfs:label "Capitan Grande";
  dc:title "Capitan Grande";
  rdfs:comment "Capitan Grande";
  dcterms:description "Capitan Grande".

cs:Race\#1225%2d2 rdfs:subClassOf cs:Race\#1222%2d9;
  rdfs:label "Cuyapaipe";
  dc:title "Cuyapaipe";
  rdfs:comment "Cuyapaipe";
  dcterms:description "Cuyapaipe".

cs:Race\#1226%2d0 rdfs:subClassOf cs:Race\#1222%2d9;
  rdfs:label "La Posta";
  dc:title "La Posta";
  rdfs:comment "La Posta";
  dcterms:description "La Posta".

cs:Race\#1227%2d8 rdfs:subClassOf cs:Race\#1222%2d9;
  rdfs:label "Manzanita";
  dc:title "Manzanita";
  rdfs:comment "Manzanita";
  dcterms:description "Manzanita".

cs:Race\#1228%2d6 rdfs:subClassOf cs:Race\#1222%2d9;
  rdfs:label "Mesa Grande";
  dc:title "Mesa Grande";
  rdfs:comment "Mesa Grande";
  dcterms:description "Mesa Grande".

cs:Race\#1229%2d4 rdfs:subClassOf cs:Race\#1222%2d9;
  rdfs:label "San Pasqual";
  dc:title "San Pasqual";
  rdfs:comment "San Pasqual";
  dcterms:description "San Pasqual".

cs:Race\#1230%2d2 rdfs:subClassOf cs:Race\#1222%2d9;
  rdfs:label "Santa Ysabel";
  dc:title "Santa Ysabel";
  rdfs:comment "Santa Ysabel";
  dcterms:description "Santa Ysabel".

cs:Race\#1231%2d0 rdfs:subClassOf cs:Race\#1222%2d9;
  rdfs:label "Sycuan";
  dc:title "Sycuan";
  rdfs:comment "Sycuan";
  dcterms:description "Sycuan".

cs:Race\#1233%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Eastern Tribes";
  dc:title "Eastern Tribes";
  rdfs:comment "Eastern Tribes";
  dcterms:description "Eastern Tribes".

cs:Race\#1234%2d4 rdfs:subClassOf cs:Race\#1233%2d6;
  rdfs:label "Attacapa";
  dc:title "Attacapa";
  rdfs:comment "Attacapa";
  dcterms:description "Attacapa".

cs:Race\#1235%2d1 rdfs:subClassOf cs:Race\#1233%2d6;
  rdfs:label "Biloxi";
  dc:title "Biloxi";
  rdfs:comment "Biloxi";
  dcterms:description "Biloxi".

cs:Race\#1236%2d9 rdfs:subClassOf cs:Race\#1233%2d6;
  rdfs:label "Georgetown";
  dc:title "Georgetown";
  rdfs:comment "Georgetown";
  dcterms:description "Georgetown".

cs:Race\#1237%2d7 rdfs:subClassOf cs:Race\#1233%2d6;
  rdfs:label "Moor";
  dc:title "Moor";
  rdfs:comment "Moor";
  dcterms:description "Moor".

cs:Race\#1238%2d5 rdfs:subClassOf cs:Race\#1233%2d6;
  rdfs:label "Nansemond";
  dc:title "Nansemond";
  rdfs:comment "Nansemond";
  dcterms:description "Nansemond".

cs:Race\#1239%2d3 rdfs:subClassOf cs:Race\#1233%2d6;
  rdfs:label "Natchez";
  dc:title "Natchez";
  rdfs:comment "Natchez";
  dcterms:description "Natchez".

cs:Race\#1240%2d1 rdfs:subClassOf cs:Race\#1233%2d6;
  rdfs:label "Nausu Waiwash";
  dc:title "Nausu Waiwash";
  rdfs:comment "Nausu Waiwash";
  dcterms:description "Nausu Waiwash".

cs:Race\#1241%2d9 rdfs:subClassOf cs:Race\#1233%2d6;
  rdfs:label "Nipmuc";
  dc:title "Nipmuc";
  rdfs:comment "Nipmuc";
  dcterms:description "Nipmuc".

cs:Race\#1242%2d7 rdfs:subClassOf cs:Race\#1233%2d6;
  rdfs:label "Paugussett";
  dc:title "Paugussett";
  rdfs:comment "Paugussett";
  dcterms:description "Paugussett".

cs:Race\#1243%2d5 rdfs:subClassOf cs:Race\#1233%2d6;
  rdfs:label "Pocomoke Acohonock";
  dc:title "Pocomoke Acohonock";
  rdfs:comment "Pocomoke Acohonock";
  dcterms:description "Pocomoke Acohonock".

cs:Race\#1244%2d3 rdfs:subClassOf cs:Race\#1233%2d6;
  rdfs:label "Southeastern Indians";
  dc:title "Southeastern Indians";
  rdfs:comment "Southeastern Indians";
  dcterms:description "Southeastern Indians".

cs:Race\#1245%2d0 rdfs:subClassOf cs:Race\#1233%2d6;
  rdfs:label "Susquehanock";
  dc:title "Susquehanock";
  rdfs:comment "Susquehanock";
  dcterms:description "Susquehanock".

cs:Race\#1246%2d8 rdfs:subClassOf cs:Race\#1233%2d6;
  rdfs:label "Tunica Biloxi";
  dc:title "Tunica Biloxi";
  rdfs:comment "Tunica Biloxi";
  dcterms:description "Tunica Biloxi".

cs:Race\#1247%2d6 rdfs:subClassOf cs:Race\#1233%2d6;
  rdfs:label "Waccamaw-Siousan";
  dc:title "Waccamaw-Siousan";
  rdfs:comment "Waccamaw-Siousan";
  dcterms:description "Waccamaw-Siousan".

cs:Race\#1248%2d4 rdfs:subClassOf cs:Race\#1233%2d6;
  rdfs:label "Wicomico";
  dc:title "Wicomico";
  rdfs:comment "Wicomico";
  dcterms:description "Wicomico".

cs:Race\#1250%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Esselen";
  dc:title "Esselen";
  rdfs:comment "Esselen";
  dcterms:description "Esselen".

cs:Race\#1252%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Fort Belknap";
  dc:title "Fort Belknap";
  rdfs:comment "Fort Belknap";
  dcterms:description "Fort Belknap".

cs:Race\#1254%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Fort Berthold";
  dc:title "Fort Berthold";
  rdfs:comment "Fort Berthold";
  dcterms:description "Fort Berthold".

cs:Race\#1256%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Fort Mcdowell";
  dc:title "Fort Mcdowell";
  rdfs:comment "Fort Mcdowell";
  dcterms:description "Fort Mcdowell".

cs:Race\#1258%2d3 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Fort Hall";
  dc:title "Fort Hall";
  rdfs:comment "Fort Hall";
  dcterms:description "Fort Hall".

cs:Race\#1260%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Gabrieleno";
  dc:title "Gabrieleno";
  rdfs:comment "Gabrieleno";
  dcterms:description "Gabrieleno".

cs:Race\#1262%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Grand Ronde";
  dc:title "Grand Ronde";
  rdfs:comment "Grand Ronde";
  dcterms:description "Grand Ronde".

cs:Race\#1264%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Gros Ventres";
  dc:title "Gros Ventres";
  rdfs:comment "Gros Ventres";
  dcterms:description "Gros Ventres".

cs:Race\#1265%2d8 rdfs:subClassOf cs:Race\#1264%2d1;
  rdfs:label "Atsina";
  dc:title "Atsina";
  rdfs:comment "Atsina";
  dcterms:description "Atsina".

cs:Race\#1267%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Haliwa";
  dc:title "Haliwa";
  rdfs:comment "Haliwa";
  dcterms:description "Haliwa".

cs:Race\#1269%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Hidatsa";
  dc:title "Hidatsa";
  rdfs:comment "Hidatsa";
  dcterms:description "Hidatsa".

cs:Race\#1271%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Hoopa";
  dc:title "Hoopa";
  rdfs:comment "Hoopa";
  dcterms:description "Hoopa".

cs:Race\#1272%2d4 rdfs:subClassOf cs:Race\#1271%2d6;
  rdfs:label "Trinity";
  dc:title "Trinity";
  rdfs:comment "Trinity";
  dcterms:description "Trinity".

cs:Race\#1273%2d2 rdfs:subClassOf cs:Race\#1271%2d6;
  rdfs:label "Whilkut";
  dc:title "Whilkut";
  rdfs:comment "Whilkut";
  dcterms:description "Whilkut".

cs:Race\#1275%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Hoopa Extension";
  dc:title "Hoopa Extension";
  rdfs:comment "Hoopa Extension";
  dcterms:description "Hoopa Extension".

cs:Race\#1277%2d3 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Houma";
  dc:title "Houma";
  rdfs:comment "Houma";
  dcterms:description "Houma".

cs:Race\#1279%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Inaja-Cosmit";
  dc:title "Inaja-Cosmit";
  rdfs:comment "Inaja-Cosmit";
  dcterms:description "Inaja-Cosmit".

cs:Race\#1281%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Iowa";
  dc:title "Iowa";
  rdfs:comment "Iowa";
  dcterms:description "Iowa".

cs:Race\#1282%2d3 rdfs:subClassOf cs:Race\#1281%2d5;
  rdfs:label "Iowa of Kansas-Nebraska";
  dc:title "Iowa of Kansas-Nebraska";
  rdfs:comment "Iowa of Kansas-Nebraska";
  dcterms:description "Iowa of Kansas-Nebraska".

cs:Race\#1283%2d1 rdfs:subClassOf cs:Race\#1281%2d5;
  rdfs:label "Iowa of Oklahoma";
  dc:title "Iowa of Oklahoma";
  rdfs:comment "Iowa of Oklahoma";
  dcterms:description "Iowa of Oklahoma".

cs:Race\#1285%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Iroquois";
  dc:title "Iroquois";
  rdfs:comment "Iroquois";
  dcterms:description "Iroquois".

cs:Race\#1286%2d4 rdfs:subClassOf cs:Race\#1285%2d6;
  rdfs:label "Cayuga";
  dc:title "Cayuga";
  rdfs:comment "Cayuga";
  dcterms:description "Cayuga".

cs:Race\#1287%2d2 rdfs:subClassOf cs:Race\#1285%2d6;
  rdfs:label "Mohawk";
  dc:title "Mohawk";
  rdfs:comment "Mohawk";
  dcterms:description "Mohawk".

cs:Race\#1288%2d0 rdfs:subClassOf cs:Race\#1285%2d6;
  rdfs:label "Oneida";
  dc:title "Oneida";
  rdfs:comment "Oneida";
  dcterms:description "Oneida".

cs:Race\#1289%2d8 rdfs:subClassOf cs:Race\#1285%2d6;
  rdfs:label "Onondaga";
  dc:title "Onondaga";
  rdfs:comment "Onondaga";
  dcterms:description "Onondaga".

cs:Race\#1290%2d6 rdfs:subClassOf cs:Race\#1285%2d6;
  rdfs:label "Seneca";
  dc:title "Seneca";
  rdfs:comment "Seneca";
  dcterms:description "Seneca".

cs:Race\#1291%2d4 rdfs:subClassOf cs:Race\#1285%2d6;
  rdfs:label "Seneca Nation";
  dc:title "Seneca Nation";
  rdfs:comment "Seneca Nation";
  dcterms:description "Seneca Nation".

cs:Race\#1292%2d2 rdfs:subClassOf cs:Race\#1285%2d6;
  rdfs:label "Seneca-Cayuga";
  dc:title "Seneca-Cayuga";
  rdfs:comment "Seneca-Cayuga";
  dcterms:description "Seneca-Cayuga".

cs:Race\#1293%2d0 rdfs:subClassOf cs:Race\#1285%2d6;
  rdfs:label "Tonawanda Seneca";
  dc:title "Tonawanda Seneca";
  rdfs:comment "Tonawanda Seneca";
  dcterms:description "Tonawanda Seneca".

cs:Race\#1294%2d8 rdfs:subClassOf cs:Race\#1285%2d6;
  rdfs:label "Tuscarora";
  dc:title "Tuscarora";
  rdfs:comment "Tuscarora";
  dcterms:description "Tuscarora".

cs:Race\#1295%2d5 rdfs:subClassOf cs:Race\#1285%2d6;
  rdfs:label "Wyandotte";
  dc:title "Wyandotte";
  rdfs:comment "Wyandotte";
  dcterms:description "Wyandotte".

cs:Race\#1297%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Juaneno";
  dc:title "Juaneno";
  rdfs:comment "Juaneno";
  dcterms:description "Juaneno".

cs:Race\#1299%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Kalispel";
  dc:title "Kalispel";
  rdfs:comment "Kalispel";
  dcterms:description "Kalispel".

cs:Race\#1301%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Karuk";
  dc:title "Karuk";
  rdfs:comment "Karuk";
  dcterms:description "Karuk".

cs:Race\#1303%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Kaw";
  dc:title "Kaw";
  rdfs:comment "Kaw";
  dcterms:description "Kaw".

cs:Race\#1305%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Kickapoo";
  dc:title "Kickapoo";
  rdfs:comment "Kickapoo";
  dcterms:description "Kickapoo".

cs:Race\#1306%2d0 rdfs:subClassOf cs:Race\#1305%2d2;
  rdfs:label "Oklahoma Kickapoo";
  dc:title "Oklahoma Kickapoo";
  rdfs:comment "Oklahoma Kickapoo";
  dcterms:description "Oklahoma Kickapoo".

cs:Race\#1307%2d8 rdfs:subClassOf cs:Race\#1305%2d2;
  rdfs:label "Texas Kickapoo";
  dc:title "Texas Kickapoo";
  rdfs:comment "Texas Kickapoo";
  dcterms:description "Texas Kickapoo".

cs:Race\#1309%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Kiowa";
  dc:title "Kiowa";
  rdfs:comment "Kiowa";
  dcterms:description "Kiowa".

cs:Race\#1310%2d2 rdfs:subClassOf cs:Race\#1309%2d4;
  rdfs:label "Oklahoma Kiowa";
  dc:title "Oklahoma Kiowa";
  rdfs:comment "Oklahoma Kiowa";
  dcterms:description "Oklahoma Kiowa".

cs:Race\#1312%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Klallam";
  dc:title "Klallam";
  rdfs:comment "Klallam";
  dcterms:description "Klallam".

cs:Race\#1313%2d6 rdfs:subClassOf cs:Race\#1312%2d8;
  rdfs:label "Jamestown";
  dc:title "Jamestown";
  rdfs:comment "Jamestown";
  dcterms:description "Jamestown".

cs:Race\#1314%2d4 rdfs:subClassOf cs:Race\#1312%2d8;
  rdfs:label "Lower Elwha";
  dc:title "Lower Elwha";
  rdfs:comment "Lower Elwha";
  dcterms:description "Lower Elwha".

cs:Race\#1315%2d1 rdfs:subClassOf cs:Race\#1312%2d8;
  rdfs:label "Port Gamble Klallam";
  dc:title "Port Gamble Klallam";
  rdfs:comment "Port Gamble Klallam";
  dcterms:description "Port Gamble Klallam".

cs:Race\#1317%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Klamath";
  dc:title "Klamath";
  rdfs:comment "Klamath";
  dcterms:description "Klamath".

cs:Race\#1319%2d3 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Konkow";
  dc:title "Konkow";
  rdfs:comment "Konkow";
  dcterms:description "Konkow".

cs:Race\#1321%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Kootenai";
  dc:title "Kootenai";
  rdfs:comment "Kootenai";
  dcterms:description "Kootenai".

cs:Race\#1323%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Lassik";
  dc:title "Lassik";
  rdfs:comment "Lassik";
  dcterms:description "Lassik".

cs:Race\#1325%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Long Island";
  dc:title "Long Island";
  rdfs:comment "Long Island";
  dcterms:description "Long Island".

cs:Race\#1326%2d8 rdfs:subClassOf cs:Race\#1325%2d0;
  rdfs:label "Matinecock";
  dc:title "Matinecock";
  rdfs:comment "Matinecock";
  dcterms:description "Matinecock".

cs:Race\#1327%2d6 rdfs:subClassOf cs:Race\#1325%2d0;
  rdfs:label "Montauk";
  dc:title "Montauk";
  rdfs:comment "Montauk";
  dcterms:description "Montauk".

cs:Race\#1328%2d4 rdfs:subClassOf cs:Race\#1325%2d0;
  rdfs:label "Poospatuck";
  dc:title "Poospatuck";
  rdfs:comment "Poospatuck";
  dcterms:description "Poospatuck".

cs:Race\#1329%2d2 rdfs:subClassOf cs:Race\#1325%2d0;
  rdfs:label "Setauket";
  dc:title "Setauket";
  rdfs:comment "Setauket";
  dcterms:description "Setauket".

cs:Race\#1331%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Luiseno";
  dc:title "Luiseno";
  rdfs:comment "Luiseno";
  dcterms:description "Luiseno".

cs:Race\#1332%2d6 rdfs:subClassOf cs:Race\#1331%2d8;
  rdfs:label "La Jolla";
  dc:title "La Jolla";
  rdfs:comment "La Jolla";
  dcterms:description "La Jolla".

cs:Race\#1333%2d4 rdfs:subClassOf cs:Race\#1331%2d8;
  rdfs:label "Pala";
  dc:title "Pala";
  rdfs:comment "Pala";
  dcterms:description "Pala".

cs:Race\#1334%2d2 rdfs:subClassOf cs:Race\#1331%2d8;
  rdfs:label "Pauma";
  dc:title "Pauma";
  rdfs:comment "Pauma";
  dcterms:description "Pauma".

cs:Race\#1335%2d9 rdfs:subClassOf cs:Race\#1331%2d8;
  rdfs:label "Pechanga";
  dc:title "Pechanga";
  rdfs:comment "Pechanga";
  dcterms:description "Pechanga".

cs:Race\#1336%2d7 rdfs:subClassOf cs:Race\#1331%2d8;
  rdfs:label "Soboba";
  dc:title "Soboba";
  rdfs:comment "Soboba";
  dcterms:description "Soboba".

cs:Race\#1337%2d5 rdfs:subClassOf cs:Race\#1331%2d8;
  rdfs:label "Twenty-Nine Palms";
  dc:title "Twenty-Nine Palms";
  rdfs:comment "Twenty-Nine Palms";
  dcterms:description "Twenty-Nine Palms".

cs:Race\#1338%2d3 rdfs:subClassOf cs:Race\#1331%2d8;
  rdfs:label "Temecula";
  dc:title "Temecula";
  rdfs:comment "Temecula";
  dcterms:description "Temecula".

cs:Race\#1340%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Lumbee";
  dc:title "Lumbee";
  rdfs:comment "Lumbee";
  dcterms:description "Lumbee".

cs:Race\#1342%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Lummi";
  dc:title "Lummi";
  rdfs:comment "Lummi";
  dcterms:description "Lummi".

cs:Race\#1344%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Maidu";
  dc:title "Maidu";
  rdfs:comment "Maidu";
  dcterms:description "Maidu".

cs:Race\#1345%2d8 rdfs:subClassOf cs:Race\#1344%2d1;
  rdfs:label "Mountain Maidu";
  dc:title "Mountain Maidu";
  rdfs:comment "Mountain Maidu";
  dcterms:description "Mountain Maidu".

cs:Race\#1346%2d6 rdfs:subClassOf cs:Race\#1344%2d1;
  rdfs:label "Nishinam";
  dc:title "Nishinam";
  rdfs:comment "Nishinam";
  dcterms:description "Nishinam".

cs:Race\#1348%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Makah";
  dc:title "Makah";
  rdfs:comment "Makah";
  dcterms:description "Makah".

cs:Race\#1350%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Maliseet";
  dc:title "Maliseet";
  rdfs:comment "Maliseet";
  dcterms:description "Maliseet".

cs:Race\#1352%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Mandan";
  dc:title "Mandan";
  rdfs:comment "Mandan";
  dcterms:description "Mandan".

cs:Race\#1354%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Mattaponi";
  dc:title "Mattaponi";
  rdfs:comment "Mattaponi";
  dcterms:description "Mattaponi".

cs:Race\#1356%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Menominee";
  dc:title "Menominee";
  rdfs:comment "Menominee";
  dcterms:description "Menominee".

cs:Race\#1358%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Miami";
  dc:title "Miami";
  rdfs:comment "Miami";
  dcterms:description "Miami".

cs:Race\#1359%2d9 rdfs:subClassOf cs:Race\#1358%2d1;
  rdfs:label "Illinois Miami";
  dc:title "Illinois Miami";
  rdfs:comment "Illinois Miami";
  dcterms:description "Illinois Miami".

cs:Race\#1360%2d7 rdfs:subClassOf cs:Race\#1358%2d1;
  rdfs:label "Indiana Miami";
  dc:title "Indiana Miami";
  rdfs:comment "Indiana Miami";
  dcterms:description "Indiana Miami".

cs:Race\#1361%2d5 rdfs:subClassOf cs:Race\#1358%2d1;
  rdfs:label "Oklahoma Miami";
  dc:title "Oklahoma Miami";
  rdfs:comment "Oklahoma Miami";
  dcterms:description "Oklahoma Miami".

cs:Race\#1363%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Miccosukee";
  dc:title "Miccosukee";
  rdfs:comment "Miccosukee";
  dcterms:description "Miccosukee".

cs:Race\#1365%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Micmac";
  dc:title "Micmac";
  rdfs:comment "Micmac";
  dcterms:description "Micmac".

cs:Race\#1366%2d4 rdfs:subClassOf cs:Race\#1365%2d6;
  rdfs:label "Aroostook";
  dc:title "Aroostook";
  rdfs:comment "Aroostook";
  dcterms:description "Aroostook".

cs:Race\#1368%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Mission Indians";
  dc:title "Mission Indians";
  rdfs:comment "Mission Indians";
  dcterms:description "Mission Indians".

cs:Race\#1370%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Miwok";
  dc:title "Miwok";
  rdfs:comment "Miwok";
  dcterms:description "Miwok".

cs:Race\#1372%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Modoc";
  dc:title "Modoc";
  rdfs:comment "Modoc";
  dcterms:description "Modoc".

cs:Race\#1374%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Mohegan";
  dc:title "Mohegan";
  rdfs:comment "Mohegan";
  dcterms:description "Mohegan".

cs:Race\#1376%2d3 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Mono";
  dc:title "Mono";
  rdfs:comment "Mono";
  dcterms:description "Mono".

cs:Race\#1378%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Nanticoke";
  dc:title "Nanticoke";
  rdfs:comment "Nanticoke";
  dcterms:description "Nanticoke".

cs:Race\#1380%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Narragansett";
  dc:title "Narragansett";
  rdfs:comment "Narragansett";
  dcterms:description "Narragansett".

cs:Race\#1382%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Navajo";
  dc:title "Navajo";
  rdfs:comment "Navajo";
  dcterms:description "Navajo".

cs:Race\#1383%2d9 rdfs:subClassOf cs:Race\#1382%2d1;
  rdfs:label "Alamo Navajo";
  dc:title "Alamo Navajo";
  rdfs:comment "Alamo Navajo";
  dcterms:description "Alamo Navajo".

cs:Race\#1384%2d7 rdfs:subClassOf cs:Race\#1382%2d1;
  rdfs:label "Canoncito Navajo";
  dc:title "Canoncito Navajo";
  rdfs:comment "Canoncito Navajo";
  dcterms:description "Canoncito Navajo".

cs:Race\#1385%2d4 rdfs:subClassOf cs:Race\#1382%2d1;
  rdfs:label "Ramah Navajo";
  dc:title "Ramah Navajo";
  rdfs:comment "Ramah Navajo";
  dcterms:description "Ramah Navajo".

cs:Race\#1387%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Nez Perce";
  dc:title "Nez Perce";
  rdfs:comment "Nez Perce";
  dcterms:description "Nez Perce".

cs:Race\#1389%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Nomalaki";
  dc:title "Nomalaki";
  rdfs:comment "Nomalaki";
  dcterms:description "Nomalaki".

cs:Race\#1391%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Northwest Tribes";
  dc:title "Northwest Tribes";
  rdfs:comment "Northwest Tribes";
  dcterms:description "Northwest Tribes".

cs:Race\#1392%2d0 rdfs:subClassOf cs:Race\#1391%2d2;
  rdfs:label "Alsea";
  dc:title "Alsea";
  rdfs:comment "Alsea";
  dcterms:description "Alsea".

cs:Race\#1393%2d8 rdfs:subClassOf cs:Race\#1391%2d2;
  rdfs:label "Celilo";
  dc:title "Celilo";
  rdfs:comment "Celilo";
  dcterms:description "Celilo".

cs:Race\#1394%2d6 rdfs:subClassOf cs:Race\#1391%2d2;
  rdfs:label "Columbia";
  dc:title "Columbia";
  rdfs:comment "Columbia";
  dcterms:description "Columbia".

cs:Race\#1395%2d3 rdfs:subClassOf cs:Race\#1391%2d2;
  rdfs:label "Kalapuya";
  dc:title "Kalapuya";
  rdfs:comment "Kalapuya";
  dcterms:description "Kalapuya".

cs:Race\#1396%2d1 rdfs:subClassOf cs:Race\#1391%2d2;
  rdfs:label "Molala";
  dc:title "Molala";
  rdfs:comment "Molala";
  dcterms:description "Molala".

cs:Race\#1397%2d9 rdfs:subClassOf cs:Race\#1391%2d2;
  rdfs:label "Talakamish";
  dc:title "Talakamish";
  rdfs:comment "Talakamish";
  dcterms:description "Talakamish".

cs:Race\#1398%2d7 rdfs:subClassOf cs:Race\#1391%2d2;
  rdfs:label "Tenino";
  dc:title "Tenino";
  rdfs:comment "Tenino";
  dcterms:description "Tenino".

cs:Race\#1399%2d5 rdfs:subClassOf cs:Race\#1391%2d2;
  rdfs:label "Tillamook";
  dc:title "Tillamook";
  rdfs:comment "Tillamook";
  dcterms:description "Tillamook".

cs:Race\#1400%2d1 rdfs:subClassOf cs:Race\#1391%2d2;
  rdfs:label "Wenatchee";
  dc:title "Wenatchee";
  rdfs:comment "Wenatchee";
  dcterms:description "Wenatchee".

cs:Race\#1401%2d9 rdfs:subClassOf cs:Race\#1391%2d2;
  rdfs:label "Yahooskin";
  dc:title "Yahooskin";
  rdfs:comment "Yahooskin";
  dcterms:description "Yahooskin".

cs:Race\#1403%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Omaha";
  dc:title "Omaha";
  rdfs:comment "Omaha";
  dcterms:description "Omaha".

cs:Race\#1405%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Oregon Athabaskan";
  dc:title "Oregon Athabaskan";
  rdfs:comment "Oregon Athabaskan";
  dcterms:description "Oregon Athabaskan".

cs:Race\#1407%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Osage";
  dc:title "Osage";
  rdfs:comment "Osage";
  dcterms:description "Osage".

cs:Race\#1409%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Otoe-Missouria";
  dc:title "Otoe-Missouria";
  rdfs:comment "Otoe-Missouria";
  dcterms:description "Otoe-Missouria".

cs:Race\#1411%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Ottawa";
  dc:title "Ottawa";
  rdfs:comment "Ottawa";
  dcterms:description "Ottawa".

cs:Race\#1412%2d6 rdfs:subClassOf cs:Race\#1411%2d8;
  rdfs:label "Burt Lake Ottawa";
  dc:title "Burt Lake Ottawa";
  rdfs:comment "Burt Lake Ottawa";
  dcterms:description "Burt Lake Ottawa".

cs:Race\#1413%2d4 rdfs:subClassOf cs:Race\#1411%2d8;
  rdfs:label "Michigan Ottawa";
  dc:title "Michigan Ottawa";
  rdfs:comment "Michigan Ottawa";
  dcterms:description "Michigan Ottawa".

cs:Race\#1414%2d2 rdfs:subClassOf cs:Race\#1411%2d8;
  rdfs:label "Oklahoma Ottawa";
  dc:title "Oklahoma Ottawa";
  rdfs:comment "Oklahoma Ottawa";
  dcterms:description "Oklahoma Ottawa".

cs:Race\#1416%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Paiute";
  dc:title "Paiute";
  rdfs:comment "Paiute";
  dcterms:description "Paiute".

cs:Race\#1417%2d5 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Bishop";
  dc:title "Bishop";
  rdfs:comment "Bishop";
  dcterms:description "Bishop".

cs:Race\#1418%2d3 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Bridgeport";
  dc:title "Bridgeport";
  rdfs:comment "Bridgeport";
  dcterms:description "Bridgeport".

cs:Race\#1419%2d1 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Burns Paiute";
  dc:title "Burns Paiute";
  rdfs:comment "Burns Paiute";
  dcterms:description "Burns Paiute".

cs:Race\#1420%2d9 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Cedarville";
  dc:title "Cedarville";
  rdfs:comment "Cedarville";
  dcterms:description "Cedarville".

cs:Race\#1421%2d7 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Fort Bidwell";
  dc:title "Fort Bidwell";
  rdfs:comment "Fort Bidwell";
  dcterms:description "Fort Bidwell".

cs:Race\#1422%2d5 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Fort Independence";
  dc:title "Fort Independence";
  rdfs:comment "Fort Independence";
  dcterms:description "Fort Independence".

cs:Race\#1423%2d3 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Kaibab";
  dc:title "Kaibab";
  rdfs:comment "Kaibab";
  dcterms:description "Kaibab".

cs:Race\#1424%2d1 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Las Vegas";
  dc:title "Las Vegas";
  rdfs:comment "Las Vegas";
  dcterms:description "Las Vegas".

cs:Race\#1425%2d8 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Lone Pine";
  dc:title "Lone Pine";
  rdfs:comment "Lone Pine";
  dcterms:description "Lone Pine".

cs:Race\#1426%2d6 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Lovelock";
  dc:title "Lovelock";
  rdfs:comment "Lovelock";
  dcterms:description "Lovelock".

cs:Race\#1427%2d4 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Malheur Paiute";
  dc:title "Malheur Paiute";
  rdfs:comment "Malheur Paiute";
  dcterms:description "Malheur Paiute".

cs:Race\#1428%2d2 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Moapa";
  dc:title "Moapa";
  rdfs:comment "Moapa";
  dcterms:description "Moapa".

cs:Race\#1429%2d0 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Northern Paiute";
  dc:title "Northern Paiute";
  rdfs:comment "Northern Paiute";
  dcterms:description "Northern Paiute".

cs:Race\#1430%2d8 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Owens Valley";
  dc:title "Owens Valley";
  rdfs:comment "Owens Valley";
  dcterms:description "Owens Valley".

cs:Race\#1431%2d6 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Pyramid Lake";
  dc:title "Pyramid Lake";
  rdfs:comment "Pyramid Lake";
  dcterms:description "Pyramid Lake".

cs:Race\#1432%2d4 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "San Juan Southern Paiute";
  dc:title "San Juan Southern Paiute";
  rdfs:comment "San Juan Southern Paiute";
  dcterms:description "San Juan Southern Paiute".

cs:Race\#1433%2d2 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Southern Paiute";
  dc:title "Southern Paiute";
  rdfs:comment "Southern Paiute";
  dcterms:description "Southern Paiute".

cs:Race\#1434%2d0 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Summit Lake";
  dc:title "Summit Lake";
  rdfs:comment "Summit Lake";
  dcterms:description "Summit Lake".

cs:Race\#1435%2d7 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Utu Utu Gwaitu Paiute";
  dc:title "Utu Utu Gwaitu Paiute";
  rdfs:comment "Utu Utu Gwaitu Paiute";
  dcterms:description "Utu Utu Gwaitu Paiute".

cs:Race\#1436%2d5 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Walker River";
  dc:title "Walker River";
  rdfs:comment "Walker River";
  dcterms:description "Walker River".

cs:Race\#1437%2d3 rdfs:subClassOf cs:Race\#1416%2d7;
  rdfs:label "Yerington Paiute";
  dc:title "Yerington Paiute";
  rdfs:comment "Yerington Paiute";
  dcterms:description "Yerington Paiute".

cs:Race\#1439%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Pamunkey";
  dc:title "Pamunkey";
  rdfs:comment "Pamunkey";
  dcterms:description "Pamunkey".

cs:Race\#1441%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Passamaquoddy";
  dc:title "Passamaquoddy";
  rdfs:comment "Passamaquoddy";
  dcterms:description "Passamaquoddy".

cs:Race\#1442%2d3 rdfs:subClassOf cs:Race\#1441%2d5;
  rdfs:label "Indian Township";
  dc:title "Indian Township";
  rdfs:comment "Indian Township";
  dcterms:description "Indian Township".

cs:Race\#1443%2d1 rdfs:subClassOf cs:Race\#1441%2d5;
  rdfs:label "Pleasant Point Passamaquoddy";
  dc:title "Pleasant Point Passamaquoddy";
  rdfs:comment "Pleasant Point Passamaquoddy";
  dcterms:description "Pleasant Point Passamaquoddy".

cs:Race\#1445%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Pawnee";
  dc:title "Pawnee";
  rdfs:comment "Pawnee";
  dcterms:description "Pawnee".

cs:Race\#1446%2d4 rdfs:subClassOf cs:Race\#1445%2d6;
  rdfs:label "Oklahoma Pawnee";
  dc:title "Oklahoma Pawnee";
  rdfs:comment "Oklahoma Pawnee";
  dcterms:description "Oklahoma Pawnee".

cs:Race\#1448%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Penobscot";
  dc:title "Penobscot";
  rdfs:comment "Penobscot";
  dcterms:description "Penobscot".

cs:Race\#1450%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Peoria";
  dc:title "Peoria";
  rdfs:comment "Peoria";
  dcterms:description "Peoria".

cs:Race\#1451%2d4 rdfs:subClassOf cs:Race\#1450%2d6;
  rdfs:label "Oklahoma Peoria";
  dc:title "Oklahoma Peoria";
  rdfs:comment "Oklahoma Peoria";
  dcterms:description "Oklahoma Peoria".

cs:Race\#1453%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Pequot";
  dc:title "Pequot";
  rdfs:comment "Pequot";
  dcterms:description "Pequot".

cs:Race\#1454%2d8 rdfs:subClassOf cs:Race\#1453%2d0;
  rdfs:label "Marshantucket Pequot";
  dc:title "Marshantucket Pequot";
  rdfs:comment "Marshantucket Pequot";
  dcterms:description "Marshantucket Pequot".

cs:Race\#1456%2d3 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Pima";
  dc:title "Pima";
  rdfs:comment "Pima";
  dcterms:description "Pima".

cs:Race\#1457%2d1 rdfs:subClassOf cs:Race\#1456%2d3;
  rdfs:label "Gila River Pima-Maricopa";
  dc:title "Gila River Pima-Maricopa";
  rdfs:comment "Gila River Pima-Maricopa";
  dcterms:description "Gila River Pima-Maricopa".

cs:Race\#1458%2d9 rdfs:subClassOf cs:Race\#1456%2d3;
  rdfs:label "Salt River Pima-Maricopa";
  dc:title "Salt River Pima-Maricopa";
  rdfs:comment "Salt River Pima-Maricopa";
  dcterms:description "Salt River Pima-Maricopa".

cs:Race\#1460%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Piscataway";
  dc:title "Piscataway";
  rdfs:comment "Piscataway";
  dcterms:description "Piscataway".

cs:Race\#1462%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Pit River";
  dc:title "Pit River";
  rdfs:comment "Pit River";
  dcterms:description "Pit River".

cs:Race\#1464%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Pomo";
  dc:title "Pomo";
  rdfs:comment "Pomo";
  dcterms:description "Pomo".

cs:Race\#1465%2d4 rdfs:subClassOf cs:Race\#1464%2d7;
  rdfs:label "Central Pomo";
  dc:title "Central Pomo";
  rdfs:comment "Central Pomo";
  dcterms:description "Central Pomo".

cs:Race\#1466%2d2 rdfs:subClassOf cs:Race\#1464%2d7;
  rdfs:label "Dry Creek";
  dc:title "Dry Creek";
  rdfs:comment "Dry Creek";
  dcterms:description "Dry Creek".

cs:Race\#1467%2d0 rdfs:subClassOf cs:Race\#1464%2d7;
  rdfs:label "Eastern Pomo";
  dc:title "Eastern Pomo";
  rdfs:comment "Eastern Pomo";
  dcterms:description "Eastern Pomo".

cs:Race\#1468%2d8 rdfs:subClassOf cs:Race\#1464%2d7;
  rdfs:label "Kashia";
  dc:title "Kashia";
  rdfs:comment "Kashia";
  dcterms:description "Kashia".

cs:Race\#1469%2d6 rdfs:subClassOf cs:Race\#1464%2d7;
  rdfs:label "Northern Pomo";
  dc:title "Northern Pomo";
  rdfs:comment "Northern Pomo";
  dcterms:description "Northern Pomo".

cs:Race\#1470%2d4 rdfs:subClassOf cs:Race\#1464%2d7;
  rdfs:label "Scotts Valley";
  dc:title "Scotts Valley";
  rdfs:comment "Scotts Valley";
  dcterms:description "Scotts Valley".

cs:Race\#1471%2d2 rdfs:subClassOf cs:Race\#1464%2d7;
  rdfs:label "Stonyford";
  dc:title "Stonyford";
  rdfs:comment "Stonyford";
  dcterms:description "Stonyford".

cs:Race\#1472%2d0 rdfs:subClassOf cs:Race\#1464%2d7;
  rdfs:label "Sulphur Bank";
  dc:title "Sulphur Bank";
  rdfs:comment "Sulphur Bank";
  dcterms:description "Sulphur Bank".

cs:Race\#1474%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Ponca";
  dc:title "Ponca";
  rdfs:comment "Ponca";
  dcterms:description "Ponca".

cs:Race\#1475%2d3 rdfs:subClassOf cs:Race\#1474%2d6;
  rdfs:label "Nebraska Ponca";
  dc:title "Nebraska Ponca";
  rdfs:comment "Nebraska Ponca";
  dcterms:description "Nebraska Ponca".

cs:Race\#1476%2d1 rdfs:subClassOf cs:Race\#1474%2d6;
  rdfs:label "Oklahoma Ponca";
  dc:title "Oklahoma Ponca";
  rdfs:comment "Oklahoma Ponca";
  dcterms:description "Oklahoma Ponca".

cs:Race\#1478%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Potawatomi";
  dc:title "Potawatomi";
  rdfs:comment "Potawatomi";
  dcterms:description "Potawatomi".

cs:Race\#1479%2d5 rdfs:subClassOf cs:Race\#1478%2d7;
  rdfs:label "Citizen Band Potawatomi";
  dc:title "Citizen Band Potawatomi";
  rdfs:comment "Citizen Band Potawatomi";
  dcterms:description "Citizen Band Potawatomi".

cs:Race\#1480%2d3 rdfs:subClassOf cs:Race\#1478%2d7;
  rdfs:label "Forest County";
  dc:title "Forest County";
  rdfs:comment "Forest County";
  dcterms:description "Forest County".

cs:Race\#1481%2d1 rdfs:subClassOf cs:Race\#1478%2d7;
  rdfs:label "Hannahville";
  dc:title "Hannahville";
  rdfs:comment "Hannahville";
  dcterms:description "Hannahville".

cs:Race\#1482%2d9 rdfs:subClassOf cs:Race\#1478%2d7;
  rdfs:label "Huron Potawatomi";
  dc:title "Huron Potawatomi";
  rdfs:comment "Huron Potawatomi";
  dcterms:description "Huron Potawatomi".

cs:Race\#1483%2d7 rdfs:subClassOf cs:Race\#1478%2d7;
  rdfs:label "Pokagon Potawatomi";
  dc:title "Pokagon Potawatomi";
  rdfs:comment "Pokagon Potawatomi";
  dcterms:description "Pokagon Potawatomi".

cs:Race\#1484%2d5 rdfs:subClassOf cs:Race\#1478%2d7;
  rdfs:label "Prairie Band";
  dc:title "Prairie Band";
  rdfs:comment "Prairie Band";
  dcterms:description "Prairie Band".

cs:Race\#1485%2d2 rdfs:subClassOf cs:Race\#1478%2d7;
  rdfs:label "Wisconsin Potawatomi";
  dc:title "Wisconsin Potawatomi";
  rdfs:comment "Wisconsin Potawatomi";
  dcterms:description "Wisconsin Potawatomi".

cs:Race\#1487%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Powhatan";
  dc:title "Powhatan";
  rdfs:comment "Powhatan";
  dcterms:description "Powhatan".

cs:Race\#1489%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Pueblo";
  dc:title "Pueblo";
  rdfs:comment "Pueblo";
  dcterms:description "Pueblo".

cs:Race\#1490%2d2 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Acoma";
  dc:title "Acoma";
  rdfs:comment "Acoma";
  dcterms:description "Acoma".

cs:Race\#1491%2d0 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Arizona Tewa";
  dc:title "Arizona Tewa";
  rdfs:comment "Arizona Tewa";
  dcterms:description "Arizona Tewa".

cs:Race\#1492%2d8 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Cochiti";
  dc:title "Cochiti";
  rdfs:comment "Cochiti";
  dcterms:description "Cochiti".

cs:Race\#1493%2d6 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Hopi";
  dc:title "Hopi";
  rdfs:comment "Hopi";
  dcterms:description "Hopi".

cs:Race\#1494%2d4 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Isleta";
  dc:title "Isleta";
  rdfs:comment "Isleta";
  dcterms:description "Isleta".

cs:Race\#1495%2d1 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Jemez";
  dc:title "Jemez";
  rdfs:comment "Jemez";
  dcterms:description "Jemez".

cs:Race\#1496%2d9 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Keres";
  dc:title "Keres";
  rdfs:comment "Keres";
  dcterms:description "Keres".

cs:Race\#1497%2d7 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Laguna";
  dc:title "Laguna";
  rdfs:comment "Laguna";
  dcterms:description "Laguna".

cs:Race\#1498%2d5 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Nambe";
  dc:title "Nambe";
  rdfs:comment "Nambe";
  dcterms:description "Nambe".

cs:Race\#1499%2d3 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Picuris";
  dc:title "Picuris";
  rdfs:comment "Picuris";
  dcterms:description "Picuris".

cs:Race\#1500%2d8 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Piro";
  dc:title "Piro";
  rdfs:comment "Piro";
  dcterms:description "Piro".

cs:Race\#1501%2d6 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Pojoaque";
  dc:title "Pojoaque";
  rdfs:comment "Pojoaque";
  dcterms:description "Pojoaque".

cs:Race\#1502%2d4 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "San Felipe";
  dc:title "San Felipe";
  rdfs:comment "San Felipe";
  dcterms:description "San Felipe".

cs:Race\#1503%2d2 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "San Ildefonso";
  dc:title "San Ildefonso";
  rdfs:comment "San Ildefonso";
  dcterms:description "San Ildefonso".

cs:Race\#1504%2d0 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "San Juan Pueblo";
  dc:title "San Juan Pueblo";
  rdfs:comment "San Juan Pueblo";
  dcterms:description "San Juan Pueblo".

cs:Race\#1505%2d7 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "San Juan De";
  dc:title "San Juan De";
  rdfs:comment "San Juan De";
  dcterms:description "San Juan De".

cs:Race\#1506%2d5 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "San Juan";
  dc:title "San Juan";
  rdfs:comment "San Juan";
  dcterms:description "San Juan".

cs:Race\#1507%2d3 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Sandia";
  dc:title "Sandia";
  rdfs:comment "Sandia";
  dcterms:description "Sandia".

cs:Race\#1508%2d1 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Santa Ana";
  dc:title "Santa Ana";
  rdfs:comment "Santa Ana";
  dcterms:description "Santa Ana".

cs:Race\#1509%2d9 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Santa Clara";
  dc:title "Santa Clara";
  rdfs:comment "Santa Clara";
  dcterms:description "Santa Clara".

cs:Race\#1510%2d7 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Santo Domingo";
  dc:title "Santo Domingo";
  rdfs:comment "Santo Domingo";
  dcterms:description "Santo Domingo".

cs:Race\#1511%2d5 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Taos";
  dc:title "Taos";
  rdfs:comment "Taos";
  dcterms:description "Taos".

cs:Race\#1512%2d3 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Tesuque";
  dc:title "Tesuque";
  rdfs:comment "Tesuque";
  dcterms:description "Tesuque".

cs:Race\#1513%2d1 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Tewa";
  dc:title "Tewa";
  rdfs:comment "Tewa";
  dcterms:description "Tewa".

cs:Race\#1514%2d9 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Tigua";
  dc:title "Tigua";
  rdfs:comment "Tigua";
  dcterms:description "Tigua".

cs:Race\#1515%2d6 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Zia";
  dc:title "Zia";
  rdfs:comment "Zia";
  dcterms:description "Zia".

cs:Race\#1516%2d4 rdfs:subClassOf cs:Race\#1489%2d4;
  rdfs:label "Zuni";
  dc:title "Zuni";
  rdfs:comment "Zuni";
  dcterms:description "Zuni".

cs:Race\#1518%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Puget Sound Salish";
  dc:title "Puget Sound Salish";
  rdfs:comment "Puget Sound Salish";
  dcterms:description "Puget Sound Salish".

cs:Race\#1519%2d8 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Duwamish";
  dc:title "Duwamish";
  rdfs:comment "Duwamish";
  dcterms:description "Duwamish".

cs:Race\#1520%2d6 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Kikiallus";
  dc:title "Kikiallus";
  rdfs:comment "Kikiallus";
  dcterms:description "Kikiallus".

cs:Race\#1521%2d4 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Lower Skagit";
  dc:title "Lower Skagit";
  rdfs:comment "Lower Skagit";
  dcterms:description "Lower Skagit".

cs:Race\#1522%2d2 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Muckleshoot";
  dc:title "Muckleshoot";
  rdfs:comment "Muckleshoot";
  dcterms:description "Muckleshoot".

cs:Race\#1523%2d0 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Nisqually";
  dc:title "Nisqually";
  rdfs:comment "Nisqually";
  dcterms:description "Nisqually".

cs:Race\#1524%2d8 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Nooksack";
  dc:title "Nooksack";
  rdfs:comment "Nooksack";
  dcterms:description "Nooksack".

cs:Race\#1525%2d5 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Port Madison";
  dc:title "Port Madison";
  rdfs:comment "Port Madison";
  dcterms:description "Port Madison".

cs:Race\#1526%2d3 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Puyallup";
  dc:title "Puyallup";
  rdfs:comment "Puyallup";
  dcterms:description "Puyallup".

cs:Race\#1527%2d1 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Samish";
  dc:title "Samish";
  rdfs:comment "Samish";
  dcterms:description "Samish".

cs:Race\#1528%2d9 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Sauk-Suiattle";
  dc:title "Sauk-Suiattle";
  rdfs:comment "Sauk-Suiattle";
  dcterms:description "Sauk-Suiattle".

cs:Race\#1529%2d7 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Skokomish";
  dc:title "Skokomish";
  rdfs:comment "Skokomish";
  dcterms:description "Skokomish".

cs:Race\#1530%2d5 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Skykomish";
  dc:title "Skykomish";
  rdfs:comment "Skykomish";
  dcterms:description "Skykomish".

cs:Race\#1531%2d3 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Snohomish";
  dc:title "Snohomish";
  rdfs:comment "Snohomish";
  dcterms:description "Snohomish".

cs:Race\#1532%2d1 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Snoqualmie";
  dc:title "Snoqualmie";
  rdfs:comment "Snoqualmie";
  dcterms:description "Snoqualmie".

cs:Race\#1533%2d9 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Squaxin Island";
  dc:title "Squaxin Island";
  rdfs:comment "Squaxin Island";
  dcterms:description "Squaxin Island".

cs:Race\#1534%2d7 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Steilacoom";
  dc:title "Steilacoom";
  rdfs:comment "Steilacoom";
  dcterms:description "Steilacoom".

cs:Race\#1535%2d4 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Stillaguamish";
  dc:title "Stillaguamish";
  rdfs:comment "Stillaguamish";
  dcterms:description "Stillaguamish".

cs:Race\#1536%2d2 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Suquamish";
  dc:title "Suquamish";
  rdfs:comment "Suquamish";
  dcterms:description "Suquamish".

cs:Race\#1537%2d0 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Swinomish";
  dc:title "Swinomish";
  rdfs:comment "Swinomish";
  dcterms:description "Swinomish".

cs:Race\#1538%2d8 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Tulalip";
  dc:title "Tulalip";
  rdfs:comment "Tulalip";
  dcterms:description "Tulalip".

cs:Race\#1539%2d6 rdfs:subClassOf cs:Race\#1518%2d0;
  rdfs:label "Upper Skagit";
  dc:title "Upper Skagit";
  rdfs:comment "Upper Skagit";
  dcterms:description "Upper Skagit".

cs:Race\#1541%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Quapaw";
  dc:title "Quapaw";
  rdfs:comment "Quapaw";
  dcterms:description "Quapaw".

cs:Race\#1543%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Quinault";
  dc:title "Quinault";
  rdfs:comment "Quinault";
  dcterms:description "Quinault".

cs:Race\#1545%2d3 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Rappahannock";
  dc:title "Rappahannock";
  rdfs:comment "Rappahannock";
  dcterms:description "Rappahannock".

cs:Race\#1547%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Reno-Sparks";
  dc:title "Reno-Sparks";
  rdfs:comment "Reno-Sparks";
  dcterms:description "Reno-Sparks".

cs:Race\#1549%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Round Valley";
  dc:title "Round Valley";
  rdfs:comment "Round Valley";
  dcterms:description "Round Valley".

cs:Race\#1551%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Sac and Fox";
  dc:title "Sac and Fox";
  rdfs:comment "Sac and Fox";
  dcterms:description "Sac and Fox".

cs:Race\#1552%2d9 rdfs:subClassOf cs:Race\#1551%2d1;
  rdfs:label "Iowa Sac and Fox";
  dc:title "Iowa Sac and Fox";
  rdfs:comment "Iowa Sac and Fox";
  dcterms:description "Iowa Sac and Fox".

cs:Race\#1553%2d7 rdfs:subClassOf cs:Race\#1551%2d1;
  rdfs:label "Missouri Sac and Fox";
  dc:title "Missouri Sac and Fox";
  rdfs:comment "Missouri Sac and Fox";
  dcterms:description "Missouri Sac and Fox".

cs:Race\#1554%2d5 rdfs:subClassOf cs:Race\#1551%2d1;
  rdfs:label "Oklahoma Sac and Fox";
  dc:title "Oklahoma Sac and Fox";
  rdfs:comment "Oklahoma Sac and Fox";
  dcterms:description "Oklahoma Sac and Fox".

cs:Race\#1556%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Salinan";
  dc:title "Salinan";
  rdfs:comment "Salinan";
  dcterms:description "Salinan".

cs:Race\#1558%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Salish";
  dc:title "Salish";
  rdfs:comment "Salish";
  dcterms:description "Salish".

cs:Race\#1560%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Salish and Kootenai";
  dc:title "Salish and Kootenai";
  rdfs:comment "Salish and Kootenai";
  dcterms:description "Salish and Kootenai".

cs:Race\#1562%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Schaghticoke";
  dc:title "Schaghticoke";
  rdfs:comment "Schaghticoke";
  dcterms:description "Schaghticoke".

cs:Race\#1564%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Scott Valley";
  dc:title "Scott Valley";
  rdfs:comment "Scott Valley";
  dcterms:description "Scott Valley".

cs:Race\#1566%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Seminole";
  dc:title "Seminole";
  rdfs:comment "Seminole";
  dcterms:description "Seminole".

cs:Race\#1567%2d7 rdfs:subClassOf cs:Race\#1566%2d9;
  rdfs:label "Big Cypress";
  dc:title "Big Cypress";
  rdfs:comment "Big Cypress";
  dcterms:description "Big Cypress".

cs:Race\#1568%2d5 rdfs:subClassOf cs:Race\#1566%2d9;
  rdfs:label "Brighton";
  dc:title "Brighton";
  rdfs:comment "Brighton";
  dcterms:description "Brighton".

cs:Race\#1569%2d3 rdfs:subClassOf cs:Race\#1566%2d9;
  rdfs:label "Florida Seminole";
  dc:title "Florida Seminole";
  rdfs:comment "Florida Seminole";
  dcterms:description "Florida Seminole".

cs:Race\#1570%2d1 rdfs:subClassOf cs:Race\#1566%2d9;
  rdfs:label "Hollywood Seminole";
  dc:title "Hollywood Seminole";
  rdfs:comment "Hollywood Seminole";
  dcterms:description "Hollywood Seminole".

cs:Race\#1571%2d9 rdfs:subClassOf cs:Race\#1566%2d9;
  rdfs:label "Oklahoma Seminole";
  dc:title "Oklahoma Seminole";
  rdfs:comment "Oklahoma Seminole";
  dcterms:description "Oklahoma Seminole".

cs:Race\#1573%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Serrano";
  dc:title "Serrano";
  rdfs:comment "Serrano";
  dcterms:description "Serrano".

cs:Race\#1574%2d3 rdfs:subClassOf cs:Race\#1573%2d5;
  rdfs:label "San Manual";
  dc:title "San Manual";
  rdfs:comment "San Manual";
  dcterms:description "San Manual".

cs:Race\#1576%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Shasta";
  dc:title "Shasta";
  rdfs:comment "Shasta";
  dcterms:description "Shasta".

cs:Race\#1578%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Shawnee";
  dc:title "Shawnee";
  rdfs:comment "Shawnee";
  dcterms:description "Shawnee".

cs:Race\#1579%2d2 rdfs:subClassOf cs:Race\#1578%2d4;
  rdfs:label "Absentee Shawnee";
  dc:title "Absentee Shawnee";
  rdfs:comment "Absentee Shawnee";
  dcterms:description "Absentee Shawnee".

cs:Race\#1580%2d0 rdfs:subClassOf cs:Race\#1578%2d4;
  rdfs:label "Eastern Shawnee";
  dc:title "Eastern Shawnee";
  rdfs:comment "Eastern Shawnee";
  dcterms:description "Eastern Shawnee".

cs:Race\#1582%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Shinnecock";
  dc:title "Shinnecock";
  rdfs:comment "Shinnecock";
  dcterms:description "Shinnecock".

cs:Race\#1584%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Shoalwater Bay";
  dc:title "Shoalwater Bay";
  rdfs:comment "Shoalwater Bay";
  dcterms:description "Shoalwater Bay".

cs:Race\#1586%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Shoshone";
  dc:title "Shoshone";
  rdfs:comment "Shoshone";
  dcterms:description "Shoshone".

cs:Race\#1587%2d5 rdfs:subClassOf cs:Race\#1586%2d7;
  rdfs:label "Battle Mountain";
  dc:title "Battle Mountain";
  rdfs:comment "Battle Mountain";
  dcterms:description "Battle Mountain".

cs:Race\#1588%2d3 rdfs:subClassOf cs:Race\#1586%2d7;
  rdfs:label "Duckwater";
  dc:title "Duckwater";
  rdfs:comment "Duckwater";
  dcterms:description "Duckwater".

cs:Race\#1589%2d1 rdfs:subClassOf cs:Race\#1586%2d7;
  rdfs:label "Elko";
  dc:title "Elko";
  rdfs:comment "Elko";
  dcterms:description "Elko".

cs:Race\#1590%2d9 rdfs:subClassOf cs:Race\#1586%2d7;
  rdfs:label "Ely";
  dc:title "Ely";
  rdfs:comment "Ely";
  dcterms:description "Ely".

cs:Race\#1591%2d7 rdfs:subClassOf cs:Race\#1586%2d7;
  rdfs:label "Goshute";
  dc:title "Goshute";
  rdfs:comment "Goshute";
  dcterms:description "Goshute".

cs:Race\#1592%2d5 rdfs:subClassOf cs:Race\#1586%2d7;
  rdfs:label "Panamint";
  dc:title "Panamint";
  rdfs:comment "Panamint";
  dcterms:description "Panamint".

cs:Race\#1593%2d3 rdfs:subClassOf cs:Race\#1586%2d7;
  rdfs:label "Ruby Valley";
  dc:title "Ruby Valley";
  rdfs:comment "Ruby Valley";
  dcterms:description "Ruby Valley".

cs:Race\#1594%2d1 rdfs:subClassOf cs:Race\#1586%2d7;
  rdfs:label "Skull Valley";
  dc:title "Skull Valley";
  rdfs:comment "Skull Valley";
  dcterms:description "Skull Valley".

cs:Race\#1595%2d8 rdfs:subClassOf cs:Race\#1586%2d7;
  rdfs:label "South Fork Shoshone";
  dc:title "South Fork Shoshone";
  rdfs:comment "South Fork Shoshone";
  dcterms:description "South Fork Shoshone".

cs:Race\#1596%2d6 rdfs:subClassOf cs:Race\#1586%2d7;
  rdfs:label "Te-Moak Western Shoshone";
  dc:title "Te-Moak Western Shoshone";
  rdfs:comment "Te-Moak Western Shoshone";
  dcterms:description "Te-Moak Western Shoshone".

cs:Race\#1597%2d4 rdfs:subClassOf cs:Race\#1586%2d7;
  rdfs:label "Timbi-Sha Shoshone";
  dc:title "Timbi-Sha Shoshone";
  rdfs:comment "Timbi-Sha Shoshone";
  dcterms:description "Timbi-Sha Shoshone".

cs:Race\#1598%2d2 rdfs:subClassOf cs:Race\#1586%2d7;
  rdfs:label "Washakie";
  dc:title "Washakie";
  rdfs:comment "Washakie";
  dcterms:description "Washakie".

cs:Race\#1599%2d0 rdfs:subClassOf cs:Race\#1586%2d7;
  rdfs:label "Wind River Shoshone";
  dc:title "Wind River Shoshone";
  rdfs:comment "Wind River Shoshone";
  dcterms:description "Wind River Shoshone".

cs:Race\#1600%2d6 rdfs:subClassOf cs:Race\#1586%2d7;
  rdfs:label "Yomba";
  dc:title "Yomba";
  rdfs:comment "Yomba";
  dcterms:description "Yomba".

cs:Race\#1602%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Shoshone Paiute";
  dc:title "Shoshone Paiute";
  rdfs:comment "Shoshone Paiute";
  dcterms:description "Shoshone Paiute".

cs:Race\#1603%2d0 rdfs:subClassOf cs:Race\#1602%2d2;
  rdfs:label "Duck Valley";
  dc:title "Duck Valley";
  rdfs:comment "Duck Valley";
  dcterms:description "Duck Valley".

cs:Race\#1604%2d8 rdfs:subClassOf cs:Race\#1602%2d2;
  rdfs:label "Fallon";
  dc:title "Fallon";
  rdfs:comment "Fallon";
  dcterms:description "Fallon".

cs:Race\#1605%2d5 rdfs:subClassOf cs:Race\#1602%2d2;
  rdfs:label "Fort McDermitt";
  dc:title "Fort McDermitt";
  rdfs:comment "Fort McDermitt";
  dcterms:description "Fort McDermitt".

cs:Race\#1607%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Siletz";
  dc:title "Siletz";
  rdfs:comment "Siletz";
  dcterms:description "Siletz".

cs:Race\#1609%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Sioux";
  dc:title "Sioux";
  rdfs:comment "Sioux";
  dcterms:description "Sioux".

cs:Race\#1610%2d5 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Blackfoot Sioux";
  dc:title "Blackfoot Sioux";
  rdfs:comment "Blackfoot Sioux";
  dcterms:description "Blackfoot Sioux".

cs:Race\#1611%2d3 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Brule Sioux";
  dc:title "Brule Sioux";
  rdfs:comment "Brule Sioux";
  dcterms:description "Brule Sioux".

cs:Race\#1612%2d1 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Cheyenne River Sioux";
  dc:title "Cheyenne River Sioux";
  rdfs:comment "Cheyenne River Sioux";
  dcterms:description "Cheyenne River Sioux".

cs:Race\#1613%2d9 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Crow Creek Sioux";
  dc:title "Crow Creek Sioux";
  rdfs:comment "Crow Creek Sioux";
  dcterms:description "Crow Creek Sioux".

cs:Race\#1614%2d7 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Dakota Sioux";
  dc:title "Dakota Sioux";
  rdfs:comment "Dakota Sioux";
  dcterms:description "Dakota Sioux".

cs:Race\#1615%2d4 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Flandreau Santee";
  dc:title "Flandreau Santee";
  rdfs:comment "Flandreau Santee";
  dcterms:description "Flandreau Santee".

cs:Race\#1616%2d2 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Fort Peck";
  dc:title "Fort Peck";
  rdfs:comment "Fort Peck";
  dcterms:description "Fort Peck".

cs:Race\#1617%2d0 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Lake Traverse Sioux";
  dc:title "Lake Traverse Sioux";
  rdfs:comment "Lake Traverse Sioux";
  dcterms:description "Lake Traverse Sioux".

cs:Race\#1618%2d8 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Lower Brule Sioux";
  dc:title "Lower Brule Sioux";
  rdfs:comment "Lower Brule Sioux";
  dcterms:description "Lower Brule Sioux".

cs:Race\#1619%2d6 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Lower Sioux";
  dc:title "Lower Sioux";
  rdfs:comment "Lower Sioux";
  dcterms:description "Lower Sioux".

cs:Race\#1620%2d4 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Mdewakanton Sioux";
  dc:title "Mdewakanton Sioux";
  rdfs:comment "Mdewakanton Sioux";
  dcterms:description "Mdewakanton Sioux".

cs:Race\#1621%2d2 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Miniconjou";
  dc:title "Miniconjou";
  rdfs:comment "Miniconjou";
  dcterms:description "Miniconjou".

cs:Race\#1622%2d0 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Oglala Sioux";
  dc:title "Oglala Sioux";
  rdfs:comment "Oglala Sioux";
  dcterms:description "Oglala Sioux".

cs:Race\#1623%2d8 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Pine Ridge Sioux";
  dc:title "Pine Ridge Sioux";
  rdfs:comment "Pine Ridge Sioux";
  dcterms:description "Pine Ridge Sioux".

cs:Race\#1624%2d6 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Pipestone Sioux";
  dc:title "Pipestone Sioux";
  rdfs:comment "Pipestone Sioux";
  dcterms:description "Pipestone Sioux".

cs:Race\#1625%2d3 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Prairie Island Sioux";
  dc:title "Prairie Island Sioux";
  rdfs:comment "Prairie Island Sioux";
  dcterms:description "Prairie Island Sioux".

cs:Race\#1626%2d1 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Prior Lake Sioux";
  dc:title "Prior Lake Sioux";
  rdfs:comment "Prior Lake Sioux";
  dcterms:description "Prior Lake Sioux".

cs:Race\#1627%2d9 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Rosebud Sioux";
  dc:title "Rosebud Sioux";
  rdfs:comment "Rosebud Sioux";
  dcterms:description "Rosebud Sioux".

cs:Race\#1628%2d7 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Sans Arc Sioux";
  dc:title "Sans Arc Sioux";
  rdfs:comment "Sans Arc Sioux";
  dcterms:description "Sans Arc Sioux".

cs:Race\#1629%2d5 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Santee Sioux";
  dc:title "Santee Sioux";
  rdfs:comment "Santee Sioux";
  dcterms:description "Santee Sioux".

cs:Race\#1630%2d3 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Sisseton-Wahpeton";
  dc:title "Sisseton-Wahpeton";
  rdfs:comment "Sisseton-Wahpeton";
  dcterms:description "Sisseton-Wahpeton".

cs:Race\#1631%2d1 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Sisseton Sioux";
  dc:title "Sisseton Sioux";
  rdfs:comment "Sisseton Sioux";
  dcterms:description "Sisseton Sioux".

cs:Race\#1632%2d9 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Spirit Lake Sioux";
  dc:title "Spirit Lake Sioux";
  rdfs:comment "Spirit Lake Sioux";
  dcterms:description "Spirit Lake Sioux".

cs:Race\#1633%2d7 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Standing Rock Sioux";
  dc:title "Standing Rock Sioux";
  rdfs:comment "Standing Rock Sioux";
  dcterms:description "Standing Rock Sioux".

cs:Race\#1634%2d5 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Teton Sioux";
  dc:title "Teton Sioux";
  rdfs:comment "Teton Sioux";
  dcterms:description "Teton Sioux".

cs:Race\#1635%2d2 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Two Kettle Sioux";
  dc:title "Two Kettle Sioux";
  rdfs:comment "Two Kettle Sioux";
  dcterms:description "Two Kettle Sioux".

cs:Race\#1636%2d0 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Upper Sioux";
  dc:title "Upper Sioux";
  rdfs:comment "Upper Sioux";
  dcterms:description "Upper Sioux".

cs:Race\#1637%2d8 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Wahpekute Sioux";
  dc:title "Wahpekute Sioux";
  rdfs:comment "Wahpekute Sioux";
  dcterms:description "Wahpekute Sioux".

cs:Race\#1638%2d6 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Wahpeton Sioux";
  dc:title "Wahpeton Sioux";
  rdfs:comment "Wahpeton Sioux";
  dcterms:description "Wahpeton Sioux".

cs:Race\#1639%2d4 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Wazhaza Sioux";
  dc:title "Wazhaza Sioux";
  rdfs:comment "Wazhaza Sioux";
  dcterms:description "Wazhaza Sioux".

cs:Race\#1640%2d2 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Yankton Sioux";
  dc:title "Yankton Sioux";
  rdfs:comment "Yankton Sioux";
  dcterms:description "Yankton Sioux".

cs:Race\#1641%2d0 rdfs:subClassOf cs:Race\#1609%2d7;
  rdfs:label "Yanktonai Sioux";
  dc:title "Yanktonai Sioux";
  rdfs:comment "Yanktonai Sioux";
  dcterms:description "Yanktonai Sioux".

cs:Race\#1643%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Siuslaw";
  dc:title "Siuslaw";
  rdfs:comment "Siuslaw";
  dcterms:description "Siuslaw".

cs:Race\#1645%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Spokane";
  dc:title "Spokane";
  rdfs:comment "Spokane";
  dcterms:description "Spokane".

cs:Race\#1647%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Stewart";
  dc:title "Stewart";
  rdfs:comment "Stewart";
  dcterms:description "Stewart".

cs:Race\#1649%2d3 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Stockbridge";
  dc:title "Stockbridge";
  rdfs:comment "Stockbridge";
  dcterms:description "Stockbridge".

cs:Race\#1651%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Susanville";
  dc:title "Susanville";
  rdfs:comment "Susanville";
  dcterms:description "Susanville".

cs:Race\#1653%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Tohono O'Odham";
  dc:title "Tohono O'Odham";
  rdfs:comment "Tohono O'Odham";
  dcterms:description "Tohono O'Odham".

cs:Race\#1654%2d3 rdfs:subClassOf cs:Race\#1653%2d5;
  rdfs:label "Ak-Chin";
  dc:title "Ak-Chin";
  rdfs:comment "Ak-Chin";
  dcterms:description "Ak-Chin".

cs:Race\#1655%2d0 rdfs:subClassOf cs:Race\#1653%2d5;
  rdfs:label "Gila Bend";
  dc:title "Gila Bend";
  rdfs:comment "Gila Bend";
  dcterms:description "Gila Bend".

cs:Race\#1656%2d8 rdfs:subClassOf cs:Race\#1653%2d5;
  rdfs:label "San Xavier";
  dc:title "San Xavier";
  rdfs:comment "San Xavier";
  dcterms:description "San Xavier".

cs:Race\#1657%2d6 rdfs:subClassOf cs:Race\#1653%2d5;
  rdfs:label "Sells";
  dc:title "Sells";
  rdfs:comment "Sells";
  dcterms:description "Sells".

cs:Race\#1659%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Tolowa";
  dc:title "Tolowa";
  rdfs:comment "Tolowa";
  dcterms:description "Tolowa".

cs:Race\#1661%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Tonkawa";
  dc:title "Tonkawa";
  rdfs:comment "Tonkawa";
  dcterms:description "Tonkawa".

cs:Race\#1663%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Tygh";
  dc:title "Tygh";
  rdfs:comment "Tygh";
  dcterms:description "Tygh".

cs:Race\#1665%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Umatilla";
  dc:title "Umatilla";
  rdfs:comment "Umatilla";
  dcterms:description "Umatilla".

cs:Race\#1667%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Umpqua";
  dc:title "Umpqua";
  rdfs:comment "Umpqua";
  dcterms:description "Umpqua".

cs:Race\#1668%2d3 rdfs:subClassOf cs:Race\#1667%2d5;
  rdfs:label "Cow Creek Umpqua";
  dc:title "Cow Creek Umpqua";
  rdfs:comment "Cow Creek Umpqua";
  dcterms:description "Cow Creek Umpqua".

cs:Race\#1670%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Ute";
  dc:title "Ute";
  rdfs:comment "Ute";
  dcterms:description "Ute".

cs:Race\#1671%2d7 rdfs:subClassOf cs:Race\#1670%2d9;
  rdfs:label "Allen Canyon";
  dc:title "Allen Canyon";
  rdfs:comment "Allen Canyon";
  dcterms:description "Allen Canyon".

cs:Race\#1672%2d5 rdfs:subClassOf cs:Race\#1670%2d9;
  rdfs:label "Uintah Ute";
  dc:title "Uintah Ute";
  rdfs:comment "Uintah Ute";
  dcterms:description "Uintah Ute".

cs:Race\#1673%2d3 rdfs:subClassOf cs:Race\#1670%2d9;
  rdfs:label "Ute Mountain Ute";
  dc:title "Ute Mountain Ute";
  rdfs:comment "Ute Mountain Ute";
  dcterms:description "Ute Mountain Ute".

cs:Race\#1675%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Wailaki";
  dc:title "Wailaki";
  rdfs:comment "Wailaki";
  dcterms:description "Wailaki".

cs:Race\#1677%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Walla-Walla";
  dc:title "Walla-Walla";
  rdfs:comment "Walla-Walla";
  dcterms:description "Walla-Walla".

cs:Race\#1679%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Wampanoag";
  dc:title "Wampanoag";
  rdfs:comment "Wampanoag";
  dcterms:description "Wampanoag".

cs:Race\#1680%2d8 rdfs:subClassOf cs:Race\#1679%2d0;
  rdfs:label "Gay Head Wampanoag";
  dc:title "Gay Head Wampanoag";
  rdfs:comment "Gay Head Wampanoag";
  dcterms:description "Gay Head Wampanoag".

cs:Race\#1681%2d6 rdfs:subClassOf cs:Race\#1679%2d0;
  rdfs:label "Mashpee Wampanoag";
  dc:title "Mashpee Wampanoag";
  rdfs:comment "Mashpee Wampanoag";
  dcterms:description "Mashpee Wampanoag".

cs:Race\#1683%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Warm Springs";
  dc:title "Warm Springs";
  rdfs:comment "Warm Springs";
  dcterms:description "Warm Springs".

cs:Race\#1685%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Wascopum";
  dc:title "Wascopum";
  rdfs:comment "Wascopum";
  dcterms:description "Wascopum".

cs:Race\#1687%2d3 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Washoe";
  dc:title "Washoe";
  rdfs:comment "Washoe";
  dcterms:description "Washoe".

cs:Race\#1688%2d1 rdfs:subClassOf cs:Race\#1687%2d3;
  rdfs:label "Alpine";
  dc:title "Alpine";
  rdfs:comment "Alpine";
  dcterms:description "Alpine".

cs:Race\#1689%2d9 rdfs:subClassOf cs:Race\#1687%2d3;
  rdfs:label "Carson";
  dc:title "Carson";
  rdfs:comment "Carson";
  dcterms:description "Carson".

cs:Race\#1690%2d7 rdfs:subClassOf cs:Race\#1687%2d3;
  rdfs:label "Dresslerville";
  dc:title "Dresslerville";
  rdfs:comment "Dresslerville";
  dcterms:description "Dresslerville".

cs:Race\#1692%2d3 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Wichita";
  dc:title "Wichita";
  rdfs:comment "Wichita";
  dcterms:description "Wichita".

cs:Race\#1694%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Wind River";
  dc:title "Wind River";
  rdfs:comment "Wind River";
  dcterms:description "Wind River".

cs:Race\#1696%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Winnebago";
  dc:title "Winnebago";
  rdfs:comment "Winnebago";
  dcterms:description "Winnebago".

cs:Race\#1697%2d2 rdfs:subClassOf cs:Race\#1696%2d4;
  rdfs:label "Ho-chunk";
  dc:title "Ho-chunk";
  rdfs:comment "Ho-chunk";
  dcterms:description "Ho-chunk".

cs:Race\#1698%2d0 rdfs:subClassOf cs:Race\#1696%2d4;
  rdfs:label "Nebraska Winnebago";
  dc:title "Nebraska Winnebago";
  rdfs:comment "Nebraska Winnebago";
  dcterms:description "Nebraska Winnebago".

cs:Race\#1700%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Winnemucca";
  dc:title "Winnemucca";
  rdfs:comment "Winnemucca";
  dcterms:description "Winnemucca".

cs:Race\#1702%2d0 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Wintun";
  dc:title "Wintun";
  rdfs:comment "Wintun";
  dcterms:description "Wintun".

cs:Race\#1704%2d6 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Wiyot";
  dc:title "Wiyot";
  rdfs:comment "Wiyot";
  dcterms:description "Wiyot".

cs:Race\#1705%2d3 rdfs:subClassOf cs:Race\#1704%2d6;
  rdfs:label "Table Bluff";
  dc:title "Table Bluff";
  rdfs:comment "Table Bluff";
  dcterms:description "Table Bluff".

cs:Race\#1707%2d9 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Yakama";
  dc:title "Yakama";
  rdfs:comment "Yakama";
  dcterms:description "Yakama".

cs:Race\#1709%2d5 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Yakama Cowlitz";
  dc:title "Yakama Cowlitz";
  rdfs:comment "Yakama Cowlitz";
  dcterms:description "Yakama Cowlitz".

cs:Race\#1711%2d1 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Yaqui";
  dc:title "Yaqui";
  rdfs:comment "Yaqui";
  dcterms:description "Yaqui".

cs:Race\#1712%2d9 rdfs:subClassOf cs:Race\#1711%2d1;
  rdfs:label "Barrio Libre";
  dc:title "Barrio Libre";
  rdfs:comment "Barrio Libre";
  dcterms:description "Barrio Libre".

cs:Race\#1713%2d7 rdfs:subClassOf cs:Race\#1711%2d1;
  rdfs:label "Pascua Yaqui";
  dc:title "Pascua Yaqui";
  rdfs:comment "Pascua Yaqui";
  dcterms:description "Pascua Yaqui".

cs:Race\#1715%2d2 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Yavapai Apache";
  dc:title "Yavapai Apache";
  rdfs:comment "Yavapai Apache";
  dcterms:description "Yavapai Apache".

cs:Race\#1717%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Yokuts";
  dc:title "Yokuts";
  rdfs:comment "Yokuts";
  dcterms:description "Yokuts".

cs:Race\#1718%2d6 rdfs:subClassOf cs:Race\#1717%2d8;
  rdfs:label "Chukchansi";
  dc:title "Chukchansi";
  rdfs:comment "Chukchansi";
  dcterms:description "Chukchansi".

cs:Race\#1719%2d4 rdfs:subClassOf cs:Race\#1717%2d8;
  rdfs:label "Tachi";
  dc:title "Tachi";
  rdfs:comment "Tachi";
  dcterms:description "Tachi".

cs:Race\#1720%2d2 rdfs:subClassOf cs:Race\#1717%2d8;
  rdfs:label "Tule River";
  dc:title "Tule River";
  rdfs:comment "Tule River";
  dcterms:description "Tule River".

cs:Race\#1722%2d8 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Yuchi";
  dc:title "Yuchi";
  rdfs:comment "Yuchi";
  dcterms:description "Yuchi".

cs:Race\#1724%2d4 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Yuman";
  dc:title "Yuman";
  rdfs:comment "Yuman";
  dcterms:description "Yuman".

cs:Race\#1725%2d1 rdfs:subClassOf cs:Race\#1724%2d4;
  rdfs:label "Cocopah";
  dc:title "Cocopah";
  rdfs:comment "Cocopah";
  dcterms:description "Cocopah".

cs:Race\#1726%2d9 rdfs:subClassOf cs:Race\#1724%2d4;
  rdfs:label "Havasupai";
  dc:title "Havasupai";
  rdfs:comment "Havasupai";
  dcterms:description "Havasupai".

cs:Race\#1727%2d7 rdfs:subClassOf cs:Race\#1724%2d4;
  rdfs:label "Hualapai";
  dc:title "Hualapai";
  rdfs:comment "Hualapai";
  dcterms:description "Hualapai".

cs:Race\#1728%2d5 rdfs:subClassOf cs:Race\#1724%2d4;
  rdfs:label "Maricopa";
  dc:title "Maricopa";
  rdfs:comment "Maricopa";
  dcterms:description "Maricopa".

cs:Race\#1729%2d3 rdfs:subClassOf cs:Race\#1724%2d4;
  rdfs:label "Mohave";
  dc:title "Mohave";
  rdfs:comment "Mohave";
  dcterms:description "Mohave".

cs:Race\#1730%2d1 rdfs:subClassOf cs:Race\#1724%2d4;
  rdfs:label "Quechan";
  dc:title "Quechan";
  rdfs:comment "Quechan";
  dcterms:description "Quechan".

cs:Race\#1731%2d9 rdfs:subClassOf cs:Race\#1724%2d4;
  rdfs:label "Yavapai";
  dc:title "Yavapai";
  rdfs:comment "Yavapai";
  dcterms:description "Yavapai".

cs:Race\#1732%2d7 rdfs:subClassOf cs:Race\#1004%2d1;
  rdfs:label "Yurok";
  dc:title "Yurok";
  rdfs:comment "Yurok";
  dcterms:description "Yurok".

cs:Race\#1733%2d5 rdfs:subClassOf cs:Race\#1732%2d7;
  rdfs:label "Coast Yurok";
  dc:title "Coast Yurok";
  rdfs:comment "Coast Yurok";
  dcterms:description "Coast Yurok".

cs:Race\#1735%2d0 rdfs:subClassOf cs:Race\#1002%2d5;
  rdfs:label "Alaska Native";
  dc:title "Alaska Native";
  rdfs:comment "Alaska Native";
  dcterms:description "Alaska Native".

cs:Race\#1737%2d6 rdfs:subClassOf cs:Race\#1735%2d0;
  rdfs:label "Alaska Indian";
  dc:title "Alaska Indian";
  rdfs:comment "Alaska Indian";
  dcterms:description "Alaska Indian".

cs:Race\#1739%2d2 rdfs:subClassOf cs:Race\#1737%2d6;
  rdfs:label "Alaskan Athabascan";
  dc:title "Alaskan Athabascan";
  rdfs:comment "Alaskan Athabascan";
  dcterms:description "Alaskan Athabascan".

cs:Race\#1740%2d0 rdfs:subClassOf cs:Race\#1739%2d2;
  rdfs:label "Ahtna";
  dc:title "Ahtna";
  rdfs:comment "Ahtna";
  dcterms:description "Ahtna".

cs:Race\#1811%2d9 rdfs:subClassOf cs:Race\#1737%2d6;
  rdfs:label "Southeast Alaska";
  dc:title "Southeast Alaska";
  rdfs:comment "Southeast Alaska";
  dcterms:description "Southeast Alaska".

cs:Race\#1813%2d5 rdfs:subClassOf cs:Race\#1811%2d9;
  rdfs:label "Tlingit-Haida";
  dc:title "Tlingit-Haida";
  rdfs:comment "Tlingit-Haida";
  dcterms:description "Tlingit-Haida".

cs:Race\#1814%2d3 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Angoon";
  dc:title "Angoon";
  rdfs:comment "Angoon";
  dcterms:description "Angoon".

cs:Race\#1815%2d0 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Central Council of Tlingit and Haida Tribes";
  dc:title "Central Council of Tlingit and Haida Tribes";
  rdfs:comment "Central Council of Tlingit and Haida Tribes";
  dcterms:description "Central Council of Tlingit and Haida Tribes".

cs:Race\#1816%2d8 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Chilkat";
  dc:title "Chilkat";
  rdfs:comment "Chilkat";
  dcterms:description "Chilkat".

cs:Race\#1817%2d6 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Chilkoot";
  dc:title "Chilkoot";
  rdfs:comment "Chilkoot";
  dcterms:description "Chilkoot".

cs:Race\#1818%2d4 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Craig";
  dc:title "Craig";
  rdfs:comment "Craig";
  dcterms:description "Craig".

cs:Race\#1819%2d2 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Douglas";
  dc:title "Douglas";
  rdfs:comment "Douglas";
  dcterms:description "Douglas".

cs:Race\#1820%2d0 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Haida";
  dc:title "Haida";
  rdfs:comment "Haida";
  dcterms:description "Haida".

cs:Race\#1821%2d8 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Hoonah";
  dc:title "Hoonah";
  rdfs:comment "Hoonah";
  dcterms:description "Hoonah".

cs:Race\#1822%2d6 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Hydaburg";
  dc:title "Hydaburg";
  rdfs:comment "Hydaburg";
  dcterms:description "Hydaburg".

cs:Race\#1823%2d4 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Kake";
  dc:title "Kake";
  rdfs:comment "Kake";
  dcterms:description "Kake".

cs:Race\#1824%2d2 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Kasaan";
  dc:title "Kasaan";
  rdfs:comment "Kasaan";
  dcterms:description "Kasaan".

cs:Race\#1825%2d9 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Kenaitze";
  dc:title "Kenaitze";
  rdfs:comment "Kenaitze";
  dcterms:description "Kenaitze".

cs:Race\#1826%2d7 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Ketchikan";
  dc:title "Ketchikan";
  rdfs:comment "Ketchikan";
  dcterms:description "Ketchikan".

cs:Race\#1827%2d5 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Klawock";
  dc:title "Klawock";
  rdfs:comment "Klawock";
  dcterms:description "Klawock".

cs:Race\#1828%2d3 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Pelican";
  dc:title "Pelican";
  rdfs:comment "Pelican";
  dcterms:description "Pelican".

cs:Race\#1829%2d1 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Petersburg";
  dc:title "Petersburg";
  rdfs:comment "Petersburg";
  dcterms:description "Petersburg".

cs:Race\#1830%2d9 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Saxman";
  dc:title "Saxman";
  rdfs:comment "Saxman";
  dcterms:description "Saxman".

cs:Race\#1831%2d7 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Sitka";
  dc:title "Sitka";
  rdfs:comment "Sitka";
  dcterms:description "Sitka".

cs:Race\#1832%2d5 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Tenakee Springs";
  dc:title "Tenakee Springs";
  rdfs:comment "Tenakee Springs";
  dcterms:description "Tenakee Springs".

cs:Race\#1833%2d3 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Tlingit";
  dc:title "Tlingit";
  rdfs:comment "Tlingit";
  dcterms:description "Tlingit".

cs:Race\#1834%2d1 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Wrangell";
  dc:title "Wrangell";
  rdfs:comment "Wrangell";
  dcterms:description "Wrangell".

cs:Race\#1835%2d8 rdfs:subClassOf cs:Race\#1813%2d5;
  rdfs:label "Yakutat";
  dc:title "Yakutat";
  rdfs:comment "Yakutat";
  dcterms:description "Yakutat".

cs:Race\#1837%2d4 rdfs:subClassOf cs:Race\#1811%2d9;
  rdfs:label "Tsimshian";
  dc:title "Tsimshian";
  rdfs:comment "Tsimshian";
  dcterms:description "Tsimshian".

cs:Race\#1838%2d2 rdfs:subClassOf cs:Race\#1837%2d4;
  rdfs:label "Metlakatla";
  dc:title "Metlakatla";
  rdfs:comment "Metlakatla";
  dcterms:description "Metlakatla".

cs:Race\#1840%2d8 rdfs:subClassOf cs:Race\#1735%2d0;
  rdfs:label "Eskimo";
  dc:title "Eskimo";
  rdfs:comment "Eskimo";
  dcterms:description "Eskimo".

cs:Race\#1842%2d4 rdfs:subClassOf cs:Race\#1840%2d8;
  rdfs:label "Greenland Eskimo";
  dc:title "Greenland Eskimo";
  rdfs:comment "Greenland Eskimo";
  dcterms:description "Greenland Eskimo".

cs:Race\#1844%2d0 rdfs:subClassOf cs:Race\#1840%2d8;
  rdfs:label "Inupiat Eskimo";
  dc:title "Inupiat Eskimo";
  rdfs:comment "Inupiat Eskimo";
  dcterms:description "Inupiat Eskimo".

cs:Race\#1845%2d7 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Ambler";
  dc:title "Ambler";
  rdfs:comment "Ambler";
  dcterms:description "Ambler".

cs:Race\#1846%2d5 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Anaktuvuk";
  dc:title "Anaktuvuk";
  rdfs:comment "Anaktuvuk";
  dcterms:description "Anaktuvuk".

cs:Race\#1847%2d3 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Anaktuvuk Pass";
  dc:title "Anaktuvuk Pass";
  rdfs:comment "Anaktuvuk Pass";
  dcterms:description "Anaktuvuk Pass".

cs:Race\#1848%2d1 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Arctic Slope Inupiat";
  dc:title "Arctic Slope Inupiat";
  rdfs:comment "Arctic Slope Inupiat";
  dcterms:description "Arctic Slope Inupiat".

cs:Race\#1849%2d9 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Arctic Slope Corporation";
  dc:title "Arctic Slope Corporation";
  rdfs:comment "Arctic Slope Corporation";
  dcterms:description "Arctic Slope Corporation".

cs:Race\#1850%2d7 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Atqasuk";
  dc:title "Atqasuk";
  rdfs:comment "Atqasuk";
  dcterms:description "Atqasuk".

cs:Race\#1851%2d5 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Barrow";
  dc:title "Barrow";
  rdfs:comment "Barrow";
  dcterms:description "Barrow".

cs:Race\#1852%2d3 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Bering Straits Inupiat";
  dc:title "Bering Straits Inupiat";
  rdfs:comment "Bering Straits Inupiat";
  dcterms:description "Bering Straits Inupiat".

cs:Race\#1853%2d1 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Brevig Mission";
  dc:title "Brevig Mission";
  rdfs:comment "Brevig Mission";
  dcterms:description "Brevig Mission".

cs:Race\#1854%2d9 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Buckland";
  dc:title "Buckland";
  rdfs:comment "Buckland";
  dcterms:description "Buckland".

cs:Race\#1855%2d6 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Chinik";
  dc:title "Chinik";
  rdfs:comment "Chinik";
  dcterms:description "Chinik".

cs:Race\#1856%2d4 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Council";
  dc:title "Council";
  rdfs:comment "Council";
  dcterms:description "Council".

cs:Race\#1857%2d2 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Deering";
  dc:title "Deering";
  rdfs:comment "Deering";
  dcterms:description "Deering".

cs:Race\#1858%2d0 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Elim";
  dc:title "Elim";
  rdfs:comment "Elim";
  dcterms:description "Elim".

cs:Race\#1859%2d8 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Golovin";
  dc:title "Golovin";
  rdfs:comment "Golovin";
  dcterms:description "Golovin".

cs:Race\#1860%2d6 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Inalik Diomede";
  dc:title "Inalik Diomede";
  rdfs:comment "Inalik Diomede";
  dcterms:description "Inalik Diomede".

cs:Race\#1861%2d4 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Inupiaq";
  dc:title "Inupiaq";
  rdfs:comment "Inupiaq";
  dcterms:description "Inupiaq".

cs:Race\#1862%2d2 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Kaktovik";
  dc:title "Kaktovik";
  rdfs:comment "Kaktovik";
  dcterms:description "Kaktovik".

cs:Race\#1863%2d0 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Kawerak";
  dc:title "Kawerak";
  rdfs:comment "Kawerak";
  dcterms:description "Kawerak".

cs:Race\#1864%2d8 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Kiana";
  dc:title "Kiana";
  rdfs:comment "Kiana";
  dcterms:description "Kiana".

cs:Race\#1865%2d5 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Kivalina";
  dc:title "Kivalina";
  rdfs:comment "Kivalina";
  dcterms:description "Kivalina".

cs:Race\#1866%2d3 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Kobuk";
  dc:title "Kobuk";
  rdfs:comment "Kobuk";
  dcterms:description "Kobuk".

cs:Race\#1867%2d1 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Kotzebue";
  dc:title "Kotzebue";
  rdfs:comment "Kotzebue";
  dcterms:description "Kotzebue".

cs:Race\#1868%2d9 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Koyuk";
  dc:title "Koyuk";
  rdfs:comment "Koyuk";
  dcterms:description "Koyuk".

cs:Race\#1869%2d7 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Kwiguk";
  dc:title "Kwiguk";
  rdfs:comment "Kwiguk";
  dcterms:description "Kwiguk".

cs:Race\#1870%2d5 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Mauneluk Inupiat";
  dc:title "Mauneluk Inupiat";
  rdfs:comment "Mauneluk Inupiat";
  dcterms:description "Mauneluk Inupiat".

cs:Race\#1871%2d3 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Nana Inupiat";
  dc:title "Nana Inupiat";
  rdfs:comment "Nana Inupiat";
  dcterms:description "Nana Inupiat".

cs:Race\#1872%2d1 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Noatak";
  dc:title "Noatak";
  rdfs:comment "Noatak";
  dcterms:description "Noatak".

cs:Race\#1873%2d9 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Nome";
  dc:title "Nome";
  rdfs:comment "Nome";
  dcterms:description "Nome".

cs:Race\#1874%2d7 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Noorvik";
  dc:title "Noorvik";
  rdfs:comment "Noorvik";
  dcterms:description "Noorvik".

cs:Race\#1875%2d4 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Nuiqsut";
  dc:title "Nuiqsut";
  rdfs:comment "Nuiqsut";
  dcterms:description "Nuiqsut".

cs:Race\#1876%2d2 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Point Hope";
  dc:title "Point Hope";
  rdfs:comment "Point Hope";
  dcterms:description "Point Hope".

cs:Race\#1877%2d0 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Point Lay";
  dc:title "Point Lay";
  rdfs:comment "Point Lay";
  dcterms:description "Point Lay".

cs:Race\#1878%2d8 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Selawik";
  dc:title "Selawik";
  rdfs:comment "Selawik";
  dcterms:description "Selawik".

cs:Race\#1879%2d6 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Shaktoolik";
  dc:title "Shaktoolik";
  rdfs:comment "Shaktoolik";
  dcterms:description "Shaktoolik".

cs:Race\#1880%2d4 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Shishmaref";
  dc:title "Shishmaref";
  rdfs:comment "Shishmaref";
  dcterms:description "Shishmaref".

cs:Race\#1881%2d2 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Shungnak";
  dc:title "Shungnak";
  rdfs:comment "Shungnak";
  dcterms:description "Shungnak".

cs:Race\#1882%2d0 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Solomon";
  dc:title "Solomon";
  rdfs:comment "Solomon";
  dcterms:description "Solomon".

cs:Race\#1883%2d8 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Teller";
  dc:title "Teller";
  rdfs:comment "Teller";
  dcterms:description "Teller".

cs:Race\#1884%2d6 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Unalakleet";
  dc:title "Unalakleet";
  rdfs:comment "Unalakleet";
  dcterms:description "Unalakleet".

cs:Race\#1885%2d3 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Wainwright";
  dc:title "Wainwright";
  rdfs:comment "Wainwright";
  dcterms:description "Wainwright".

cs:Race\#1886%2d1 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Wales";
  dc:title "Wales";
  rdfs:comment "Wales";
  dcterms:description "Wales".

cs:Race\#1887%2d9 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "White Mountain";
  dc:title "White Mountain";
  rdfs:comment "White Mountain";
  dcterms:description "White Mountain".

cs:Race\#1888%2d7 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "White Mountain Inupiat";
  dc:title "White Mountain Inupiat";
  rdfs:comment "White Mountain Inupiat";
  dcterms:description "White Mountain Inupiat".

cs:Race\#1889%2d5 rdfs:subClassOf cs:Race\#1844%2d0;
  rdfs:label "Mary's Igloo";
  dc:title "Mary's Igloo";
  rdfs:comment "Mary's Igloo";
  dcterms:description "Mary's Igloo".

cs:Race\#1891%2d1 rdfs:subClassOf cs:Race\#1840%2d8;
  rdfs:label "Siberian Eskimo";
  dc:title "Siberian Eskimo";
  rdfs:comment "Siberian Eskimo";
  dcterms:description "Siberian Eskimo".

cs:Race\#1892%2d9 rdfs:subClassOf cs:Race\#1891%2d1;
  rdfs:label "Gambell";
  dc:title "Gambell";
  rdfs:comment "Gambell";
  dcterms:description "Gambell".

cs:Race\#1893%2d7 rdfs:subClassOf cs:Race\#1891%2d1;
  rdfs:label "Savoonga";
  dc:title "Savoonga";
  rdfs:comment "Savoonga";
  dcterms:description "Savoonga".

cs:Race\#1894%2d5 rdfs:subClassOf cs:Race\#1891%2d1;
  rdfs:label "Siberian Yupik";
  dc:title "Siberian Yupik";
  rdfs:comment "Siberian Yupik";
  dcterms:description "Siberian Yupik".

cs:Race\#1896%2d0 rdfs:subClassOf cs:Race\#1840%2d8;
  rdfs:label "Yupik Eskimo";
  dc:title "Yupik Eskimo";
  rdfs:comment "Yupik Eskimo";
  dcterms:description "Yupik Eskimo".

cs:Race\#1897%2d8 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Akiachak";
  dc:title "Akiachak";
  rdfs:comment "Akiachak";
  dcterms:description "Akiachak".

cs:Race\#1898%2d6 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Akiak";
  dc:title "Akiak";
  rdfs:comment "Akiak";
  dcterms:description "Akiak".

cs:Race\#1899%2d4 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Alakanuk";
  dc:title "Alakanuk";
  rdfs:comment "Alakanuk";
  dcterms:description "Alakanuk".

cs:Race\#1900%2d0 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Aleknagik";
  dc:title "Aleknagik";
  rdfs:comment "Aleknagik";
  dcterms:description "Aleknagik".

cs:Race\#1901%2d8 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Andreafsky";
  dc:title "Andreafsky";
  rdfs:comment "Andreafsky";
  dcterms:description "Andreafsky".

cs:Race\#1902%2d6 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Aniak";
  dc:title "Aniak";
  rdfs:comment "Aniak";
  dcterms:description "Aniak".

cs:Race\#1903%2d4 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Atmautluak";
  dc:title "Atmautluak";
  rdfs:comment "Atmautluak";
  dcterms:description "Atmautluak".

cs:Race\#1904%2d2 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Bethel";
  dc:title "Bethel";
  rdfs:comment "Bethel";
  dcterms:description "Bethel".

cs:Race\#1905%2d9 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Bill Moore's Slough";
  dc:title "Bill Moore's Slough";
  rdfs:comment "Bill Moore's Slough";
  dcterms:description "Bill Moore's Slough".

cs:Race\#1906%2d7 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Bristol Bay Yupik";
  dc:title "Bristol Bay Yupik";
  rdfs:comment "Bristol Bay Yupik";
  dcterms:description "Bristol Bay Yupik".

cs:Race\#1907%2d5 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Calista Yupik";
  dc:title "Calista Yupik";
  rdfs:comment "Calista Yupik";
  dcterms:description "Calista Yupik".

cs:Race\#1908%2d3 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Chefornak";
  dc:title "Chefornak";
  rdfs:comment "Chefornak";
  dcterms:description "Chefornak".

cs:Race\#1909%2d1 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Chevak";
  dc:title "Chevak";
  rdfs:comment "Chevak";
  dcterms:description "Chevak".

cs:Race\#1910%2d9 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Chuathbaluk";
  dc:title "Chuathbaluk";
  rdfs:comment "Chuathbaluk";
  dcterms:description "Chuathbaluk".

cs:Race\#1911%2d7 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Clark's Point";
  dc:title "Clark's Point";
  rdfs:comment "Clark's Point";
  dcterms:description "Clark's Point".

cs:Race\#1912%2d5 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Crooked Creek";
  dc:title "Crooked Creek";
  rdfs:comment "Crooked Creek";
  dcterms:description "Crooked Creek".

cs:Race\#1913%2d3 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Dillingham";
  dc:title "Dillingham";
  rdfs:comment "Dillingham";
  dcterms:description "Dillingham".

cs:Race\#1914%2d1 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Eek";
  dc:title "Eek";
  rdfs:comment "Eek";
  dcterms:description "Eek".

cs:Race\#1915%2d8 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Ekuk";
  dc:title "Ekuk";
  rdfs:comment "Ekuk";
  dcterms:description "Ekuk".

cs:Race\#1916%2d6 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Ekwok";
  dc:title "Ekwok";
  rdfs:comment "Ekwok";
  dcterms:description "Ekwok".

cs:Race\#1917%2d4 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Emmonak";
  dc:title "Emmonak";
  rdfs:comment "Emmonak";
  dcterms:description "Emmonak".

cs:Race\#1918%2d2 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Goodnews Bay";
  dc:title "Goodnews Bay";
  rdfs:comment "Goodnews Bay";
  dcterms:description "Goodnews Bay".

cs:Race\#1919%2d0 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Hooper Bay";
  dc:title "Hooper Bay";
  rdfs:comment "Hooper Bay";
  dcterms:description "Hooper Bay".

cs:Race\#1920%2d8 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Iqurmuit (Russian Mission)";
  dc:title "Iqurmuit (Russian Mission)";
  rdfs:comment "Iqurmuit (Russian Mission)";
  dcterms:description "Iqurmuit (Russian Mission)".

cs:Race\#1921%2d6 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Kalskag";
  dc:title "Kalskag";
  rdfs:comment "Kalskag";
  dcterms:description "Kalskag".

cs:Race\#1922%2d4 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Kasigluk";
  dc:title "Kasigluk";
  rdfs:comment "Kasigluk";
  dcterms:description "Kasigluk".

cs:Race\#1923%2d2 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Kipnuk";
  dc:title "Kipnuk";
  rdfs:comment "Kipnuk";
  dcterms:description "Kipnuk".

cs:Race\#1924%2d0 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Koliganek";
  dc:title "Koliganek";
  rdfs:comment "Koliganek";
  dcterms:description "Koliganek".

cs:Race\#1925%2d7 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Kongiganak";
  dc:title "Kongiganak";
  rdfs:comment "Kongiganak";
  dcterms:description "Kongiganak".

cs:Race\#1926%2d5 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Kotlik";
  dc:title "Kotlik";
  rdfs:comment "Kotlik";
  dcterms:description "Kotlik".

cs:Race\#1927%2d3 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Kwethluk";
  dc:title "Kwethluk";
  rdfs:comment "Kwethluk";
  dcterms:description "Kwethluk".

cs:Race\#1928%2d1 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Kwigillingok";
  dc:title "Kwigillingok";
  rdfs:comment "Kwigillingok";
  dcterms:description "Kwigillingok".

cs:Race\#1929%2d9 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Levelock";
  dc:title "Levelock";
  rdfs:comment "Levelock";
  dcterms:description "Levelock".

cs:Race\#1930%2d7 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Lower Kalskag";
  dc:title "Lower Kalskag";
  rdfs:comment "Lower Kalskag";
  dcterms:description "Lower Kalskag".

cs:Race\#1931%2d5 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Manokotak";
  dc:title "Manokotak";
  rdfs:comment "Manokotak";
  dcterms:description "Manokotak".

cs:Race\#1932%2d3 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Marshall";
  dc:title "Marshall";
  rdfs:comment "Marshall";
  dcterms:description "Marshall".

cs:Race\#1933%2d1 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Mekoryuk";
  dc:title "Mekoryuk";
  rdfs:comment "Mekoryuk";
  dcterms:description "Mekoryuk".

cs:Race\#1934%2d9 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Mountain Village";
  dc:title "Mountain Village";
  rdfs:comment "Mountain Village";
  dcterms:description "Mountain Village".

cs:Race\#1935%2d6 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Naknek";
  dc:title "Naknek";
  rdfs:comment "Naknek";
  dcterms:description "Naknek".

cs:Race\#1936%2d4 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Napaumute";
  dc:title "Napaumute";
  rdfs:comment "Napaumute";
  dcterms:description "Napaumute".

cs:Race\#1937%2d2 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Napakiak";
  dc:title "Napakiak";
  rdfs:comment "Napakiak";
  dcterms:description "Napakiak".

cs:Race\#1938%2d0 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Napaskiak";
  dc:title "Napaskiak";
  rdfs:comment "Napaskiak";
  dcterms:description "Napaskiak".

cs:Race\#1939%2d8 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Newhalen";
  dc:title "Newhalen";
  rdfs:comment "Newhalen";
  dcterms:description "Newhalen".

cs:Race\#1940%2d6 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "New Stuyahok";
  dc:title "New Stuyahok";
  rdfs:comment "New Stuyahok";
  dcterms:description "New Stuyahok".

cs:Race\#1941%2d4 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Newtok";
  dc:title "Newtok";
  rdfs:comment "Newtok";
  dcterms:description "Newtok".

cs:Race\#1942%2d2 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Nightmute";
  dc:title "Nightmute";
  rdfs:comment "Nightmute";
  dcterms:description "Nightmute".

cs:Race\#1943%2d0 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Nunapitchukv";
  dc:title "Nunapitchukv";
  rdfs:comment "Nunapitchukv";
  dcterms:description "Nunapitchukv".

cs:Race\#1944%2d8 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Oscarville";
  dc:title "Oscarville";
  rdfs:comment "Oscarville";
  dcterms:description "Oscarville".

cs:Race\#1945%2d5 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Pilot Station";
  dc:title "Pilot Station";
  rdfs:comment "Pilot Station";
  dcterms:description "Pilot Station".

cs:Race\#1946%2d3 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Pitkas Point";
  dc:title "Pitkas Point";
  rdfs:comment "Pitkas Point";
  dcterms:description "Pitkas Point".

cs:Race\#1947%2d1 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Platinum";
  dc:title "Platinum";
  rdfs:comment "Platinum";
  dcterms:description "Platinum".

cs:Race\#1948%2d9 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Portage Creek";
  dc:title "Portage Creek";
  rdfs:comment "Portage Creek";
  dcterms:description "Portage Creek".

cs:Race\#1949%2d7 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Quinhagak";
  dc:title "Quinhagak";
  rdfs:comment "Quinhagak";
  dcterms:description "Quinhagak".

cs:Race\#1950%2d5 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Red Devil";
  dc:title "Red Devil";
  rdfs:comment "Red Devil";
  dcterms:description "Red Devil".

cs:Race\#1951%2d3 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "St. Michael";
  dc:title "St. Michael";
  rdfs:comment "St. Michael";
  dcterms:description "St. Michael".

cs:Race\#1952%2d1 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Scammon Bay";
  dc:title "Scammon Bay";
  rdfs:comment "Scammon Bay";
  dcterms:description "Scammon Bay".

cs:Race\#1953%2d9 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Sheldon's Point";
  dc:title "Sheldon's Point";
  rdfs:comment "Sheldon's Point";
  dcterms:description "Sheldon's Point".

cs:Race\#1954%2d7 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Sleetmute";
  dc:title "Sleetmute";
  rdfs:comment "Sleetmute";
  dcterms:description "Sleetmute".

cs:Race\#1955%2d4 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Stebbins";
  dc:title "Stebbins";
  rdfs:comment "Stebbins";
  dcterms:description "Stebbins".

cs:Race\#1956%2d2 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Togiak";
  dc:title "Togiak";
  rdfs:comment "Togiak";
  dcterms:description "Togiak".

cs:Race\#1957%2d0 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Toksook";
  dc:title "Toksook";
  rdfs:comment "Toksook";
  dcterms:description "Toksook".

cs:Race\#1958%2d8 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Tulukskak";
  dc:title "Tulukskak";
  rdfs:comment "Tulukskak";
  dcterms:description "Tulukskak".

cs:Race\#1959%2d6 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Tuntutuliak";
  dc:title "Tuntutuliak";
  rdfs:comment "Tuntutuliak";
  dcterms:description "Tuntutuliak".

cs:Race\#1960%2d4 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Tununak";
  dc:title "Tununak";
  rdfs:comment "Tununak";
  dcterms:description "Tununak".

cs:Race\#1961%2d2 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Twin Hills";
  dc:title "Twin Hills";
  rdfs:comment "Twin Hills";
  dcterms:description "Twin Hills".

cs:Race\#1962%2d0 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Georgetown";
  dc:title "Georgetown";
  rdfs:comment "Georgetown";
  dcterms:description "Georgetown".

cs:Race\#1963%2d8 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "St. Mary's";
  dc:title "St. Mary's";
  rdfs:comment "St. Mary's";
  dcterms:description "St. Mary's".

cs:Race\#1964%2d6 rdfs:subClassOf cs:Race\#1896%2d0;
  rdfs:label "Umkumiate";
  dc:title "Umkumiate";
  rdfs:comment "Umkumiate";
  dcterms:description "Umkumiate".

cs:Race\#1966%2d1 rdfs:subClassOf cs:Race\#1735%2d0;
  rdfs:label "Aleut";
  dc:title "Aleut";
  rdfs:comment "Aleut";
  dcterms:description "Aleut".

cs:Race\#1968%2d7 rdfs:subClassOf cs:Race\#1966%2d1;
  rdfs:label "Alutiiq Aleut";
  dc:title "Alutiiq Aleut";
  rdfs:comment "Alutiiq Aleut";
  dcterms:description "Alutiiq Aleut".

cs:Race\#1969%2d5 rdfs:subClassOf cs:Race\#1968%2d7;
  rdfs:label "Tatitlek";
  dc:title "Tatitlek";
  rdfs:comment "Tatitlek";
  dcterms:description "Tatitlek".

cs:Race\#1970%2d3 rdfs:subClassOf cs:Race\#1968%2d7;
  rdfs:label "Ugashik";
  dc:title "Ugashik";
  rdfs:comment "Ugashik";
  dcterms:description "Ugashik".

cs:Race\#1972%2d9 rdfs:subClassOf cs:Race\#1966%2d1;
  rdfs:label "Bristol Bay Aleut";
  dc:title "Bristol Bay Aleut";
  rdfs:comment "Bristol Bay Aleut";
  dcterms:description "Bristol Bay Aleut".

cs:Race\#1973%2d7 rdfs:subClassOf cs:Race\#1972%2d9;
  rdfs:label "Chignik";
  dc:title "Chignik";
  rdfs:comment "Chignik";
  dcterms:description "Chignik".

cs:Race\#1974%2d5 rdfs:subClassOf cs:Race\#1972%2d9;
  rdfs:label "Chignik Lake";
  dc:title "Chignik Lake";
  rdfs:comment "Chignik Lake";
  dcterms:description "Chignik Lake".

cs:Race\#1975%2d2 rdfs:subClassOf cs:Race\#1972%2d9;
  rdfs:label "Egegik";
  dc:title "Egegik";
  rdfs:comment "Egegik";
  dcterms:description "Egegik".

cs:Race\#1976%2d0 rdfs:subClassOf cs:Race\#1972%2d9;
  rdfs:label "Igiugig";
  dc:title "Igiugig";
  rdfs:comment "Igiugig";
  dcterms:description "Igiugig".

cs:Race\#1977%2d8 rdfs:subClassOf cs:Race\#1972%2d9;
  rdfs:label "Ivanof Bay";
  dc:title "Ivanof Bay";
  rdfs:comment "Ivanof Bay";
  dcterms:description "Ivanof Bay".

cs:Race\#1978%2d6 rdfs:subClassOf cs:Race\#1972%2d9;
  rdfs:label "King Salmon";
  dc:title "King Salmon";
  rdfs:comment "King Salmon";
  dcterms:description "King Salmon".

cs:Race\#1979%2d4 rdfs:subClassOf cs:Race\#1972%2d9;
  rdfs:label "Kokhanok";
  dc:title "Kokhanok";
  rdfs:comment "Kokhanok";
  dcterms:description "Kokhanok".

cs:Race\#1980%2d2 rdfs:subClassOf cs:Race\#1972%2d9;
  rdfs:label "Perryville";
  dc:title "Perryville";
  rdfs:comment "Perryville";
  dcterms:description "Perryville".

cs:Race\#1981%2d0 rdfs:subClassOf cs:Race\#1972%2d9;
  rdfs:label "Pilot Point";
  dc:title "Pilot Point";
  rdfs:comment "Pilot Point";
  dcterms:description "Pilot Point".

cs:Race\#1982%2d8 rdfs:subClassOf cs:Race\#1972%2d9;
  rdfs:label "Port Heiden";
  dc:title "Port Heiden";
  rdfs:comment "Port Heiden";
  dcterms:description "Port Heiden".

cs:Race\#1984%2d4 rdfs:subClassOf cs:Race\#1966%2d1;
  rdfs:label "Chugach Aleut";
  dc:title "Chugach Aleut";
  rdfs:comment "Chugach Aleut";
  dcterms:description "Chugach Aleut".

cs:Race\#1985%2d1 rdfs:subClassOf cs:Race\#1984%2d4;
  rdfs:label "Chenega";
  dc:title "Chenega";
  rdfs:comment "Chenega";
  dcterms:description "Chenega".

cs:Race\#1986%2d9 rdfs:subClassOf cs:Race\#1984%2d4;
  rdfs:label "Chugach Corporation";
  dc:title "Chugach Corporation";
  rdfs:comment "Chugach Corporation";
  dcterms:description "Chugach Corporation".

cs:Race\#1987%2d7 rdfs:subClassOf cs:Race\#1984%2d4;
  rdfs:label "English Bay";
  dc:title "English Bay";
  rdfs:comment "English Bay";
  dcterms:description "English Bay".

cs:Race\#1988%2d5 rdfs:subClassOf cs:Race\#1984%2d4;
  rdfs:label "Port Graham";
  dc:title "Port Graham";
  rdfs:comment "Port Graham";
  dcterms:description "Port Graham".

cs:Race\#1990%2d1 rdfs:subClassOf cs:Race\#1966%2d1;
  rdfs:label "Eyak";
  dc:title "Eyak";
  rdfs:comment "Eyak";
  dcterms:description "Eyak".

cs:Race\#1992%2d7 rdfs:subClassOf cs:Race\#1966%2d1;
  rdfs:label "Koniag Aleut";
  dc:title "Koniag Aleut";
  rdfs:comment "Koniag Aleut";
  dcterms:description "Koniag Aleut".

cs:Race\#1993%2d5 rdfs:subClassOf cs:Race\#1992%2d7;
  rdfs:label "Akhiok";
  dc:title "Akhiok";
  rdfs:comment "Akhiok";
  dcterms:description "Akhiok".

cs:Race\#1994%2d3 rdfs:subClassOf cs:Race\#1992%2d7;
  rdfs:label "Agdaagux";
  dc:title "Agdaagux";
  rdfs:comment "Agdaagux";
  dcterms:description "Agdaagux".

cs:Race\#1995%2d0 rdfs:subClassOf cs:Race\#1992%2d7;
  rdfs:label "Karluk";
  dc:title "Karluk";
  rdfs:comment "Karluk";
  dcterms:description "Karluk".

cs:Race\#1996%2d8 rdfs:subClassOf cs:Race\#1992%2d7;
  rdfs:label "Kodiak";
  dc:title "Kodiak";
  rdfs:comment "Kodiak";
  dcterms:description "Kodiak".

cs:Race\#1997%2d6 rdfs:subClassOf cs:Race\#1992%2d7;
  rdfs:label "Larsen Bay";
  dc:title "Larsen Bay";
  rdfs:comment "Larsen Bay";
  dcterms:description "Larsen Bay".

cs:Race\#1998%2d4 rdfs:subClassOf cs:Race\#1992%2d7;
  rdfs:label "Old Harbor";
  dc:title "Old Harbor";
  rdfs:comment "Old Harbor";
  dcterms:description "Old Harbor".

cs:Race\#1999%2d2 rdfs:subClassOf cs:Race\#1992%2d7;
  rdfs:label "Ouzinkie";
  dc:title "Ouzinkie";
  rdfs:comment "Ouzinkie";
  dcterms:description "Ouzinkie".

cs:Race\#2000%2d8 rdfs:subClassOf cs:Race\#1992%2d7;
  rdfs:label "Port Lions";
  dc:title "Port Lions";
  rdfs:comment "Port Lions";
  dcterms:description "Port Lions".

cs:Race\#2002%2d4 rdfs:subClassOf cs:Race\#1966%2d1;
  rdfs:label "Sugpiaq";
  dc:title "Sugpiaq";
  rdfs:comment "Sugpiaq";
  dcterms:description "Sugpiaq".

cs:Race\#2004%2d0 rdfs:subClassOf cs:Race\#1966%2d1;
  rdfs:label "Suqpigaq";
  dc:title "Suqpigaq";
  rdfs:comment "Suqpigaq";
  dcterms:description "Suqpigaq".

cs:Race\#2006%2d5 rdfs:subClassOf cs:Race\#1966%2d1;
  rdfs:label "Unangan Aleut";
  dc:title "Unangan Aleut";
  rdfs:comment "Unangan Aleut";
  dcterms:description "Unangan Aleut".

cs:Race\#2007%2d3 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "Akutan";
  dc:title "Akutan";
  rdfs:comment "Akutan";
  dcterms:description "Akutan".

cs:Race\#2008%2d1 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "Aleut Corporation";
  dc:title "Aleut Corporation";
  rdfs:comment "Aleut Corporation";
  dcterms:description "Aleut Corporation".

cs:Race\#2009%2d9 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "Aleutian";
  dc:title "Aleutian";
  rdfs:comment "Aleutian";
  dcterms:description "Aleutian".

cs:Race\#2010%2d7 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "Aleutian Islander";
  dc:title "Aleutian Islander";
  rdfs:comment "Aleutian Islander";
  dcterms:description "Aleutian Islander".

cs:Race\#2011%2d5 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "Atka";
  dc:title "Atka";
  rdfs:comment "Atka";
  dcterms:description "Atka".

cs:Race\#2012%2d3 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "Belkofski";
  dc:title "Belkofski";
  rdfs:comment "Belkofski";
  dcterms:description "Belkofski".

cs:Race\#2013%2d1 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "Chignik Lagoon";
  dc:title "Chignik Lagoon";
  rdfs:comment "Chignik Lagoon";
  dcterms:description "Chignik Lagoon".

cs:Race\#2014%2d9 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "King Cove";
  dc:title "King Cove";
  rdfs:comment "King Cove";
  dcterms:description "King Cove".

cs:Race\#2015%2d6 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "False Pass";
  dc:title "False Pass";
  rdfs:comment "False Pass";
  dcterms:description "False Pass".

cs:Race\#2016%2d4 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "Nelson Lagoon";
  dc:title "Nelson Lagoon";
  rdfs:comment "Nelson Lagoon";
  dcterms:description "Nelson Lagoon".

cs:Race\#2017%2d2 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "Nikolski";
  dc:title "Nikolski";
  rdfs:comment "Nikolski";
  dcterms:description "Nikolski".

cs:Race\#2018%2d0 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "Pauloff Harbor";
  dc:title "Pauloff Harbor";
  rdfs:comment "Pauloff Harbor";
  dcterms:description "Pauloff Harbor".

cs:Race\#2019%2d8 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "Qagan Toyagungin";
  dc:title "Qagan Toyagungin";
  rdfs:comment "Qagan Toyagungin";
  dcterms:description "Qagan Toyagungin".

cs:Race\#2020%2d6 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "Qawalangin";
  dc:title "Qawalangin";
  rdfs:comment "Qawalangin";
  dcterms:description "Qawalangin".

cs:Race\#2021%2d4 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "St. George";
  dc:title "St. George";
  rdfs:comment "St. George";
  dcterms:description "St. George".

cs:Race\#2022%2d2 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "St. Paul";
  dc:title "St. Paul";
  rdfs:comment "St. Paul";
  dcterms:description "St. Paul".

cs:Race\#2023%2d0 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "Sand Point";
  dc:title "Sand Point";
  rdfs:comment "Sand Point";
  dcterms:description "Sand Point".

cs:Race\#2024%2d8 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "South Naknek";
  dc:title "South Naknek";
  rdfs:comment "South Naknek";
  dcterms:description "South Naknek".

cs:Race\#2025%2d5 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "Unalaska";
  dc:title "Unalaska";
  rdfs:comment "Unalaska";
  dcterms:description "Unalaska".

cs:Race\#2026%2d3 rdfs:subClassOf cs:Race\#2006%2d5;
  rdfs:label "Unga";
  dc:title "Unga";
  rdfs:comment "Unga";
  dcterms:description "Unga".

cs:Race\#2028%2d9 rdfs:subClassOf cs:Race;
  rdfs:label "Asian";
  dc:title "Asian";
  rdfs:comment "Asian";
  dcterms:description "Asian".

cs:Race\#2029%2d7 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Asian Indian";
  dc:title "Asian Indian";
  rdfs:comment "Asian Indian";
  dcterms:description "Asian Indian".

cs:Race\#2030%2d5 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Bangladeshi";
  dc:title "Bangladeshi";
  rdfs:comment "Bangladeshi";
  dcterms:description "Bangladeshi".

cs:Race\#2031%2d3 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Bhutanese";
  dc:title "Bhutanese";
  rdfs:comment "Bhutanese";
  dcterms:description "Bhutanese".

cs:Race\#2032%2d1 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Burmese";
  dc:title "Burmese";
  rdfs:comment "Burmese";
  dcterms:description "Burmese".

cs:Race\#2033%2d9 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Cambodian";
  dc:title "Cambodian";
  rdfs:comment "Cambodian";
  dcterms:description "Cambodian".

cs:Race\#2034%2d7 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Chinese";
  dc:title "Chinese";
  rdfs:comment "Chinese";
  dcterms:description "Chinese".

cs:Race\#2035%2d4 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Taiwanese";
  dc:title "Taiwanese";
  rdfs:comment "Taiwanese";
  dcterms:description "Taiwanese".

cs:Race\#2036%2d2 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Filipino";
  dc:title "Filipino";
  rdfs:comment "Filipino";
  dcterms:description "Filipino".

cs:Race\#2037%2d0 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Hmong";
  dc:title "Hmong";
  rdfs:comment "Hmong";
  dcterms:description "Hmong".

cs:Race\#2038%2d8 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Indonesian";
  dc:title "Indonesian";
  rdfs:comment "Indonesian";
  dcterms:description "Indonesian".

cs:Race\#2039%2d6 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Japanese";
  dc:title "Japanese";
  rdfs:comment "Japanese";
  dcterms:description "Japanese".

cs:Race\#2040%2d4 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Korean";
  dc:title "Korean";
  rdfs:comment "Korean";
  dcterms:description "Korean".

cs:Race\#2041%2d2 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Laotian";
  dc:title "Laotian";
  rdfs:comment "Laotian";
  dcterms:description "Laotian".

cs:Race\#2042%2d0 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Malaysian";
  dc:title "Malaysian";
  rdfs:comment "Malaysian";
  dcterms:description "Malaysian".

cs:Race\#2043%2d8 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Okinawan";
  dc:title "Okinawan";
  rdfs:comment "Okinawan";
  dcterms:description "Okinawan".

cs:Race\#2044%2d6 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Pakistani";
  dc:title "Pakistani";
  rdfs:comment "Pakistani";
  dcterms:description "Pakistani".

cs:Race\#2045%2d3 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Sri Lankan";
  dc:title "Sri Lankan";
  rdfs:comment "Sri Lankan";
  dcterms:description "Sri Lankan".

cs:Race\#2046%2d1 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Thai";
  dc:title "Thai";
  rdfs:comment "Thai";
  dcterms:description "Thai".

cs:Race\#2047%2d9 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Vietnamese";
  dc:title "Vietnamese";
  rdfs:comment "Vietnamese";
  dcterms:description "Vietnamese".

cs:Race\#2048%2d7 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Iwo Jiman";
  dc:title "Iwo Jiman";
  rdfs:comment "Iwo Jiman";
  dcterms:description "Iwo Jiman".

cs:Race\#2049%2d5 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Maldivian";
  dc:title "Maldivian";
  rdfs:comment "Maldivian";
  dcterms:description "Maldivian".

cs:Race\#2050%2d3 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Nepalese";
  dc:title "Nepalese";
  rdfs:comment "Nepalese";
  dcterms:description "Nepalese".

cs:Race\#2051%2d1 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Singaporean";
  dc:title "Singaporean";
  rdfs:comment "Singaporean";
  dcterms:description "Singaporean".

cs:Race\#2052%2d9 rdfs:subClassOf cs:Race\#2028%2d9;
  rdfs:label "Madagascar";
  dc:title "Madagascar";
  rdfs:comment "Madagascar";
  dcterms:description "Madagascar".

cs:Race\#2054%2d5 rdfs:subClassOf cs:Race;
  rdfs:label "Black or African American";
  dc:title "Black or African American";
  rdfs:comment "Black or African American";
  dcterms:description "Black or African American".

cs:Race\#2056%2d0 rdfs:subClassOf cs:Race\#2054%2d5;
  rdfs:label "Black";
  dc:title "Black";
  rdfs:comment "Black";
  dcterms:description "Black".

cs:Race\#2058%2d6 rdfs:subClassOf cs:Race\#2054%2d5;
  rdfs:label "African American";
  dc:title "African American";
  rdfs:comment "African American";
  dcterms:description "African American".

cs:Race\#2060%2d2 rdfs:subClassOf cs:Race\#2054%2d5;
  rdfs:label "African";
  dc:title "African";
  rdfs:comment "African";
  dcterms:description "African".

cs:Race\#2061%2d0 rdfs:subClassOf cs:Race\#2060%2d2;
  rdfs:label "Botswanan";
  dc:title "Botswanan";
  rdfs:comment "Botswanan";
  dcterms:description "Botswanan".

cs:Race\#2062%2d8 rdfs:subClassOf cs:Race\#2060%2d2;
  rdfs:label "Ethiopian";
  dc:title "Ethiopian";
  rdfs:comment "Ethiopian";
  dcterms:description "Ethiopian".

cs:Race\#2063%2d6 rdfs:subClassOf cs:Race\#2060%2d2;
  rdfs:label "Liberian";
  dc:title "Liberian";
  rdfs:comment "Liberian";
  dcterms:description "Liberian".

cs:Race\#2064%2d4 rdfs:subClassOf cs:Race\#2060%2d2;
  rdfs:label "Namibian";
  dc:title "Namibian";
  rdfs:comment "Namibian";
  dcterms:description "Namibian".

cs:Race\#2065%2d1 rdfs:subClassOf cs:Race\#2060%2d2;
  rdfs:label "Nigerian";
  dc:title "Nigerian";
  rdfs:comment "Nigerian";
  dcterms:description "Nigerian".

cs:Race\#2066%2d9 rdfs:subClassOf cs:Race\#2060%2d2;
  rdfs:label "Zairean";
  dc:title "Zairean";
  rdfs:comment "Zairean";
  dcterms:description "Zairean".

cs:Race\#2067%2d7 rdfs:subClassOf cs:Race\#2054%2d5;
  rdfs:label "Bahamian";
  dc:title "Bahamian";
  rdfs:comment "Bahamian";
  dcterms:description "Bahamian".

cs:Race\#2068%2d5 rdfs:subClassOf cs:Race\#2054%2d5;
  rdfs:label "Barbadian";
  dc:title "Barbadian";
  rdfs:comment "Barbadian";
  dcterms:description "Barbadian".

cs:Race\#2069%2d3 rdfs:subClassOf cs:Race\#2054%2d5;
  rdfs:label "Dominican";
  dc:title "Dominican";
  rdfs:comment "Dominican";
  dcterms:description "Dominican".

cs:Race\#2070%2d1 rdfs:subClassOf cs:Race\#2054%2d5;
  rdfs:label "Dominica Islander";
  dc:title "Dominica Islander";
  rdfs:comment "Dominica Islander";
  dcterms:description "Dominica Islander".

cs:Race\#2071%2d9 rdfs:subClassOf cs:Race\#2054%2d5;
  rdfs:label "Haitian";
  dc:title "Haitian";
  rdfs:comment "Haitian";
  dcterms:description "Haitian".

cs:Race\#2072%2d7 rdfs:subClassOf cs:Race\#2054%2d5;
  rdfs:label "Jamaican";
  dc:title "Jamaican";
  rdfs:comment "Jamaican";
  dcterms:description "Jamaican".

cs:Race\#2073%2d5 rdfs:subClassOf cs:Race\#2054%2d5;
  rdfs:label "Tobagoan";
  dc:title "Tobagoan";
  rdfs:comment "Tobagoan";
  dcterms:description "Tobagoan".

cs:Race\#2074%2d3 rdfs:subClassOf cs:Race\#2054%2d5;
  rdfs:label "Trinidadian";
  dc:title "Trinidadian";
  rdfs:comment "Trinidadian";
  dcterms:description "Trinidadian".

cs:Race\#2075%2d0 rdfs:subClassOf cs:Race\#2054%2d5;
  rdfs:label "West Indian";
  dc:title "West Indian";
  rdfs:comment "West Indian";
  dcterms:description "West Indian".

cs:Race\#2076%2d8 rdfs:subClassOf cs:Race;
  rdfs:label "Native Hawaiian or Other Pacific Islander";
  dc:title "Native Hawaiian or Other Pacific Islander";
  rdfs:comment "Native Hawaiian or Other Pacific Islander";
  dcterms:description "Native Hawaiian or Other Pacific Islander".

cs:Race\#2078%2d4 rdfs:subClassOf cs:Race\#2076%2d8;
  rdfs:label "Polynesian";
  dc:title "Polynesian";
  rdfs:comment "Polynesian";
  dcterms:description "Polynesian".

cs:Race\#2079%2d2 rdfs:subClassOf cs:Race\#2078%2d4;
  rdfs:label "Native Hawaiian";
  dc:title "Native Hawaiian";
  rdfs:comment "Native Hawaiian";
  dcterms:description "Native Hawaiian".

cs:Race\#2080%2d0 rdfs:subClassOf cs:Race\#2078%2d4;
  rdfs:label "Samoan";
  dc:title "Samoan";
  rdfs:comment "Samoan";
  dcterms:description "Samoan".

cs:Race\#2081%2d8 rdfs:subClassOf cs:Race\#2078%2d4;
  rdfs:label "Tahitian";
  dc:title "Tahitian";
  rdfs:comment "Tahitian";
  dcterms:description "Tahitian".

cs:Race\#2082%2d6 rdfs:subClassOf cs:Race\#2078%2d4;
  rdfs:label "Tongan";
  dc:title "Tongan";
  rdfs:comment "Tongan";
  dcterms:description "Tongan".

cs:Race\#2083%2d4 rdfs:subClassOf cs:Race\#2078%2d4;
  rdfs:label "Tokelauan";
  dc:title "Tokelauan";
  rdfs:comment "Tokelauan";
  dcterms:description "Tokelauan".

cs:Race\#2085%2d9 rdfs:subClassOf cs:Race\#2076%2d8;
  rdfs:label "Micronesian";
  dc:title "Micronesian";
  rdfs:comment "Micronesian";
  dcterms:description "Micronesian".

cs:Race\#2086%2d7 rdfs:subClassOf cs:Race\#2085%2d9;
  rdfs:label "Guamanian or Chamorro";
  dc:title "Guamanian or Chamorro";
  rdfs:comment "Guamanian or Chamorro";
  dcterms:description "Guamanian or Chamorro".

cs:Race\#2087%2d5 rdfs:subClassOf cs:Race\#2085%2d9;
  rdfs:label "Guamanian";
  dc:title "Guamanian";
  rdfs:comment "Guamanian";
  dcterms:description "Guamanian".

cs:Race\#2088%2d3 rdfs:subClassOf cs:Race\#2085%2d9;
  rdfs:label "Chamorro";
  dc:title "Chamorro";
  rdfs:comment "Chamorro";
  dcterms:description "Chamorro".

cs:Race\#2089%2d1 rdfs:subClassOf cs:Race\#2085%2d9;
  rdfs:label "Mariana Islander";
  dc:title "Mariana Islander";
  rdfs:comment "Mariana Islander";
  dcterms:description "Mariana Islander".

cs:Race\#2090%2d9 rdfs:subClassOf cs:Race\#2085%2d9;
  rdfs:label "Marshallese";
  dc:title "Marshallese";
  rdfs:comment "Marshallese";
  dcterms:description "Marshallese".

cs:Race\#2091%2d7 rdfs:subClassOf cs:Race\#2085%2d9;
  rdfs:label "Palauan";
  dc:title "Palauan";
  rdfs:comment "Palauan";
  dcterms:description "Palauan".

cs:Race\#2092%2d5 rdfs:subClassOf cs:Race\#2085%2d9;
  rdfs:label "Carolinian";
  dc:title "Carolinian";
  rdfs:comment "Carolinian";
  dcterms:description "Carolinian".

cs:Race\#2093%2d3 rdfs:subClassOf cs:Race\#2085%2d9;
  rdfs:label "Kosraean";
  dc:title "Kosraean";
  rdfs:comment "Kosraean";
  dcterms:description "Kosraean".

cs:Race\#2094%2d1 rdfs:subClassOf cs:Race\#2085%2d9;
  rdfs:label "Pohnpeian";
  dc:title "Pohnpeian";
  rdfs:comment "Pohnpeian";
  dcterms:description "Pohnpeian".

cs:Race\#2095%2d8 rdfs:subClassOf cs:Race\#2085%2d9;
  rdfs:label "Saipanese";
  dc:title "Saipanese";
  rdfs:comment "Saipanese";
  dcterms:description "Saipanese".

cs:Race\#2096%2d6 rdfs:subClassOf cs:Race\#2085%2d9;
  rdfs:label "Kiribati";
  dc:title "Kiribati";
  rdfs:comment "Kiribati";
  dcterms:description "Kiribati".

cs:Race\#2097%2d4 rdfs:subClassOf cs:Race\#2085%2d9;
  rdfs:label "Chuukese";
  dc:title "Chuukese";
  rdfs:comment "Chuukese";
  dcterms:description "Chuukese".

cs:Race\#2098%2d2 rdfs:subClassOf cs:Race\#2085%2d9;
  rdfs:label "Yapese";
  dc:title "Yapese";
  rdfs:comment "Yapese";
  dcterms:description "Yapese".

cs:Race\#2100%2d6 rdfs:subClassOf cs:Race\#2076%2d8;
  rdfs:label "Melanesian";
  dc:title "Melanesian";
  rdfs:comment "Melanesian";
  dcterms:description "Melanesian".

cs:Race\#2101%2d4 rdfs:subClassOf cs:Race\#2100%2d6;
  rdfs:label "Fijian";
  dc:title "Fijian";
  rdfs:comment "Fijian";
  dcterms:description "Fijian".

cs:Race\#2102%2d2 rdfs:subClassOf cs:Race\#2100%2d6;
  rdfs:label "Papua New Guinean";
  dc:title "Papua New Guinean";
  rdfs:comment "Papua New Guinean";
  dcterms:description "Papua New Guinean".

cs:Race\#2103%2d0 rdfs:subClassOf cs:Race\#2100%2d6;
  rdfs:label "Solomon Islander";
  dc:title "Solomon Islander";
  rdfs:comment "Solomon Islander";
  dcterms:description "Solomon Islander".

cs:Race\#2104%2d8 rdfs:subClassOf cs:Race\#2100%2d6;
  rdfs:label "New Hebrides";
  dc:title "New Hebrides";
  rdfs:comment "New Hebrides";
  dcterms:description "New Hebrides".

cs:Race\#2500%2d7 rdfs:subClassOf cs:Race\#2076%2d8;
  rdfs:label "Other Pacific Islander";
  dc:title "Other Pacific Islander";
  rdfs:comment "Note that this term remains in the table for completeness, even though within HL7, the notion of Other code is deprecated.";
  dcterms:description "Note that this term remains in the table for completeness, even though within HL7, the notion of Other code is deprecated.".

cs:Race\#2106%2d3 rdfs:subClassOf cs:Race;
  rdfs:label "White";
  dc:title "White";
  rdfs:comment "White";
  dcterms:description "White".

cs:Race\#2108%2d9 rdfs:subClassOf cs:Race\#2106%2d3;
  rdfs:label "European";
  dc:title "European";
  rdfs:comment "European";
  dcterms:description "European".

cs:Race\#2109%2d7 rdfs:subClassOf cs:Race\#2108%2d9;
  rdfs:label "Armenian";
  dc:title "Armenian";
  rdfs:comment "Armenian";
  dcterms:description "Armenian".

cs:Race\#2110%2d5 rdfs:subClassOf cs:Race\#2108%2d9;
  rdfs:label "English";
  dc:title "English";
  rdfs:comment "English";
  dcterms:description "English".

cs:Race\#2111%2d3 rdfs:subClassOf cs:Race\#2108%2d9;
  rdfs:label "French";
  dc:title "French";
  rdfs:comment "French";
  dcterms:description "French".

cs:Race\#2112%2d1 rdfs:subClassOf cs:Race\#2108%2d9;
  rdfs:label "German";
  dc:title "German";
  rdfs:comment "German";
  dcterms:description "German".

cs:Race\#2113%2d9 rdfs:subClassOf cs:Race\#2108%2d9;
  rdfs:label "Irish";
  dc:title "Irish";
  rdfs:comment "Irish";
  dcterms:description "Irish".

cs:Race\#2114%2d7 rdfs:subClassOf cs:Race\#2108%2d9;
  rdfs:label "Italian";
  dc:title "Italian";
  rdfs:comment "Italian";
  dcterms:description "Italian".

cs:Race\#2115%2d4 rdfs:subClassOf cs:Race\#2108%2d9;
  rdfs:label "Polish";
  dc:title "Polish";
  rdfs:comment "Polish";
  dcterms:description "Polish".

cs:Race\#2116%2d2 rdfs:subClassOf cs:Race\#2108%2d9;
  rdfs:label "Scottish";
  dc:title "Scottish";
  rdfs:comment "Scottish";
  dcterms:description "Scottish".

cs:Race\#2118%2d8 rdfs:subClassOf cs:Race\#2106%2d3;
  rdfs:label "Middle Eastern or North African";
  dc:title "Middle Eastern or North African";
  rdfs:comment "Middle Eastern or North African";
  dcterms:description "Middle Eastern or North African".

cs:Race\#2119%2d6 rdfs:subClassOf cs:Race\#2118%2d8;
  rdfs:label "Assyrian";
  dc:title "Assyrian";
  rdfs:comment "Assyrian";
  dcterms:description "Assyrian".

cs:Race\#2120%2d4 rdfs:subClassOf cs:Race\#2118%2d8;
  rdfs:label "Egyptian";
  dc:title "Egyptian";
  rdfs:comment "Egyptian";
  dcterms:description "Egyptian".

cs:Race\#2121%2d2 rdfs:subClassOf cs:Race\#2118%2d8;
  rdfs:label "Iranian";
  dc:title "Iranian";
  rdfs:comment "Iranian";
  dcterms:description "Iranian".

cs:Race\#2122%2d0 rdfs:subClassOf cs:Race\#2118%2d8;
  rdfs:label "Iraqi";
  dc:title "Iraqi";
  rdfs:comment "Iraqi";
  dcterms:description "Iraqi".

cs:Race\#2123%2d8 rdfs:subClassOf cs:Race\#2118%2d8;
  rdfs:label "Lebanese";
  dc:title "Lebanese";
  rdfs:comment "Lebanese";
  dcterms:description "Lebanese".

cs:Race\#2124%2d6 rdfs:subClassOf cs:Race\#2118%2d8;
  rdfs:label "Palestinian";
  dc:title "Palestinian";
  rdfs:comment "Palestinian";
  dcterms:description "Palestinian".

cs:Race\#2125%2d3 rdfs:subClassOf cs:Race\#2118%2d8;
  rdfs:label "Syrian";
  dc:title "Syrian";
  rdfs:comment "Syrian";
  dcterms:description "Syrian".

cs:Race\#2126%2d1 rdfs:subClassOf cs:Race\#2118%2d8;
  rdfs:label "Afghanistani";
  dc:title "Afghanistani";
  rdfs:comment "Afghanistani";
  dcterms:description "Afghanistani".

cs:Race\#2127%2d9 rdfs:subClassOf cs:Race\#2118%2d8;
  rdfs:label "Israeili";
  dc:title "Israeili";
  rdfs:comment "Israeili";
  dcterms:description "Israeili".

cs:Race\#2129%2d5 rdfs:subClassOf cs:Race\#2106%2d3;
  rdfs:label "Arab";
  dc:title "Arab";
  rdfs:comment "Arab";
  dcterms:description "Arab".

cs:Race\#2131%2d1 rdfs:subClassOf cs:Race;
  rdfs:label "Other Race";
  dc:title "Other Race";
  rdfs:comment "Note that this term remains in the table for completeness, even though within HL7, the notion of Other code is deprecated.";
  dcterms:description "Note that this term remains in the table for completeness, even though within HL7, the notion of Other code is deprecated.".

# - vs:v3-RefrainPolicy --------------------------------------------------------

vs:v3-RefrainPolicy a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "RefrainPolicy";
  dc:title "RefrainPolicy";
  rdfs:comment " Conveys prohibited actions which an information custodian, receiver, or user is not permitted to perform unless otherwise authorized or permitted under specified circumstances.  Examples:\r\n  prohibit redisclosure without consent directive";
  dcterms:description " Conveys prohibited actions which an information custodian, receiver, or user is not permitted to perform unless otherwise authorized or permitted under specified circumstances.  Examples:\r\n  prohibit redisclosure without consent directive";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-RelationalOperator ---------------------------------------------------

vs:v3-RelationalOperator a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System RelationalOperator";
  dc:title "v3 Code System RelationalOperator";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:RelationalOperator.

cs:RelationalOperator.system a fhir:CodeSystem;
  rdfs:label "v3 Code System RelationalOperator";
  dc:title "v3 Code System RelationalOperator";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:RelationalOperator a fhir:Concept.

cs:RelationalOperator\#CT rdfs:subClassOf cs:RelationalOperator;
  rdfs:label "Contains";
  dc:title "Contains";
  rdfs:comment "Specified set of things includes value being evaluated.";
  dcterms:description "Specified set of things includes value being evaluated.".

cs:RelationalOperator\#EQ rdfs:subClassOf cs:RelationalOperator;
  rdfs:label "Equal";
  dc:title "Equal";
  rdfs:comment "Equal condition applied to comparisons.";
  dcterms:description "Equal condition applied to comparisons.".

cs:RelationalOperator\#GE rdfs:subClassOf cs:RelationalOperator;
  rdfs:label "Greater than or equal";
  dc:title "Greater than or equal";
  rdfs:comment "Greater than or equal condition applied to comparisons.";
  dcterms:description "Greater than or equal condition applied to comparisons.".

cs:RelationalOperator\#GN rdfs:subClassOf cs:RelationalOperator;
  rdfs:label "Generic";
  dc:title "Generic";
  rdfs:comment "A generic comparison selects a record for inclusion in the response if the beginning of the designated element value matches the select string.";
  dcterms:description "A generic comparison selects a record for inclusion in the response if the beginning of the designated element value matches the select string.".

cs:RelationalOperator\#GT rdfs:subClassOf cs:RelationalOperator;
  rdfs:label "Greater than";
  dc:title "Greater than";
  rdfs:comment "Greater than condition applied to comparisons.";
  dcterms:description "Greater than condition applied to comparisons.".

cs:RelationalOperator\#LE rdfs:subClassOf cs:RelationalOperator;
  rdfs:label "Less than or equal";
  dc:title "Less than or equal";
  rdfs:comment "Less than or equal condition applied to comparisons.";
  dcterms:description "Less than or equal condition applied to comparisons.".

cs:RelationalOperator\#LT rdfs:subClassOf cs:RelationalOperator;
  rdfs:label "Less than";
  dc:title "Less than";
  rdfs:comment "Less than condition applied to comparisons.";
  dcterms:description "Less than condition applied to comparisons.".

cs:RelationalOperator\#NE rdfs:subClassOf cs:RelationalOperator;
  rdfs:label "Not Equal";
  dc:title "Not Equal";
  rdfs:comment "Not equal condition applied to comparisons.";
  dcterms:description "Not equal condition applied to comparisons.".

# - vs:v3-RelationshipConjunction ----------------------------------------------

vs:v3-RelationshipConjunction a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System RelationshipConjunction";
  dc:title "v3 Code System RelationshipConjunction";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:RelationshipConjunction.

cs:RelationshipConjunction.system a fhir:CodeSystem;
  rdfs:label "v3 Code System RelationshipConjunction";
  dc:title "v3 Code System RelationshipConjunction";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:RelationshipConjunction a fhir:Concept.

cs:RelationshipConjunction\#AND rdfs:subClassOf cs:RelationshipConjunction;
  rdfs:label "and";
  dc:title "and";
  rdfs:comment "This condition must be true.";
  dcterms:description "This condition must be true.".

cs:RelationshipConjunction\#OR rdfs:subClassOf cs:RelationshipConjunction;
  rdfs:label "or";
  dc:title "or";
  rdfs:comment "At least one of the condition among all OR conditions must be true.";
  dcterms:description "At least one of the condition among all OR conditions must be true.".

cs:RelationshipConjunction\#XOR rdfs:subClassOf cs:RelationshipConjunction;
  rdfs:label "exclusive or";
  dc:title "exclusive or";
  rdfs:comment "One and only one of the XOR conditions must be true.";
  dcterms:description "One and only one of the XOR conditions must be true.".

# - vs:v3-ReligiousAffiliation -------------------------------------------------

vs:v3-ReligiousAffiliation a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ReligiousAffiliation";
  dc:title "v3 Code System ReligiousAffiliation";
  rdfs:comment " Assigment of spiritual faith affiliation";
  dcterms:description " Assigment of spiritual faith affiliation";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ReligiousAffiliation.

cs:ReligiousAffiliation.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ReligiousAffiliation";
  dc:title "v3 Code System ReligiousAffiliation";
  rdfs:comment " Assigment of spiritual faith affiliation";
  dcterms:description " Assigment of spiritual faith affiliation";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ReligiousAffiliation a fhir:Concept.

cs:ReligiousAffiliation\#1001 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Adventist";
  dc:title "Adventist";
  rdfs:comment "Adventist";
  dcterms:description "Adventist".

cs:ReligiousAffiliation\#1002 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "African Religions";
  dc:title "African Religions";
  rdfs:comment "African Religions";
  dcterms:description "African Religions".

cs:ReligiousAffiliation\#1003 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Afro-Caribbean Religions";
  dc:title "Afro-Caribbean Religions";
  rdfs:comment "Afro-Caribbean Religions";
  dcterms:description "Afro-Caribbean Religions".

cs:ReligiousAffiliation\#1004 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Agnosticism";
  dc:title "Agnosticism";
  rdfs:comment "Agnosticism";
  dcterms:description "Agnosticism".

cs:ReligiousAffiliation\#1005 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Anglican";
  dc:title "Anglican";
  rdfs:comment "Anglican";
  dcterms:description "Anglican".

cs:ReligiousAffiliation\#1006 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Animism";
  dc:title "Animism";
  rdfs:comment "Animism";
  dcterms:description "Animism".

cs:ReligiousAffiliation\#1007 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Atheism";
  dc:title "Atheism";
  rdfs:comment "Atheism";
  dcterms:description "Atheism".

cs:ReligiousAffiliation\#1008 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Babi & Baha'I faiths";
  dc:title "Babi & Baha'I faiths";
  rdfs:comment "Babi & Baha'I faiths";
  dcterms:description "Babi & Baha'I faiths".

cs:ReligiousAffiliation\#1009 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Baptist";
  dc:title "Baptist";
  rdfs:comment "Baptist";
  dcterms:description "Baptist".

cs:ReligiousAffiliation\#1010 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Bon";
  dc:title "Bon";
  rdfs:comment "Bon";
  dcterms:description "Bon".

cs:ReligiousAffiliation\#1011 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Cao Dai";
  dc:title "Cao Dai";
  rdfs:comment "Cao Dai";
  dcterms:description "Cao Dai".

cs:ReligiousAffiliation\#1012 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Celticism";
  dc:title "Celticism";
  rdfs:comment "Celticism";
  dcterms:description "Celticism".

cs:ReligiousAffiliation\#1013 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Christian (non-Catholic, non-specific)";
  dc:title "Christian (non-Catholic, non-specific)";
  rdfs:comment "Christian (non-Catholic, non-specific)";
  dcterms:description "Christian (non-Catholic, non-specific)".

cs:ReligiousAffiliation\#1014 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Confucianism";
  dc:title "Confucianism";
  rdfs:comment "Confucianism";
  dcterms:description "Confucianism".

cs:ReligiousAffiliation\#1015 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Cyberculture Religions";
  dc:title "Cyberculture Religions";
  rdfs:comment "Cyberculture Religions";
  dcterms:description "Cyberculture Religions".

cs:ReligiousAffiliation\#1016 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Divination";
  dc:title "Divination";
  rdfs:comment "Divination";
  dcterms:description "Divination".

cs:ReligiousAffiliation\#1017 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Fourth Way";
  dc:title "Fourth Way";
  rdfs:comment "Fourth Way";
  dcterms:description "Fourth Way".

cs:ReligiousAffiliation\#1018 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Free Daism";
  dc:title "Free Daism";
  rdfs:comment "Free Daism";
  dcterms:description "Free Daism".

cs:ReligiousAffiliation\#1019 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Gnosis";
  dc:title "Gnosis";
  rdfs:comment "Gnosis";
  dcterms:description "Gnosis".

cs:ReligiousAffiliation\#1020 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Hinduism";
  dc:title "Hinduism";
  rdfs:comment "Hinduism";
  dcterms:description "Hinduism".

cs:ReligiousAffiliation\#1021 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Humanism";
  dc:title "Humanism";
  rdfs:comment "Humanism";
  dcterms:description "Humanism".

cs:ReligiousAffiliation\#1022 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Independent";
  dc:title "Independent";
  rdfs:comment "Independent";
  dcterms:description "Independent".

cs:ReligiousAffiliation\#1023 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Islam";
  dc:title "Islam";
  rdfs:comment "Islam";
  dcterms:description "Islam".

cs:ReligiousAffiliation\#1024 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Jainism";
  dc:title "Jainism";
  rdfs:comment "Jainism";
  dcterms:description "Jainism".

cs:ReligiousAffiliation\#1025 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Jehovah's Witnesses";
  dc:title "Jehovah's Witnesses";
  rdfs:comment "Jehovah's Witnesses";
  dcterms:description "Jehovah's Witnesses".

cs:ReligiousAffiliation\#1026 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Judaism";
  dc:title "Judaism";
  rdfs:comment "Judaism";
  dcterms:description "Judaism".

cs:ReligiousAffiliation\#1027 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Latter Day Saints";
  dc:title "Latter Day Saints";
  rdfs:comment "Latter Day Saints";
  dcterms:description "Latter Day Saints".

cs:ReligiousAffiliation\#1028 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Lutheran";
  dc:title "Lutheran";
  rdfs:comment "Lutheran";
  dcterms:description "Lutheran".

cs:ReligiousAffiliation\#1029 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Mahayana";
  dc:title "Mahayana";
  rdfs:comment "Mahayana";
  dcterms:description "Mahayana".

cs:ReligiousAffiliation\#1030 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Meditation";
  dc:title "Meditation";
  rdfs:comment "Meditation";
  dcterms:description "Meditation".

cs:ReligiousAffiliation\#1031 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Messianic Judaism";
  dc:title "Messianic Judaism";
  rdfs:comment "Messianic Judaism";
  dcterms:description "Messianic Judaism".

cs:ReligiousAffiliation\#1032 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Mitraism";
  dc:title "Mitraism";
  rdfs:comment "Mitraism";
  dcterms:description "Mitraism".

cs:ReligiousAffiliation\#1033 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "New Age";
  dc:title "New Age";
  rdfs:comment "New Age";
  dcterms:description "New Age".

cs:ReligiousAffiliation\#1034 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "non-Roman Catholic";
  dc:title "non-Roman Catholic";
  rdfs:comment "non-Roman Catholic";
  dcterms:description "non-Roman Catholic".

cs:ReligiousAffiliation\#1035 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Occult";
  dc:title "Occult";
  rdfs:comment "Occult";
  dcterms:description "Occult".

cs:ReligiousAffiliation\#1036 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Orthodox";
  dc:title "Orthodox";
  rdfs:comment "Orthodox";
  dcterms:description "Orthodox".

cs:ReligiousAffiliation\#1037 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Paganism";
  dc:title "Paganism";
  rdfs:comment "Paganism";
  dcterms:description "Paganism".

cs:ReligiousAffiliation\#1038 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Pentecostal";
  dc:title "Pentecostal";
  rdfs:comment "Pentecostal";
  dcterms:description "Pentecostal".

cs:ReligiousAffiliation\#1039 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Process, The";
  dc:title "Process, The";
  rdfs:comment "Process, The";
  dcterms:description "Process, The".

cs:ReligiousAffiliation\#1040 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Reformed/Presbyterian";
  dc:title "Reformed/Presbyterian";
  rdfs:comment "Reformed/Presbyterian";
  dcterms:description "Reformed/Presbyterian".

cs:ReligiousAffiliation\#1041 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Roman Catholic Church";
  dc:title "Roman Catholic Church";
  rdfs:comment "Roman Catholic Church";
  dcterms:description "Roman Catholic Church".

cs:ReligiousAffiliation\#1042 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Satanism";
  dc:title "Satanism";
  rdfs:comment "Satanism";
  dcterms:description "Satanism".

cs:ReligiousAffiliation\#1043 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Scientology";
  dc:title "Scientology";
  rdfs:comment "Scientology";
  dcterms:description "Scientology".

cs:ReligiousAffiliation\#1044 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Shamanism";
  dc:title "Shamanism";
  rdfs:comment "Shamanism";
  dcterms:description "Shamanism".

cs:ReligiousAffiliation\#1045 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Shiite (Islam)";
  dc:title "Shiite (Islam)";
  rdfs:comment "Shiite (Islam)";
  dcterms:description "Shiite (Islam)".

cs:ReligiousAffiliation\#1046 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Shinto";
  dc:title "Shinto";
  rdfs:comment "Shinto";
  dcterms:description "Shinto".

cs:ReligiousAffiliation\#1047 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Sikism";
  dc:title "Sikism";
  rdfs:comment "Sikism";
  dcterms:description "Sikism".

cs:ReligiousAffiliation\#1048 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Spiritualism";
  dc:title "Spiritualism";
  rdfs:comment "Spiritualism";
  dcterms:description "Spiritualism".

cs:ReligiousAffiliation\#1049 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Sunni (Islam)";
  dc:title "Sunni (Islam)";
  rdfs:comment "Sunni (Islam)";
  dcterms:description "Sunni (Islam)".

cs:ReligiousAffiliation\#1050 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Taoism";
  dc:title "Taoism";
  rdfs:comment "Taoism";
  dcterms:description "Taoism".

cs:ReligiousAffiliation\#1051 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Theravada";
  dc:title "Theravada";
  rdfs:comment "Theravada";
  dcterms:description "Theravada".

cs:ReligiousAffiliation\#1052 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Unitarian-Universalism";
  dc:title "Unitarian-Universalism";
  rdfs:comment "Unitarian-Universalism";
  dcterms:description "Unitarian-Universalism".

cs:ReligiousAffiliation\#1053 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Universal Life Church";
  dc:title "Universal Life Church";
  rdfs:comment "Universal Life Church";
  dcterms:description "Universal Life Church".

cs:ReligiousAffiliation\#1054 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Vajrayana (Tibetan)";
  dc:title "Vajrayana (Tibetan)";
  rdfs:comment "Vajrayana (Tibetan)";
  dcterms:description "Vajrayana (Tibetan)".

cs:ReligiousAffiliation\#1055 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Veda";
  dc:title "Veda";
  rdfs:comment "Veda";
  dcterms:description "Veda".

cs:ReligiousAffiliation\#1056 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Voodoo";
  dc:title "Voodoo";
  rdfs:comment "Voodoo";
  dcterms:description "Voodoo".

cs:ReligiousAffiliation\#1057 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Wicca";
  dc:title "Wicca";
  rdfs:comment "Wicca";
  dcterms:description "Wicca".

cs:ReligiousAffiliation\#1058 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Yaohushua";
  dc:title "Yaohushua";
  rdfs:comment "Yaohushua";
  dcterms:description "Yaohushua".

cs:ReligiousAffiliation\#1059 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Zen Buddhism";
  dc:title "Zen Buddhism";
  rdfs:comment "Zen Buddhism";
  dcterms:description "Zen Buddhism".

cs:ReligiousAffiliation\#1060 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Zoroastrianism";
  dc:title "Zoroastrianism";
  rdfs:comment "Zoroastrianism";
  dcterms:description "Zoroastrianism".

cs:ReligiousAffiliation\#1061 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Assembly of God";
  dc:title "Assembly of God";
  rdfs:comment "Assembly of God";
  dcterms:description "Assembly of God".

cs:ReligiousAffiliation\#1062 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Brethren";
  dc:title "Brethren";
  rdfs:comment "Brethren";
  dcterms:description "Brethren".

cs:ReligiousAffiliation\#1063 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Christian Scientist";
  dc:title "Christian Scientist";
  rdfs:comment "Christian Scientist";
  dcterms:description "Christian Scientist".

cs:ReligiousAffiliation\#1064 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Church of Christ";
  dc:title "Church of Christ";
  rdfs:comment "Church of Christ";
  dcterms:description "Church of Christ".

cs:ReligiousAffiliation\#1065 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Church of God";
  dc:title "Church of God";
  rdfs:comment "Church of God";
  dcterms:description "Church of God".

cs:ReligiousAffiliation\#1066 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Congregational";
  dc:title "Congregational";
  rdfs:comment "Congregational";
  dcterms:description "Congregational".

cs:ReligiousAffiliation\#1067 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Disciples of Christ";
  dc:title "Disciples of Christ";
  rdfs:comment "Disciples of Christ";
  dcterms:description "Disciples of Christ".

cs:ReligiousAffiliation\#1068 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Eastern Orthodox";
  dc:title "Eastern Orthodox";
  rdfs:comment "Eastern Orthodox";
  dcterms:description "Eastern Orthodox".

cs:ReligiousAffiliation\#1069 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Episcopalian";
  dc:title "Episcopalian";
  rdfs:comment "Episcopalian";
  dcterms:description "Episcopalian".

cs:ReligiousAffiliation\#1070 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Evangelical Covenant";
  dc:title "Evangelical Covenant";
  rdfs:comment "Evangelical Covenant";
  dcterms:description "Evangelical Covenant".

cs:ReligiousAffiliation\#1071 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Friends";
  dc:title "Friends";
  rdfs:comment "Friends";
  dcterms:description "Friends".

cs:ReligiousAffiliation\#1072 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Full Gospel";
  dc:title "Full Gospel";
  rdfs:comment "Full Gospel";
  dcterms:description "Full Gospel".

cs:ReligiousAffiliation\#1073 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Methodist";
  dc:title "Methodist";
  rdfs:comment "Methodist";
  dcterms:description "Methodist".

cs:ReligiousAffiliation\#1074 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Native American";
  dc:title "Native American";
  rdfs:comment "Native American";
  dcterms:description "Native American".

cs:ReligiousAffiliation\#1075 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Nazarene";
  dc:title "Nazarene";
  rdfs:comment "Nazarene";
  dcterms:description "Nazarene".

cs:ReligiousAffiliation\#1076 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Presbyterian";
  dc:title "Presbyterian";
  rdfs:comment "Presbyterian";
  dcterms:description "Presbyterian".

cs:ReligiousAffiliation\#1077 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Protestant";
  dc:title "Protestant";
  rdfs:comment "Protestant";
  dcterms:description "Protestant".

cs:ReligiousAffiliation\#1078 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Protestant, No Denomination";
  dc:title "Protestant, No Denomination";
  rdfs:comment "Protestant, No Denomination";
  dcterms:description "Protestant, No Denomination".

cs:ReligiousAffiliation\#1079 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Reformed";
  dc:title "Reformed";
  rdfs:comment "Reformed";
  dcterms:description "Reformed".

cs:ReligiousAffiliation\#1080 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Salvation Army";
  dc:title "Salvation Army";
  rdfs:comment "Salvation Army";
  dcterms:description "Salvation Army".

cs:ReligiousAffiliation\#1081 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "Unitarian Universalist";
  dc:title "Unitarian Universalist";
  rdfs:comment "Unitarian Universalist";
  dcterms:description "Unitarian Universalist".

cs:ReligiousAffiliation\#1082 rdfs:subClassOf cs:ReligiousAffiliation;
  rdfs:label "United Church of Christ";
  dc:title "United Church of Christ";
  rdfs:comment "United Church of Christ";
  dcterms:description "United Church of Christ".

# - vs:v3-ResponseLevel --------------------------------------------------------

vs:v3-ResponseLevel a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ResponseLevel";
  dc:title "v3 Code System ResponseLevel";
  rdfs:comment " Specifies whether a response is expected from the addressee of this interaction and what level of detail that response should include";
  dcterms:description " Specifies whether a response is expected from the addressee of this interaction and what level of detail that response should include";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ResponseLevel.

cs:ResponseLevel.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ResponseLevel";
  dc:title "v3 Code System ResponseLevel";
  rdfs:comment " Specifies whether a response is expected from the addressee of this interaction and what level of detail that response should include";
  dcterms:description " Specifies whether a response is expected from the addressee of this interaction and what level of detail that response should include";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ResponseLevel a fhir:Concept.

cs:ResponseLevel\#C rdfs:subClassOf cs:ResponseLevel;
  rdfs:label "completion";
  dc:title "completion";
  rdfs:comment "Respond with exceptions and a notification of completion";
  dcterms:description "Respond with exceptions and a notification of completion".

cs:ResponseLevel\#D rdfs:subClassOf cs:ResponseLevel;
  rdfs:label "detail";
  dc:title "detail";
  rdfs:comment "Respond with exceptions, completion, modifications and include more detail information (if applicable)";
  dcterms:description "Respond with exceptions, completion, modifications and include more detail information (if applicable)".

cs:ResponseLevel\#E rdfs:subClassOf cs:ResponseLevel;
  rdfs:label "exception";
  dc:title "exception";
  rdfs:comment "Respond with exceptions only";
  dcterms:description "Respond with exceptions only".

cs:ResponseLevel\#F rdfs:subClassOf cs:ResponseLevel;
  rdfs:label "confirmation";
  dc:title "confirmation";
  rdfs:comment "Respond with exceptions, completion, and modification with detail (as above), and send positive confirmations even if no modifications are being made.";
  dcterms:description "Respond with exceptions, completion, and modification with detail (as above), and send positive confirmations even if no modifications are being made.".

cs:ResponseLevel\#N rdfs:subClassOf cs:ResponseLevel;
  rdfs:label "message-control";
  dc:title "message-control";
  rdfs:comment "Respond only with message level acknowledgements, i.e., only notify acceptance or rejection of the message, do not include any application-level detail";
  dcterms:description "Respond only with message level acknowledgements, i.e., only notify acceptance or rejection of the message, do not include any application-level detail".

cs:ResponseLevel\#R rdfs:subClassOf cs:ResponseLevel;
  rdfs:label "modification";
  dc:title "modification";
  rdfs:comment "Respond with exceptions, completions and modifications or revisions done before completion";
  dcterms:description "Respond with exceptions, completions and modifications or revisions done before completion".

cs:ResponseLevel\#X rdfs:subClassOf cs:ResponseLevel;
  rdfs:label "none";
  dc:title "none";
  rdfs:comment "Do not send any kind of response";
  dcterms:description "Do not send any kind of response".

# - vs:v3-ResponseModality -----------------------------------------------------

vs:v3-ResponseModality a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ResponseModality";
  dc:title "v3 Code System ResponseModality";
  rdfs:comment " Defines the timing and grouping of the response instances.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dcterms:description " Defines the timing and grouping of the response instances.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ResponseModality.

cs:ResponseModality.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ResponseModality";
  dc:title "v3 Code System ResponseModality";
  rdfs:comment " Defines the timing and grouping of the response instances.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dcterms:description " Defines the timing and grouping of the response instances.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ResponseModality a fhir:Concept.

cs:ResponseModality\#B rdfs:subClassOf cs:ResponseModality;
  rdfs:label "Batch";
  dc:title "Batch";
  rdfs:comment "Query response to be sent as an HL7 Batch.";
  dcterms:description "Query response to be sent as an HL7 Batch.".

cs:ResponseModality\#R rdfs:subClassOf cs:ResponseModality;
  rdfs:label "Real Time";
  dc:title "Real Time";
  rdfs:comment "Query response to occur in real time.";
  dcterms:description "Query response to occur in real time.".

cs:ResponseModality\#T rdfs:subClassOf cs:ResponseModality;
  rdfs:label "Bolus";
  dc:title "Bolus";
  rdfs:comment "Query response to sent as a series of responses at the same time without the use of batch formatting.";
  dcterms:description "Query response to sent as a series of responses at the same time without the use of batch formatting.".

# - vs:v3-ResponseMode ---------------------------------------------------------

vs:v3-ResponseMode a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System ResponseMode";
  dc:title "v3 Code System ResponseMode";
  rdfs:comment " Specifies the mode, immediate versus deferred or queued, by which a receiver should communicate its receiver responsibilities.";
  dcterms:description " Specifies the mode, immediate versus deferred or queued, by which a receiver should communicate its receiver responsibilities.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:ResponseMode.

cs:ResponseMode.system a fhir:CodeSystem;
  rdfs:label "v3 Code System ResponseMode";
  dc:title "v3 Code System ResponseMode";
  rdfs:comment " Specifies the mode, immediate versus deferred or queued, by which a receiver should communicate its receiver responsibilities.";
  dcterms:description " Specifies the mode, immediate versus deferred or queued, by which a receiver should communicate its receiver responsibilities.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:ResponseMode a fhir:Concept.

cs:ResponseMode\#D rdfs:subClassOf cs:ResponseMode;
  rdfs:label "deferred";
  dc:title "deferred";
  rdfs:comment "The receiver may respond in a non-immediate manner. Note: this will be the default value.";
  dcterms:description "The receiver may respond in a non-immediate manner. Note: this will be the default value.".

cs:ResponseMode\#I rdfs:subClassOf cs:ResponseMode;
  rdfs:label "immediate";
  dc:title "immediate";
  rdfs:comment "The receiver is required to assume that the sender is blocking and behave appropriately by sending an immediate response.";
  dcterms:description "The receiver is required to assume that the sender is blocking and behave appropriately by sending an immediate response.".

cs:ResponseMode\#Q rdfs:subClassOf cs:ResponseMode;
  rdfs:label "queue";
  dc:title "queue";
  rdfs:comment "The receiver shall keep any application responses in a queue until such time as the queue is polled.";
  dcterms:description "The receiver shall keep any application responses in a queue until such time as the queue is polled.".

# - vs:v3-RoleClass ------------------------------------------------------------

vs:v3-RoleClass a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System RoleClass";
  dc:title "v3 Code System RoleClass";
  rdfs:comment " Codes for the Role class hierarchy.  The values in this hierarchy, represent a Role which is an association or relationship between two entities - the entity that plays the role and the entity that scopes the role.  Roles names are derived from the name of the playing entity in that role. The role hierarchy stems from three core concepts, or abstract domains:    RoleClassOntological\r\nis an abstract domain that collects roles in which the playing entity is defined or specified by the scoping entity.   RoleClassPartitive\r\ncollects roles in which the playing entity is in some sense a \"part\" of the scoping entity.   RoleClassAssociative\r\ncollects all of the remaining forms of association between the playing entity and the scoping entity. This set of roles is further partitioned between:    RoleClassPassive\r\nwhich are roles in which the playing entity is used, known, treated, handled, built, or destroyed, etc. under the auspices of the scoping entity. The playing entity is passive in these roles in that the role exists without an agreement from the playing entity.   RoleClassMutualRelationship\r\nwhich are relationships based on mutual behavior of the two entities. The basis of these relationship may be formal agreements or they may bede facto\r\nbehavior.  Thus, this sub-domain is further divided into:    RoleClassRelationshipFormal\r\nin which the relationship is formally defined, frequently by a contract or agreement.   Personal relationship\r\nwhich inks two people in a personal relationship. The hierarchy discussed above is represented In the current vocabulary tables as a set of abstract domains, with the exception of the  \"Personal relationship\" which is a leaf concept.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dcterms:description " Codes for the Role class hierarchy.  The values in this hierarchy, represent a Role which is an association or relationship between two entities - the entity that plays the role and the entity that scopes the role.  Roles names are derived from the name of the playing entity in that role. The role hierarchy stems from three core concepts, or abstract domains:    RoleClassOntological\r\nis an abstract domain that collects roles in which the playing entity is defined or specified by the scoping entity.   RoleClassPartitive\r\ncollects roles in which the playing entity is in some sense a \"part\" of the scoping entity.   RoleClassAssociative\r\ncollects all of the remaining forms of association between the playing entity and the scoping entity. This set of roles is further partitioned between:    RoleClassPassive\r\nwhich are roles in which the playing entity is used, known, treated, handled, built, or destroyed, etc. under the auspices of the scoping entity. The playing entity is passive in these roles in that the role exists without an agreement from the playing entity.   RoleClassMutualRelationship\r\nwhich are relationships based on mutual behavior of the two entities. The basis of these relationship may be formal agreements or they may bede facto\r\nbehavior.  Thus, this sub-domain is further divided into:    RoleClassRelationshipFormal\r\nin which the relationship is formally defined, frequently by a contract or agreement.   Personal relationship\r\nwhich inks two people in a personal relationship. The hierarchy discussed above is represented In the current vocabulary tables as a set of abstract domains, with the exception of the  \"Personal relationship\" which is a leaf concept.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:RoleClass.

cs:RoleClass.system a fhir:CodeSystem;
  rdfs:label "v3 Code System RoleClass";
  dc:title "v3 Code System RoleClass";
  rdfs:comment " Codes for the Role class hierarchy.  The values in this hierarchy, represent a Role which is an association or relationship between two entities - the entity that plays the role and the entity that scopes the role.  Roles names are derived from the name of the playing entity in that role. The role hierarchy stems from three core concepts, or abstract domains:    RoleClassOntological\r\nis an abstract domain that collects roles in which the playing entity is defined or specified by the scoping entity.   RoleClassPartitive\r\ncollects roles in which the playing entity is in some sense a \"part\" of the scoping entity.   RoleClassAssociative\r\ncollects all of the remaining forms of association between the playing entity and the scoping entity. This set of roles is further partitioned between:    RoleClassPassive\r\nwhich are roles in which the playing entity is used, known, treated, handled, built, or destroyed, etc. under the auspices of the scoping entity. The playing entity is passive in these roles in that the role exists without an agreement from the playing entity.   RoleClassMutualRelationship\r\nwhich are relationships based on mutual behavior of the two entities. The basis of these relationship may be formal agreements or they may bede facto\r\nbehavior.  Thus, this sub-domain is further divided into:    RoleClassRelationshipFormal\r\nin which the relationship is formally defined, frequently by a contract or agreement.   Personal relationship\r\nwhich inks two people in a personal relationship. The hierarchy discussed above is represented In the current vocabulary tables as a set of abstract domains, with the exception of the  \"Personal relationship\" which is a leaf concept.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dcterms:description " Codes for the Role class hierarchy.  The values in this hierarchy, represent a Role which is an association or relationship between two entities - the entity that plays the role and the entity that scopes the role.  Roles names are derived from the name of the playing entity in that role. The role hierarchy stems from three core concepts, or abstract domains:    RoleClassOntological\r\nis an abstract domain that collects roles in which the playing entity is defined or specified by the scoping entity.   RoleClassPartitive\r\ncollects roles in which the playing entity is in some sense a \"part\" of the scoping entity.   RoleClassAssociative\r\ncollects all of the remaining forms of association between the playing entity and the scoping entity. This set of roles is further partitioned between:    RoleClassPassive\r\nwhich are roles in which the playing entity is used, known, treated, handled, built, or destroyed, etc. under the auspices of the scoping entity. The playing entity is passive in these roles in that the role exists without an agreement from the playing entity.   RoleClassMutualRelationship\r\nwhich are relationships based on mutual behavior of the two entities. The basis of these relationship may be formal agreements or they may bede facto\r\nbehavior.  Thus, this sub-domain is further divided into:    RoleClassRelationshipFormal\r\nin which the relationship is formally defined, frequently by a contract or agreement.   Personal relationship\r\nwhich inks two people in a personal relationship. The hierarchy discussed above is represented In the current vocabulary tables as a set of abstract domains, with the exception of the  \"Personal relationship\" which is a leaf concept.  OpenIssue:\r\nDescription copied from Concept Domain of same name.  Must be verified.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:RoleClass a fhir:Concept.

cs:RoleClass\#ROL rdfs:subClassOf cs:RoleClass;
  rdfs:label "role";
  dc:title "role";
  rdfs:comment "Corresponds to the Role class";
  dcterms:description "Corresponds to the Role class".

cs:RoleClass\#%5fRoleClassAssociative rdfs:subClassOf cs:RoleClass\#ROL;
  rdfs:label "RoleClassAssociative";
  dc:title "RoleClassAssociative";
  rdfs:comment "A general association between two entities that is neither partitive nor ontological.";
  dcterms:description "A general association between two entities that is neither partitive nor ontological.".

cs:RoleClass\#%5fRoleClassMutualRelationship rdfs:subClassOf cs:RoleClass\#%5fRoleClassAssociative;
  rdfs:label "RoleClassMutualRelationship";
  dc:title "RoleClassMutualRelationship";
  rdfs:comment "A relationship that is based on mutual behavior of the two Entities as being related. The basis of such relationship may be agreements (e.g., spouses, contract parties) or they may be de facto behavior (e.g. friends) or may be an incidental involvement with each other (e.g. parties over a dispute, siblings, children).";
  dcterms:description "A relationship that is based on mutual behavior of the two Entities as being related. The basis of such relationship may be agreements (e.g., spouses, contract parties) or they may be de facto behavior (e.g. friends) or may be an incidental involvement with each other (e.g. parties over a dispute, siblings, children).".

cs:RoleClass\#%5fRoleClassRelationshipFormal rdfs:subClassOf cs:RoleClass\#%5fRoleClassMutualRelationship;
  rdfs:label "RoleClassRelationshipFormal";
  dc:title "RoleClassRelationshipFormal";
  rdfs:comment "A relationship between two entities that is formally recognized, frequently by a contract or similar agreement.";
  dcterms:description "A relationship between two entities that is formally recognized, frequently by a contract or similar agreement.".

cs:RoleClass\#AFFL rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "affiliate";
  dc:title "affiliate";
  rdfs:comment "Player of the Affiliate role has a business/professional relationship with scoper.  Player and scoper may be persons or organization.  The Affiliate relationship does not imply membership in a group, nor does it exist for resource scheduling purposes.\r\n\n                        \n                           Example: A healthcare provider is affiliated with another provider as a business associate.";
  dcterms:description "Player of the Affiliate role has a business/professional relationship with scoper.  Player and scoper may be persons or organization.  The Affiliate relationship does not imply membership in a group, nor does it exist for resource scheduling purposes.\r\n\n                        \n                           Example: A healthcare provider is affiliated with another provider as a business associate.".

cs:RoleClass\#AGNT rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "agent";
  dc:title "agent";
  rdfs:comment "An entity (player) that acts or is authorized to act on behalf of another entity (scoper).";
  dcterms:description "An entity (player) that acts or is authorized to act on behalf of another entity (scoper).".

cs:RoleClass\#ASSIGNED rdfs:subClassOf cs:RoleClass\#AGNT;
  rdfs:label "assigned entity";
  dc:title "assigned entity";
  rdfs:comment "An agent role in which the agent is an Entity acting in the employ of an organization.  The focus is on functional role on behalf of the organization, unlike the Employee role where the focus is on the 'Human Resources' relationship between the employee and the organization.";
  dcterms:description "An agent role in which the agent is an Entity acting in the employ of an organization.  The focus is on functional role on behalf of the organization, unlike the Employee role where the focus is on the 'Human Resources' relationship between the employee and the organization.".

cs:RoleClass\#COMPAR rdfs:subClassOf cs:RoleClass\#ASSIGNED;
  rdfs:label "commissioning party";
  dc:title "commissioning party";
  rdfs:comment "An Entity that is authorized to issue or instantiate permissions, privileges, credentials or other formal/legal authorizations.";
  dcterms:description "An Entity that is authorized to issue or instantiate permissions, privileges, credentials or other formal/legal authorizations.".

cs:RoleClass\#SGNOFF rdfs:subClassOf cs:RoleClass\#ASSIGNED;
  rdfs:label "signing authority or officer";
  dc:title "signing authority or officer";
  rdfs:comment "The role of a person (player) who is the officer or signature authority for of a scoping entity, usually an organization (scoper).";
  dcterms:description "The role of a person (player) who is the officer or signature authority for of a scoping entity, usually an organization (scoper).".

cs:RoleClass\#CON rdfs:subClassOf cs:RoleClass\#AGNT;
  rdfs:label "contact";
  dc:title "contact";
  rdfs:comment "A person or an organization (player) which provides or receives information regarding another entity (scoper).  Examples; patient NOK and emergency contacts; guarantor contact; employer contact.";
  dcterms:description "A person or an organization (player) which provides or receives information regarding another entity (scoper).  Examples; patient NOK and emergency contacts; guarantor contact; employer contact.".

cs:RoleClass\#ECON rdfs:subClassOf cs:RoleClass\#CON;
  rdfs:label "emergency contact";
  dc:title "emergency contact";
  rdfs:comment "An entity to be contacted in the event of an emergency.";
  dcterms:description "An entity to be contacted in the event of an emergency.".

cs:RoleClass\#NOK rdfs:subClassOf cs:RoleClass\#CON;
  rdfs:label "next of kin";
  dc:title "next of kin";
  rdfs:comment "An individual designated for notification as the next of kin for a given entity.";
  dcterms:description "An individual designated for notification as the next of kin for a given entity.".

cs:RoleClass\#GUARD rdfs:subClassOf cs:RoleClass\#AGNT;
  rdfs:label "guardian";
  dc:title "guardian";
  rdfs:comment "Guardian of a ward";
  dcterms:description "Guardian of a ward".

cs:RoleClass\#CIT rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "citizen";
  dc:title "citizen";
  rdfs:comment "Citizen of apolitical entity";
  dcterms:description "Citizen of apolitical entity".

cs:RoleClass\#COVPTY rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "covered party";
  dc:title "covered party";
  rdfs:comment "A role class played by a person who receives benefit coverage under the terms of a particular insurance policy.  The underwriter of that policy is the scoping entity.  The covered party receives coverage because of some contractual or other relationship with the holder of that policy.\r\n\n                        \n                           Discussion:This reason for coverage is captured in 'Role.code' and a relationship link with type code of indirect authority should be included using the policy holder role as the source, and the covered party role as the target.\r\n\n                        Note that a particular policy may cover several individuals one of whom may be, but need not be, the policy holder.  Thus the notion of covered party is a role that is distinct from that of the policy holder.";
  dcterms:description "A role class played by a person who receives benefit coverage under the terms of a particular insurance policy.  The underwriter of that policy is the scoping entity.  The covered party receives coverage because of some contractual or other relationship with the holder of that policy.\r\n\n                        \n                           Discussion:This reason for coverage is captured in 'Role.code' and a relationship link with type code of indirect authority should be included using the policy holder role as the source, and the covered party role as the target.\r\n\n                        Note that a particular policy may cover several individuals one of whom may be, but need not be, the policy holder.  Thus the notion of covered party is a role that is distinct from that of the policy holder.".

cs:RoleClass\#CLAIM rdfs:subClassOf cs:RoleClass\#COVPTY;
  rdfs:label "claimant";
  dc:title "claimant";
  rdfs:comment "Description: A role played by a party making a claim for coverage under a policy or program.  A claimant must be either a person or organization, or a group of persons or organizations.  A claimant is not a named insured or a program eligible.\r\n\n                        \n                           Discussion: With respect to liability insurance such as property and casualty insurance, a claimant must file a claim requesting indemnification for a loss that the claimant considers covered under the policy of a named insured.  The claims adjuster for the policy underwriter will review the claim to determine whether the loss meets the benefit coverage criteria under a policy, and base any indemnification or coverage payment on that review.  If a third party is liable in whole or part for the loss, the underwriter may pursue third party liability recovery.  A claimant may be involved in civil or criminal legal proceedings involving claims against a defendant party that is indemnified by an insurance policy or to protest the finding of a claims adjustor. With respect to life insurance, a beneficiary designated by a named insured becomes a claimant of the proceeds of coverage, as in the case of a life insurance policy.  However, a claimant for coverage under life insurance is not necessarily a designated beneficiary.\r\n\n                        \n                           Note: A claimant is not a named insured.  However, a named insured may make a claim under a policy, e.g., an insured driver may make a claim for an injury under his or her comprehensive automobile insurance policy.  Similarly, a program eligible may make a claim under program, e.g., an unemployed worker may claim benefits under an unemployment insurance program, but parties playing these covered party role classes are not, for purposes of this vocabulary and in an effort to clearly distinguish role classes, considered claimants.\r\n\n                        In the case of a named insured making a claim, a role type code INSCLM (insured claimant) subtypes the class to indicate that either a named insured or an individual insured has filed a claim for a loss.  In the case of a program eligible, a role type code INJWKR (injured worker) subtypes the class to indicate that the covered party in a workers compensation program is an injured worker, and as such, has filed a \"claim\" under the program for benefits.  Likewise, a covered role type code UNEMP (unemployed worker) subtypes the program eligible class to indicate that the covered party in an unemployment insurance program has filed a claim for unemployment benefits.\r\n\n                        \n                           Example: A claimant under automobile policy that is not the named insured.";
  dcterms:description "Description: A role played by a party making a claim for coverage under a policy or program.  A claimant must be either a person or organization, or a group of persons or organizations.  A claimant is not a named insured or a program eligible.\r\n\n                        \n                           Discussion: With respect to liability insurance such as property and casualty insurance, a claimant must file a claim requesting indemnification for a loss that the claimant considers covered under the policy of a named insured.  The claims adjuster for the policy underwriter will review the claim to determine whether the loss meets the benefit coverage criteria under a policy, and base any indemnification or coverage payment on that review.  If a third party is liable in whole or part for the loss, the underwriter may pursue third party liability recovery.  A claimant may be involved in civil or criminal legal proceedings involving claims against a defendant party that is indemnified by an insurance policy or to protest the finding of a claims adjustor. With respect to life insurance, a beneficiary designated by a named insured becomes a claimant of the proceeds of coverage, as in the case of a life insurance policy.  However, a claimant for coverage under life insurance is not necessarily a designated beneficiary.\r\n\n                        \n                           Note: A claimant is not a named insured.  However, a named insured may make a claim under a policy, e.g., an insured driver may make a claim for an injury under his or her comprehensive automobile insurance policy.  Similarly, a program eligible may make a claim under program, e.g., an unemployed worker may claim benefits under an unemployment insurance program, but parties playing these covered party role classes are not, for purposes of this vocabulary and in an effort to clearly distinguish role classes, considered claimants.\r\n\n                        In the case of a named insured making a claim, a role type code INSCLM (insured claimant) subtypes the class to indicate that either a named insured or an individual insured has filed a claim for a loss.  In the case of a program eligible, a role type code INJWKR (injured worker) subtypes the class to indicate that the covered party in a workers compensation program is an injured worker, and as such, has filed a \"claim\" under the program for benefits.  Likewise, a covered role type code UNEMP (unemployed worker) subtypes the program eligible class to indicate that the covered party in an unemployment insurance program has filed a claim for unemployment benefits.\r\n\n                        \n                           Example: A claimant under automobile policy that is not the named insured.".

cs:RoleClass\#NAMED rdfs:subClassOf cs:RoleClass\#COVPTY;
  rdfs:label "named insured";
  dc:title "named insured";
  rdfs:comment "Description: A role played by a party to an insurance policy to which the insurer agrees to indemnify for losses, provides benefits for, or renders services.  A named insured may be either a person, non-person living subject, or an organization, or a group of persons, non-person living subjects, or organizations.\r\n\n                        \n                           Discussion: The coded concept NAMED should not be used where a more specific child concept in this Specializable value set applies.  In some cases, the named insured may not be the policy holder, e.g., where a policy holder purchases life insurance policy in which another party is the named insured and the policy holder is the beneficiary of the policy.\r\n\n                        \n                           Note: The party playing the role of a named insured is not a claimant in the sense conveyed by the RoleClassCoveredParty CLAIM (claimant).  However, a named insured may make a claim under a policy, e.g., e.g., a party that is the named insured and policy holder under a comprehensive automobile insurance policy may become the claimant for coverage under that policy e.g., if injured in an automobile accident and there is no liable third party.  In the case of a named insured making a claim, a role type code INSCLM (insured claimant) subtypes the class to indicate that a named insured has filed a claim for a loss.\r\n\n                        \n                           Example: The named insured under a comprehensive automobile, disability, or property and casualty policy that is the named insured and may or may not be the policy holder.";
  dcterms:description "Description: A role played by a party to an insurance policy to which the insurer agrees to indemnify for losses, provides benefits for, or renders services.  A named insured may be either a person, non-person living subject, or an organization, or a group of persons, non-person living subjects, or organizations.\r\n\n                        \n                           Discussion: The coded concept NAMED should not be used where a more specific child concept in this Specializable value set applies.  In some cases, the named insured may not be the policy holder, e.g., where a policy holder purchases life insurance policy in which another party is the named insured and the policy holder is the beneficiary of the policy.\r\n\n                        \n                           Note: The party playing the role of a named insured is not a claimant in the sense conveyed by the RoleClassCoveredParty CLAIM (claimant).  However, a named insured may make a claim under a policy, e.g., e.g., a party that is the named insured and policy holder under a comprehensive automobile insurance policy may become the claimant for coverage under that policy e.g., if injured in an automobile accident and there is no liable third party.  In the case of a named insured making a claim, a role type code INSCLM (insured claimant) subtypes the class to indicate that a named insured has filed a claim for a loss.\r\n\n                        \n                           Example: The named insured under a comprehensive automobile, disability, or property and casualty policy that is the named insured and may or may not be the policy holder.".

cs:RoleClass\#DEPEN rdfs:subClassOf cs:RoleClass\#NAMED;
  rdfs:label "dependent";
  dc:title "dependent";
  rdfs:comment "Description: A role played by a person covered under a policy or program based on an association with a subscriber, which is recognized by the policy holder.\r\n\n                        \n                           Note:  The party playing the role of a dependent is not a claimant in the sense conveyed by the RoleClassCoveredParty CLAIM (claimant).  However, a dependent may make a claim under a policy, e.g., a dependent under a health insurance policy may become the claimant for coverage under that policy for wellness examines or if injured and there is no liable third party.  In the case of a dependent making a claim, a role type code INSCLM (insured claimant) subtypes the class to indicate that the dependent has filed a claim for services covered under the health insurance policy.\r\n\n                        \n                           Example: The dependent has an association with the subscriber such as a financial dependency or personal relationship such as that of a spouse, or a natural or adopted child.  The policy holder may be required by law to recognize certain associations or may have discretion about the associations.  For example, a policy holder may dictate the criteria for the dependent status of adult children who are students, such as requiring full time enrollment, or may recognize domestic partners as dependents.  Under certain circumstances, the dependent may be under the indirect authority of a responsible party acting as a surrogate for the subscriber, for example, if the subscriber is differently abled or deceased, a guardian ad Lidem or estate executor may be appointed to assume the subscriberaTMs legal standing in the relationship with the dependent.";
  dcterms:description "Description: A role played by a person covered under a policy or program based on an association with a subscriber, which is recognized by the policy holder.\r\n\n                        \n                           Note:  The party playing the role of a dependent is not a claimant in the sense conveyed by the RoleClassCoveredParty CLAIM (claimant).  However, a dependent may make a claim under a policy, e.g., a dependent under a health insurance policy may become the claimant for coverage under that policy for wellness examines or if injured and there is no liable third party.  In the case of a dependent making a claim, a role type code INSCLM (insured claimant) subtypes the class to indicate that the dependent has filed a claim for services covered under the health insurance policy.\r\n\n                        \n                           Example: The dependent has an association with the subscriber such as a financial dependency or personal relationship such as that of a spouse, or a natural or adopted child.  The policy holder may be required by law to recognize certain associations or may have discretion about the associations.  For example, a policy holder may dictate the criteria for the dependent status of adult children who are students, such as requiring full time enrollment, or may recognize domestic partners as dependents.  Under certain circumstances, the dependent may be under the indirect authority of a responsible party acting as a surrogate for the subscriber, for example, if the subscriber is differently abled or deceased, a guardian ad Lidem or estate executor may be appointed to assume the subscriberaTMs legal standing in the relationship with the dependent.".

cs:RoleClass\#INDIV rdfs:subClassOf cs:RoleClass\#NAMED;
  rdfs:label "individual";
  dc:title "individual";
  rdfs:comment "Description: A role played by a party covered under a policy as the policy holder.  An individual may be either a person or an organization.\r\n\n                        \n                           Note: The party playing the role of an individual insured is not a claimant in the sense conveyed by the RoleClassCoveredParty CLAIM (claimant).  However, a named insured may make a claim under a policy, e.g., a party that is the named insured and policy holder under a comprehensive automobile insurance policy may become the claimant for coverage under that policy if injured in an automobile accident and there is no liable third party.  In the case of an individual insured making a claim, a role type code INSCLM (insured claimant) subtypes the class to indicate that an individual insured has filed a claim for a loss.\r\n\n                        \n                           Example: The individual insured under a comprehensive automobile, disability, or property and casualty policy that is the policy holder.";
  dcterms:description "Description: A role played by a party covered under a policy as the policy holder.  An individual may be either a person or an organization.\r\n\n                        \n                           Note: The party playing the role of an individual insured is not a claimant in the sense conveyed by the RoleClassCoveredParty CLAIM (claimant).  However, a named insured may make a claim under a policy, e.g., a party that is the named insured and policy holder under a comprehensive automobile insurance policy may become the claimant for coverage under that policy if injured in an automobile accident and there is no liable third party.  In the case of an individual insured making a claim, a role type code INSCLM (insured claimant) subtypes the class to indicate that an individual insured has filed a claim for a loss.\r\n\n                        \n                           Example: The individual insured under a comprehensive automobile, disability, or property and casualty policy that is the policy holder.".

cs:RoleClass\#SUBSCR rdfs:subClassOf cs:RoleClass\#NAMED;
  rdfs:label "subscriber";
  dc:title "subscriber";
  rdfs:comment "Description: A role played by a person covered under a policy based on association with a sponsor who is the policy holder, and whose association may provide for the eligibility of dependents for coverage.\r\n\n                        \n                           Discussion: The policy holder holds the contract with the policy or program underwriter.  The subscriber holds a certificate of coverage under the contract.  In legal proceedings concerning the policy or program, the terms of the contract takes precedence over the terms of the certificate of coverage if there are any inconsistencies.\r\n\n                        \n                           Note: The party playing the role of a subscriber is not a claimant in the sense conveyed by the RoleClassCoveredParty CLAIM (claimant).  However, a subscriber may make a claim under a policy, e.g., a subscriber under a health insurance policy may become the claimant for coverage under that policy for wellness examines or if injured and there is no liable third party.  In the case of a subscriber making a claim, a role type code INSCLM (insured claimant) subtypes the class to indicate that the subscriber has filed a claim for services covered under the health insurance policy.\r\n\n                        \n                           Example: An employee or a member of an association.";
  dcterms:description "Description: A role played by a person covered under a policy based on association with a sponsor who is the policy holder, and whose association may provide for the eligibility of dependents for coverage.\r\n\n                        \n                           Discussion: The policy holder holds the contract with the policy or program underwriter.  The subscriber holds a certificate of coverage under the contract.  In legal proceedings concerning the policy or program, the terms of the contract takes precedence over the terms of the certificate of coverage if there are any inconsistencies.\r\n\n                        \n                           Note: The party playing the role of a subscriber is not a claimant in the sense conveyed by the RoleClassCoveredParty CLAIM (claimant).  However, a subscriber may make a claim under a policy, e.g., a subscriber under a health insurance policy may become the claimant for coverage under that policy for wellness examines or if injured and there is no liable third party.  In the case of a subscriber making a claim, a role type code INSCLM (insured claimant) subtypes the class to indicate that the subscriber has filed a claim for services covered under the health insurance policy.\r\n\n                        \n                           Example: An employee or a member of an association.".

cs:RoleClass\#PROG rdfs:subClassOf cs:RoleClass\#COVPTY;
  rdfs:label "program eligible";
  dc:title "program eligible";
  rdfs:comment "Description: A role played by a party that meets the eligibility criteria for coverage under a program.  A program eligible may be either a person, non-person living subject, or an organization, or a group of persons, non-person living subjects, or organizations.\r\n\n                        \n                           Discussion: A program as typically government administered coverage for parties determined eligible under the terms of the program.\r\n\n                        \n                           Note: The party playing a program eligible is not a claimant in the sense conveyed by the RoleClassCoveredParty CLAIM (claimant).  However a program eligible may make a claim under program, e.g., an unemployed worker may claim benefits under an unemployment insurance program, but parties playing these covered party role classes are not, for purposes of this vocabulary and in an effort to clearly distinguish role classes, considered claimants.\r\n\n                        In the case of a program eligible, a role type code INJWKR (injured worker) subtypes the class to indicate that the covered party in a workers compensation program is an injured worker, and as such, has filed a \"claim\" under the program for benefits.  Likewise, a covered role type code UNEMP (unemployed worker) subtypes the program eligible class to indicate that the covered party in an unemployment insurance program has filed a claim for unemployment benefits.\r\n\n                        \n                           Example: A party meeting eligibility criteria related to health or financial status, e.g., in the U.S., persons meeting health, demographic, or financial criteria established by state and federal law are eligible for Medicaid.";
  dcterms:description "Description: A role played by a party that meets the eligibility criteria for coverage under a program.  A program eligible may be either a person, non-person living subject, or an organization, or a group of persons, non-person living subjects, or organizations.\r\n\n                        \n                           Discussion: A program as typically government administered coverage for parties determined eligible under the terms of the program.\r\n\n                        \n                           Note: The party playing a program eligible is not a claimant in the sense conveyed by the RoleClassCoveredParty CLAIM (claimant).  However a program eligible may make a claim under program, e.g., an unemployed worker may claim benefits under an unemployment insurance program, but parties playing these covered party role classes are not, for purposes of this vocabulary and in an effort to clearly distinguish role classes, considered claimants.\r\n\n                        In the case of a program eligible, a role type code INJWKR (injured worker) subtypes the class to indicate that the covered party in a workers compensation program is an injured worker, and as such, has filed a \"claim\" under the program for benefits.  Likewise, a covered role type code UNEMP (unemployed worker) subtypes the program eligible class to indicate that the covered party in an unemployment insurance program has filed a claim for unemployment benefits.\r\n\n                        \n                           Example: A party meeting eligibility criteria related to health or financial status, e.g., in the U.S., persons meeting health, demographic, or financial criteria established by state and federal law are eligible for Medicaid.".

cs:RoleClass\#CRINV rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "clinical research investigator";
  dc:title "clinical research investigator";
  rdfs:comment "A role played by a provider, always a person, who has agency authority from a Clinical Research Sponsor to direct the conduct of a clinical research trial or study on behalf of the sponsor.";
  dcterms:description "A role played by a provider, always a person, who has agency authority from a Clinical Research Sponsor to direct the conduct of a clinical research trial or study on behalf of the sponsor.".

cs:RoleClass\#CRSPNSR rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "clinical research sponsor";
  dc:title "clinical research sponsor";
  rdfs:comment "A role played by an entity, usually an organization, that is the sponsor of a clinical research trial or study.  The sponsor commissions the study, bears the expenses, is responsible for satisfying all legal requirements concerning subject safety and privacy, and is generally responsible for collection, storage and analysis of the data generated during the trial.  No scoper is necessary, as a clinical research sponsor undertakes the role on its own authority and declaration. Clinical research sponsors are usually educational or other research organizations, government agencies or biopharmaceutical companies.";
  dcterms:description "A role played by an entity, usually an organization, that is the sponsor of a clinical research trial or study.  The sponsor commissions the study, bears the expenses, is responsible for satisfying all legal requirements concerning subject safety and privacy, and is generally responsible for collection, storage and analysis of the data generated during the trial.  No scoper is necessary, as a clinical research sponsor undertakes the role on its own authority and declaration. Clinical research sponsors are usually educational or other research organizations, government agencies or biopharmaceutical companies.".

cs:RoleClass\#EMP rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "employee";
  dc:title "employee";
  rdfs:comment "A relationship between a person or organization and a person or organization formed for the purpose of exchanging work for compensation.  The purpose of the role is to identify the type of relationship the employee has to the employer, rather than the nature of the work actually performed.  (Contrast with AssignedEntity.)";
  dcterms:description "A relationship between a person or organization and a person or organization formed for the purpose of exchanging work for compensation.  The purpose of the role is to identify the type of relationship the employee has to the employer, rather than the nature of the work actually performed.  (Contrast with AssignedEntity.)".

cs:RoleClass\#MIL rdfs:subClassOf cs:RoleClass\#EMP;
  rdfs:label "military person";
  dc:title "military person";
  rdfs:comment "A role played by a member of a military service. Scoper is the military service (e.g. Army, Navy, Air Force, etc.) or, more specifically, the unit (e.g. Company C, 3rd Battalion, 4th Division, etc.)";
  dcterms:description "A role played by a member of a military service. Scoper is the military service (e.g. Army, Navy, Air Force, etc.) or, more specifically, the unit (e.g. Company C, 3rd Battalion, 4th Division, etc.)".

cs:RoleClass\#GUAR rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "guarantor";
  dc:title "guarantor";
  rdfs:comment "A person or organization (player) that serves as a financial guarantor for another person or organization (scoper).";
  dcterms:description "A person or organization (player) that serves as a financial guarantor for another person or organization (scoper).".

cs:RoleClass\#INVSBJ rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "Investigation Subject";
  dc:title "Investigation Subject";
  rdfs:comment "An entity that is the subject of an investigation. This role is scoped by the party responsible for the investigation.";
  dcterms:description "An entity that is the subject of an investigation. This role is scoped by the party responsible for the investigation.".

cs:RoleClass\#CASEBJ rdfs:subClassOf cs:RoleClass\#INVSBJ;
  rdfs:label "Case Subject";
  dc:title "Case Subject";
  rdfs:comment "A person, non-person living subject, or place that is the subject of an investigation related to a notifiable condition (health circumstance that is reportable within the applicable public health jurisdiction)";
  dcterms:description "A person, non-person living subject, or place that is the subject of an investigation related to a notifiable condition (health circumstance that is reportable within the applicable public health jurisdiction)".

cs:RoleClass\#RESBJ rdfs:subClassOf cs:RoleClass\#INVSBJ;
  rdfs:label "research subject";
  dc:title "research subject";
  rdfs:comment "Definition:Specifies the administrative functionality within a formal experimental design for which the ResearchSubject role was established.\r\n\n                        \n                           Examples: Screening - role is used for pre-enrollment evaluation portion of the design; enrolled - role is used for subjects admitted to the experimental portion of the design.";
  dcterms:description "Definition:Specifies the administrative functionality within a formal experimental design for which the ResearchSubject role was established.\r\n\n                        \n                           Examples: Screening - role is used for pre-enrollment evaluation portion of the design; enrolled - role is used for subjects admitted to the experimental portion of the design.".

cs:RoleClass\#LIC rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "licensed entity";
  dc:title "licensed entity";
  rdfs:comment "A relationship in which the scoper certifies the player ( e. g. a medical care giver, a medical device or a provider organization) to perform certain activities that fall under the jurisdiction of the scoper (e.g., a health authority licensing healthcare providers, a medical quality authority certifying healthcare professionals).";
  dcterms:description "A relationship in which the scoper certifies the player ( e. g. a medical care giver, a medical device or a provider organization) to perform certain activities that fall under the jurisdiction of the scoper (e.g., a health authority licensing healthcare providers, a medical quality authority certifying healthcare professionals).".

cs:RoleClass\#NOT rdfs:subClassOf cs:RoleClass\#LIC;
  rdfs:label "notary public";
  dc:title "notary public";
  rdfs:comment "notary public";
  dcterms:description "notary public".

cs:RoleClass\#PROV rdfs:subClassOf cs:RoleClass\#LIC;
  rdfs:label "healthcare provider";
  dc:title "healthcare provider";
  rdfs:comment "An Entity (player) that is authorized to provide health care services by some authorizing agency (scoper).";
  dcterms:description "An Entity (player) that is authorized to provide health care services by some authorizing agency (scoper).".

cs:RoleClass\#PAT rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "patient";
  dc:title "patient";
  rdfs:comment "A Role of a LivingSubject (player) as an actual or potential recipient of health care services from a healthcare provider organization (scoper).\r\n\n                        \n                           Usage Note: Communication about relationships between patients and specific healthcare practitioners (people) is not done via scoper.  Instead this is generally done using the CareProvision act.  This allows linkage between patient and a particular healthcare practitioner role and also allows description of the type of care involved in the relationship.";
  dcterms:description "A Role of a LivingSubject (player) as an actual or potential recipient of health care services from a healthcare provider organization (scoper).\r\n\n                        \n                           Usage Note: Communication about relationships between patients and specific healthcare practitioners (people) is not done via scoper.  Instead this is generally done using the CareProvision act.  This allows linkage between patient and a particular healthcare practitioner role and also allows description of the type of care involved in the relationship.".

cs:RoleClass\#PAYEE rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "payee";
  dc:title "payee";
  rdfs:comment "The role of an organization or individual designated to receive payment for a claim against a particular coverage. The scoping entity is the organization that is the submitter of the invoice in question.";
  dcterms:description "The role of an organization or individual designated to receive payment for a claim against a particular coverage. The scoping entity is the organization that is the submitter of the invoice in question.".

cs:RoleClass\#PAYOR rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "invoice payor";
  dc:title "invoice payor";
  rdfs:comment "The role of an organization that undertakes to accept claims invoices, assess the coverage or payments due for those invoices and pay to the designated payees for those invoices.  This role may be either the underwriter or a third-party organization authorized by the underwriter.  The scoping entity is the organization that underwrites the claimed coverage.";
  dcterms:description "The role of an organization that undertakes to accept claims invoices, assess the coverage or payments due for those invoices and pay to the designated payees for those invoices.  This role may be either the underwriter or a third-party organization authorized by the underwriter.  The scoping entity is the organization that underwrites the claimed coverage.".

cs:RoleClass\#POLHOLD rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "policy holder";
  dc:title "policy holder";
  rdfs:comment "A role played by a person or organization that holds an insurance policy.  The underwriter of that policy is the scoping entity.\r\n\n                        \n                           Discussion:The identifier of the policy is captured in 'Role.id' when the Role is a policy holder.\r\n\n                        A particular policy may cover several individuals one of whom may be, but need not be, the policy holder.  Thus the notion of covered party is a role that is distinct from that of the policy holder.";
  dcterms:description "A role played by a person or organization that holds an insurance policy.  The underwriter of that policy is the scoping entity.\r\n\n                        \n                           Discussion:The identifier of the policy is captured in 'Role.id' when the Role is a policy holder.\r\n\n                        A particular policy may cover several individuals one of whom may be, but need not be, the policy holder.  Thus the notion of covered party is a role that is distinct from that of the policy holder.".

cs:RoleClass\#QUAL rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "qualified entity";
  dc:title "qualified entity";
  rdfs:comment "An entity (player) that has been recognized as having certain training/experience or other characteristics that would make said entity an appropriate performer for a certain activity. The scoper is an organization that educates or qualifies entities.";
  dcterms:description "An entity (player) that has been recognized as having certain training/experience or other characteristics that would make said entity an appropriate performer for a certain activity. The scoper is an organization that educates or qualifies entities.".

cs:RoleClass\#SPNSR rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "coverage sponsor";
  dc:title "coverage sponsor";
  rdfs:comment "A role played by an entity, usually an organization that is the sponsor of an insurance plan or a health program. A sponsor is the party that is ultimately accountable for the coverage by employment contract or by law.  A sponsor can be an employer, union, government agency, or association.  Fully insured sponsors establish the terms of the plan and contract with health insurance plans to assume the risk and to administer the plan.  Self-insured sponsors delegate coverage administration, but not risk, to third-party administrators.  Program sponsors designate services to be covered in accordance with statute.   Program sponsors may administer the coverage themselves, delegate coverage administration, but not risk to third-party administrators, or contract with health insurance plans to assume the risk and administrator a program. Sponsors qualify individuals who may become \r\n\n                        \n                           \n                              a policy holder of the plan;\r\n\n                           \n                           \n                              where the sponsor is the policy holder, who may become a subscriber or a dependent to a policy under the plan; or\r\n\n                           \n                           \n                              where the sponsor is a government agency, who may become program eligibles under a program. \r\n\n                           \n                        \n                        The sponsor role may be further qualified by the SponsorRole.code.  Entities playing the sponsor role may also play the role of a Coverage Administrator.\r\n\n                        \n                           Example: An employer, union, government agency, or association.";
  dcterms:description "A role played by an entity, usually an organization that is the sponsor of an insurance plan or a health program. A sponsor is the party that is ultimately accountable for the coverage by employment contract or by law.  A sponsor can be an employer, union, government agency, or association.  Fully insured sponsors establish the terms of the plan and contract with health insurance plans to assume the risk and to administer the plan.  Self-insured sponsors delegate coverage administration, but not risk, to third-party administrators.  Program sponsors designate services to be covered in accordance with statute.   Program sponsors may administer the coverage themselves, delegate coverage administration, but not risk to third-party administrators, or contract with health insurance plans to assume the risk and administrator a program. Sponsors qualify individuals who may become \r\n\n                        \n                           \n                              a policy holder of the plan;\r\n\n                           \n                           \n                              where the sponsor is the policy holder, who may become a subscriber or a dependent to a policy under the plan; or\r\n\n                           \n                           \n                              where the sponsor is a government agency, who may become program eligibles under a program. \r\n\n                           \n                        \n                        The sponsor role may be further qualified by the SponsorRole.code.  Entities playing the sponsor role may also play the role of a Coverage Administrator.\r\n\n                        \n                           Example: An employer, union, government agency, or association.".

cs:RoleClass\#STD rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "student";
  dc:title "student";
  rdfs:comment "A role played by an individual who is a student of a school, which is the scoping entity.";
  dcterms:description "A role played by an individual who is a student of a school, which is the scoping entity.".

cs:RoleClass\#UNDWRT rdfs:subClassOf cs:RoleClass\#%5fRoleClassRelationshipFormal;
  rdfs:label "underwriter";
  dc:title "underwriter";
  rdfs:comment "A role played by a person or an organization.  It is the party that \r\n\n                        \n                           \n                              accepts fiscal responsibility for insurance plans and the policies created under those plans;\r\n\n                           \n                           \n                              administers and accepts fiscal responsibility for a program that provides coverage for services to eligible individuals; and/or\r\n\n                           \n                           \n                              has the responsibility to assess the merits of each risk and decide a suitable premium for accepting all or part of the risk.  If played by an organization, this role may be further specified by an appropriate RoleCode.\r\n\n                           \n                        \n                        \n                           Example:\n                        \r\n\n                        \n                           \n                              A health insurer; \r\n\n                           \n                           \n                              Medicaid Program;\r\n\n                           \n                           \n                              Lloyd's of London";
  dcterms:description "A role played by a person or an organization.  It is the party that \r\n\n                        \n                           \n                              accepts fiscal responsibility for insurance plans and the policies created under those plans;\r\n\n                           \n                           \n                              administers and accepts fiscal responsibility for a program that provides coverage for services to eligible individuals; and/or\r\n\n                           \n                           \n                              has the responsibility to assess the merits of each risk and decide a suitable premium for accepting all or part of the risk.  If played by an organization, this role may be further specified by an appropriate RoleCode.\r\n\n                           \n                        \n                        \n                           Example:\n                        \r\n\n                        \n                           \n                              A health insurer; \r\n\n                           \n                           \n                              Medicaid Program;\r\n\n                           \n                           \n                              Lloyd's of London".

cs:RoleClass\#CAREGIVER rdfs:subClassOf cs:RoleClass\#%5fRoleClassMutualRelationship;
  rdfs:label "caregiver";
  dc:title "caregiver";
  rdfs:comment "A person responsible for the primary care of a patient at home.";
  dcterms:description "A person responsible for the primary care of a patient at home.".

cs:RoleClass\#PRS rdfs:subClassOf cs:RoleClass\#%5fRoleClassMutualRelationship;
  rdfs:label "personal relationship";
  dc:title "personal relationship";
  rdfs:comment "Links two entities with classCode PSN (person) in a personal relationship. The character of the relationship must be defined by a PersonalRelationshipRoleType code. The player and scoper are determined by PersonalRelationshipRoleType code as well.";
  dcterms:description "Links two entities with classCode PSN (person) in a personal relationship. The character of the relationship must be defined by a PersonalRelationshipRoleType code. The player and scoper are determined by PersonalRelationshipRoleType code as well.".

cs:RoleClass\#SELF rdfs:subClassOf cs:RoleClass\#%5fRoleClassMutualRelationship;
  rdfs:label "self";
  dc:title "self";
  rdfs:comment "The \"same\" roleclass asserts an identity between playing and scoping entities: that they are in fact instances of the same entity and, in the case of discrepancies (e.g different DOB, gender), that one or both are in error.\r\n\n                        \n                           Usage:\n                        \r\n\n                        playing and scoping entities must have same classcode, but need not have identical attributes or values. \r\n\n                        \n                           Example: \n                        \r\n\n                        a provider registry maintains sets of conflicting demographic data for what is reported to be the same individual.";
  dcterms:description "The \"same\" roleclass asserts an identity between playing and scoping entities: that they are in fact instances of the same entity and, in the case of discrepancies (e.g different DOB, gender), that one or both are in error.\r\n\n                        \n                           Usage:\n                        \r\n\n                        playing and scoping entities must have same classcode, but need not have identical attributes or values. \r\n\n                        \n                           Example: \n                        \r\n\n                        a provider registry maintains sets of conflicting demographic data for what is reported to be the same individual.".

cs:RoleClass\#%5fRoleClassPassive rdfs:subClassOf cs:RoleClass\#%5fRoleClassAssociative;
  rdfs:label "RoleClassPassive";
  dc:title "RoleClassPassive";
  rdfs:comment "An association for a playing Entity that is used, known, treated, handled, built, or destroyed, etc. under the auspices of the scoping Entity. The playing Entity is passive in these roles (even though it may be active in other roles), in the sense that the kinds of things done to it in this role happen without an agreement from the playing Entity.";
  dcterms:description "An association for a playing Entity that is used, known, treated, handled, built, or destroyed, etc. under the auspices of the scoping Entity. The playing Entity is passive in these roles (even though it may be active in other roles), in the sense that the kinds of things done to it in this role happen without an agreement from the playing Entity.".

cs:RoleClass\#ACCESS rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "access";
  dc:title "access";
  rdfs:comment "A role in which the playing entity (material) provides access to another entity. The principal use case is intravenous (or other bodily) access lines that preexist and need to be referred to for medication routing instructions.";
  dcterms:description "A role in which the playing entity (material) provides access to another entity. The principal use case is intravenous (or other bodily) access lines that preexist and need to be referred to for medication routing instructions.".

cs:RoleClass\#ADJY rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "adjacency";
  dc:title "adjacency";
  rdfs:comment "A physical association whereby two Entities are in some (even lose) spatial relationship with each other such that they touch each other in some way.\r\n\n                        \n                           Examples: the colon is connected (and therefore adjacent) to the jejunum; the colon is adjacent to the liver (even if not actually connected.)\r\n\n                        \n                           UsageConstraints: Adjacency is in principle a symmetrical connection, but scoper and player of the role should, where applicable, be assigned to have scoper be the larger, more central Entity and player the smaller, more distant, appendage.";
  dcterms:description "A physical association whereby two Entities are in some (even lose) spatial relationship with each other such that they touch each other in some way.\r\n\n                        \n                           Examples: the colon is connected (and therefore adjacent) to the jejunum; the colon is adjacent to the liver (even if not actually connected.)\r\n\n                        \n                           UsageConstraints: Adjacency is in principle a symmetrical connection, but scoper and player of the role should, where applicable, be assigned to have scoper be the larger, more central Entity and player the smaller, more distant, appendage.".

cs:RoleClass\#CONC rdfs:subClassOf cs:RoleClass\#ADJY;
  rdfs:label "connection";
  dc:title "connection";
  rdfs:comment "An adjacency of two Entities held together by a bond which attaches to each of the two entities. \r\n\n                        \n                           Examples: biceps brachii muscle connected to the radius bone, port 3 on a network switch connected to port 5 on a patch panel.\r\n\n                        \n                           UsageConstraints: See Adjacency for the assignment of scoper (larger, more central) and player (smaller, more distant).";
  dcterms:description "An adjacency of two Entities held together by a bond which attaches to each of the two entities. \r\n\n                        \n                           Examples: biceps brachii muscle connected to the radius bone, port 3 on a network switch connected to port 5 on a patch panel.\r\n\n                        \n                           UsageConstraints: See Adjacency for the assignment of scoper (larger, more central) and player (smaller, more distant).".

cs:RoleClass\#BOND rdfs:subClassOf cs:RoleClass\#CONC;
  rdfs:label "molecular bond";
  dc:title "molecular bond";
  rdfs:comment "A connection between two atoms of a molecule.\r\n\n                        \n                           Examples: double bond between first and second C in ethane, peptide bond between two amino-acid, disulfide bridge between two proteins, chelate and ion associations, even the much weaker van-der-Waals bonds can be considered molecular bonds.\r\n\n                        \n                           UsageConstraints: See connection and adjacency for the assignment of player and scoper.";
  dcterms:description "A connection between two atoms of a molecule.\r\n\n                        \n                           Examples: double bond between first and second C in ethane, peptide bond between two amino-acid, disulfide bridge between two proteins, chelate and ion associations, even the much weaker van-der-Waals bonds can be considered molecular bonds.\r\n\n                        \n                           UsageConstraints: See connection and adjacency for the assignment of player and scoper.".

cs:RoleClass\#CONY rdfs:subClassOf cs:RoleClass\#CONC;
  rdfs:label "continuity";
  dc:title "continuity";
  rdfs:comment "A connection between two regional parts.\r\n\n                        \n                           Examples:  the connection between ascending aorta and the aortic arc, connection between descending colon and sigmoid.\r\n\n                        \n                           UsageConstraints: See connection and adjacency for the assignment of player and scoper.";
  dcterms:description "A connection between two regional parts.\r\n\n                        \n                           Examples:  the connection between ascending aorta and the aortic arc, connection between descending colon and sigmoid.\r\n\n                        \n                           UsageConstraints: See connection and adjacency for the assignment of player and scoper.".

cs:RoleClass\#ADMM rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "Administerable Material";
  dc:title "Administerable Material";
  rdfs:comment "A material (player) that can be administered to an Entity (scoper).";
  dcterms:description "A material (player) that can be administered to an Entity (scoper).".

cs:RoleClass\#BIRTHPL rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "birthplace";
  dc:title "birthplace";
  rdfs:comment "Relates a place (playing Entity) as the location where a living subject (scoping Entity) was born.";
  dcterms:description "Relates a place (playing Entity) as the location where a living subject (scoping Entity) was born.".

cs:RoleClass\#DEATHPLC rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "place of death";
  dc:title "place of death";
  rdfs:comment "Definition: Relates a place (playing Entity) as the location where a living subject (scoping Entity) died.";
  dcterms:description "Definition: Relates a place (playing Entity) as the location where a living subject (scoping Entity) died.".

cs:RoleClass\#DST rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "distributed material";
  dc:title "distributed material";
  rdfs:comment "A material (player) distributed by a distributor (scoper) who functions between a manufacturer and a buyer or retailer.";
  dcterms:description "A material (player) distributed by a distributor (scoper) who functions between a manufacturer and a buyer or retailer.".

cs:RoleClass\#RET rdfs:subClassOf cs:RoleClass\#DST;
  rdfs:label "retailed material";
  dc:title "retailed material";
  rdfs:comment "Material (player) sold by a retailer (scoper), who also give advice to prospective buyers.";
  dcterms:description "Material (player) sold by a retailer (scoper), who also give advice to prospective buyers.".

cs:RoleClass\#EXLOC rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "event location";
  dc:title "event location";
  rdfs:comment "A role played by a place at which the location of an event may be recorded.";
  dcterms:description "A role played by a place at which the location of an event may be recorded.".

cs:RoleClass\#SDLOC rdfs:subClassOf cs:RoleClass\#EXLOC;
  rdfs:label "service delivery location";
  dc:title "service delivery location";
  rdfs:comment "A role played by a place at which services may be provided.";
  dcterms:description "A role played by a place at which services may be provided.".

cs:RoleClass\#DSDLOC rdfs:subClassOf cs:RoleClass\#SDLOC;
  rdfs:label "dedicated service delivery location";
  dc:title "dedicated service delivery location";
  rdfs:comment "A role of a place (player) that is intended to house the provision of services. Scoper is the Entity (typically Organization) that provides these services. This is not synonymous with \"ownership.\"";
  dcterms:description "A role of a place (player) that is intended to house the provision of services. Scoper is the Entity (typically Organization) that provides these services. This is not synonymous with \"ownership.\"".

cs:RoleClass\#ISDLOC rdfs:subClassOf cs:RoleClass\#SDLOC;
  rdfs:label "incidental service delivery location";
  dc:title "incidental service delivery location";
  rdfs:comment "A role played by a place at which health care services may be provided without prior designation or authorization.";
  dcterms:description "A role played by a place at which health care services may be provided without prior designation or authorization.".

cs:RoleClass\#EXPR rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "exposed entity";
  dc:title "exposed entity";
  rdfs:comment "A role played by an entity that has been exposed to a person or animal suffering a contagious disease, or with a location from which a toxin has been distributed.  The player of the role is normally a person or animal, but it is possible that other entity types could become exposed.  The role is scoped by the source of the exposure, and it is quite possible for a person playing the role of exposed party to also become the scoper a role played by another person.  That is to say, once a person has become infected, it is possible, perhaps likely, for that person to infect others.\r\n\n                        Management of exposures and tracking exposed parties is a key function within public health, and within most public health contexts - exposed parties are known as \"contacts.\"";
  dcterms:description "A role played by an entity that has been exposed to a person or animal suffering a contagious disease, or with a location from which a toxin has been distributed.  The player of the role is normally a person or animal, but it is possible that other entity types could become exposed.  The role is scoped by the source of the exposure, and it is quite possible for a person playing the role of exposed party to also become the scoper a role played by another person.  That is to say, once a person has become infected, it is possible, perhaps likely, for that person to infect others.\r\n\n                        Management of exposures and tracking exposed parties is a key function within public health, and within most public health contexts - exposed parties are known as \"contacts.\"".

cs:RoleClass\#HLD rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "held entity";
  dc:title "held entity";
  rdfs:comment "Entity that is currently in the possession of a holder (scoper), who holds, or uses it, usually based on some agreement with the owner.";
  dcterms:description "Entity that is currently in the possession of a holder (scoper), who holds, or uses it, usually based on some agreement with the owner.".

cs:RoleClass\#HLTHCHRT rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "health chart";
  dc:title "health chart";
  rdfs:comment "The role of a material (player) that is the physical health chart belonging to an organization (scoper).";
  dcterms:description "The role of a material (player) that is the physical health chart belonging to an organization (scoper).".

cs:RoleClass\#IDENT rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "identified entity";
  dc:title "identified entity";
  rdfs:comment "A role in which the scoping entity designates an identifier for a playing entity.";
  dcterms:description "A role in which the scoping entity designates an identifier for a playing entity.".

cs:RoleClass\#MANU rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "manufactured product";
  dc:title "manufactured product";
  rdfs:comment "Scoped by the manufacturer";
  dcterms:description "Scoped by the manufacturer".

cs:RoleClass\#THER rdfs:subClassOf cs:RoleClass\#MANU;
  rdfs:label "therapeutic agent";
  dc:title "therapeutic agent";
  rdfs:comment "A manufactured material (player) that is used for its therapeutic properties.  The manufacturer is the scoper.";
  dcterms:description "A manufactured material (player) that is used for its therapeutic properties.  The manufacturer is the scoper.".

cs:RoleClass\#MNT rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "maintained entity";
  dc:title "maintained entity";
  rdfs:comment "An entity (player) that is maintained by another entity (scoper).  This is typical role held by durable equipment. The scoper assumes responsibility for proper operation, quality, and safety.";
  dcterms:description "An entity (player) that is maintained by another entity (scoper).  This is typical role held by durable equipment. The scoper assumes responsibility for proper operation, quality, and safety.".

cs:RoleClass\#OWN rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "owned entity";
  dc:title "owned entity";
  rdfs:comment "An Entity (player) for which someone (scoper) is granted by law the right to call the material (player) his own.  This entitles the scoper to make decisions about the disposition of that material.";
  dcterms:description "An Entity (player) for which someone (scoper) is granted by law the right to call the material (player) his own.  This entitles the scoper to make decisions about the disposition of that material.".

cs:RoleClass\#RGPR rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "regulated product";
  dc:title "regulated product";
  rdfs:comment "A product regulated by some governmentatl orgnization.  The role is played by Material and scoped by Organization.\r\n\n                        Rationale: To support an entity clone used to identify the NDC number for a drug product.";
  dcterms:description "A product regulated by some governmentatl orgnization.  The role is played by Material and scoped by Organization.\r\n\n                        Rationale: To support an entity clone used to identify the NDC number for a drug product.".

cs:RoleClass\#TERR rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "territory of authority";
  dc:title "territory of authority";
  rdfs:comment "Relates a place entity (player) as the region over which the scoper (typically an Organization) has certain authority (jurisdiction). For example, the Calgary Regional Health Authority (scoper) has authority over the territory \"Region 4 of Alberta\" (player) in matters of health.";
  dcterms:description "Relates a place entity (player) as the region over which the scoper (typically an Organization) has certain authority (jurisdiction). For example, the Calgary Regional Health Authority (scoper) has authority over the territory \"Region 4 of Alberta\" (player) in matters of health.".

cs:RoleClass\#USED rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "used entity";
  dc:title "used entity";
  rdfs:comment "Description:An entity (player) that is used by another entity (scoper)";
  dcterms:description "Description:An entity (player) that is used by another entity (scoper)".

cs:RoleClass\#WRTE rdfs:subClassOf cs:RoleClass\#%5fRoleClassPassive;
  rdfs:label "warranted product";
  dc:title "warranted product";
  rdfs:comment "A role a product plays when a guarantee is given to the purchaser by the seller (scoping entity) stating that the product is reliable and free from known defects and that the seller will repair or replace defective parts within a given time limit and under certain conditions.";
  dcterms:description "A role a product plays when a guarantee is given to the purchaser by the seller (scoping entity) stating that the product is reliable and free from known defects and that the seller will repair or replace defective parts within a given time limit and under certain conditions.".

cs:RoleClass\#%5fRoleClassOntological rdfs:subClassOf cs:RoleClass\#ROL;
  rdfs:label "RoleClassOntological";
  dc:title "RoleClassOntological";
  rdfs:comment "A relationship in which the scoping Entity defines or specifies what the playing Entity is.  Thus, the player's \"being\" (Greek: ontos) is specified.";
  dcterms:description "A relationship in which the scoping Entity defines or specifies what the playing Entity is.  Thus, the player's \"being\" (Greek: ontos) is specified.".

cs:RoleClass\#EQUIV rdfs:subClassOf cs:RoleClass\#%5fRoleClassOntological;
  rdfs:label "equivalent entity";
  dc:title "equivalent entity";
  rdfs:comment "Description: Specifies the player Entity (the equivalent Entity) as an Entity that is considered to be equivalent to a reference Entity (scoper).  The equivalence is in principle a symmetric relationship, however, it is expected that the scoper is a reference entity which serves as reference entity for multiple different equivalent entities. \r\n\n                        \n                           Examples: An innovator's medicine formulation is the reference for \"generics\", i.e., formulations manufactured differently but having been proven to be biologically equivalent to the reference medicine. Another example is a reference ingredient that serves as basis for quantity specifications (basis of strength, e.g., metoprolol succinate specified in terms of metoprolol tartrate.)";
  dcterms:description "Description: Specifies the player Entity (the equivalent Entity) as an Entity that is considered to be equivalent to a reference Entity (scoper).  The equivalence is in principle a symmetric relationship, however, it is expected that the scoper is a reference entity which serves as reference entity for multiple different equivalent entities. \r\n\n                        \n                           Examples: An innovator's medicine formulation is the reference for \"generics\", i.e., formulations manufactured differently but having been proven to be biologically equivalent to the reference medicine. Another example is a reference ingredient that serves as basis for quantity specifications (basis of strength, e.g., metoprolol succinate specified in terms of metoprolol tartrate.)".

cs:RoleClass\#SAME rdfs:subClassOf cs:RoleClass\#EQUIV;
  rdfs:label "same";
  dc:title "same";
  rdfs:comment "The \"same\" role asserts an identity between playing and scoping entities, i.e., that they are in fact two records of the same entity instance, and, in the case of discrepancies (e.g different DOB, gender), that one or both are in error.\r\n\n                        \n                           Usage:\n                        \r\n\n                        playing and scoping entities must have same classCode, but need not have identical attributes or values.\r\n\n                        \n                           Example: \n                        \r\n\n                        a provider registry maintains sets of conflicting demographic data for what is reported to be the same individual.";
  dcterms:description "The \"same\" role asserts an identity between playing and scoping entities, i.e., that they are in fact two records of the same entity instance, and, in the case of discrepancies (e.g different DOB, gender), that one or both are in error.\r\n\n                        \n                           Usage:\n                        \r\n\n                        playing and scoping entities must have same classCode, but need not have identical attributes or values.\r\n\n                        \n                           Example: \n                        \r\n\n                        a provider registry maintains sets of conflicting demographic data for what is reported to be the same individual.".

cs:RoleClass\#SUBY rdfs:subClassOf cs:RoleClass\#EQUIV;
  rdfs:label "subsumed by";
  dc:title "subsumed by";
  rdfs:comment "Relates a prevailing record of an Entity (scoper) with another record (player) that it subsumes.\r\n\n                        \n                           Examples: Show a correct new Person object (scoper) that subsumes one or more duplicate Person objects that had accidentally been created for the same physical person.\r\n\n                        \n                           Constraints: Both the player and scoper must have the same classCode.";
  dcterms:description "Relates a prevailing record of an Entity (scoper) with another record (player) that it subsumes.\r\n\n                        \n                           Examples: Show a correct new Person object (scoper) that subsumes one or more duplicate Person objects that had accidentally been created for the same physical person.\r\n\n                        \n                           Constraints: Both the player and scoper must have the same classCode.".

cs:RoleClass\#GEN rdfs:subClassOf cs:RoleClass\#%5fRoleClassOntological;
  rdfs:label "has generalization";
  dc:title "has generalization";
  rdfs:comment "Relates a specialized material concept (player) to its generalization (scoper).";
  dcterms:description "Relates a specialized material concept (player) to its generalization (scoper).".

cs:RoleClass\#GRIC rdfs:subClassOf cs:RoleClass\#GEN;
  rdfs:label "has generic";
  dc:title "has generic";
  rdfs:comment "A special link between pharmaceuticals indicating that the target (scoper) is a generic for the source (player).";
  dcterms:description "A special link between pharmaceuticals indicating that the target (scoper) is a generic for the source (player).".

cs:RoleClass\#INST rdfs:subClassOf cs:RoleClass\#%5fRoleClassOntological;
  rdfs:label "instance";
  dc:title "instance";
  rdfs:comment "An individual piece of material (player) instantiating a class of material (scoper).";
  dcterms:description "An individual piece of material (player) instantiating a class of material (scoper).".

cs:RoleClass\#SUBS rdfs:subClassOf cs:RoleClass\#%5fRoleClassOntological;
  rdfs:label "subsumer";
  dc:title "subsumer";
  rdfs:comment "An entity that subsumes the identity of another.  Used in the context of merging documented entity instances. Both the player and scoper must have the same classCode.\r\n\n                        The use of this code is deprecated in favor of the term SUBY which is its inverse and is more ontologically correct.";
  dcterms:description "An entity that subsumes the identity of another.  Used in the context of merging documented entity instances. Both the player and scoper must have the same classCode.\r\n\n                        The use of this code is deprecated in favor of the term SUBY which is its inverse and is more ontologically correct.".

cs:RoleClass\#%5fRoleClassPartitive rdfs:subClassOf cs:RoleClass\#ROL;
  rdfs:label "RoleClassPartitive";
  dc:title "RoleClassPartitive";
  rdfs:comment "An association between two Entities where the playing Entity is considered in some way \"part\" of the scoping Entity, e.g., as a member, component, ingredient, or content. Being \"part\" in the broadest sense of the word can mean anything from being an integral structural component to a mere incidental temporary association of a playing Entity with a (generally larger) scoping Entity.";
  dcterms:description "An association between two Entities where the playing Entity is considered in some way \"part\" of the scoping Entity, e.g., as a member, component, ingredient, or content. Being \"part\" in the broadest sense of the word can mean anything from being an integral structural component to a mere incidental temporary association of a playing Entity with a (generally larger) scoping Entity.".

cs:RoleClass\#CONT rdfs:subClassOf cs:RoleClass\#%5fRoleClassPartitive;
  rdfs:label "content";
  dc:title "content";
  rdfs:comment "Relates a material as the content (player) to a container (scoper).  Unlike ingredients, the content and a container remain separate (not mixed) and the content can be removed from the container.  A content is not part of an empty container.";
  dcterms:description "Relates a material as the content (player) to a container (scoper).  Unlike ingredients, the content and a container remain separate (not mixed) and the content can be removed from the container.  A content is not part of an empty container.".

cs:RoleClass\#EXPAGTCAR rdfs:subClassOf cs:RoleClass\#%5fRoleClassPartitive;
  rdfs:label "exposure agent carrier";
  dc:title "exposure agent carrier";
  rdfs:comment "An exposure agent carrier is an entity that is capable of conveying an exposure agent from one entity to another.  The scoper of the role must be the exposure agent (e.g., pathogen).";
  dcterms:description "An exposure agent carrier is an entity that is capable of conveying an exposure agent from one entity to another.  The scoper of the role must be the exposure agent (e.g., pathogen).".

cs:RoleClass\#EXPVECTOR rdfs:subClassOf cs:RoleClass\#EXPAGTCAR;
  rdfs:label "exposure vector";
  dc:title "exposure vector";
  rdfs:comment "Description: A vector is a living subject that carries an exposure agent.  The vector does not cause the disease itself, but exposes targets to the exposure agent.  A mosquito carrying malaria is an example of a vector.  The scoper of the role must be the exposure agent (e.g., pathogen).";
  dcterms:description "Description: A vector is a living subject that carries an exposure agent.  The vector does not cause the disease itself, but exposes targets to the exposure agent.  A mosquito carrying malaria is an example of a vector.  The scoper of the role must be the exposure agent (e.g., pathogen).".

cs:RoleClass\#FOMITE rdfs:subClassOf cs:RoleClass\#EXPAGTCAR;
  rdfs:label "fomite";
  dc:title "fomite";
  rdfs:comment "Description: A fomite is a non-living entity that is capable of conveying exposure agent from one entity to another.  A doorknob contaminated with a Norovirus is an example of a fomite.  Anyone touching the doorknob would be exposed to the virus.  The scoper of the role must be the exposure agent (e.g., pathogen).";
  dcterms:description "Description: A fomite is a non-living entity that is capable of conveying exposure agent from one entity to another.  A doorknob contaminated with a Norovirus is an example of a fomite.  Anyone touching the doorknob would be exposed to the virus.  The scoper of the role must be the exposure agent (e.g., pathogen).".

cs:RoleClass\#INGR rdfs:subClassOf cs:RoleClass\#%5fRoleClassPartitive;
  rdfs:label "ingredient";
  dc:title "ingredient";
  rdfs:comment "Relates a component (player) to a mixture (scoper). E.g., Glucose and Water are ingredients of D5W, latex may be an ingredient in a tracheal tube.";
  dcterms:description "Relates a component (player) to a mixture (scoper). E.g., Glucose and Water are ingredients of D5W, latex may be an ingredient in a tracheal tube.".

cs:RoleClass\#ACTI rdfs:subClassOf cs:RoleClass\#INGR;
  rdfs:label "active ingredient";
  dc:title "active ingredient";
  rdfs:comment "Definition: a therapeutically active ingredient (player) in a mixture (scoper), where the mixture is typically a manufactured pharmaceutical.  It is unknown if the quantity of such an ingredient is expressed precisely in terms of the playing ingredient substance, or, if it is specified in terms of a closely related substance (active moiety or reference substance).";
  dcterms:description "Definition: a therapeutically active ingredient (player) in a mixture (scoper), where the mixture is typically a manufactured pharmaceutical.  It is unknown if the quantity of such an ingredient is expressed precisely in terms of the playing ingredient substance, or, if it is specified in terms of a closely related substance (active moiety or reference substance).".

cs:RoleClass\#ACTIB rdfs:subClassOf cs:RoleClass\#ACTI;
  rdfs:label "active ingredient - basis of strength";
  dc:title "active ingredient - basis of strength";
  rdfs:comment "Description:  Active ingredient, where the ingredient substance (player) is itself the \"basis of strength\", i.e., where the Role.quantity specifies exactly the quantity of the player substance in the medicine formulation. \r\n\n                        \n                           Examples: Lopressor 50 mg actually contains 50 mg of metoprolol succinate, even though the active moiety is metoprolol,  but also: Tenormin 50 mg contain 50 mg of atenolol, as free base, i.e., where the active ingredient atenolol is also the active moiety.";
  dcterms:description "Description:  Active ingredient, where the ingredient substance (player) is itself the \"basis of strength\", i.e., where the Role.quantity specifies exactly the quantity of the player substance in the medicine formulation. \r\n\n                        \n                           Examples: Lopressor 50 mg actually contains 50 mg of metoprolol succinate, even though the active moiety is metoprolol,  but also: Tenormin 50 mg contain 50 mg of atenolol, as free base, i.e., where the active ingredient atenolol is also the active moiety.".

cs:RoleClass\#ACTIM rdfs:subClassOf cs:RoleClass\#ACTI;
  rdfs:label "active ingredient - moiety is basis of strength";
  dc:title "active ingredient - moiety is basis of strength";
  rdfs:comment "Description: Active ingredient, where not the ingredient substance (player), but itaTMs active moiety is the \"basis of strength\", i.e., where the Role.quantity specifies the quantity of the player substance's active moiety in the medicine formulation.\r\n\n                        \n                           Examples: 1 mL of Betopic 5mg/mL eye drops contains 5.6 mg betaxolol hydrochloride equivalent to betaxolol base 5 mg.";
  dcterms:description "Description: Active ingredient, where not the ingredient substance (player), but itaTMs active moiety is the \"basis of strength\", i.e., where the Role.quantity specifies the quantity of the player substance's active moiety in the medicine formulation.\r\n\n                        \n                           Examples: 1 mL of Betopic 5mg/mL eye drops contains 5.6 mg betaxolol hydrochloride equivalent to betaxolol base 5 mg.".

cs:RoleClass\#ACTIR rdfs:subClassOf cs:RoleClass\#ACTI;
  rdfs:label "active ingredient - reference substance is basis of strength";
  dc:title "active ingredient - reference substance is basis of strength";
  rdfs:comment "Description: Active ingredient, where not the ingredient substance (player) but another reference substance with the same active moiety, is the \"basis of strength\", i.e., where the Role.quantity specifies the quantity of a reference substance, similar but different from the player substance's in the medicine formulation.\r\n\n                        \n                           Examples: Toprol-XL 50 mg contains 47.5 mg of metoprolol succinate equivalent to 50 mg of metoprolol tartrate.";
  dcterms:description "Description: Active ingredient, where not the ingredient substance (player) but another reference substance with the same active moiety, is the \"basis of strength\", i.e., where the Role.quantity specifies the quantity of a reference substance, similar but different from the player substance's in the medicine formulation.\r\n\n                        \n                           Examples: Toprol-XL 50 mg contains 47.5 mg of metoprolol succinate equivalent to 50 mg of metoprolol tartrate.".

cs:RoleClass\#ADJV rdfs:subClassOf cs:RoleClass\#INGR;
  rdfs:label "adjuvant";
  dc:title "adjuvant";
  rdfs:comment "A component (player) added to enhance the action of an active ingredient (scoper) (in the manner of a catalyst) but which has no active effect in and of itself.  Such ingredients are significant in defining equivalence of products in a way that inactive ingredients are not.";
  dcterms:description "A component (player) added to enhance the action of an active ingredient (scoper) (in the manner of a catalyst) but which has no active effect in and of itself.  Such ingredients are significant in defining equivalence of products in a way that inactive ingredients are not.".

cs:RoleClass\#ADTV rdfs:subClassOf cs:RoleClass\#INGR;
  rdfs:label "additive";
  dc:title "additive";
  rdfs:comment "An ingredient (player)  that is added to a base (scoper), that amounts to a minor part of the overall mixture.";
  dcterms:description "An ingredient (player)  that is added to a base (scoper), that amounts to a minor part of the overall mixture.".

cs:RoleClass\#BASE rdfs:subClassOf cs:RoleClass\#INGR;
  rdfs:label "base";
  dc:title "base";
  rdfs:comment "A base ingredient (player) is what comprises the major part of a mixture (scoper). E.g., Water in most i.v. solutions, or Vaseline in salves. Among all ingredients of a material, there should be only one base. A base substance can, in turn, be a mixture.";
  dcterms:description "A base ingredient (player) is what comprises the major part of a mixture (scoper). E.g., Water in most i.v. solutions, or Vaseline in salves. Among all ingredients of a material, there should be only one base. A base substance can, in turn, be a mixture.".

cs:RoleClass\#CNTM rdfs:subClassOf cs:RoleClass\#INGR;
  rdfs:label "contaminant ingredient";
  dc:title "contaminant ingredient";
  rdfs:comment "An ingredient whose presence is not intended but may not be reasonably avoided given the circumstances of the mixture's nature or origin.";
  dcterms:description "An ingredient whose presence is not intended but may not be reasonably avoided given the circumstances of the mixture's nature or origin.".

cs:RoleClass\#IACT rdfs:subClassOf cs:RoleClass\#INGR;
  rdfs:label "inactive ingredient";
  dc:title "inactive ingredient";
  rdfs:comment "An ingredient which is not considered therapeutically active, e.g., colors, flavors, stabilizers, or preservatives, fillers, or structural components added to an active ingredient in order to facilitate administration of the active ingredient but without being considered therapeutically active. An inactive ingredient need not be biologically inert, e.g., might be active as an allergen or might have a pleasant taste, but is not an essential constituent delivering the therapeutic effect.";
  dcterms:description "An ingredient which is not considered therapeutically active, e.g., colors, flavors, stabilizers, or preservatives, fillers, or structural components added to an active ingredient in order to facilitate administration of the active ingredient but without being considered therapeutically active. An inactive ingredient need not be biologically inert, e.g., might be active as an allergen or might have a pleasant taste, but is not an essential constituent delivering the therapeutic effect.".

cs:RoleClass\#COLR rdfs:subClassOf cs:RoleClass\#IACT;
  rdfs:label "color additive";
  dc:title "color additive";
  rdfs:comment "A substance (player) influencing the optical aspect of material (scoper).";
  dcterms:description "A substance (player) influencing the optical aspect of material (scoper).".

cs:RoleClass\#FLVR rdfs:subClassOf cs:RoleClass\#IACT;
  rdfs:label "flavor additive";
  dc:title "flavor additive";
  rdfs:comment "A substance (player) added to a mixture (scoper) to make it taste a certain way.  In food the use is obvious, in pharmaceuticals flavors can hide disgusting taste of the active ingredient (important in pediatric treatments).";
  dcterms:description "A substance (player) added to a mixture (scoper) to make it taste a certain way.  In food the use is obvious, in pharmaceuticals flavors can hide disgusting taste of the active ingredient (important in pediatric treatments).".

cs:RoleClass\#PRSV rdfs:subClassOf cs:RoleClass\#IACT;
  rdfs:label "preservative";
  dc:title "preservative";
  rdfs:comment "A substance (player) added to a mixture (scoper) to prevent microorganisms (fungi, bacteria) to spoil the mixture.";
  dcterms:description "A substance (player) added to a mixture (scoper) to prevent microorganisms (fungi, bacteria) to spoil the mixture.".

cs:RoleClass\#STBL rdfs:subClassOf cs:RoleClass\#IACT;
  rdfs:label "stabilizer";
  dc:title "stabilizer";
  rdfs:comment "A stabilizer (player) added to a mixture (scoper) in order to prevent the molecular disintegration of the main substance.";
  dcterms:description "A stabilizer (player) added to a mixture (scoper) in order to prevent the molecular disintegration of the main substance.".

cs:RoleClass\#MECH rdfs:subClassOf cs:RoleClass\#INGR;
  rdfs:label "mechanical ingredient";
  dc:title "mechanical ingredient";
  rdfs:comment "An ingredient (player) of a medication (scoper) that is inseparable from the active ingredients, but has no intended chemical or pharmaceutical effect itself, but which may have some systemic effect on the patient.\r\n\n                        An example is a collagen matrix used as a base for transplanting skin cells.  The collagen matrix can be left permanently in the graft site.  Because it is of bovine origin, the patient may exhibit allergies or may have cultural objections to its use.";
  dcterms:description "An ingredient (player) of a medication (scoper) that is inseparable from the active ingredients, but has no intended chemical or pharmaceutical effect itself, but which may have some systemic effect on the patient.\r\n\n                        An example is a collagen matrix used as a base for transplanting skin cells.  The collagen matrix can be left permanently in the graft site.  Because it is of bovine origin, the patient may exhibit allergies or may have cultural objections to its use.".

cs:RoleClass\#LOCE rdfs:subClassOf cs:RoleClass\#%5fRoleClassPartitive;
  rdfs:label "located entity";
  dc:title "located entity";
  rdfs:comment "Relates an entity (player) to a location (scoper) at which it is present in some way. This presence may be limited in time.";
  dcterms:description "Relates an entity (player) to a location (scoper) at which it is present in some way. This presence may be limited in time.".

cs:RoleClass\#STOR rdfs:subClassOf cs:RoleClass\#LOCE;
  rdfs:label "stored entity";
  dc:title "stored entity";
  rdfs:comment "Relates an entity (player) (e.g. a device) to a location (scoper) at which it is normally found or stored when not used.";
  dcterms:description "Relates an entity (player) (e.g. a device) to a location (scoper) at which it is normally found or stored when not used.".

cs:RoleClass\#MBR rdfs:subClassOf cs:RoleClass\#%5fRoleClassPartitive;
  rdfs:label "member";
  dc:title "member";
  rdfs:comment "A role played by an entity that is a member of a group.  The group provides the scope for this role.\r\n\n                        Among other uses, groups as used in insurance (groups of covered individuals) and in scheduling where resources may be grouped for scheduling and logistical purposes.";
  dcterms:description "A role played by an entity that is a member of a group.  The group provides the scope for this role.\r\n\n                        Among other uses, groups as used in insurance (groups of covered individuals) and in scheduling where resources may be grouped for scheduling and logistical purposes.".

cs:RoleClass\#PART rdfs:subClassOf cs:RoleClass\#%5fRoleClassPartitive;
  rdfs:label "part";
  dc:title "part";
  rdfs:comment "Definition:  an association between two Entities where the playing Entity (the part) is a component of the whole (scoper) in the sense of an integral structural component, that is distinct from other parts in the same whole, has a distinct function in the whole, and, as an effect, the full integrity of the whole depends (to some degree) on the presence of this part, even though the part may often be separable from the whole.\r\n\n                        \n                           Discussion: Part is defined in opposition to (a) ingredient (not separable), (b) content (not a functional component), and (c) member (not functionally distinct from other members).";
  dcterms:description "Definition:  an association between two Entities where the playing Entity (the part) is a component of the whole (scoper) in the sense of an integral structural component, that is distinct from other parts in the same whole, has a distinct function in the whole, and, as an effect, the full integrity of the whole depends (to some degree) on the presence of this part, even though the part may often be separable from the whole.\r\n\n                        \n                           Discussion: Part is defined in opposition to (a) ingredient (not separable), (b) content (not a functional component), and (c) member (not functionally distinct from other members).".

cs:RoleClass\#ACTM rdfs:subClassOf cs:RoleClass\#PART;
  rdfs:label "active moiety";
  dc:title "active moiety";
  rdfs:comment "The molecule or ion that is responsible for the intended pharmacological action of the drug substance, excluding those appended or associated parts of the molecule that make the molecule an ester, salt (including a salt with hydrogen or coordination bonds), or other noncovalent derivative (such as a complex, chelate, or clathrate).\r\n\n                        Examples: heparin-sodium and heparin-potassium have the same active moiety, heparin; the active moiety of morphine-hydrochloride is morphine.";
  dcterms:description "The molecule or ion that is responsible for the intended pharmacological action of the drug substance, excluding those appended or associated parts of the molecule that make the molecule an ester, salt (including a salt with hydrogen or coordination bonds), or other noncovalent derivative (such as a complex, chelate, or clathrate).\r\n\n                        Examples: heparin-sodium and heparin-potassium have the same active moiety, heparin; the active moiety of morphine-hydrochloride is morphine.".

cs:RoleClass\#SPEC rdfs:subClassOf cs:RoleClass\#%5fRoleClassPartitive;
  rdfs:label "specimen";
  dc:title "specimen";
  rdfs:comment "A role played by a material entity that is a specimen for an act. It is scoped by the source of the specimen.";
  dcterms:description "A role played by a material entity that is a specimen for an act. It is scoped by the source of the specimen.".

cs:RoleClass\#ALQT rdfs:subClassOf cs:RoleClass\#SPEC;
  rdfs:label "aliquot";
  dc:title "aliquot";
  rdfs:comment "A portion (player) of an original or source specimen (scoper) used for testing or transportation.";
  dcterms:description "A portion (player) of an original or source specimen (scoper) used for testing or transportation.".

cs:RoleClass\#ISLT rdfs:subClassOf cs:RoleClass\#SPEC;
  rdfs:label "isolate";
  dc:title "isolate";
  rdfs:comment "A microorganism that has been isolated from other microorganisms or a source matrix.";
  dcterms:description "A microorganism that has been isolated from other microorganisms or a source matrix.".

cs:RoleClass\#CHILD rdfs:subClassOf cs:RoleClass;
  rdfs:label "child";
  dc:title "child";
  rdfs:comment "The player of the role is a child of the scoping entity, in a generic sense.";
  dcterms:description "The player of the role is a child of the scoping entity, in a generic sense.".

cs:RoleClass\#CRED rdfs:subClassOf cs:RoleClass;
  rdfs:label "credentialed entity";
  dc:title "credentialed entity";
  rdfs:comment "A role played by an entity that receives credentials from the scoping entity.";
  dcterms:description "A role played by an entity that receives credentials from the scoping entity.".

cs:RoleClass\#NURPRAC rdfs:subClassOf cs:RoleClass;
  rdfs:label "nurse practitioner";
  dc:title "nurse practitioner";
  rdfs:comment "nurse practitioner";
  dcterms:description "nurse practitioner".

cs:RoleClass\#NURS rdfs:subClassOf cs:RoleClass;
  rdfs:label "nurse";
  dc:title "nurse";
  rdfs:comment "nurse";
  dcterms:description "nurse".

cs:RoleClass\#PA rdfs:subClassOf cs:RoleClass;
  rdfs:label "physician assistant";
  dc:title "physician assistant";
  rdfs:comment "physician assistant";
  dcterms:description "physician assistant".

cs:RoleClass\#PHYS rdfs:subClassOf cs:RoleClass;
  rdfs:label "physician";
  dc:title "physician";
  rdfs:comment "physician";
  dcterms:description "physician".

# - vs:v3-RoleCode -------------------------------------------------------------

vs:v3-RoleCode a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System RoleCode";
  dc:title "v3 Code System RoleCode";
  rdfs:comment " A set of codes further specifying the kind of Role; specific classification codes for further qualifying RoleClass codes.";
  dcterms:description " A set of codes further specifying the kind of Role; specific classification codes for further qualifying RoleClass codes.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:RoleCode.

cs:RoleCode.system a fhir:CodeSystem;
  rdfs:label "v3 Code System RoleCode";
  dc:title "v3 Code System RoleCode";
  rdfs:comment " A set of codes further specifying the kind of Role; specific classification codes for further qualifying RoleClass codes.";
  dcterms:description " A set of codes further specifying the kind of Role; specific classification codes for further qualifying RoleClass codes.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:RoleCode a fhir:Concept.

cs:RoleCode\#%5fAffiliationRoleType rdfs:subClassOf cs:RoleCode;
  rdfs:label "AffiliationRoleType";
  dc:title "AffiliationRoleType";
  rdfs:comment "Concepts characterizing the type of association formed by player and scoper when there is a recognized Affiliate role by which the two parties are related.\r\n\n                        \n                           Examples: Business Partner, Business Associate, Colleague";
  dcterms:description "Concepts characterizing the type of association formed by player and scoper when there is a recognized Affiliate role by which the two parties are related.\r\n\n                        \n                           Examples: Business Partner, Business Associate, Colleague".

cs:RoleCode\#%5fCoverageSponsorRoleType rdfs:subClassOf cs:RoleCode\#%5fAffiliationRoleType;
  rdfs:label "CoverageSponsorRoleType";
  dc:title "CoverageSponsorRoleType";
  rdfs:comment "Description:Codes that indicate a specific type of sponsor.  Used when the sponsor's role is only either as a fully insured sponsor or only as a self-insured sponsor.  NOTE: Where a sponsor may be either, use the SponsorParticipationFunction.code (fully insured or self insured) to indicate the type of responsibility. (CO6-0057)";
  dcterms:description "Description:Codes that indicate a specific type of sponsor.  Used when the sponsor's role is only either as a fully insured sponsor or only as a self-insured sponsor.  NOTE: Where a sponsor may be either, use the SponsorParticipationFunction.code (fully insured or self insured) to indicate the type of responsibility. (CO6-0057)".

cs:RoleCode\#FULLINS rdfs:subClassOf cs:RoleCode\#%5fCoverageSponsorRoleType;
  rdfs:label "Fully insured coverage sponsor";
  dc:title "Fully insured coverage sponsor";
  rdfs:comment "Description:An employer or organization that contracts with an underwriter to assumes the financial risk and administrative responsibility for coverage of health services for covered parties.";
  dcterms:description "Description:An employer or organization that contracts with an underwriter to assumes the financial risk and administrative responsibility for coverage of health services for covered parties.".

cs:RoleCode\#SELFINS rdfs:subClassOf cs:RoleCode\#%5fCoverageSponsorRoleType;
  rdfs:label "Self insured coverage sponsor";
  dc:title "Self insured coverage sponsor";
  rdfs:comment "Description:An employer or organization that assumes the financial risk and administrative responsibility for coverage of health services for covered parties.";
  dcterms:description "Description:An employer or organization that assumes the financial risk and administrative responsibility for coverage of health services for covered parties.".

cs:RoleCode\#%5fPayorRoleType rdfs:subClassOf cs:RoleCode\#%5fAffiliationRoleType;
  rdfs:label "PayorRoleType";
  dc:title "PayorRoleType";
  rdfs:comment "Description:PayorRoleType for a particular type of policy or program benefit package or plan where more detail about the coverage administration role of the Payor is required.  The functions performed by a Payor qualified by a PayorRoleType may be specified by the PayorParticpationFunction value set.\r\n\n                        \n                           Examples:A Payor that is a TPA may administer a managed care plan without underwriting the risk.";
  dcterms:description "Description:PayorRoleType for a particular type of policy or program benefit package or plan where more detail about the coverage administration role of the Payor is required.  The functions performed by a Payor qualified by a PayorRoleType may be specified by the PayorParticpationFunction value set.\r\n\n                        \n                           Examples:A Payor that is a TPA may administer a managed care plan without underwriting the risk.".

cs:RoleCode\#ENROLBKR rdfs:subClassOf cs:RoleCode\#%5fPayorRoleType;
  rdfs:label "Enrollment Broker";
  dc:title "Enrollment Broker";
  rdfs:comment "Description:A payor that is responsible for functions related to the enrollment of covered parties.";
  dcterms:description "Description:A payor that is responsible for functions related to the enrollment of covered parties.".

cs:RoleCode\#TPA rdfs:subClassOf cs:RoleCode\#%5fPayorRoleType;
  rdfs:label "Third party administrator";
  dc:title "Third party administrator";
  rdfs:comment "Description:Third party administrator (TPA) is a payor organization that processes health care claims without carrying insurance risk. Third party administrators are prominent players in the managed care industry and have the expertise and capability to administer all or a portion of the claims process. They are normally contracted by a health insurer or self-insuring companies to administer services, including claims administration, premium collection, enrollment and other administrative activities.\r\n\n                        Self-insured employers often contract with third party administrator to handle their insurance functions. Insurance companies oftentimes outsource the claims, utilization review or membership functions to a TPA. Sometimes TPAs only manage provider networks, only claims or only utilization review.\r\n\n                        While some third-party administrators may operate as units of insurance companies, they are often independent. However, hospitals or provider organizations desiring to set up their own health plans will often outsource certain responsibilities to TPAs.  TPAs may perform one or several payor functions, specified by the PayorParticipationFunction value set, such as provider management, enrollment, utilization management, and fee for service claims adjudication management.";
  dcterms:description "Description:Third party administrator (TPA) is a payor organization that processes health care claims without carrying insurance risk. Third party administrators are prominent players in the managed care industry and have the expertise and capability to administer all or a portion of the claims process. They are normally contracted by a health insurer or self-insuring companies to administer services, including claims administration, premium collection, enrollment and other administrative activities.\r\n\n                        Self-insured employers often contract with third party administrator to handle their insurance functions. Insurance companies oftentimes outsource the claims, utilization review or membership functions to a TPA. Sometimes TPAs only manage provider networks, only claims or only utilization review.\r\n\n                        While some third-party administrators may operate as units of insurance companies, they are often independent. However, hospitals or provider organizations desiring to set up their own health plans will often outsource certain responsibilities to TPAs.  TPAs may perform one or several payor functions, specified by the PayorParticipationFunction value set, such as provider management, enrollment, utilization management, and fee for service claims adjudication management.".

cs:RoleCode\#UMO rdfs:subClassOf cs:RoleCode\#%5fPayorRoleType;
  rdfs:label "Utilization management organization";
  dc:title "Utilization management organization";
  rdfs:comment "Description:A payor that is responsible for review and case management of health services covered under a policy or program.";
  dcterms:description "Description:A payor that is responsible for review and case management of health services covered under a policy or program.".

cs:RoleCode\#RESPRSN rdfs:subClassOf cs:RoleCode\#%5fAffiliationRoleType;
  rdfs:label "responsible party";
  dc:title "responsible party";
  rdfs:comment "The role played by a party who has legal responsibility for another party.";
  dcterms:description "The role played by a party who has legal responsibility for another party.".

cs:RoleCode\#EXCEST rdfs:subClassOf cs:RoleCode\#RESPRSN;
  rdfs:label "executor of estate";
  dc:title "executor of estate";
  rdfs:comment "The role played by a person acting as the estate executor for a deceased subscriber or policyholder who was the responsible party";
  dcterms:description "The role played by a person acting as the estate executor for a deceased subscriber or policyholder who was the responsible party".

cs:RoleCode\#GUADLTM rdfs:subClassOf cs:RoleCode\#RESPRSN;
  rdfs:label "guardian ad lidem";
  dc:title "guardian ad lidem";
  rdfs:comment "The role played by a person appointed by the court to look out for the best interests of a minor child during the course of legal proceedings.";
  dcterms:description "The role played by a person appointed by the court to look out for the best interests of a minor child during the course of legal proceedings.".

cs:RoleCode\#GUARD rdfs:subClassOf cs:RoleCode\#RESPRSN;
  rdfs:label "guardian";
  dc:title "guardian";
  rdfs:comment "The role played by a person or institution legally empowered with responsibility for the care of a ward.";
  dcterms:description "The role played by a person or institution legally empowered with responsibility for the care of a ward.".

cs:RoleCode\#POWATT rdfs:subClassOf cs:RoleCode\#RESPRSN;
  rdfs:label "power of attorney";
  dc:title "power of attorney";
  rdfs:comment "A relationship between two people in which one person authorizes another to act for him in a manner which is a legally binding upon the person giving such authority as if he or she personally were to do the acts.";
  dcterms:description "A relationship between two people in which one person authorizes another to act for him in a manner which is a legally binding upon the person giving such authority as if he or she personally were to do the acts.".

cs:RoleCode\#DPOWATT rdfs:subClassOf cs:RoleCode\#POWATT;
  rdfs:label "durable power of attorney";
  dc:title "durable power of attorney";
  rdfs:comment "A relationship between two people in which one person authorizes another, usually a family member or relative, to act for him or her in a manner which is a legally binding upon the person giving such authority as if he or she personally were to do the acts that is often limited in the kinds of powers that can be assigned.  Unlike ordinary powers of attorney, durable powers can survive for long periods of time, and again, unlike standard powers of attorney, durable powers can continue after incompetency.";
  dcterms:description "A relationship between two people in which one person authorizes another, usually a family member or relative, to act for him or her in a manner which is a legally binding upon the person giving such authority as if he or she personally were to do the acts that is often limited in the kinds of powers that can be assigned.  Unlike ordinary powers of attorney, durable powers can survive for long periods of time, and again, unlike standard powers of attorney, durable powers can continue after incompetency.".

cs:RoleCode\#HPOWATT rdfs:subClassOf cs:RoleCode\#POWATT;
  rdfs:label "healthcare power of attorney";
  dc:title "healthcare power of attorney";
  rdfs:comment "A relationship between two people in which one person authorizes another to act for him or her in a manner which is a legally binding upon the person giving such authority as if he or she personally were to do the acts that continues (by its terms) to be effective even though the grantor has become mentally incompetent after signing the document.";
  dcterms:description "A relationship between two people in which one person authorizes another to act for him or her in a manner which is a legally binding upon the person giving such authority as if he or she personally were to do the acts that continues (by its terms) to be effective even though the grantor has become mentally incompetent after signing the document.".

cs:RoleCode\#SPOWATT rdfs:subClassOf cs:RoleCode\#POWATT;
  rdfs:label "special power of attorney";
  dc:title "special power of attorney";
  rdfs:comment "A relationship between two people in which one person authorizes another to act for him or her in a manner which is a legally binding upon the person giving such authority as if he or she personally were to do the acts that is often limited in the kinds of powers that can be assigned.";
  dcterms:description "A relationship between two people in which one person authorizes another to act for him or her in a manner which is a legally binding upon the person giving such authority as if he or she personally were to do the acts that is often limited in the kinds of powers that can be assigned.".

cs:RoleCode\#%5fAssignedRoleType rdfs:subClassOf cs:RoleCode;
  rdfs:label "AssignedRoleType";
  dc:title "AssignedRoleType";
  rdfs:comment "AssignedRoleType";
  dcterms:description "AssignedRoleType".

cs:RoleCode\#%5fAssignedNonPersonLivingSubjectRoleType rdfs:subClassOf cs:RoleCode\#%5fAssignedRoleType;
  rdfs:label "AssignedNonPersonLivingSubjectRoleType";
  dc:title "AssignedNonPersonLivingSubjectRoleType";
  rdfs:comment "Description:A role type that is used to further qualify a non-person subject playing a role where the role class attribute is set to RoleClass AssignedEntity";
  dcterms:description "Description:A role type that is used to further qualify a non-person subject playing a role where the role class attribute is set to RoleClass AssignedEntity".

cs:RoleCode\#ASSIST rdfs:subClassOf cs:RoleCode\#%5fAssignedNonPersonLivingSubjectRoleType;
  rdfs:label "Assistive non-person living subject";
  dc:title "Assistive non-person living subject";
  rdfs:comment "Description:Dogs trained to assist the ill or physically challenged.";
  dcterms:description "Description:Dogs trained to assist the ill or physically challenged.".

cs:RoleCode\#BIOTH rdfs:subClassOf cs:RoleCode\#%5fAssignedNonPersonLivingSubjectRoleType;
  rdfs:label "Biotherapeutic non-person living subject";
  dc:title "Biotherapeutic non-person living subject";
  rdfs:comment "Description:Animals, including fish and insects, and microorganisms which may participate as assigned entities in biotherapies.";
  dcterms:description "Description:Animals, including fish and insects, and microorganisms which may participate as assigned entities in biotherapies.".

cs:RoleCode\#ANTIBIOT rdfs:subClassOf cs:RoleCode\#BIOTH;
  rdfs:label "Antibiotic";
  dc:title "Antibiotic";
  rdfs:comment "Description:Non-person living subject used as antibiotic.\r\n\n                        \n                           Examples:Bacteriophage, is a virus that infects bacteria.";
  dcterms:description "Description:Non-person living subject used as antibiotic.\r\n\n                        \n                           Examples:Bacteriophage, is a virus that infects bacteria.".

cs:RoleCode\#DEBR rdfs:subClassOf cs:RoleCode\#BIOTH;
  rdfs:label "Debridement";
  dc:title "Debridement";
  rdfs:comment "Description:Maggots raised for biodebridement.\r\n\n                        \n                           Discussion: Maggot Debridement Therapy is the medical use of live maggots for cleaning non-healing wounds.\r\n\n                        \n                           Examples:Removal of burnt skin.";
  dcterms:description "Description:Maggots raised for biodebridement.\r\n\n                        \n                           Discussion: Maggot Debridement Therapy is the medical use of live maggots for cleaning non-healing wounds.\r\n\n                        \n                           Examples:Removal of burnt skin.".

cs:RoleCode\#CCO rdfs:subClassOf cs:RoleCode\#%5fAssignedNonPersonLivingSubjectRoleType;
  rdfs:label "Clinical Companion";
  dc:title "Clinical Companion";
  rdfs:comment "Description:Companion animals, such as dogs, cats, and rabbits, which may be provided to patients to improve general mood, decrease depression and loneliness, and distract from stress-inducing concerns to improve quality of life.";
  dcterms:description "Description:Companion animals, such as dogs, cats, and rabbits, which may be provided to patients to improve general mood, decrease depression and loneliness, and distract from stress-inducing concerns to improve quality of life.".

cs:RoleCode\#SEE rdfs:subClassOf cs:RoleCode\#%5fAssignedNonPersonLivingSubjectRoleType;
  rdfs:label "Seeing";
  dc:title "Seeing";
  rdfs:comment "Description:Dogs trained to assist persons who are seeing impaired or blind.";
  dcterms:description "Description:Dogs trained to assist persons who are seeing impaired or blind.".

cs:RoleCode\#SNIFF rdfs:subClassOf cs:RoleCode\#%5fAssignedNonPersonLivingSubjectRoleType;
  rdfs:label "Sniffing";
  dc:title "Sniffing";
  rdfs:comment "Description:Dogs trained or having the ability to detect imminent seizures or cancers in humans, probably as a result of volatile chemical (odors) given off by the malignancy of the host.";
  dcterms:description "Description:Dogs trained or having the ability to detect imminent seizures or cancers in humans, probably as a result of volatile chemical (odors) given off by the malignancy of the host.".

cs:RoleCode\#%5fCertifiedEntityType rdfs:subClassOf cs:RoleCode;
  rdfs:label "CertifiedEntityType";
  dc:title "CertifiedEntityType";
  rdfs:comment "Defines types of certifications for all entities";
  dcterms:description "Defines types of certifications for all entities".

cs:RoleCode\#%5fCitizenRoleType rdfs:subClassOf cs:RoleCode;
  rdfs:label "CitizenRoleType";
  dc:title "CitizenRoleType";
  rdfs:comment "A role type used to qualify a person's legal status within a country or nation.";
  dcterms:description "A role type used to qualify a person's legal status within a country or nation.".

cs:RoleCode\#CAS rdfs:subClassOf cs:RoleCode\#%5fCitizenRoleType;
  rdfs:label "asylum seeker";
  dc:title "asylum seeker";
  rdfs:comment "A person who has fled his or her home country to find a safe place elsewhere.";
  dcterms:description "A person who has fled his or her home country to find a safe place elsewhere.".

cs:RoleCode\#CASM rdfs:subClassOf cs:RoleCode\#CAS;
  rdfs:label "single minor asylum seeker";
  dc:title "single minor asylum seeker";
  rdfs:comment "A person who is someone of below legal age who has fled his or her home country, without his or her parents, to find a safe place elsewhere at time of categorization.";
  dcterms:description "A person who is someone of below legal age who has fled his or her home country, without his or her parents, to find a safe place elsewhere at time of categorization.".

cs:RoleCode\#CN rdfs:subClassOf cs:RoleCode\#%5fCitizenRoleType;
  rdfs:label "national";
  dc:title "national";
  rdfs:comment "A person who is legally recognized as a member of a nation or country, with associated rights and obligations.";
  dcterms:description "A person who is legally recognized as a member of a nation or country, with associated rights and obligations.".

cs:RoleCode\#CNRP rdfs:subClassOf cs:RoleCode\#%5fCitizenRoleType;
  rdfs:label "non-country member without residence permit";
  dc:title "non-country member without residence permit";
  rdfs:comment "A foreigner who is present in a country (which is foreign to him/her) unlawfully or without the country's authorization (may be called an illegal alien).";
  dcterms:description "A foreigner who is present in a country (which is foreign to him/her) unlawfully or without the country's authorization (may be called an illegal alien).".

cs:RoleCode\#CNRPM rdfs:subClassOf cs:RoleCode\#CNRP;
  rdfs:label "non-country member minor without residence permit";
  dc:title "non-country member minor without residence permit";
  rdfs:comment "A person who is below legal age present in a country, without his or her parents, (which is foreign to him/her) unlawfully or without the country's authorization.";
  dcterms:description "A person who is below legal age present in a country, without his or her parents, (which is foreign to him/her) unlawfully or without the country's authorization.".

cs:RoleCode\#CPCA rdfs:subClassOf cs:RoleCode\#%5fCitizenRoleType;
  rdfs:label "permit card applicant";
  dc:title "permit card applicant";
  rdfs:comment "A non-country member admitted to the territory of a nation or country as a non-resident for an explicit purpose.";
  dcterms:description "A non-country member admitted to the territory of a nation or country as a non-resident for an explicit purpose.".

cs:RoleCode\#CRP rdfs:subClassOf cs:RoleCode\#%5fCitizenRoleType;
  rdfs:label "non-country member with residence permit";
  dc:title "non-country member with residence permit";
  rdfs:comment "A foreigner who is a resident of the country but does not have citizenship.";
  dcterms:description "A foreigner who is a resident of the country but does not have citizenship.".

cs:RoleCode\#CRPM rdfs:subClassOf cs:RoleCode\#CRP;
  rdfs:label "non-country member minor with residence permit";
  dc:title "non-country member minor with residence permit";
  rdfs:comment "A person who is a resident below legal age of the country without his or her parents and does not have citizenship.";
  dcterms:description "A person who is a resident below legal age of the country without his or her parents and does not have citizenship.".

cs:RoleCode\#%5fContactRoleType rdfs:subClassOf cs:RoleCode;
  rdfs:label "ContactRoleType";
  dc:title "ContactRoleType";
  rdfs:comment "Types of contact for Role code \"CON\"";
  dcterms:description "Types of contact for Role code \"CON\"".

cs:RoleCode\#%5fAdministrativeContactRoleType rdfs:subClassOf cs:RoleCode\#%5fContactRoleType;
  rdfs:label "AdministrativeContactRoleType";
  dc:title "AdministrativeContactRoleType";
  rdfs:comment "A contact role used for business and/or administrative purposes.";
  dcterms:description "A contact role used for business and/or administrative purposes.".

cs:RoleCode\#BILL rdfs:subClassOf cs:RoleCode\#%5fAdministrativeContactRoleType;
  rdfs:label "Billing Contact";
  dc:title "Billing Contact";
  rdfs:comment "A contact role used to identify a person within a Provider organization that can be contacted for billing purposes (e.g. about the content of the Invoice).";
  dcterms:description "A contact role used to identify a person within a Provider organization that can be contacted for billing purposes (e.g. about the content of the Invoice).".

cs:RoleCode\#ORG rdfs:subClassOf cs:RoleCode\#%5fAdministrativeContactRoleType;
  rdfs:label "organizational contact";
  dc:title "organizational contact";
  rdfs:comment "A contact for an organization for administrative purposes. Contact role specifies a person acting as a liason for the organization.\r\n\n                        Example: HR Department representative.";
  dcterms:description "A contact for an organization for administrative purposes. Contact role specifies a person acting as a liason for the organization.\r\n\n                        Example: HR Department representative.".

cs:RoleCode\#PAYOR rdfs:subClassOf cs:RoleCode\#%5fAdministrativeContactRoleType;
  rdfs:label "Payor Contact";
  dc:title "Payor Contact";
  rdfs:comment "A contact role used to identify a person within a Payor organization to whom this communication is addressed.";
  dcterms:description "A contact role used to identify a person within a Payor organization to whom this communication is addressed.".

cs:RoleCode\#ECON rdfs:subClassOf cs:RoleCode\#%5fContactRoleType;
  rdfs:label "emergency contact";
  dc:title "emergency contact";
  rdfs:comment "A contact designated for contact in emergent situations.";
  dcterms:description "A contact designated for contact in emergent situations.".

cs:RoleCode\#NOK rdfs:subClassOf cs:RoleCode\#%5fContactRoleType;
  rdfs:label "next of kin";
  dc:title "next of kin";
  rdfs:comment "Played by an individual who is designated as the next of kin for another individual which scopes the role.";
  dcterms:description "Played by an individual who is designated as the next of kin for another individual which scopes the role.".

cs:RoleCode\#%5fIdentifiedEntityType rdfs:subClassOf cs:RoleCode;
  rdfs:label "IdentifiedEntityType";
  dc:title "IdentifiedEntityType";
  rdfs:comment "Definition: A code representing the type of identifier that has been assigned to the identified entity (IDENT).\r\n\n                        \n                           Examples: Example values include Social Insurance Number, Product Catalog ID, Product Model Number.";
  dcterms:description "Definition: A code representing the type of identifier that has been assigned to the identified entity (IDENT).\r\n\n                        \n                           Examples: Example values include Social Insurance Number, Product Catalog ID, Product Model Number.".

cs:RoleCode\#%5fLocationIdentifiedEntityRoleCode rdfs:subClassOf cs:RoleCode\#%5fIdentifiedEntityType;
  rdfs:label "LocationIdentifiedEntityRoleCode";
  dc:title "LocationIdentifiedEntityRoleCode";
  rdfs:comment "Description:Describes types of identifiers other than the primary location registry identifier for a service delivery location.  Identifiers may be assigned by a local service delivery organization, a formal body capable of accrediting the location for the capability to provide specific services or the identifier may be assigned at a jurisdictional level.";
  dcterms:description "Description:Describes types of identifiers other than the primary location registry identifier for a service delivery location.  Identifiers may be assigned by a local service delivery organization, a formal body capable of accrediting the location for the capability to provide specific services or the identifier may be assigned at a jurisdictional level.".

cs:RoleCode\#ACHFID rdfs:subClassOf cs:RoleCode\#%5fLocationIdentifiedEntityRoleCode;
  rdfs:label "accreditation location identifier";
  dc:title "accreditation location identifier";
  rdfs:comment "Description:Identifier assigned to a  location by the organization responsible for accrediting the location.";
  dcterms:description "Description:Identifier assigned to a  location by the organization responsible for accrediting the location.".

cs:RoleCode\#JURID rdfs:subClassOf cs:RoleCode\#%5fLocationIdentifiedEntityRoleCode;
  rdfs:label "jurisdiction location identifier";
  dc:title "jurisdiction location identifier";
  rdfs:comment "Description:Identifier assigned to a location by a jurisdiction.";
  dcterms:description "Description:Identifier assigned to a location by a jurisdiction.".

cs:RoleCode\#LOCHFID rdfs:subClassOf cs:RoleCode\#%5fLocationIdentifiedEntityRoleCode;
  rdfs:label "local location identifier";
  dc:title "local location identifier";
  rdfs:comment "Description:Identifier assigned to a  location by a local party (which could be the facility itself or organization overseeing a group of facilities).";
  dcterms:description "Description:Identifier assigned to a  location by a local party (which could be the facility itself or organization overseeing a group of facilities).".

cs:RoleCode\#%5fLivingSubjectProductionClass rdfs:subClassOf cs:RoleCode;
  rdfs:label "LivingSubjectProductionClass";
  dc:title "LivingSubjectProductionClass";
  rdfs:comment "Code indicating the primary use for which a living subject is bred or grown";
  dcterms:description "Code indicating the primary use for which a living subject is bred or grown".

cs:RoleCode\#BF rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Beef";
  dc:title "Beef";
  rdfs:comment "Cattle used for meat production";
  dcterms:description "Cattle used for meat production".

cs:RoleCode\#BL rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Broiler";
  dc:title "Broiler";
  rdfs:comment "Chickens raised for meat";
  dcterms:description "Chickens raised for meat".

cs:RoleCode\#BR rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Breeder";
  dc:title "Breeder";
  rdfs:comment "Breeding/genetic stock";
  dcterms:description "Breeding/genetic stock".

cs:RoleCode\#CO rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Companion";
  dc:title "Companion";
  rdfs:comment "Companion animals";
  dcterms:description "Companion animals".

cs:RoleCode\#DA rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Dairy";
  dc:title "Dairy";
  rdfs:comment "Milk production";
  dcterms:description "Milk production".

cs:RoleCode\#DR rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Draft";
  dc:title "Draft";
  rdfs:comment "Draft animals";
  dcterms:description "Draft animals".

cs:RoleCode\#DU rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Dual";
  dc:title "Dual";
  rdfs:comment "Dual purpose.  Defined purposes based on species and breed";
  dcterms:description "Dual purpose.  Defined purposes based on species and breed".

cs:RoleCode\#FI rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Fiber";
  dc:title "Fiber";
  rdfs:comment "Animals raised for their fur, hair or skins";
  dcterms:description "Animals raised for their fur, hair or skins".

cs:RoleCode\#LY rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Layer";
  dc:title "Layer";
  rdfs:comment "Chickens raised for egg production";
  dcterms:description "Chickens raised for egg production".

cs:RoleCode\#MT rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Meat";
  dc:title "Meat";
  rdfs:comment "Animals raised for meat production";
  dcterms:description "Animals raised for meat production".

cs:RoleCode\#MU rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Multiplier";
  dc:title "Multiplier";
  rdfs:comment "Poultry flocks used for chick/poult production";
  dcterms:description "Poultry flocks used for chick/poult production".

cs:RoleCode\#PL rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Pleasure";
  dc:title "Pleasure";
  rdfs:comment "Animals rasied for recreation";
  dcterms:description "Animals rasied for recreation".

cs:RoleCode\#RC rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Racing";
  dc:title "Racing";
  rdfs:comment "Animals raised for racing perfomance";
  dcterms:description "Animals raised for racing perfomance".

cs:RoleCode\#SH rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Show";
  dc:title "Show";
  rdfs:comment "Animals raised for shows";
  dcterms:description "Animals raised for shows".

cs:RoleCode\#VL rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Veal";
  dc:title "Veal";
  rdfs:comment "Cattle raised for veal meat production.  Implicit is the husbandry method.";
  dcterms:description "Cattle raised for veal meat production.  Implicit is the husbandry method.".

cs:RoleCode\#WL rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Wool";
  dc:title "Wool";
  rdfs:comment "Sheep, goats and other mammals raised for their fiber";
  dcterms:description "Sheep, goats and other mammals raised for their fiber".

cs:RoleCode\#WO rdfs:subClassOf cs:RoleCode\#%5fLivingSubjectProductionClass;
  rdfs:label "Working";
  dc:title "Working";
  rdfs:comment "Animals used to perform work";
  dcterms:description "Animals used to perform work".

cs:RoleCode\#%5fMedicationGeneralizationRoleType rdfs:subClassOf cs:RoleCode;
  rdfs:label "MedicationGeneralizationRoleType";
  dc:title "MedicationGeneralizationRoleType";
  rdfs:comment "Identifies the specific hierarchical relationship between the playing and scoping medications. \r\n\n                        \n                           Examples: Generic, Generic Formulation, Therapeutic Class, etc.";
  dcterms:description "Identifies the specific hierarchical relationship between the playing and scoping medications. \r\n\n                        \n                           Examples: Generic, Generic Formulation, Therapeutic Class, etc.".

cs:RoleCode\#DC rdfs:subClassOf cs:RoleCode\#%5fMedicationGeneralizationRoleType;
  rdfs:label "therapeutic class";
  dc:title "therapeutic class";
  rdfs:comment "Description:A categorization of medicinal products by their therapeutic properties and/or main therapeutic use.";
  dcterms:description "Description:A categorization of medicinal products by their therapeutic properties and/or main therapeutic use.".

cs:RoleCode\#GD rdfs:subClassOf cs:RoleCode\#%5fMedicationGeneralizationRoleType;
  rdfs:label "generic drug";
  dc:title "generic drug";
  rdfs:comment "Relates a manufactured drug product to the non-proprietary (generic) representation of its ingredients independent of strength, and form.\r\n\n                        The scoping entity identifies a unique combination of medicine ingredients; sometimes referred to as \"ingredient set\".";
  dcterms:description "Relates a manufactured drug product to the non-proprietary (generic) representation of its ingredients independent of strength, and form.\r\n\n                        The scoping entity identifies a unique combination of medicine ingredients; sometimes referred to as \"ingredient set\".".

cs:RoleCode\#GDF rdfs:subClassOf cs:RoleCode\#GD;
  rdfs:label "generic drug form";
  dc:title "generic drug form";
  rdfs:comment "Relates a manufactured drug product to the non-proprietary (generic) representation of its ingredients and dose form, independent of strength of the ingredients. The scoping entity identifies a unique combination of medicine ingredients in a specific dose form.";
  dcterms:description "Relates a manufactured drug product to the non-proprietary (generic) representation of its ingredients and dose form, independent of strength of the ingredients. The scoping entity identifies a unique combination of medicine ingredients in a specific dose form.".

cs:RoleCode\#GDS rdfs:subClassOf cs:RoleCode\#GD;
  rdfs:label "generic drug strength";
  dc:title "generic drug strength";
  rdfs:comment "Relates a manufactured drug product to the non-proprietary (generic) representation of is ingredients with their strength.  The scoping entity identifies a unique combination of medicine ingredients with their strength.";
  dcterms:description "Relates a manufactured drug product to the non-proprietary (generic) representation of is ingredients with their strength.  The scoping entity identifies a unique combination of medicine ingredients with their strength.".

cs:RoleCode\#GDSF rdfs:subClassOf cs:RoleCode\#GD;
  rdfs:label "generic drug strength form";
  dc:title "generic drug strength form";
  rdfs:comment "Relates a manufactured drug product to the non-proprietary (generic) representation of its ingredients with their strength in a specific dose form. The scoping entity identifies a unique combination of medicine ingredients with their strength in a single dose form.";
  dcterms:description "Relates a manufactured drug product to the non-proprietary (generic) representation of its ingredients with their strength in a specific dose form. The scoping entity identifies a unique combination of medicine ingredients with their strength in a single dose form.".

cs:RoleCode\#MGDSF rdfs:subClassOf cs:RoleCode\#%5fMedicationGeneralizationRoleType;
  rdfs:label "manufactured drug strength form";
  dc:title "manufactured drug strength form";
  rdfs:comment "Relates a manufactured drug product to the non-proprietary (generic) representation of its ingredients with their strength in a specific dose form. The scoping entity identifies a unique combination of medicine ingredients with their strength in a single dose form.";
  dcterms:description "Relates a manufactured drug product to the non-proprietary (generic) representation of its ingredients with their strength in a specific dose form. The scoping entity identifies a unique combination of medicine ingredients with their strength in a single dose form.".

cs:RoleCode\#%5fMemberRoleType rdfs:subClassOf cs:RoleCode;
  rdfs:label "MemberRoleType";
  dc:title "MemberRoleType";
  rdfs:comment "Types of membership for Role code \"MBR\"";
  dcterms:description "Types of membership for Role code \"MBR\"".

cs:RoleCode\#TRB rdfs:subClassOf cs:RoleCode\#%5fMemberRoleType;
  rdfs:label "Tribal Member";
  dc:title "Tribal Member";
  rdfs:comment "A person who is a member of a tribe.";
  dcterms:description "A person who is a member of a tribe.".

cs:RoleCode\#%5fPersonalRelationshipRoleType rdfs:subClassOf cs:RoleCode;
  rdfs:label "PersonalRelationshipRoleType";
  dc:title "PersonalRelationshipRoleType";
  rdfs:comment "PersonalRelationshipRoleType";
  dcterms:description "PersonalRelationshipRoleType".

cs:RoleCode\#FAMMEMB rdfs:subClassOf cs:RoleCode\#%5fPersonalRelationshipRoleType;
  rdfs:label "family member";
  dc:title "family member";
  rdfs:comment "A relationship between two people characterizing their \"familial\" relationship";
  dcterms:description "A relationship between two people characterizing their \"familial\" relationship".

cs:RoleCode\#CHILD rdfs:subClassOf cs:RoleCode\#FAMMEMB;
  rdfs:label "child";
  dc:title "child";
  rdfs:comment "The player of the role is a child of the scoping entity.";
  dcterms:description "The player of the role is a child of the scoping entity.".

cs:RoleCode\#CHLDADOPT rdfs:subClassOf cs:RoleCode\#CHILD;
  rdfs:label "adopted child";
  dc:title "adopted child";
  rdfs:comment "The player of the role is a child taken into a family through legal means and raised by the scoping person (parent) as his or her own child.";
  dcterms:description "The player of the role is a child taken into a family through legal means and raised by the scoping person (parent) as his or her own child.".

cs:RoleCode\#DAUADOPT rdfs:subClassOf cs:RoleCode\#CHLDADOPT;
  rdfs:label "adopted daughter";
  dc:title "adopted daughter";
  rdfs:comment "The player of the role is a female child taken into a family through legal means and raised by the scoping person (parent) as his or her own child.";
  dcterms:description "The player of the role is a female child taken into a family through legal means and raised by the scoping person (parent) as his or her own child.".

cs:RoleCode\#SONADOPT rdfs:subClassOf cs:RoleCode\#CHLDADOPT;
  rdfs:label "adopted son";
  dc:title "adopted son";
  rdfs:comment "The player of the role is a male child taken into a family through legal means and raised by the scoping person (parent) as his or her own child.";
  dcterms:description "The player of the role is a male child taken into a family through legal means and raised by the scoping person (parent) as his or her own child.".

cs:RoleCode\#CHLDFOST rdfs:subClassOf cs:RoleCode\#CHILD;
  rdfs:label "foster child";
  dc:title "foster child";
  rdfs:comment "The player of the role is a child receiving parental care and nurture from the scoping person (parent) but not related to him or her through legal or blood ties.";
  dcterms:description "The player of the role is a child receiving parental care and nurture from the scoping person (parent) but not related to him or her through legal or blood ties.".

cs:RoleCode\#DAUFOST rdfs:subClassOf cs:RoleCode\#CHLDFOST;
  rdfs:label "foster daughter";
  dc:title "foster daughter";
  rdfs:comment "The player of the role is a female child receiving parental care and nurture from the scoping person (parent) but not related to him or her through legal or blood ties.";
  dcterms:description "The player of the role is a female child receiving parental care and nurture from the scoping person (parent) but not related to him or her through legal or blood ties.".

cs:RoleCode\#SONFOST rdfs:subClassOf cs:RoleCode\#CHLDFOST;
  rdfs:label "foster son";
  dc:title "foster son";
  rdfs:comment "The player of the role is a male child receiving parental care and nurture from the scoping person (parent) but not related to him or her through legal or blood ties.";
  dcterms:description "The player of the role is a male child receiving parental care and nurture from the scoping person (parent) but not related to him or her through legal or blood ties.".

cs:RoleCode\#DAUC rdfs:subClassOf cs:RoleCode\#CHILD;
  rdfs:label "daughter";
  dc:title "daughter";
  rdfs:comment "Description: The player of the role is a female child (of any type) of scoping entity (parent)";
  dcterms:description "Description: The player of the role is a female child (of any type) of scoping entity (parent)".

cs:RoleCode\#DAU rdfs:subClassOf cs:RoleCode\#DAUC;
  rdfs:label "natural daughter";
  dc:title "natural daughter";
  rdfs:comment "The player of the role is a female offspring of the scoping entity (parent).";
  dcterms:description "The player of the role is a female offspring of the scoping entity (parent).".

cs:RoleCode\#STPDAU rdfs:subClassOf cs:RoleCode\#DAUC;
  rdfs:label "stepdaughter";
  dc:title "stepdaughter";
  rdfs:comment "The player of the role is a daughter of the scoping person's spouse by a previous union.";
  dcterms:description "The player of the role is a daughter of the scoping person's spouse by a previous union.".

cs:RoleCode\#NCHILD rdfs:subClassOf cs:RoleCode\#CHILD;
  rdfs:label "natural child";
  dc:title "natural child";
  rdfs:comment "The player of the role is an offspring of the scoping entity as determined by birth.";
  dcterms:description "The player of the role is an offspring of the scoping entity as determined by birth.".

cs:RoleCode\#SON rdfs:subClassOf cs:RoleCode\#NCHILD;
  rdfs:label "natural son";
  dc:title "natural son";
  rdfs:comment "The player of the role is a male offspring of the scoping entity (parent).";
  dcterms:description "The player of the role is a male offspring of the scoping entity (parent).".

cs:RoleCode\#SONC rdfs:subClassOf cs:RoleCode\#CHILD;
  rdfs:label "son";
  dc:title "son";
  rdfs:comment "Description: The player of the role is a male child (of any type) of scoping entity (parent)";
  dcterms:description "Description: The player of the role is a male child (of any type) of scoping entity (parent)".

cs:RoleCode\#STPSON rdfs:subClassOf cs:RoleCode\#SONC;
  rdfs:label "stepson";
  dc:title "stepson";
  rdfs:comment "The player of the role is a son of the scoping person's spouse by a previous union.";
  dcterms:description "The player of the role is a son of the scoping person's spouse by a previous union.".

cs:RoleCode\#STPCHLD rdfs:subClassOf cs:RoleCode\#CHILD;
  rdfs:label "step child";
  dc:title "step child";
  rdfs:comment "The player of the role is a child of the scoping person's spouse by a previous union.";
  dcterms:description "The player of the role is a child of the scoping person's spouse by a previous union.".

cs:RoleCode\#EXT rdfs:subClassOf cs:RoleCode\#FAMMEMB;
  rdfs:label "extended family member";
  dc:title "extended family member";
  rdfs:comment "Description: A family member not having an immediate genetic or legal relationship e.g. Aunt, cousin, great grandparent, grandchild, grandparent, niece, nephew or uncle.";
  dcterms:description "Description: A family member not having an immediate genetic or legal relationship e.g. Aunt, cousin, great grandparent, grandchild, grandparent, niece, nephew or uncle.".

cs:RoleCode\#AUNT rdfs:subClassOf cs:RoleCode\#EXT;
  rdfs:label "aunt";
  dc:title "aunt";
  rdfs:comment "The player of the role is a sister of the scoping person's mother or father.";
  dcterms:description "The player of the role is a sister of the scoping person's mother or father.".

cs:RoleCode\#MAUNT rdfs:subClassOf cs:RoleCode\#AUNT;
  rdfs:label "maternal aunt";
  dc:title "maternal aunt";
  rdfs:comment "Description:The player of the role is a biological sister of the scoping person's biological mother.";
  dcterms:description "Description:The player of the role is a biological sister of the scoping person's biological mother.".

cs:RoleCode\#PAUNT rdfs:subClassOf cs:RoleCode\#AUNT;
  rdfs:label "paternal aunt";
  dc:title "paternal aunt";
  rdfs:comment "Description:The player of the role is a biological sister of the scoping person's biological father.";
  dcterms:description "Description:The player of the role is a biological sister of the scoping person's biological father.".

cs:RoleCode\#COUSN rdfs:subClassOf cs:RoleCode\#EXT;
  rdfs:label "cousin";
  dc:title "cousin";
  rdfs:comment "The player of the role is a relative of the scoping person descended from a common ancestor, such as a 	grandparent, by two or more steps in a diverging line.";
  dcterms:description "The player of the role is a relative of the scoping person descended from a common ancestor, such as a 	grandparent, by two or more steps in a diverging line.".

cs:RoleCode\#MCOUSN rdfs:subClassOf cs:RoleCode\#COUSN;
  rdfs:label "maternal cousin";
  dc:title "maternal cousin";
  rdfs:comment "Description:The player of the role is a biological relative of the scoping person descended from a common ancestor on the player's mother's side, such as a grandparent, by two or more steps in a diverging line.";
  dcterms:description "Description:The player of the role is a biological relative of the scoping person descended from a common ancestor on the player's mother's side, such as a grandparent, by two or more steps in a diverging line.".

cs:RoleCode\#PCOUSN rdfs:subClassOf cs:RoleCode\#COUSN;
  rdfs:label "paternal cousin";
  dc:title "paternal cousin";
  rdfs:comment "Description:The player of the role is a biological relative of the scoping person descended from a common ancestor on the player's father's side, such as a grandparent, by two or more steps in a diverging line.";
  dcterms:description "Description:The player of the role is a biological relative of the scoping person descended from a common ancestor on the player's father's side, such as a grandparent, by two or more steps in a diverging line.".

cs:RoleCode\#GGRPRN rdfs:subClassOf cs:RoleCode\#EXT;
  rdfs:label "great grandparent";
  dc:title "great grandparent";
  rdfs:comment "The player of the role is a parent of the scoping person's grandparent.";
  dcterms:description "The player of the role is a parent of the scoping person's grandparent.".

cs:RoleCode\#GGRFTH rdfs:subClassOf cs:RoleCode\#GGRPRN;
  rdfs:label "great grandfather";
  dc:title "great grandfather";
  rdfs:comment "The player of the role is the father of the scoping person's grandparent.";
  dcterms:description "The player of the role is the father of the scoping person's grandparent.".

cs:RoleCode\#MGGRFTH rdfs:subClassOf cs:RoleCode\#GGRFTH;
  rdfs:label "maternal great-grandfather";
  dc:title "maternal great-grandfather";
  rdfs:comment "Description:The player of the role is the biological father of the scoping person's biological mother's parent.";
  dcterms:description "Description:The player of the role is the biological father of the scoping person's biological mother's parent.".

cs:RoleCode\#PGGRFTH rdfs:subClassOf cs:RoleCode\#GGRFTH;
  rdfs:label "paternal great-grandfather";
  dc:title "paternal great-grandfather";
  rdfs:comment "Description:The player of the role is the biological father of the scoping person's biological father's parent.";
  dcterms:description "Description:The player of the role is the biological father of the scoping person's biological father's parent.".

cs:RoleCode\#GGRMTH rdfs:subClassOf cs:RoleCode\#GGRPRN;
  rdfs:label "great grandmother";
  dc:title "great grandmother";
  rdfs:comment "The player of the role is the mother of the scoping person's grandparent.";
  dcterms:description "The player of the role is the mother of the scoping person's grandparent.".

cs:RoleCode\#MGGRMTH rdfs:subClassOf cs:RoleCode\#GGRMTH;
  rdfs:label "maternal great-grandmother";
  dc:title "maternal great-grandmother";
  rdfs:comment "Description:The player of the role is the biological mother of the scoping person's biological mother's parent.";
  dcterms:description "Description:The player of the role is the biological mother of the scoping person's biological mother's parent.".

cs:RoleCode\#PGGRMTH rdfs:subClassOf cs:RoleCode\#GGRMTH;
  rdfs:label "paternal great-grandmother";
  dc:title "paternal great-grandmother";
  rdfs:comment "Description:The player of the role is the biological mother of the scoping person's biological father's parent.";
  dcterms:description "Description:The player of the role is the biological mother of the scoping person's biological father's parent.".

cs:RoleCode\#MGGRPRN rdfs:subClassOf cs:RoleCode\#GGRPRN;
  rdfs:label "maternal great-grandparent";
  dc:title "maternal great-grandparent";
  rdfs:comment "Description:The player of the role is a biological parent of the scoping person's biological mother's parent.";
  dcterms:description "Description:The player of the role is a biological parent of the scoping person's biological mother's parent.".

cs:RoleCode\#PGGRPRN rdfs:subClassOf cs:RoleCode\#GGRPRN;
  rdfs:label "paternal great-grandparent";
  dc:title "paternal great-grandparent";
  rdfs:comment "Description:The player of the role is a biological parent of the scoping person's biological father's parent.";
  dcterms:description "Description:The player of the role is a biological parent of the scoping person's biological father's parent.".

cs:RoleCode\#GRNDCHILD rdfs:subClassOf cs:RoleCode\#EXT;
  rdfs:label "grandchild";
  dc:title "grandchild";
  rdfs:comment "The player of the role is a child of the scoping person's son or daughter.";
  dcterms:description "The player of the role is a child of the scoping person's son or daughter.".

cs:RoleCode\#GRNDDAU rdfs:subClassOf cs:RoleCode\#GRNDCHILD;
  rdfs:label "granddaughter";
  dc:title "granddaughter";
  rdfs:comment "The player of the role is a daughter of the scoping person's son or daughter.";
  dcterms:description "The player of the role is a daughter of the scoping person's son or daughter.".

cs:RoleCode\#GRNDSON rdfs:subClassOf cs:RoleCode\#GRNDCHILD;
  rdfs:label "grandson";
  dc:title "grandson";
  rdfs:comment "The player of the role is a son of the scoping person's son or daughter.";
  dcterms:description "The player of the role is a son of the scoping person's son or daughter.".

cs:RoleCode\#GRPRN rdfs:subClassOf cs:RoleCode\#EXT;
  rdfs:label "grandparent";
  dc:title "grandparent";
  rdfs:comment "The player of the role is a parent of the scoping person's mother or father.";
  dcterms:description "The player of the role is a parent of the scoping person's mother or father.".

cs:RoleCode\#GRFTH rdfs:subClassOf cs:RoleCode\#GRPRN;
  rdfs:label "grandfather";
  dc:title "grandfather";
  rdfs:comment "The player of the role is the father of the scoping person's mother or father.";
  dcterms:description "The player of the role is the father of the scoping person's mother or father.".

cs:RoleCode\#MGRFTH rdfs:subClassOf cs:RoleCode\#GRFTH;
  rdfs:label "maternal grandfather";
  dc:title "maternal grandfather";
  rdfs:comment "Description:The player of the role is the biological father of the scoping person's biological mother.";
  dcterms:description "Description:The player of the role is the biological father of the scoping person's biological mother.".

cs:RoleCode\#PGRFTH rdfs:subClassOf cs:RoleCode\#GRFTH;
  rdfs:label "paternal grandfather";
  dc:title "paternal grandfather";
  rdfs:comment "Description:The player of the role is the biological father of the scoping person's biological father.";
  dcterms:description "Description:The player of the role is the biological father of the scoping person's biological father.".

cs:RoleCode\#GRMTH rdfs:subClassOf cs:RoleCode\#GRPRN;
  rdfs:label "grandmother";
  dc:title "grandmother";
  rdfs:comment "The player of the role is the mother of the scoping person's mother or father.";
  dcterms:description "The player of the role is the mother of the scoping person's mother or father.".

cs:RoleCode\#MGRMTH rdfs:subClassOf cs:RoleCode\#GRMTH;
  rdfs:label "maternal grandmother";
  dc:title "maternal grandmother";
  rdfs:comment "Description:The player of the role is the biological mother of the scoping person's biological mother.";
  dcterms:description "Description:The player of the role is the biological mother of the scoping person's biological mother.".

cs:RoleCode\#PGRMTH rdfs:subClassOf cs:RoleCode\#GRMTH;
  rdfs:label "paternal grandmother";
  dc:title "paternal grandmother";
  rdfs:comment "Description:The player of the role is the biological mother of the scoping person's biological father.";
  dcterms:description "Description:The player of the role is the biological mother of the scoping person's biological father.".

cs:RoleCode\#MGRPRN rdfs:subClassOf cs:RoleCode\#GRPRN;
  rdfs:label "maternal grandparent";
  dc:title "maternal grandparent";
  rdfs:comment "Description:The player of the role is the biological parent of the scoping person's biological mother.";
  dcterms:description "Description:The player of the role is the biological parent of the scoping person's biological mother.".

cs:RoleCode\#PGRPRN rdfs:subClassOf cs:RoleCode\#GRPRN;
  rdfs:label "paternal grandparent";
  dc:title "paternal grandparent";
  rdfs:comment "Description:The player of the role is the biological parent of the scoping person's biological father.";
  dcterms:description "Description:The player of the role is the biological parent of the scoping person's biological father.".

cs:RoleCode\#INLAW rdfs:subClassOf cs:RoleCode\#EXT;
  rdfs:label "inlaw";
  dc:title "inlaw";
  rdfs:comment "A relationship between an individual and a member of their spousal partner's immediate family.";
  dcterms:description "A relationship between an individual and a member of their spousal partner's immediate family.".

cs:RoleCode\#CHLDINLAW rdfs:subClassOf cs:RoleCode\#INLAW;
  rdfs:label "child-in-law";
  dc:title "child-in-law";
  rdfs:comment "The player of the role is the spouse of scoping person's child.";
  dcterms:description "The player of the role is the spouse of scoping person's child.".

cs:RoleCode\#DAUINLAW rdfs:subClassOf cs:RoleCode\#CHLDINLAW;
  rdfs:label "daughter in-law";
  dc:title "daughter in-law";
  rdfs:comment "The player of the role is the wife of scoping person's son.";
  dcterms:description "The player of the role is the wife of scoping person's son.".

cs:RoleCode\#SONINLAW rdfs:subClassOf cs:RoleCode\#CHLDINLAW;
  rdfs:label "son in-law";
  dc:title "son in-law";
  rdfs:comment "The player of the role is the husband of scoping person's daughter.";
  dcterms:description "The player of the role is the husband of scoping person's daughter.".

cs:RoleCode\#PRNINLAW rdfs:subClassOf cs:RoleCode\#INLAW;
  rdfs:label "parent in-law";
  dc:title "parent in-law";
  rdfs:comment "The player of the role is the parent of scoping person's husband or wife.";
  dcterms:description "The player of the role is the parent of scoping person's husband or wife.".

cs:RoleCode\#FTHINLAW rdfs:subClassOf cs:RoleCode\#PRNINLAW;
  rdfs:label "father-in-law";
  dc:title "father-in-law";
  rdfs:comment "The player of the role is the father of the scoping person's husband or wife.";
  dcterms:description "The player of the role is the father of the scoping person's husband or wife.".

cs:RoleCode\#MTHINLAW rdfs:subClassOf cs:RoleCode\#PRNINLAW;
  rdfs:label "mother-in-law";
  dc:title "mother-in-law";
  rdfs:comment "The player of the role is the mother of the scoping person's husband or wife.";
  dcterms:description "The player of the role is the mother of the scoping person's husband or wife.".

cs:RoleCode\#SIBINLAW rdfs:subClassOf cs:RoleCode\#INLAW;
  rdfs:label "sibling in-law";
  dc:title "sibling in-law";
  rdfs:comment "The player of the role is: (1) a sibling of the scoping person's spouse, or (2) the spouse of the scoping person's sibling, or (3) the spouse of a sibling of the scoping person's spouse.";
  dcterms:description "The player of the role is: (1) a sibling of the scoping person's spouse, or (2) the spouse of the scoping person's sibling, or (3) the spouse of a sibling of the scoping person's spouse.".

cs:RoleCode\#BROINLAW rdfs:subClassOf cs:RoleCode\#SIBINLAW;
  rdfs:label "brother-in-law";
  dc:title "brother-in-law";
  rdfs:comment "The player of the role is: (1) a brother of the scoping person's spouse, or (2) the husband of the scoping person's sister, or (3) the husband of a sister of the scoping person's spouse.";
  dcterms:description "The player of the role is: (1) a brother of the scoping person's spouse, or (2) the husband of the scoping person's sister, or (3) the husband of a sister of the scoping person's spouse.".

cs:RoleCode\#SISINLAW rdfs:subClassOf cs:RoleCode\#SIBINLAW;
  rdfs:label "sister-in-law";
  dc:title "sister-in-law";
  rdfs:comment "The player of the role is: (1) a sister of the scoping person's spouse, or (2) the wife of the scoping person's brother, or (3) the wife of a brother of the scoping person's spouse.";
  dcterms:description "The player of the role is: (1) a sister of the scoping person's spouse, or (2) the wife of the scoping person's brother, or (3) the wife of a brother of the scoping person's spouse.".

cs:RoleCode\#NIENEPH rdfs:subClassOf cs:RoleCode\#EXT;
  rdfs:label "niece/nephew";
  dc:title "niece/nephew";
  rdfs:comment "The player of the role is a child of scoping person's brother or sister or of the brother or sister of the 	scoping person's spouse.";
  dcterms:description "The player of the role is a child of scoping person's brother or sister or of the brother or sister of the 	scoping person's spouse.".

cs:RoleCode\#NEPHEW rdfs:subClassOf cs:RoleCode\#NIENEPH;
  rdfs:label "nephew";
  dc:title "nephew";
  rdfs:comment "The player of the role is a son of the scoping person's brother or sister or of the brother or sister of the 	scoping person's spouse.";
  dcterms:description "The player of the role is a son of the scoping person's brother or sister or of the brother or sister of the 	scoping person's spouse.".

cs:RoleCode\#NIECE rdfs:subClassOf cs:RoleCode\#NIENEPH;
  rdfs:label "niece";
  dc:title "niece";
  rdfs:comment "The player of the role is a daughter of the scoping person's brother or sister or of the brother or sister of the 	scoping person's spouse.";
  dcterms:description "The player of the role is a daughter of the scoping person's brother or sister or of the brother or sister of the 	scoping person's spouse.".

cs:RoleCode\#UNCLE rdfs:subClassOf cs:RoleCode\#EXT;
  rdfs:label "uncle";
  dc:title "uncle";
  rdfs:comment "The player of the role is a brother of the scoping person's mother or father.";
  dcterms:description "The player of the role is a brother of the scoping person's mother or father.".

cs:RoleCode\#MUNCLE rdfs:subClassOf cs:RoleCode\#UNCLE;
  rdfs:label "maternal uncle";
  dc:title "maternal uncle";
  rdfs:comment "Description:The player of the role is a biological brother of the scoping person's biological mother.";
  dcterms:description "Description:The player of the role is a biological brother of the scoping person's biological mother.".

cs:RoleCode\#PUNCLE rdfs:subClassOf cs:RoleCode\#UNCLE;
  rdfs:label "paternal uncle";
  dc:title "paternal uncle";
  rdfs:comment "Description:The player of the role is a biological brother of the scoping person's biological father.";
  dcterms:description "Description:The player of the role is a biological brother of the scoping person's biological father.".

cs:RoleCode\#PRN rdfs:subClassOf cs:RoleCode\#FAMMEMB;
  rdfs:label "parent";
  dc:title "parent";
  rdfs:comment "The player of the role is one who begets, gives birth to, or nurtures and raises the scoping entity (child).";
  dcterms:description "The player of the role is one who begets, gives birth to, or nurtures and raises the scoping entity (child).".

cs:RoleCode\#ADOPTP rdfs:subClassOf cs:RoleCode\#PRN;
  rdfs:label "adoptive parent";
  dc:title "adoptive parent";
  rdfs:comment "The player of the role (parent) has taken the scoper (child) into their family through legal means and raises them as his or her own child.";
  dcterms:description "The player of the role (parent) has taken the scoper (child) into their family through legal means and raises them as his or her own child.".

cs:RoleCode\#ADOPTF rdfs:subClassOf cs:RoleCode\#ADOPTP;
  rdfs:label "adoptive father";
  dc:title "adoptive father";
  rdfs:comment "The player of the role (father) is a male who has taken the scoper (child) into their family through legal means and raises them as his own child.";
  dcterms:description "The player of the role (father) is a male who has taken the scoper (child) into their family through legal means and raises them as his own child.".

cs:RoleCode\#ADOPTM rdfs:subClassOf cs:RoleCode\#ADOPTP;
  rdfs:label "adoptive mother";
  dc:title "adoptive mother";
  rdfs:comment "The player of the role (father) is a female who has taken the scoper (child) into their family through legal means and raises them as her own child.";
  dcterms:description "The player of the role (father) is a female who has taken the scoper (child) into their family through legal means and raises them as her own child.".

cs:RoleCode\#FTH rdfs:subClassOf cs:RoleCode\#PRN;
  rdfs:label "father";
  dc:title "father";
  rdfs:comment "The player of the role is a male who begets or raises or nurtures the scoping entity (child).";
  dcterms:description "The player of the role is a male who begets or raises or nurtures the scoping entity (child).".

cs:RoleCode\#FTHFOST rdfs:subClassOf cs:RoleCode\#FTH;
  rdfs:label "foster father";
  dc:title "foster father";
  rdfs:comment "The player of the role (parent) who is a male state-certified caregiver responsible for the scoper (child) who has been placed in the parent's care. The placement of the child is usually arranged through the government or a social-service agency, and temporary.\r\n\n                        The state, via a jurisdiction recognized child protection agency, stands as in loco parentis to the child, making all legal decisions while the foster parent is responsible for the day-to-day care of the specified child.";
  dcterms:description "The player of the role (parent) who is a male state-certified caregiver responsible for the scoper (child) who has been placed in the parent's care. The placement of the child is usually arranged through the government or a social-service agency, and temporary.\r\n\n                        The state, via a jurisdiction recognized child protection agency, stands as in loco parentis to the child, making all legal decisions while the foster parent is responsible for the day-to-day care of the specified child.".

cs:RoleCode\#NFTH rdfs:subClassOf cs:RoleCode\#FTH;
  rdfs:label "natural father";
  dc:title "natural father";
  rdfs:comment "The player of the role is a male who begets the scoping entity (child).";
  dcterms:description "The player of the role is a male who begets the scoping entity (child).".

cs:RoleCode\#NFTHF rdfs:subClassOf cs:RoleCode\#NFTH;
  rdfs:label "natural father of fetus";
  dc:title "natural father of fetus";
  rdfs:comment "Indicates the biologic male parent of a fetus.";
  dcterms:description "Indicates the biologic male parent of a fetus.".

cs:RoleCode\#STPFTH rdfs:subClassOf cs:RoleCode\#FTH;
  rdfs:label "stepfather";
  dc:title "stepfather";
  rdfs:comment "The player of the role is the husband of scoping person's mother and not the scoping person's natural father.";
  dcterms:description "The player of the role is the husband of scoping person's mother and not the scoping person's natural father.".

cs:RoleCode\#MTH rdfs:subClassOf cs:RoleCode\#PRN;
  rdfs:label "mother";
  dc:title "mother";
  rdfs:comment "The player of the role is a female who conceives, gives birth to, or raises and nurtures the scoping entity (child).";
  dcterms:description "The player of the role is a female who conceives, gives birth to, or raises and nurtures the scoping entity (child).".

cs:RoleCode\#GESTM rdfs:subClassOf cs:RoleCode\#MTH;
  rdfs:label "gestational mother";
  dc:title "gestational mother";
  rdfs:comment "The player is a female whose womb carries the fetus of the scoper.  Generally used when the gestational mother and natural mother are not the same.";
  dcterms:description "The player is a female whose womb carries the fetus of the scoper.  Generally used when the gestational mother and natural mother are not the same.".

cs:RoleCode\#MTHFOST rdfs:subClassOf cs:RoleCode\#MTH;
  rdfs:label "foster mother";
  dc:title "foster mother";
  rdfs:comment "The player of the role (parent) who is a female state-certified caregiver responsible for the scoper (child) who has been placed in the parent's care. The placement of the child is usually arranged through the government or a social-service agency, and temporary.\r\n\n                        The state, via a jurisdiction recognized child protection agency, stands as in loco parentis to the child, making all legal decisions while the foster parent is responsible for the day-to-day care of the specified child.";
  dcterms:description "The player of the role (parent) who is a female state-certified caregiver responsible for the scoper (child) who has been placed in the parent's care. The placement of the child is usually arranged through the government or a social-service agency, and temporary.\r\n\n                        The state, via a jurisdiction recognized child protection agency, stands as in loco parentis to the child, making all legal decisions while the foster parent is responsible for the day-to-day care of the specified child.".

cs:RoleCode\#NMTH rdfs:subClassOf cs:RoleCode\#MTH;
  rdfs:label "natural mother";
  dc:title "natural mother";
  rdfs:comment "The player of the role is a female who conceives or gives birth to the scoping entity (child).";
  dcterms:description "The player of the role is a female who conceives or gives birth to the scoping entity (child).".

cs:RoleCode\#NMTHF rdfs:subClassOf cs:RoleCode\#NMTH;
  rdfs:label "natural mother of fetus";
  dc:title "natural mother of fetus";
  rdfs:comment "The player is the biologic female parent of the scoping fetus.";
  dcterms:description "The player is the biologic female parent of the scoping fetus.".

cs:RoleCode\#STPMTH rdfs:subClassOf cs:RoleCode\#MTH;
  rdfs:label "stepmother";
  dc:title "stepmother";
  rdfs:comment "The player of the role is the wife of scoping person's father and not the scoping person's natural mother.";
  dcterms:description "The player of the role is the wife of scoping person's father and not the scoping person's natural mother.".

cs:RoleCode\#NPRN rdfs:subClassOf cs:RoleCode\#PRN;
  rdfs:label "natural parent";
  dc:title "natural parent";
  rdfs:comment "natural parent";
  dcterms:description "natural parent".

cs:RoleCode\#PRNFOST rdfs:subClassOf cs:RoleCode\#PRN;
  rdfs:label "foster parent";
  dc:title "foster parent";
  rdfs:comment "The player of the role (parent) who is a state-certified caregiver responsible for the scoper (child) who has been placed in the parent's care. The placement of the child is usually arranged through the government or a social-service agency, and temporary.\r\n\n                        The state, via a jurisdiction recognized child protection agency, stands as in loco parentis to the child, making all legal decisions while the foster parent is responsible for the day-to-day care of the specified child.";
  dcterms:description "The player of the role (parent) who is a state-certified caregiver responsible for the scoper (child) who has been placed in the parent's care. The placement of the child is usually arranged through the government or a social-service agency, and temporary.\r\n\n                        The state, via a jurisdiction recognized child protection agency, stands as in loco parentis to the child, making all legal decisions while the foster parent is responsible for the day-to-day care of the specified child.".

cs:RoleCode\#STPPRN rdfs:subClassOf cs:RoleCode\#PRN;
  rdfs:label "step parent";
  dc:title "step parent";
  rdfs:comment "The player of the role is the spouse of the scoping person's parent and not the scoping person's natural parent.";
  dcterms:description "The player of the role is the spouse of the scoping person's parent and not the scoping person's natural parent.".

cs:RoleCode\#SIB rdfs:subClassOf cs:RoleCode\#FAMMEMB;
  rdfs:label "sibling";
  dc:title "sibling";
  rdfs:comment "The player of the role shares one or both parents in common with the scoping entity.";
  dcterms:description "The player of the role shares one or both parents in common with the scoping entity.".

cs:RoleCode\#BRO rdfs:subClassOf cs:RoleCode\#SIB;
  rdfs:label "brother";
  dc:title "brother";
  rdfs:comment "The player of the role is a male sharing one or both parents in common with the scoping entity.";
  dcterms:description "The player of the role is a male sharing one or both parents in common with the scoping entity.".

cs:RoleCode\#HBRO rdfs:subClassOf cs:RoleCode\#BRO;
  rdfs:label "half-brother";
  dc:title "half-brother";
  rdfs:comment "The player of the role is a male related to the scoping entity by sharing only one biological parent.";
  dcterms:description "The player of the role is a male related to the scoping entity by sharing only one biological parent.".

cs:RoleCode\#NBRO rdfs:subClassOf cs:RoleCode\#BRO;
  rdfs:label "natural brother";
  dc:title "natural brother";
  rdfs:comment "The player of the role is a male having the same biological parents as the scoping entity.";
  dcterms:description "The player of the role is a male having the same biological parents as the scoping entity.".

cs:RoleCode\#TWINBRO rdfs:subClassOf cs:RoleCode\#NBRO;
  rdfs:label "twin brother";
  dc:title "twin brother";
  rdfs:comment "The scoper was carried in the same womb as the male player and shares common biological parents.";
  dcterms:description "The scoper was carried in the same womb as the male player and shares common biological parents.".

cs:RoleCode\#FTWINBRO rdfs:subClassOf cs:RoleCode\#TWINBRO;
  rdfs:label "fraternal twin brother";
  dc:title "fraternal twin brother";
  rdfs:comment "The scoper was carried in the same womb as the male player and shares common biological parents but is the product of a distinct egg/sperm pair.";
  dcterms:description "The scoper was carried in the same womb as the male player and shares common biological parents but is the product of a distinct egg/sperm pair.".

cs:RoleCode\#ITWINBRO rdfs:subClassOf cs:RoleCode\#TWINBRO;
  rdfs:label "identical twin brother";
  dc:title "identical twin brother";
  rdfs:comment "The male scoper is an offspring of the same egg-sperm pair as the male player.";
  dcterms:description "The male scoper is an offspring of the same egg-sperm pair as the male player.".

cs:RoleCode\#STPBRO rdfs:subClassOf cs:RoleCode\#BRO;
  rdfs:label "stepbrother";
  dc:title "stepbrother";
  rdfs:comment "The player of the role is a son of the scoping person's stepparent.";
  dcterms:description "The player of the role is a son of the scoping person's stepparent.".

cs:RoleCode\#HSIB rdfs:subClassOf cs:RoleCode\#SIB;
  rdfs:label "half-sibling";
  dc:title "half-sibling";
  rdfs:comment "The player of the role is related to the scoping entity by sharing only one biological parent.";
  dcterms:description "The player of the role is related to the scoping entity by sharing only one biological parent.".

cs:RoleCode\#HSIS rdfs:subClassOf cs:RoleCode\#HSIB;
  rdfs:label "half-sister";
  dc:title "half-sister";
  rdfs:comment "The player of the role is a female related to the scoping entity by sharing only one biological parent.";
  dcterms:description "The player of the role is a female related to the scoping entity by sharing only one biological parent.".

cs:RoleCode\#NSIB rdfs:subClassOf cs:RoleCode\#SIB;
  rdfs:label "natural sibling";
  dc:title "natural sibling";
  rdfs:comment "The player of the role has both biological parents in common with the scoping entity.";
  dcterms:description "The player of the role has both biological parents in common with the scoping entity.".

cs:RoleCode\#NSIS rdfs:subClassOf cs:RoleCode\#NSIB;
  rdfs:label "natural sister";
  dc:title "natural sister";
  rdfs:comment "The player of the role is a female having the same biological parents as the scoping entity.";
  dcterms:description "The player of the role is a female having the same biological parents as the scoping entity.".

cs:RoleCode\#TWINSIS rdfs:subClassOf cs:RoleCode\#NSIS;
  rdfs:label "twin sister";
  dc:title "twin sister";
  rdfs:comment "The scoper was carried in the same womb as the female player and shares common biological parents.";
  dcterms:description "The scoper was carried in the same womb as the female player and shares common biological parents.".

cs:RoleCode\#FTWINSIS rdfs:subClassOf cs:RoleCode\#TWINSIS;
  rdfs:label "fraternal twin sister";
  dc:title "fraternal twin sister";
  rdfs:comment "The scoper was carried in the same womb as the female player and shares common biological parents but is the product of a distinct egg/sperm pair.";
  dcterms:description "The scoper was carried in the same womb as the female player and shares common biological parents but is the product of a distinct egg/sperm pair.".

cs:RoleCode\#ITWINSIS rdfs:subClassOf cs:RoleCode\#TWINSIS;
  rdfs:label "identical twin sister";
  dc:title "identical twin sister";
  rdfs:comment "The female scoper is an offspring of the same egg-sperm pair as the female player.";
  dcterms:description "The female scoper is an offspring of the same egg-sperm pair as the female player.".

cs:RoleCode\#TWIN rdfs:subClassOf cs:RoleCode\#NSIB;
  rdfs:label "twin";
  dc:title "twin";
  rdfs:comment "The scoper and player were carried in the same womb and shared common biological parents.";
  dcterms:description "The scoper and player were carried in the same womb and shared common biological parents.".

cs:RoleCode\#FTWIN rdfs:subClassOf cs:RoleCode\#TWIN;
  rdfs:label "fraternal twin";
  dc:title "fraternal twin";
  rdfs:comment "The scoper and player were carried in the same womb and share common biological parents but are the product of distinct egg/sperm pairs.";
  dcterms:description "The scoper and player were carried in the same womb and share common biological parents but are the product of distinct egg/sperm pairs.".

cs:RoleCode\#ITWIN rdfs:subClassOf cs:RoleCode\#TWIN;
  rdfs:label "identical twin";
  dc:title "identical twin";
  rdfs:comment "The scoper and player are offspring of the same egg-sperm pair.";
  dcterms:description "The scoper and player are offspring of the same egg-sperm pair.".

cs:RoleCode\#SIS rdfs:subClassOf cs:RoleCode\#SIB;
  rdfs:label "sister";
  dc:title "sister";
  rdfs:comment "The player of the role is a female sharing one or both parents in common with the scoping entity.";
  dcterms:description "The player of the role is a female sharing one or both parents in common with the scoping entity.".

cs:RoleCode\#STPSIS rdfs:subClassOf cs:RoleCode\#SIS;
  rdfs:label "stepsister";
  dc:title "stepsister";
  rdfs:comment "The player of the role is a daughter of the scoping person's stepparent.";
  dcterms:description "The player of the role is a daughter of the scoping person's stepparent.".

cs:RoleCode\#STPSIB rdfs:subClassOf cs:RoleCode\#SIB;
  rdfs:label "step sibling";
  dc:title "step sibling";
  rdfs:comment "The player of the role is a child of the scoping person's stepparent.";
  dcterms:description "The player of the role is a child of the scoping person's stepparent.".

cs:RoleCode\#SIGOTHR rdfs:subClassOf cs:RoleCode\#FAMMEMB;
  rdfs:label "significant other";
  dc:title "significant other";
  rdfs:comment "A person who is important to one's well being; especially a spouse or one in a similar relationship.  (The player is the one who is important)";
  dcterms:description "A person who is important to one's well being; especially a spouse or one in a similar relationship.  (The player is the one who is important)".

cs:RoleCode\#DOMPART rdfs:subClassOf cs:RoleCode\#SIGOTHR;
  rdfs:label "domestic partner";
  dc:title "domestic partner";
  rdfs:comment "The player of the role cohabits with the scoping person but is not the scoping person's spouse.";
  dcterms:description "The player of the role cohabits with the scoping person but is not the scoping person's spouse.".

cs:RoleCode\#FMRSPS rdfs:subClassOf cs:RoleCode\#SIGOTHR;
  rdfs:label "former spouse";
  dc:title "former spouse";
  rdfs:comment "Player of the role was previously joined to the scoping person in marriage and this marriage is now dissolved and inactive.\r\n\n                        \n                           Usage Note: This is significant to indicate as some jurisdictions have different legal requirements for former spouse to access the patient's record, from a general friend.";
  dcterms:description "Player of the role was previously joined to the scoping person in marriage and this marriage is now dissolved and inactive.\r\n\n                        \n                           Usage Note: This is significant to indicate as some jurisdictions have different legal requirements for former spouse to access the patient's record, from a general friend.".

cs:RoleCode\#SPS rdfs:subClassOf cs:RoleCode\#SIGOTHR;
  rdfs:label "spouse";
  dc:title "spouse";
  rdfs:comment "The player of the role is a marriage partner of the scoping person.";
  dcterms:description "The player of the role is a marriage partner of the scoping person.".

cs:RoleCode\#HUSB rdfs:subClassOf cs:RoleCode\#SPS;
  rdfs:label "husband";
  dc:title "husband";
  rdfs:comment "The player of the role is a man joined to a woman (scoping person) in marriage.";
  dcterms:description "The player of the role is a man joined to a woman (scoping person) in marriage.".

cs:RoleCode\#WIFE rdfs:subClassOf cs:RoleCode\#SPS;
  rdfs:label "wife";
  dc:title "wife";
  rdfs:comment "The player of the role is a woman joined to a man (scoping person) in marriage.";
  dcterms:description "The player of the role is a woman joined to a man (scoping person) in marriage.".

cs:RoleCode\#FRND rdfs:subClassOf cs:RoleCode\#%5fPersonalRelationshipRoleType;
  rdfs:label "unrelated friend";
  dc:title "unrelated friend";
  rdfs:comment "The player of the role is a person who is known, liked, and trusted by the scoping person.";
  dcterms:description "The player of the role is a person who is known, liked, and trusted by the scoping person.".

cs:RoleCode\#NBOR rdfs:subClassOf cs:RoleCode\#%5fPersonalRelationshipRoleType;
  rdfs:label "neighbor";
  dc:title "neighbor";
  rdfs:comment "The player of the role lives near or next to the 	scoping person.";
  dcterms:description "The player of the role lives near or next to the 	scoping person.".

cs:RoleCode\#ONESELF rdfs:subClassOf cs:RoleCode\#%5fPersonalRelationshipRoleType;
  rdfs:label "self";
  dc:title "self";
  rdfs:comment "The relationship that a person has with his or her self.";
  dcterms:description "The relationship that a person has with his or her self.".

cs:RoleCode\#ROOM rdfs:subClassOf cs:RoleCode\#%5fPersonalRelationshipRoleType;
  rdfs:label "Roommate";
  dc:title "Roommate";
  rdfs:comment "One who shares living quarters with the subject.";
  dcterms:description "One who shares living quarters with the subject.".

cs:RoleCode\#%5fPolicyOrProgramCoverageRoleType rdfs:subClassOf cs:RoleCode;
  rdfs:label "PolicyOrProgramCoverageRoleType";
  dc:title "PolicyOrProgramCoverageRoleType";
  rdfs:comment "Description: A role recognized through the eligibility of an identified party for benefits covered under an insurance policy or a program based on meeting eligibility criteria.\r\n\n                        Eligibility as a covered party may be conditioned on the party meeting criteria to qualify for coverage under a policy or program, which may be mandated by law.  These criteria may be: \r\n\n                        \n                           \n                              The sole basis for coverage, e.g., being differently abled may qualify a person for disability coverage\r\n\n                           \n                           \n                              May more fully qualify a covered party role e.g, being differently abled may qualify an adult child as a dependent\r\n\n                           \n                           \n                              May impact the level of coverage for a covered party under a policy or program, e.g., being differently abled may qualify a program eligible for additional benefits.\r\n\n                           \n                        \n                        \n                           Discussion:  The Abstract Value Set \"CoverageRoleType\", which was developed for use in the Canadian realm \"pre-coordinate\" coverage roles with other roles that a covered party must play in order to be eligible for coverage, e.g., \"handicapped dependent\".   These role.codes may only be used with COVPTY to avoid overlapping concepts that would result from using them to specify the specializations of COVPTY, e.g., the role.class DEPEN should not be used with the role.code family dependent because that relationship has overlapping concepts due to the role.code precoodination and is conveyed in FICO with the personal relationship role that has a PART role link to the covered party role.  For the same reasons, the role.class DEPEN should not be used with the role.code HANDIC (handicapped dependent); the role.code DIFFABLE (differently abled) should be used instead.\r\n\n                        In summary, the coded concepts in the Abstract Value Set \"CoveredPartyRoleType\" can be \"post-coordinated\" with the \"RoleClassCoveredParty\" Abstract Value Set.  Decoupling these concepts is intended to support an expansive range of covered party concepts and their semantic comparability.";
  dcterms:description "Description: A role recognized through the eligibility of an identified party for benefits covered under an insurance policy or a program based on meeting eligibility criteria.\r\n\n                        Eligibility as a covered party may be conditioned on the party meeting criteria to qualify for coverage under a policy or program, which may be mandated by law.  These criteria may be: \r\n\n                        \n                           \n                              The sole basis for coverage, e.g., being differently abled may qualify a person for disability coverage\r\n\n                           \n                           \n                              May more fully qualify a covered party role e.g, being differently abled may qualify an adult child as a dependent\r\n\n                           \n                           \n                              May impact the level of coverage for a covered party under a policy or program, e.g., being differently abled may qualify a program eligible for additional benefits.\r\n\n                           \n                        \n                        \n                           Discussion:  The Abstract Value Set \"CoverageRoleType\", which was developed for use in the Canadian realm \"pre-coordinate\" coverage roles with other roles that a covered party must play in order to be eligible for coverage, e.g., \"handicapped dependent\".   These role.codes may only be used with COVPTY to avoid overlapping concepts that would result from using them to specify the specializations of COVPTY, e.g., the role.class DEPEN should not be used with the role.code family dependent because that relationship has overlapping concepts due to the role.code precoodination and is conveyed in FICO with the personal relationship role that has a PART role link to the covered party role.  For the same reasons, the role.class DEPEN should not be used with the role.code HANDIC (handicapped dependent); the role.code DIFFABLE (differently abled) should be used instead.\r\n\n                        In summary, the coded concepts in the Abstract Value Set \"CoveredPartyRoleType\" can be \"post-coordinated\" with the \"RoleClassCoveredParty\" Abstract Value Set.  Decoupling these concepts is intended to support an expansive range of covered party concepts and their semantic comparability.".

cs:RoleCode\#%5fCoverageRoleType rdfs:subClassOf cs:RoleCode\#%5fPolicyOrProgramCoverageRoleType;
  rdfs:label "CoverageRoleType";
  dc:title "CoverageRoleType";
  rdfs:comment "Role recognized through the issuance of insurance coverage to an identified covered party who has this relationship with the policy holder such as the policy holder themselves (self), spouse, child, etc";
  dcterms:description "Role recognized through the issuance of insurance coverage to an identified covered party who has this relationship with the policy holder such as the policy holder themselves (self), spouse, child, etc".

cs:RoleCode\#FAMDEP rdfs:subClassOf cs:RoleCode\#%5fCoverageRoleType;
  rdfs:label "family dependent";
  dc:title "family dependent";
  rdfs:comment "The player of the role is dependent of the scoping entity.";
  dcterms:description "The player of the role is dependent of the scoping entity.".

cs:RoleCode\#HANDIC rdfs:subClassOf cs:RoleCode\#%5fCoverageRoleType;
  rdfs:label "handicapped dependent";
  dc:title "handicapped dependent";
  rdfs:comment "Covered party is a dependent of the policy holder with a physical or mental disability causing a disadvantage that makes independent achievement unusually difficult.";
  dcterms:description "Covered party is a dependent of the policy holder with a physical or mental disability causing a disadvantage that makes independent achievement unusually difficult.".

cs:RoleCode\#INJ rdfs:subClassOf cs:RoleCode\#%5fCoverageRoleType;
  rdfs:label "injured plaintiff";
  dc:title "injured plaintiff";
  rdfs:comment "Covered party is an injured party with a legal claim for compensation against a policy holder under an insurance policy.";
  dcterms:description "Covered party is an injured party with a legal claim for compensation against a policy holder under an insurance policy.".

cs:RoleCode\#SELF rdfs:subClassOf cs:RoleCode\#%5fCoverageRoleType;
  rdfs:label "self";
  dc:title "self";
  rdfs:comment "Covered party is the policy holder.  Also known as the subscriber.";
  dcterms:description "Covered party is the policy holder.  Also known as the subscriber.".

cs:RoleCode\#SPON rdfs:subClassOf cs:RoleCode\#%5fCoverageRoleType;
  rdfs:label "sponsored dependent";
  dc:title "sponsored dependent";
  rdfs:comment "Covered party is an individual that the policy holder has assumed responsibility for, such as foster child or legal ward.";
  dcterms:description "Covered party is an individual that the policy holder has assumed responsibility for, such as foster child or legal ward.".

cs:RoleCode\#STUD rdfs:subClassOf cs:RoleCode\#%5fCoverageRoleType;
  rdfs:label "student";
  dc:title "student";
  rdfs:comment "Covered party to an insurance policy has coverage through full-time or part-time attendance at a recognized educational institution as defined by a particular insurance policy.";
  dcterms:description "Covered party to an insurance policy has coverage through full-time or part-time attendance at a recognized educational institution as defined by a particular insurance policy.".

cs:RoleCode\#FSTUD rdfs:subClassOf cs:RoleCode\#STUD;
  rdfs:label "full-time student";
  dc:title "full-time student";
  rdfs:comment "Covered party to an insurance policy has coverage through full-time attendance at a recognized educational institution as defined by a particular insurance policy.";
  dcterms:description "Covered party to an insurance policy has coverage through full-time attendance at a recognized educational institution as defined by a particular insurance policy.".

cs:RoleCode\#PSTUD rdfs:subClassOf cs:RoleCode\#STUD;
  rdfs:label "part-time student";
  dc:title "part-time student";
  rdfs:comment "Covered party to an insurance policy has coverage through part-time attendance at a recognized educational institution as defined by a particular insurance policy.";
  dcterms:description "Covered party to an insurance policy has coverage through part-time attendance at a recognized educational institution as defined by a particular insurance policy.".

cs:RoleCode\#ADOPT rdfs:subClassOf cs:RoleCode\#%5fCoverageRoleType;
  rdfs:label "adopted child";
  dc:title "adopted child";
  rdfs:comment "A child taken into one's family through legal means and raised as one's own child.";
  dcterms:description "A child taken into one's family through legal means and raised as one's own child.".

cs:RoleCode\#GCHILD rdfs:subClassOf cs:RoleCode\#%5fCoverageRoleType;
  rdfs:label "grandchild";
  dc:title "grandchild";
  rdfs:comment "A child of one's son or daughter.";
  dcterms:description "A child of one's son or daughter.".

cs:RoleCode\#GPARNT rdfs:subClassOf cs:RoleCode\#%5fCoverageRoleType;
  rdfs:label "grandparent";
  dc:title "grandparent";
  rdfs:comment "parent of a parent of the subject.";
  dcterms:description "parent of a parent of the subject.".

cs:RoleCode\#NAT rdfs:subClassOf cs:RoleCode\#%5fCoverageRoleType;
  rdfs:label "natural child";
  dc:title "natural child";
  rdfs:comment "A child as determined by birth.";
  dcterms:description "A child as determined by birth.".

cs:RoleCode\#NIENE rdfs:subClassOf cs:RoleCode\#%5fCoverageRoleType;
  rdfs:label "niece/nephew";
  dc:title "niece/nephew";
  rdfs:comment "A child of one's brother or sister or of the brother or sister of one's spouse.";
  dcterms:description "A child of one's brother or sister or of the brother or sister of one's spouse.".

cs:RoleCode\#PARNT rdfs:subClassOf cs:RoleCode\#%5fCoverageRoleType;
  rdfs:label "parent";
  dc:title "parent";
  rdfs:comment "One that begets or brings forth offspring or a person who brings up and cares for for another (Webster's Collegiate Dictionary)";
  dcterms:description "One that begets or brings forth offspring or a person who brings up and cares for for another (Webster's Collegiate Dictionary)".

cs:RoleCode\#SPSE rdfs:subClassOf cs:RoleCode\#%5fCoverageRoleType;
  rdfs:label "spouse";
  dc:title "spouse";
  rdfs:comment "A marriage partner; a husband or wife.";
  dcterms:description "A marriage partner; a husband or wife.".

cs:RoleCode\#STEP rdfs:subClassOf cs:RoleCode\#%5fCoverageRoleType;
  rdfs:label "step child";
  dc:title "step child";
  rdfs:comment "A child receiving parental care and nurture from a person who is related to them through marriage to their parent.";
  dcterms:description "A child receiving parental care and nurture from a person who is related to them through marriage to their parent.".

cs:RoleCode\#%5fCoveredPartyRoleType rdfs:subClassOf cs:RoleCode\#%5fPolicyOrProgramCoverageRoleType;
  rdfs:label "covered party role type";
  dc:title "covered party role type";
  rdfs:comment "A role recognized through the eligibility of an identified living subject for benefits covered under an insurance policy or a program.  Eligibility as a covered party may be conditioned on a relationship with (1) the policy holder such as the policy holder who is covered as an individual under a poliy or as a party sponsored for coverage by the policy holder.\r\n\n                        \n                           Example:An employee as a subscriber; or (2) on being scoped another covered party such as the subscriber, as in the case of a dependent. \r\n\n                        \n                           Discussion:  The Abstract Value Set \"CoverageRoleType\", which was developed for use in the Canadian realm \"pre-coordinate\" coverage roles with other roles that a covered party must play in order to be eligible for coverage, e.g., \"handicapped dependent\".  Other codes in the Abstract Value Set CoveredPartyRoleType domain can be \"post-coordinated\" with the EligiblePartyRoleType codes to denote comparable concepts.  Decoupling the concepts is intended to support a wider range of concepts and semantic comparability of coded concepts.";
  dcterms:description "A role recognized through the eligibility of an identified living subject for benefits covered under an insurance policy or a program.  Eligibility as a covered party may be conditioned on a relationship with (1) the policy holder such as the policy holder who is covered as an individual under a poliy or as a party sponsored for coverage by the policy holder.\r\n\n                        \n                           Example:An employee as a subscriber; or (2) on being scoped another covered party such as the subscriber, as in the case of a dependent. \r\n\n                        \n                           Discussion:  The Abstract Value Set \"CoverageRoleType\", which was developed for use in the Canadian realm \"pre-coordinate\" coverage roles with other roles that a covered party must play in order to be eligible for coverage, e.g., \"handicapped dependent\".  Other codes in the Abstract Value Set CoveredPartyRoleType domain can be \"post-coordinated\" with the EligiblePartyRoleType codes to denote comparable concepts.  Decoupling the concepts is intended to support a wider range of concepts and semantic comparability of coded concepts.".

cs:RoleCode\#%5fClaimantCoveredPartyRoleType rdfs:subClassOf cs:RoleCode\#%5fCoveredPartyRoleType;
  rdfs:label "ClaimantCoveredPartyRoleType";
  dc:title "ClaimantCoveredPartyRoleType";
  rdfs:comment "DescriptionA role recognized through the eligibility of a party play a claimant for benefits covered or provided under an insurance policy.";
  dcterms:description "DescriptionA role recognized through the eligibility of a party play a claimant for benefits covered or provided under an insurance policy.".

cs:RoleCode\#CRIMEVIC rdfs:subClassOf cs:RoleCode\#%5fClaimantCoveredPartyRoleType;
  rdfs:label "crime victim";
  dc:title "crime victim";
  rdfs:comment "Description: A person playing the role of program eligible under a program based on allegations of being the victim of a crime.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is \"program eligible\" and the person's status as a crime victim meets jurisdictional or program criteria.";
  dcterms:description "Description: A person playing the role of program eligible under a program based on allegations of being the victim of a crime.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is \"program eligible\" and the person's status as a crime victim meets jurisdictional or program criteria.".

cs:RoleCode\#INJWKR rdfs:subClassOf cs:RoleCode\#%5fClaimantCoveredPartyRoleType;
  rdfs:label "injured worker";
  dc:title "injured worker";
  rdfs:comment "Description: A person playing the role of program eligible under a workers compensation program based on the filing of work-related injury claim.\r\n\n                        \n                           Discussion:  This CoveredPartyRoleType.code is used when the CoveredPartyRole class code is either \"program eligible\", a \"named insured\", and \"individual insured\",  or \"dependent\", and the person's status as differently abled or \"handicapped\" meets jurisdictional, policy, or program criteria.";
  dcterms:description "Description: A person playing the role of program eligible under a workers compensation program based on the filing of work-related injury claim.\r\n\n                        \n                           Discussion:  This CoveredPartyRoleType.code is used when the CoveredPartyRole class code is either \"program eligible\", a \"named insured\", and \"individual insured\",  or \"dependent\", and the person's status as differently abled or \"handicapped\" meets jurisdictional, policy, or program criteria.".

cs:RoleCode\#%5fDependentCoveredPartyRoleType rdfs:subClassOf cs:RoleCode\#%5fCoveredPartyRoleType;
  rdfs:label "DependentCoveredPartyRoleType";
  dc:title "DependentCoveredPartyRoleType";
  rdfs:comment "Description: A role recognized through the eligibility of a party to play a dependent for benefits covered or provided under a health insurance policy because of an association with the subscriber that is recognized by the policy underwriter.";
  dcterms:description "Description: A role recognized through the eligibility of a party to play a dependent for benefits covered or provided under a health insurance policy because of an association with the subscriber that is recognized by the policy underwriter.".

cs:RoleCode\#COCBEN rdfs:subClassOf cs:RoleCode\#%5fDependentCoveredPartyRoleType;
  rdfs:label "continuity of coverage beneficiary";
  dc:title "continuity of coverage beneficiary";
  rdfs:comment "Description: A person playing the role of an individual insured with continuity of coverage under a policy which is being terminated based on loss of original status that was the basis for coverage.  Criteria for qualifying for continuity of coverage may be set by law.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\" or \"subscriber\" and the person's status as a continuity of coverage beneficiary meets jurisdictional or policy criteria.";
  dcterms:description "Description: A person playing the role of an individual insured with continuity of coverage under a policy which is being terminated based on loss of original status that was the basis for coverage.  Criteria for qualifying for continuity of coverage may be set by law.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\" or \"subscriber\" and the person's status as a continuity of coverage beneficiary meets jurisdictional or policy criteria.".

cs:RoleCode\#DIFFABL rdfs:subClassOf cs:RoleCode\#%5fDependentCoveredPartyRoleType;
  rdfs:label "differently abled";
  dc:title "differently abled";
  rdfs:comment "Description: A person playing the role of program eligible under a program based on meeting criteria for health or functional limitation set by law or by the program.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\", \"named insured\", \"individual insured\", or \"dependent\", and the person's status as differently abled meets jurisdictional, policy, or program criteria.";
  dcterms:description "Description: A person playing the role of program eligible under a program based on meeting criteria for health or functional limitation set by law or by the program.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\", \"named insured\", \"individual insured\", or \"dependent\", and the person's status as differently abled meets jurisdictional, policy, or program criteria.".

cs:RoleCode\#WARD rdfs:subClassOf cs:RoleCode\#%5fDependentCoveredPartyRoleType;
  rdfs:label "ward";
  dc:title "ward";
  rdfs:comment "Description: A person, who is a minor or is deemed incompetent, who plays the role of a program eligible where eligibility for coverage is based on meeting program eligibility criteria for status as a ward of a court or jurisdiction.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is a \"claimant\", \"program eligible\", a \"named insured\", an \"individual Insured\" or a \"dependent\", and the person's status as a ward meets program or policy criteria. In the case of a ward covered under a program providing financial or health benefits, a governmental agency may take temporary custody of a minor or incompetent for his/her protection and care, e.g., if the ward is suffering from neglect or abuse, or has been in trouble with the law.";
  dcterms:description "Description: A person, who is a minor or is deemed incompetent, who plays the role of a program eligible where eligibility for coverage is based on meeting program eligibility criteria for status as a ward of a court or jurisdiction.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is a \"claimant\", \"program eligible\", a \"named insured\", an \"individual Insured\" or a \"dependent\", and the person's status as a ward meets program or policy criteria. In the case of a ward covered under a program providing financial or health benefits, a governmental agency may take temporary custody of a minor or incompetent for his/her protection and care, e.g., if the ward is suffering from neglect or abuse, or has been in trouble with the law.".

cs:RoleCode\#%5fIndividualInsuredPartyRoleType rdfs:subClassOf cs:RoleCode\#%5fCoveredPartyRoleType;
  rdfs:label "IndividualInsuredPartyRoleType";
  dc:title "IndividualInsuredPartyRoleType";
  rdfs:comment "A role recognized through the eligibility of a party to play an individual insured for benefits covered or provided under an insurance policy where the party is also the policy holder.";
  dcterms:description "A role recognized through the eligibility of a party to play an individual insured for benefits covered or provided under an insurance policy where the party is also the policy holder.".

cs:RoleCode\#RETIREE rdfs:subClassOf cs:RoleCode\#%5fIndividualInsuredPartyRoleType;
  rdfs:label "retiree";
  dc:title "retiree";
  rdfs:comment "Description: A person playing the role of an individual insured under a policy based on meeting criteria for the employment status of retired set by law or the policy.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\" or \"subscriber\" and the person's status as a retiree meets jurisdictional or policy criteria.";
  dcterms:description "Description: A person playing the role of an individual insured under a policy based on meeting criteria for the employment status of retired set by law or the policy.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\" or \"subscriber\" and the person's status as a retiree meets jurisdictional or policy criteria.".

cs:RoleCode\#%5fProgramEligiblePartyRoleType rdfs:subClassOf cs:RoleCode\#%5fCoveredPartyRoleType;
  rdfs:label "ProgramEligiblePartyRoleType";
  dc:title "ProgramEligiblePartyRoleType";
  rdfs:comment "Description:A role recognized through the eligibility of a party to play a program eligible for benefits covered or provided under a program.";
  dcterms:description "Description:A role recognized through the eligibility of a party to play a program eligible for benefits covered or provided under a program.".

cs:RoleCode\#INDIG rdfs:subClassOf cs:RoleCode\#%5fProgramEligiblePartyRoleType;
  rdfs:label "member of an indigenous people";
  dc:title "member of an indigenous people";
  rdfs:comment "Description: A person playing the role of program eligible under a program based on aboriginal ancestry or as a member of an aboriginal community.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is \"program eligible\" and the person's status as a member of an indigenous people meets jurisdictional or program criteria.";
  dcterms:description "Description: A person playing the role of program eligible under a program based on aboriginal ancestry or as a member of an aboriginal community.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is \"program eligible\" and the person's status as a member of an indigenous people meets jurisdictional or program criteria.".

cs:RoleCode\#MIL rdfs:subClassOf cs:RoleCode\#%5fProgramEligiblePartyRoleType;
  rdfs:label "military";
  dc:title "military";
  rdfs:comment "Definition: A person playing the role of program eligible under a program based on military status.\r\n\n                        \n                           Discussion:  This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\" or \"subscriber\" and the person's status as a member of the military meets jurisdictional or program criteria";
  dcterms:description "Definition: A person playing the role of program eligible under a program based on military status.\r\n\n                        \n                           Discussion:  This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\" or \"subscriber\" and the person's status as a member of the military meets jurisdictional or program criteria".

cs:RoleCode\#ACTMIL rdfs:subClassOf cs:RoleCode\#MIL;
  rdfs:label "active duty military";
  dc:title "active duty military";
  rdfs:comment "Description: A person playing the role of program eligible under a program based on active military status.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\" or \"subscriber\" and the persons status as active duty military meets jurisdictional or program criteria.";
  dcterms:description "Description: A person playing the role of program eligible under a program based on active military status.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\" or \"subscriber\" and the persons status as active duty military meets jurisdictional or program criteria.".

cs:RoleCode\#RETMIL rdfs:subClassOf cs:RoleCode\#MIL;
  rdfs:label "retired military";
  dc:title "retired military";
  rdfs:comment "Description: A person playing the role of program eligible under a program based on retired military status.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\" or \"subscriber\" and the persons status as retired military meets jurisdictional or program criteria.";
  dcterms:description "Description: A person playing the role of program eligible under a program based on retired military status.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\" or \"subscriber\" and the persons status as retired military meets jurisdictional or program criteria.".

cs:RoleCode\#VET rdfs:subClassOf cs:RoleCode\#MIL;
  rdfs:label "veteran";
  dc:title "veteran";
  rdfs:comment "Description: A person playing the role of program eligible under a program based on status as a military veteran.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\" or \"subscriber\" and the persons status as a veteran meets jurisdictional or program criteria.";
  dcterms:description "Description: A person playing the role of program eligible under a program based on status as a military veteran.\r\n\n                        \n                           Discussion: This CoveredPartyRoleType.code is typically used when the CoveredPartyRole class code is either \"program eligible\" or \"subscriber\" and the persons status as a veteran meets jurisdictional or program criteria.".

cs:RoleCode\#%5fSubscriberCoveredPartyRoleType rdfs:subClassOf cs:RoleCode\#%5fCoveredPartyRoleType;
  rdfs:label "SubscriberCoveredPartyRoleType";
  dc:title "SubscriberCoveredPartyRoleType";
  rdfs:comment "Description: A role recognized through the eligibility of a party to play a subscriber for benefits covered or provided under a health insurance policy.";
  dcterms:description "Description: A role recognized through the eligibility of a party to play a subscriber for benefits covered or provided under a health insurance policy.".

cs:RoleCode\#%5fResearchSubjectRoleBasis rdfs:subClassOf cs:RoleCode;
  rdfs:label "ResearchSubjectRoleBasis";
  dc:title "ResearchSubjectRoleBasis";
  rdfs:comment "Specifies the administrative functionality within a formal experimental design for which the ResearchSubject role was established.  Examples: screening - role is used for pre-enrollment evaluation portion of the design; enrolled - role is used for subjects admitted to the active treatment portion of the design.";
  dcterms:description "Specifies the administrative functionality within a formal experimental design for which the ResearchSubject role was established.  Examples: screening - role is used for pre-enrollment evaluation portion of the design; enrolled - role is used for subjects admitted to the active treatment portion of the design.".

cs:RoleCode\#ERL rdfs:subClassOf cs:RoleCode\#%5fResearchSubjectRoleBasis;
  rdfs:label "enrollment";
  dc:title "enrollment";
  rdfs:comment "Definition:The specific role being played by a research subject participating in the active treatment or primary data collection portion of a research study.";
  dcterms:description "Definition:The specific role being played by a research subject participating in the active treatment or primary data collection portion of a research study.".

cs:RoleCode\#SCN rdfs:subClassOf cs:RoleCode\#%5fResearchSubjectRoleBasis;
  rdfs:label "screening";
  dc:title "screening";
  rdfs:comment "Definition:The specific role being played by a research subject participating in the pre-enrollment evaluation portion of  a research study.";
  dcterms:description "Definition:The specific role being played by a research subject participating in the pre-enrollment evaluation portion of  a research study.".

cs:RoleCode\#%5fServiceDeliveryLocationRoleType rdfs:subClassOf cs:RoleCode;
  rdfs:label "ServiceDeliveryLocationRoleType";
  dc:title "ServiceDeliveryLocationRoleType";
  rdfs:comment "A role of a place that further classifies the setting (e.g., accident site, road side, work site, community location) in which services are delivered.";
  dcterms:description "A role of a place that further classifies the setting (e.g., accident site, road side, work site, community location) in which services are delivered.".

cs:RoleCode\#%5fDedicatedServiceDeliveryLocationRoleType rdfs:subClassOf cs:RoleCode\#%5fServiceDeliveryLocationRoleType;
  rdfs:label "DedicatedServiceDeliveryLocationRoleType";
  dc:title "DedicatedServiceDeliveryLocationRoleType";
  rdfs:comment "A role of a place that further classifies a setting that is intended to house the provision of services.";
  dcterms:description "A role of a place that further classifies a setting that is intended to house the provision of services.".

cs:RoleCode\#%5fDedicatedClinicalLocationRoleType rdfs:subClassOf cs:RoleCode\#%5fDedicatedServiceDeliveryLocationRoleType;
  rdfs:label "DedicatedClinicalLocationRoleType";
  dc:title "DedicatedClinicalLocationRoleType";
  rdfs:comment "A role of a place that further classifies the clinical setting (e.g., cardiology clinic, primary care clinic, rehabilitation hospital, skilled nursing facility) in which care is delivered during an encounter.";
  dcterms:description "A role of a place that further classifies the clinical setting (e.g., cardiology clinic, primary care clinic, rehabilitation hospital, skilled nursing facility) in which care is delivered during an encounter.".

cs:RoleCode\#DX rdfs:subClassOf cs:RoleCode\#%5fDedicatedClinicalLocationRoleType;
  rdfs:label "Diagnostics or therapeutics unit";
  dc:title "Diagnostics or therapeutics unit";
  rdfs:comment "A practice setting where diagnostic procedures or therapeutic interventions are performed";
  dcterms:description "A practice setting where diagnostic procedures or therapeutic interventions are performed".

cs:RoleCode\#CVDX rdfs:subClassOf cs:RoleCode\#DX;
  rdfs:label "Cardiovascular diagnostics or therapeutics unit";
  dc:title "Cardiovascular diagnostics or therapeutics unit";
  rdfs:comment "A practice setting where cardiovascular diagnostic procedures or therapeutic interventions are performed (e.g., cardiac catheterization lab, echocardiography suite)";
  dcterms:description "A practice setting where cardiovascular diagnostic procedures or therapeutic interventions are performed (e.g., cardiac catheterization lab, echocardiography suite)".

cs:RoleCode\#CATH rdfs:subClassOf cs:RoleCode\#CVDX;
  rdfs:label "Cardiac catheterization lab";
  dc:title "Cardiac catheterization lab";
  rdfs:comment "Cardiac catheterization lab";
  dcterms:description "Cardiac catheterization lab".

cs:RoleCode\#ECHO rdfs:subClassOf cs:RoleCode\#CVDX;
  rdfs:label "Echocardiography lab";
  dc:title "Echocardiography lab";
  rdfs:comment "Echocardiography lab";
  dcterms:description "Echocardiography lab".

cs:RoleCode\#GIDX rdfs:subClassOf cs:RoleCode\#DX;
  rdfs:label "Gastroenterology diagnostics or therapeutics lab";
  dc:title "Gastroenterology diagnostics or therapeutics lab";
  rdfs:comment "A practice setting where GI procedures (such as endoscopies) are performed";
  dcterms:description "A practice setting where GI procedures (such as endoscopies) are performed".

cs:RoleCode\#ENDOS rdfs:subClassOf cs:RoleCode\#GIDX;
  rdfs:label "Endoscopy lab";
  dc:title "Endoscopy lab";
  rdfs:comment "(X12N 261QD0000N)";
  dcterms:description "(X12N 261QD0000N)".

cs:RoleCode\#RADDX rdfs:subClassOf cs:RoleCode\#DX;
  rdfs:label "Radiology diagnostics or therapeutics unit";
  dc:title "Radiology diagnostics or therapeutics unit";
  rdfs:comment "A practice setting where radiology services (diagnostic or therapeutic) are provided            (X12N 261QR0200N)";
  dcterms:description "A practice setting where radiology services (diagnostic or therapeutic) are provided            (X12N 261QR0200N)".

cs:RoleCode\#RADO rdfs:subClassOf cs:RoleCode\#RADDX;
  rdfs:label "Radiation oncology unit";
  dc:title "Radiation oncology unit";
  rdfs:comment "(X12N 261QX0203N)";
  dcterms:description "(X12N 261QX0203N)".

cs:RoleCode\#RNEU rdfs:subClassOf cs:RoleCode\#RADDX;
  rdfs:label "Neuroradiology unit";
  dc:title "Neuroradiology unit";
  rdfs:comment "Neuroradiology unit";
  dcterms:description "Neuroradiology unit".

cs:RoleCode\#HOSP rdfs:subClassOf cs:RoleCode\#%5fDedicatedClinicalLocationRoleType;
  rdfs:label "Hospital";
  dc:title "Hospital";
  rdfs:comment "An acute care institution that provides medical, surgical, or psychiatric care and treatment for the sick or the injured.";
  dcterms:description "An acute care institution that provides medical, surgical, or psychiatric care and treatment for the sick or the injured.".

cs:RoleCode\#CHR rdfs:subClassOf cs:RoleCode\#HOSP;
  rdfs:label "Chronic Care Facility";
  dc:title "Chronic Care Facility";
  rdfs:comment "(1) A hospital including a physical plant and personnel that provides multidisciplinary diagnosis and treatment for diseases that have one or more of the following characteristics: is permanent; leaves residual disability; is caused by nonreversible pathological alteration; requires special training of the patient for rehabilitation; and/or may be expected to require a long period of supervision or care. In addition, patients require the safety, security, and shelter of these specialized inpatient or partial hospitalization settings. (2) A hospital that provides medical and skilled nursing services to patients with long-term illnesses who are not in an acute phase but who require an intensity of services not available in nursing homes";
  dcterms:description "(1) A hospital including a physical plant and personnel that provides multidisciplinary diagnosis and treatment for diseases that have one or more of the following characteristics: is permanent; leaves residual disability; is caused by nonreversible pathological alteration; requires special training of the patient for rehabilitation; and/or may be expected to require a long period of supervision or care. In addition, patients require the safety, security, and shelter of these specialized inpatient or partial hospitalization settings. (2) A hospital that provides medical and skilled nursing services to patients with long-term illnesses who are not in an acute phase but who require an intensity of services not available in nursing homes".

cs:RoleCode\#GACH rdfs:subClassOf cs:RoleCode\#HOSP;
  rdfs:label "Hospitals; General Acute Care Hospital";
  dc:title "Hospitals; General Acute Care Hospital";
  rdfs:comment "(X12N 282N00000N)";
  dcterms:description "(X12N 282N00000N)".

cs:RoleCode\#MHSP rdfs:subClassOf cs:RoleCode\#HOSP;
  rdfs:label "Military Hospital";
  dc:title "Military Hospital";
  rdfs:comment "A health care facility operated by the Department of Defense or other military operation.";
  dcterms:description "A health care facility operated by the Department of Defense or other military operation.".

cs:RoleCode\#PSYCHF rdfs:subClassOf cs:RoleCode\#HOSP;
  rdfs:label "Psychatric Care Facility";
  dc:title "Psychatric Care Facility";
  rdfs:comment "Healthcare facility that cares for patients with psychiatric illness(s).";
  dcterms:description "Healthcare facility that cares for patients with psychiatric illness(s).".

cs:RoleCode\#RH rdfs:subClassOf cs:RoleCode\#HOSP;
  rdfs:label "Rehabilitation hospital";
  dc:title "Rehabilitation hospital";
  rdfs:comment "(X12N 283X00000N)";
  dcterms:description "(X12N 283X00000N)".

cs:RoleCode\#RHAT rdfs:subClassOf cs:RoleCode\#RH;
  rdfs:label "addiction treatment center";
  dc:title "addiction treatment center";
  rdfs:comment "Description: A location that plays the role of delivering services which may include life training and/or social support to people with addictions.";
  dcterms:description "Description: A location that plays the role of delivering services which may include life training and/or social support to people with addictions.".

cs:RoleCode\#RHII rdfs:subClassOf cs:RoleCode\#RH;
  rdfs:label "intellectual impairment center";
  dc:title "intellectual impairment center";
  rdfs:comment "Description: A location that plays the role of delivering services which may include adaptation, rehabilitation and social integration services for people with intellectual and/or pervasive development disorders such as autism or severe behaviour disorder.";
  dcterms:description "Description: A location that plays the role of delivering services which may include adaptation, rehabilitation and social integration services for people with intellectual and/or pervasive development disorders such as autism or severe behaviour disorder.".

cs:RoleCode\#RHMAD rdfs:subClassOf cs:RoleCode\#RH;
  rdfs:label "parents with adjustment difficulties center";
  dc:title "parents with adjustment difficulties center";
  rdfs:comment "Description: A location that plays the role of delivering services which may social support services for adolescents who are pregnant or have child and are experiencing adaptation issues/difficulties in their current or eventual parenting role.";
  dcterms:description "Description: A location that plays the role of delivering services which may social support services for adolescents who are pregnant or have child and are experiencing adaptation issues/difficulties in their current or eventual parenting role.".

cs:RoleCode\#RHPI rdfs:subClassOf cs:RoleCode\#RH;
  rdfs:label "physical impairment center";
  dc:title "physical impairment center";
  rdfs:comment "Description: A location that plays the role of delivering services which may include adaptation, rehabilitation and social integration services for people with physical impairments.";
  dcterms:description "Description: A location that plays the role of delivering services which may include adaptation, rehabilitation and social integration services for people with physical impairments.".

cs:RoleCode\#RHPIH rdfs:subClassOf cs:RoleCode\#RHPI;
  rdfs:label "physical impairment - hearing center";
  dc:title "physical impairment - hearing center";
  rdfs:comment "Description: A location that plays the role of delivering services for people with hearing impairments.";
  dcterms:description "Description: A location that plays the role of delivering services for people with hearing impairments.".

cs:RoleCode\#RHPIMS rdfs:subClassOf cs:RoleCode\#RHPI;
  rdfs:label "physical impairment - motor skills center";
  dc:title "physical impairment - motor skills center";
  rdfs:comment "Description: A location that plays the role of delivering services for people with motor skill impairments.";
  dcterms:description "Description: A location that plays the role of delivering services for people with motor skill impairments.".

cs:RoleCode\#RHPIVS rdfs:subClassOf cs:RoleCode\#RHPI;
  rdfs:label "physical impairment - visual skills center";
  dc:title "physical impairment - visual skills center";
  rdfs:comment "Description: A location that plays the role of delivering services for people with visual skill impairments.";
  dcterms:description "Description: A location that plays the role of delivering services for people with visual skill impairments.".

cs:RoleCode\#RHYAD rdfs:subClassOf cs:RoleCode\#RH;
  rdfs:label "youths with adjustment difficulties center";
  dc:title "youths with adjustment difficulties center";
  rdfs:comment "Description: A location that plays the role of delivering services which may include life training and/or social support services for the adaption, rehabilitation and social integration of youths with adjustment difficulties.";
  dcterms:description "Description: A location that plays the role of delivering services which may include life training and/or social support services for the adaption, rehabilitation and social integration of youths with adjustment difficulties.".

cs:RoleCode\#HU rdfs:subClassOf cs:RoleCode\#%5fDedicatedClinicalLocationRoleType;
  rdfs:label "Hospital unit";
  dc:title "Hospital unit";
  rdfs:comment "Hospital unit";
  dcterms:description "Hospital unit".

cs:RoleCode\#BMTU rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "Bone marrow transplant unit";
  dc:title "Bone marrow transplant unit";
  rdfs:comment "Bone marrow transplant unit";
  dcterms:description "Bone marrow transplant unit".

cs:RoleCode\#CCU rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "Coronary care unit";
  dc:title "Coronary care unit";
  rdfs:comment "Coronary care unit";
  dcterms:description "Coronary care unit".

cs:RoleCode\#CHEST rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "Chest unit";
  dc:title "Chest unit";
  rdfs:comment "A specialty unit in hospital that focuses on chronic respirator patients and pulmonary failure";
  dcterms:description "A specialty unit in hospital that focuses on chronic respirator patients and pulmonary failure".

cs:RoleCode\#EPIL rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "Epilepsy unit";
  dc:title "Epilepsy unit";
  rdfs:comment "Epilepsy unit";
  dcterms:description "Epilepsy unit".

cs:RoleCode\#ER rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "Emergency room";
  dc:title "Emergency room";
  rdfs:comment "The section of a health care facility for providing rapid treatment to victims of sudden illness or trauma.";
  dcterms:description "The section of a health care facility for providing rapid treatment to victims of sudden illness or trauma.".

cs:RoleCode\#ETU rdfs:subClassOf cs:RoleCode\#ER;
  rdfs:label "Emergency trauma unit";
  dc:title "Emergency trauma unit";
  rdfs:comment "Emergency trauma unit";
  dcterms:description "Emergency trauma unit".

cs:RoleCode\#HD rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "Hemodialysis unit";
  dc:title "Hemodialysis unit";
  rdfs:comment "Hemodialysis unit";
  dcterms:description "Hemodialysis unit".

cs:RoleCode\#HLAB rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "hospital laboratory";
  dc:title "hospital laboratory";
  rdfs:comment "Description: A location that plays the role of delivering services which may include tests done based on clinical specimens to get health information about a patient as pertaining to the diagnosis, treatment and prevention of disease.  Hospital laboratories may be further divided into specialized units such as Anatomic Pathology, Microbiology, and Biochemistry.";
  dcterms:description "Description: A location that plays the role of delivering services which may include tests done based on clinical specimens to get health information about a patient as pertaining to the diagnosis, treatment and prevention of disease.  Hospital laboratories may be further divided into specialized units such as Anatomic Pathology, Microbiology, and Biochemistry.".

cs:RoleCode\#INLAB rdfs:subClassOf cs:RoleCode\#HLAB;
  rdfs:label "inpatient laboratory";
  dc:title "inpatient laboratory";
  rdfs:comment "Description: A location that plays the role of delivering services which may include tests are done on clinical specimens to get health information about a patient pertaining to the diagnosis, treatment, and prevention of disease for a hospital visit longer than one day.";
  dcterms:description "Description: A location that plays the role of delivering services which may include tests are done on clinical specimens to get health information about a patient pertaining to the diagnosis, treatment, and prevention of disease for a hospital visit longer than one day.".

cs:RoleCode\#OUTLAB rdfs:subClassOf cs:RoleCode\#HLAB;
  rdfs:label "outpatient laboratory";
  dc:title "outpatient laboratory";
  rdfs:comment "Description: A location that plays the role of delivering services which may include tests are done on clinical specimens to get health information about a patient pertaining to the diagnosis, treatment, and prevention of disease for same day visits.";
  dcterms:description "Description: A location that plays the role of delivering services which may include tests are done on clinical specimens to get health information about a patient pertaining to the diagnosis, treatment, and prevention of disease for same day visits.".

cs:RoleCode\#HRAD rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "radiology unit";
  dc:title "radiology unit";
  rdfs:comment "Description: A location that plays the role of delivering services which may include the branch of medicine that uses ionizing and non-ionizing radiation to diagnose and treat diseases.  The radiology unit may be further divided into subspecialties such as Imaging, Cardiovascular, Thoracic, and Ultrasound.";
  dcterms:description "Description: A location that plays the role of delivering services which may include the branch of medicine that uses ionizing and non-ionizing radiation to diagnose and treat diseases.  The radiology unit may be further divided into subspecialties such as Imaging, Cardiovascular, Thoracic, and Ultrasound.".

cs:RoleCode\#HUSCS rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "specimen collection site";
  dc:title "specimen collection site";
  rdfs:comment "Description: A location that plays the role of delivering services which may include collecting specimens and/or samples from patients for laboratory testing purposes, but does not perform any tests or analysis functions.";
  dcterms:description "Description: A location that plays the role of delivering services which may include collecting specimens and/or samples from patients for laboratory testing purposes, but does not perform any tests or analysis functions.".

cs:RoleCode\#ICU rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "Intensive care unit";
  dc:title "Intensive care unit";
  rdfs:comment "Intensive care unit";
  dcterms:description "Intensive care unit".

cs:RoleCode\#PEDICU rdfs:subClassOf cs:RoleCode\#ICU;
  rdfs:label "Pediatric intensive care unit";
  dc:title "Pediatric intensive care unit";
  rdfs:comment "Pediatric intensive care unit";
  dcterms:description "Pediatric intensive care unit".

cs:RoleCode\#PEDNICU rdfs:subClassOf cs:RoleCode\#PEDICU;
  rdfs:label "Pediatric neonatal intensive care unit";
  dc:title "Pediatric neonatal intensive care unit";
  rdfs:comment "Pediatric neonatal intensive care unit";
  dcterms:description "Pediatric neonatal intensive care unit".

cs:RoleCode\#INPHARM rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "inpatient pharmacy";
  dc:title "inpatient pharmacy";
  rdfs:comment "Description: A location that plays the role of delivering services which may include providing judicious, safe, efficacious, appropriate and cost effective use of medicines for treatment of patients for visits longer than one day. The distinction between inpatient pharmacies and retail (or outpatient) pharmacies is that they are part of a patient's continuity of care while staying in the hospital.";
  dcterms:description "Description: A location that plays the role of delivering services which may include providing judicious, safe, efficacious, appropriate and cost effective use of medicines for treatment of patients for visits longer than one day. The distinction between inpatient pharmacies and retail (or outpatient) pharmacies is that they are part of a patient's continuity of care while staying in the hospital.".

cs:RoleCode\#MBL rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "medical laboratory";
  dc:title "medical laboratory";
  rdfs:comment "Description: A location that plays the role of delivering services which include biochemistry, hematology, microbiology, immunochemistry, and toxicology.";
  dcterms:description "Description: A location that plays the role of delivering services which include biochemistry, hematology, microbiology, immunochemistry, and toxicology.".

cs:RoleCode\#NCCS rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "Neurology critical care and stroke unit";
  dc:title "Neurology critical care and stroke unit";
  rdfs:comment "Neurology critical care and stroke unit";
  dcterms:description "Neurology critical care and stroke unit".

cs:RoleCode\#NS rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "Neurosurgery unit";
  dc:title "Neurosurgery unit";
  rdfs:comment "Neurosurgery unit";
  dcterms:description "Neurosurgery unit".

cs:RoleCode\#OUTPHARM rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "outpatient pharmacy";
  dc:title "outpatient pharmacy";
  rdfs:comment "Description: A location that plays the role of delivering services which may include providing judicious, safe, efficacious, appropriate and cost effective use of medicines for treatment of patients for outpatient visits and may also be used for discharge prescriptions.";
  dcterms:description "Description: A location that plays the role of delivering services which may include providing judicious, safe, efficacious, appropriate and cost effective use of medicines for treatment of patients for outpatient visits and may also be used for discharge prescriptions.".

cs:RoleCode\#PEDU rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "Pediatric unit";
  dc:title "Pediatric unit";
  rdfs:comment "Pediatric unit";
  dcterms:description "Pediatric unit".

cs:RoleCode\#PHU rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "Psychiatric hospital unit";
  dc:title "Psychiatric hospital unit";
  rdfs:comment "(X12N 273R00000N)";
  dcterms:description "(X12N 273R00000N)".

cs:RoleCode\#RHU rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "Rehabilitation hospital unit";
  dc:title "Rehabilitation hospital unit";
  rdfs:comment "Rehabilitation hospital unit";
  dcterms:description "Rehabilitation hospital unit".

cs:RoleCode\#SLEEP rdfs:subClassOf cs:RoleCode\#HU;
  rdfs:label "Sleep disorders unit";
  dc:title "Sleep disorders unit";
  rdfs:comment "(X12N 261QA1200N)";
  dcterms:description "(X12N 261QA1200N)".

cs:RoleCode\#NCCF rdfs:subClassOf cs:RoleCode\#%5fDedicatedClinicalLocationRoleType;
  rdfs:label "Nursing or custodial care facility";
  dc:title "Nursing or custodial care facility";
  rdfs:comment "Nursing or custodial care facility";
  dcterms:description "Nursing or custodial care facility".

cs:RoleCode\#SNF rdfs:subClassOf cs:RoleCode\#NCCF;
  rdfs:label "Skilled nursing facility";
  dc:title "Skilled nursing facility";
  rdfs:comment "(X12N 314000000N)";
  dcterms:description "(X12N 314000000N)".

cs:RoleCode\#OF rdfs:subClassOf cs:RoleCode\#%5fDedicatedClinicalLocationRoleType;
  rdfs:label "Outpatient facility";
  dc:title "Outpatient facility";
  rdfs:comment "Outpatient facility";
  dcterms:description "Outpatient facility".

cs:RoleCode\#ALL rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Allergy clinic";
  dc:title "Allergy clinic";
  rdfs:comment "Allergy clinic";
  dcterms:description "Allergy clinic".

cs:RoleCode\#AMPUT rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Amputee clinic";
  dc:title "Amputee clinic";
  rdfs:comment "Amputee clinic";
  dcterms:description "Amputee clinic".

cs:RoleCode\#BMTC rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Bone marrow transplant clinic";
  dc:title "Bone marrow transplant clinic";
  rdfs:comment "Bone marrow transplant clinic";
  dcterms:description "Bone marrow transplant clinic".

cs:RoleCode\#BREAST rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Breast clinic";
  dc:title "Breast clinic";
  rdfs:comment "Breast clinic";
  dcterms:description "Breast clinic".

cs:RoleCode\#CANC rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Child and adolescent neurology clinic";
  dc:title "Child and adolescent neurology clinic";
  rdfs:comment "Child and adolescent neurology clinic";
  dcterms:description "Child and adolescent neurology clinic".

cs:RoleCode\#CAPC rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Child and adolescent psychiatry clinic";
  dc:title "Child and adolescent psychiatry clinic";
  rdfs:comment "Child and adolescent psychiatry clinic";
  dcterms:description "Child and adolescent psychiatry clinic".

cs:RoleCode\#CARD rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Ambulatory Health Care Facilities; Clinic/Center; Rehabilitation: Cardiac Facilities";
  dc:title "Ambulatory Health Care Facilities; Clinic/Center; Rehabilitation: Cardiac Facilities";
  rdfs:comment "Ambulatory Health Care Facilities; Clinic/Center; Rehabilitation: Cardiac Facilities";
  dcterms:description "Ambulatory Health Care Facilities; Clinic/Center; Rehabilitation: Cardiac Facilities".

cs:RoleCode\#PEDCARD rdfs:subClassOf cs:RoleCode\#CARD;
  rdfs:label "Pediatric cardiology clinic";
  dc:title "Pediatric cardiology clinic";
  rdfs:comment "Pediatric cardiology clinic";
  dcterms:description "Pediatric cardiology clinic".

cs:RoleCode\#COAG rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Coagulation clinic";
  dc:title "Coagulation clinic";
  rdfs:comment "Coagulation clinic";
  dcterms:description "Coagulation clinic".

cs:RoleCode\#CRS rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Colon and rectal surgery clinic";
  dc:title "Colon and rectal surgery clinic";
  rdfs:comment "Colon and rectal surgery clinic";
  dcterms:description "Colon and rectal surgery clinic".

cs:RoleCode\#DERM rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Dermatology clinic";
  dc:title "Dermatology clinic";
  rdfs:comment "Dermatology clinic";
  dcterms:description "Dermatology clinic".

cs:RoleCode\#ENDO rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Endocrinology clinic";
  dc:title "Endocrinology clinic";
  rdfs:comment "Endocrinology clinic";
  dcterms:description "Endocrinology clinic".

cs:RoleCode\#PEDE rdfs:subClassOf cs:RoleCode\#ENDO;
  rdfs:label "Pediatric endocrinology clinic";
  dc:title "Pediatric endocrinology clinic";
  rdfs:comment "Pediatric endocrinology clinic";
  dcterms:description "Pediatric endocrinology clinic".

cs:RoleCode\#ENT rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Otorhinolaryngology clinic";
  dc:title "Otorhinolaryngology clinic";
  rdfs:comment "Otorhinolaryngology clinic";
  dcterms:description "Otorhinolaryngology clinic".

cs:RoleCode\#FMC rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Family medicine clinic";
  dc:title "Family medicine clinic";
  rdfs:comment "Family medicine clinic";
  dcterms:description "Family medicine clinic".

cs:RoleCode\#GI rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Gastroenterology clinic";
  dc:title "Gastroenterology clinic";
  rdfs:comment "Gastroenterology clinic";
  dcterms:description "Gastroenterology clinic".

cs:RoleCode\#PEDGI rdfs:subClassOf cs:RoleCode\#GI;
  rdfs:label "Pediatric gastroenterology clinic";
  dc:title "Pediatric gastroenterology clinic";
  rdfs:comment "Pediatric gastroenterology clinic";
  dcterms:description "Pediatric gastroenterology clinic".

cs:RoleCode\#GIM rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "General internal medicine clinic";
  dc:title "General internal medicine clinic";
  rdfs:comment "General internal medicine clinic";
  dcterms:description "General internal medicine clinic".

cs:RoleCode\#GYN rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Gynecology clinic";
  dc:title "Gynecology clinic";
  rdfs:comment "Gynecology clinic";
  dcterms:description "Gynecology clinic".

cs:RoleCode\#HEM rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Hematology clinic";
  dc:title "Hematology clinic";
  rdfs:comment "Hematology clinic";
  dcterms:description "Hematology clinic".

cs:RoleCode\#PEDHEM rdfs:subClassOf cs:RoleCode\#HEM;
  rdfs:label "Pediatric hematology clinic";
  dc:title "Pediatric hematology clinic";
  rdfs:comment "Pediatric hematology clinic";
  dcterms:description "Pediatric hematology clinic".

cs:RoleCode\#HTN rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Hypertension clinic";
  dc:title "Hypertension clinic";
  rdfs:comment "Hypertension clinic";
  dcterms:description "Hypertension clinic".

cs:RoleCode\#IEC rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Impairment evaluation center";
  dc:title "Impairment evaluation center";
  rdfs:comment "Focuses on assessing disability";
  dcterms:description "Focuses on assessing disability".

cs:RoleCode\#INFD rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Infectious disease clinic";
  dc:title "Infectious disease clinic";
  rdfs:comment "Infectious disease clinic";
  dcterms:description "Infectious disease clinic".

cs:RoleCode\#PEDID rdfs:subClassOf cs:RoleCode\#INFD;
  rdfs:label "Pediatric infectious disease clinic";
  dc:title "Pediatric infectious disease clinic";
  rdfs:comment "Pediatric infectious disease clinic";
  dcterms:description "Pediatric infectious disease clinic".

cs:RoleCode\#INV rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Infertility clinic";
  dc:title "Infertility clinic";
  rdfs:comment "Infertility clinic";
  dcterms:description "Infertility clinic".

cs:RoleCode\#LYMPH rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Lympedema clinic";
  dc:title "Lympedema clinic";
  rdfs:comment "Lympedema clinic";
  dcterms:description "Lympedema clinic".

cs:RoleCode\#MGEN rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Medical genetics clinic";
  dc:title "Medical genetics clinic";
  rdfs:comment "Medical genetics clinic";
  dcterms:description "Medical genetics clinic".

cs:RoleCode\#NEPH rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Nephrology clinic";
  dc:title "Nephrology clinic";
  rdfs:comment "Nephrology clinic";
  dcterms:description "Nephrology clinic".

cs:RoleCode\#PEDNEPH rdfs:subClassOf cs:RoleCode\#NEPH;
  rdfs:label "Pediatric nephrology clinic";
  dc:title "Pediatric nephrology clinic";
  rdfs:comment "Pediatric nephrology clinic";
  dcterms:description "Pediatric nephrology clinic".

cs:RoleCode\#NEUR rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Neurology clinic";
  dc:title "Neurology clinic";
  rdfs:comment "Neurology clinic";
  dcterms:description "Neurology clinic".

cs:RoleCode\#OB rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Obstetrics clinic";
  dc:title "Obstetrics clinic";
  rdfs:comment "Obstetrics clinic";
  dcterms:description "Obstetrics clinic".

cs:RoleCode\#OMS rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Oral and maxillofacial surgery clinic";
  dc:title "Oral and maxillofacial surgery clinic";
  rdfs:comment "Oral and maxillofacial surgery clinic";
  dcterms:description "Oral and maxillofacial surgery clinic".

cs:RoleCode\#ONCL rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Medical oncology clinic";
  dc:title "Medical oncology clinic";
  rdfs:comment "Medical oncology clinic";
  dcterms:description "Medical oncology clinic".

cs:RoleCode\#PEDHO rdfs:subClassOf cs:RoleCode\#ONCL;
  rdfs:label "Pediatric oncology clinic";
  dc:title "Pediatric oncology clinic";
  rdfs:comment "Pediatric oncology clinic";
  dcterms:description "Pediatric oncology clinic".

cs:RoleCode\#OPH rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Opthalmology clinic";
  dc:title "Opthalmology clinic";
  rdfs:comment "Opthalmology clinic";
  dcterms:description "Opthalmology clinic".

cs:RoleCode\#OPTC rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "optometry clinic";
  dc:title "optometry clinic";
  rdfs:comment "Description: A location that plays the role of delivering services which may include examination, diagnosis, treatment, management, and prevention of diseases and disorders of the eye as well as prescribing and fitting appropriate corrective lenses (glasses or contact lenses) as needed.  Optometry clinics may also provide tests for visual field screening, measuring intra-ocular pressure and ophthalmoscopy, as and when required.";
  dcterms:description "Description: A location that plays the role of delivering services which may include examination, diagnosis, treatment, management, and prevention of diseases and disorders of the eye as well as prescribing and fitting appropriate corrective lenses (glasses or contact lenses) as needed.  Optometry clinics may also provide tests for visual field screening, measuring intra-ocular pressure and ophthalmoscopy, as and when required.".

cs:RoleCode\#ORTHO rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Orthopedics clinic";
  dc:title "Orthopedics clinic";
  rdfs:comment "Orthopedics clinic";
  dcterms:description "Orthopedics clinic".

cs:RoleCode\#HAND rdfs:subClassOf cs:RoleCode\#ORTHO;
  rdfs:label "Hand clinic";
  dc:title "Hand clinic";
  rdfs:comment "Hand clinic";
  dcterms:description "Hand clinic".

cs:RoleCode\#PAINCL rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Pain clinic";
  dc:title "Pain clinic";
  rdfs:comment "(X12N 261QP3300N)";
  dcterms:description "(X12N 261QP3300N)".

cs:RoleCode\#PC rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Primary care clinic";
  dc:title "Primary care clinic";
  rdfs:comment "(X12N 261QP2300N)";
  dcterms:description "(X12N 261QP2300N)".

cs:RoleCode\#PEDC rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Pediatrics clinic";
  dc:title "Pediatrics clinic";
  rdfs:comment "Pediatrics clinic";
  dcterms:description "Pediatrics clinic".

cs:RoleCode\#PEDRHEUM rdfs:subClassOf cs:RoleCode\#PEDC;
  rdfs:label "Pediatric rheumatology clinic";
  dc:title "Pediatric rheumatology clinic";
  rdfs:comment "Pediatric rheumatology clinic";
  dcterms:description "Pediatric rheumatology clinic".

cs:RoleCode\#POD rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Podiatry clinic";
  dc:title "Podiatry clinic";
  rdfs:comment "(X12N 261QP1100N)";
  dcterms:description "(X12N 261QP1100N)".

cs:RoleCode\#PREV rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Preventive medicine clinic";
  dc:title "Preventive medicine clinic";
  rdfs:comment "Preventive medicine clinic";
  dcterms:description "Preventive medicine clinic".

cs:RoleCode\#PROCTO rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Proctology clinic";
  dc:title "Proctology clinic";
  rdfs:comment "Proctology clinic";
  dcterms:description "Proctology clinic".

cs:RoleCode\#PROFF rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Provider's Office";
  dc:title "Provider's Office";
  rdfs:comment "Location where healthcare service was delivered, identified as the healthcare provider's practice office.";
  dcterms:description "Location where healthcare service was delivered, identified as the healthcare provider's practice office.".

cs:RoleCode\#PROS rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Prosthodontics clinic";
  dc:title "Prosthodontics clinic";
  rdfs:comment "Prosthodontics clinic";
  dcterms:description "Prosthodontics clinic".

cs:RoleCode\#PSI rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Psychology clinic";
  dc:title "Psychology clinic";
  rdfs:comment "Psychology clinic";
  dcterms:description "Psychology clinic".

cs:RoleCode\#PSY rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Psychiatry clinic";
  dc:title "Psychiatry clinic";
  rdfs:comment "Psychiatry clinic";
  dcterms:description "Psychiatry clinic".

cs:RoleCode\#RHEUM rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Rheumatology clinic";
  dc:title "Rheumatology clinic";
  rdfs:comment "Rheumatology clinic";
  dcterms:description "Rheumatology clinic".

cs:RoleCode\#SPMED rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Sports medicine clinic";
  dc:title "Sports medicine clinic";
  rdfs:comment "Sports medicine clinic";
  dcterms:description "Sports medicine clinic".

cs:RoleCode\#SU rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Surgery clinic";
  dc:title "Surgery clinic";
  rdfs:comment "Surgery clinic";
  dcterms:description "Surgery clinic".

cs:RoleCode\#PLS rdfs:subClassOf cs:RoleCode\#SU;
  rdfs:label "Plastic surgery clinic";
  dc:title "Plastic surgery clinic";
  rdfs:comment "Plastic surgery clinic";
  dcterms:description "Plastic surgery clinic".

cs:RoleCode\#URO rdfs:subClassOf cs:RoleCode\#SU;
  rdfs:label "Urology clinic";
  dc:title "Urology clinic";
  rdfs:comment "Urology clinic";
  dcterms:description "Urology clinic".

cs:RoleCode\#TR rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Transplant clinic";
  dc:title "Transplant clinic";
  rdfs:comment "Transplant clinic";
  dcterms:description "Transplant clinic".

cs:RoleCode\#TRAVEL rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Travel and geographic medicine clinic";
  dc:title "Travel and geographic medicine clinic";
  rdfs:comment "Travel and geographic medicine clinic";
  dcterms:description "Travel and geographic medicine clinic".

cs:RoleCode\#WND rdfs:subClassOf cs:RoleCode\#OF;
  rdfs:label "Wound clinic";
  dc:title "Wound clinic";
  rdfs:comment "Wound clinic";
  dcterms:description "Wound clinic".

cs:RoleCode\#RTF rdfs:subClassOf cs:RoleCode\#%5fDedicatedClinicalLocationRoleType;
  rdfs:label "Residential treatment facility";
  dc:title "Residential treatment facility";
  rdfs:comment "Residential treatment facility";
  dcterms:description "Residential treatment facility".

cs:RoleCode\#PRC rdfs:subClassOf cs:RoleCode\#RTF;
  rdfs:label "Pain rehabilitation center";
  dc:title "Pain rehabilitation center";
  rdfs:comment "Pain rehabilitation center";
  dcterms:description "Pain rehabilitation center".

cs:RoleCode\#SURF rdfs:subClassOf cs:RoleCode\#RTF;
  rdfs:label "Substance use rehabilitation facility";
  dc:title "Substance use rehabilitation facility";
  rdfs:comment "(X12N 324500000N)";
  dcterms:description "(X12N 324500000N)".

cs:RoleCode\#%5fDedicatedNonClinicalLocationRoleType rdfs:subClassOf cs:RoleCode\#%5fDedicatedServiceDeliveryLocationRoleType;
  rdfs:label "DedicatedNonClinicalLocationRoleType";
  dc:title "DedicatedNonClinicalLocationRoleType";
  rdfs:comment "A role of a place that further classifies a setting that is intended to house the provision of non-clinical services.";
  dcterms:description "A role of a place that further classifies a setting that is intended to house the provision of non-clinical services.".

cs:RoleCode\#DADDR rdfs:subClassOf cs:RoleCode\#%5fDedicatedNonClinicalLocationRoleType;
  rdfs:label "Delivery Address";
  dc:title "Delivery Address";
  rdfs:comment "Location address where medical supplies were transported to for use.";
  dcterms:description "Location address where medical supplies were transported to for use.".

cs:RoleCode\#MOBL rdfs:subClassOf cs:RoleCode\#%5fDedicatedNonClinicalLocationRoleType;
  rdfs:label "Mobile Unit";
  dc:title "Mobile Unit";
  rdfs:comment "Location (mobile) where healthcare service was delivered.";
  dcterms:description "Location (mobile) where healthcare service was delivered.".

cs:RoleCode\#AMB rdfs:subClassOf cs:RoleCode\#MOBL;
  rdfs:label "Ambulance";
  dc:title "Ambulance";
  rdfs:comment "Location (mobile) where healthcare service was delivered, identified specifically as an ambulance.";
  dcterms:description "Location (mobile) where healthcare service was delivered, identified specifically as an ambulance.".

cs:RoleCode\#PHARM rdfs:subClassOf cs:RoleCode\#%5fDedicatedNonClinicalLocationRoleType;
  rdfs:label "Pharmacy";
  dc:title "Pharmacy";
  rdfs:comment "Location where healthcare service was delivered, identified as a pharmacy.";
  dcterms:description "Location where healthcare service was delivered, identified as a pharmacy.".

cs:RoleCode\#%5fIncidentalServiceDeliveryLocationRoleType rdfs:subClassOf cs:RoleCode\#%5fServiceDeliveryLocationRoleType;
  rdfs:label "IncidentalServiceDeliveryLocationRoleType";
  dc:title "IncidentalServiceDeliveryLocationRoleType";
  rdfs:comment "IncidentalServiceDeliveryLocationRoleType";
  dcterms:description "IncidentalServiceDeliveryLocationRoleType".

cs:RoleCode\#ACC rdfs:subClassOf cs:RoleCode\#%5fIncidentalServiceDeliveryLocationRoleType;
  rdfs:label "accident site";
  dc:title "accident site";
  rdfs:comment "Location of an accident where healthcare service was delivered, such as a roadside.";
  dcterms:description "Location of an accident where healthcare service was delivered, such as a roadside.".

cs:RoleCode\#COMM rdfs:subClassOf cs:RoleCode\#%5fIncidentalServiceDeliveryLocationRoleType;
  rdfs:label "Community Location";
  dc:title "Community Location";
  rdfs:comment "Community location where healthcare is delivered.";
  dcterms:description "Community location where healthcare is delivered.".

cs:RoleCode\#CSC rdfs:subClassOf cs:RoleCode\#COMM;
  rdfs:label "community service center";
  dc:title "community service center";
  rdfs:comment "Description: A location that plays the role of delivering services which may include providing front-line services to the population of a defined geographic area such as: healthcare services and social services, preventive or curative, rehabilitation or reintegration.";
  dcterms:description "Description: A location that plays the role of delivering services which may include providing front-line services to the population of a defined geographic area such as: healthcare services and social services, preventive or curative, rehabilitation or reintegration.".

cs:RoleCode\#PTRES rdfs:subClassOf cs:RoleCode\#%5fIncidentalServiceDeliveryLocationRoleType;
  rdfs:label "Patient's Residence";
  dc:title "Patient's Residence";
  rdfs:comment "location where healthcare was delivered which is the residence of the Patient.";
  dcterms:description "location where healthcare was delivered which is the residence of the Patient.".

cs:RoleCode\#SCHOOL rdfs:subClassOf cs:RoleCode\#%5fIncidentalServiceDeliveryLocationRoleType;
  rdfs:label "school";
  dc:title "school";
  rdfs:comment "Location where healthcare service was delivered, identified as a school or educational facility.";
  dcterms:description "Location where healthcare service was delivered, identified as a school or educational facility.".

cs:RoleCode\#UPC rdfs:subClassOf cs:RoleCode\#%5fIncidentalServiceDeliveryLocationRoleType;
  rdfs:label "underage protection center";
  dc:title "underage protection center";
  rdfs:comment "Description: A location that plays the role of delivering services which may include: social emergency services required for a young person as required under any jurisdictional youth laws, child placement, and family mediation in the defined geographical area the SDL is responsible for. It may provide expertise in a judiciary setting on child custody, adoption and biological history research.";
  dcterms:description "Description: A location that plays the role of delivering services which may include: social emergency services required for a young person as required under any jurisdictional youth laws, child placement, and family mediation in the defined geographical area the SDL is responsible for. It may provide expertise in a judiciary setting on child custody, adoption and biological history research.".

cs:RoleCode\#WORK rdfs:subClassOf cs:RoleCode\#%5fIncidentalServiceDeliveryLocationRoleType;
  rdfs:label "work site";
  dc:title "work site";
  rdfs:comment "Location where healthcare service was delivered, identified as a work place.";
  dcterms:description "Location where healthcare service was delivered, identified as a work place.".

cs:RoleCode\#%5fSpecimenRoleType rdfs:subClassOf cs:RoleCode;
  rdfs:label "SpecimenRoleType";
  dc:title "SpecimenRoleType";
  rdfs:comment "SpecimenRoleType";
  dcterms:description "SpecimenRoleType".

cs:RoleCode\#C rdfs:subClassOf cs:RoleCode\#%5fSpecimenRoleType;
  rdfs:label "Calibrator";
  dc:title "Calibrator";
  rdfs:comment "A specimen used for initial calibration settings of an instrument";
  dcterms:description "A specimen used for initial calibration settings of an instrument".

cs:RoleCode\#G rdfs:subClassOf cs:RoleCode\#%5fSpecimenRoleType;
  rdfs:label "Group";
  dc:title "Group";
  rdfs:comment "A set of patient samples in which the individuals of the group may or may not be identified.";
  dcterms:description "A set of patient samples in which the individuals of the group may or may not be identified.".

cs:RoleCode\#L rdfs:subClassOf cs:RoleCode\#%5fSpecimenRoleType;
  rdfs:label "Pool";
  dc:title "Pool";
  rdfs:comment "Aliquots of individual specimens combined to form a single specimen representing all of the included individuals.";
  dcterms:description "Aliquots of individual specimens combined to form a single specimen representing all of the included individuals.".

cs:RoleCode\#P rdfs:subClassOf cs:RoleCode\#%5fSpecimenRoleType;
  rdfs:label "Patient";
  dc:title "Patient";
  rdfs:comment "A specimen that has been collected from a patient.";
  dcterms:description "A specimen that has been collected from a patient.".

cs:RoleCode\#Q rdfs:subClassOf cs:RoleCode\#%5fSpecimenRoleType;
  rdfs:label "Quality Control";
  dc:title "Quality Control";
  rdfs:comment "A specimen specifically used to verify the sensitivity, specificity, accuracy or other perfomance parameter of a diagnostic test.";
  dcterms:description "A specimen specifically used to verify the sensitivity, specificity, accuracy or other perfomance parameter of a diagnostic test.".

cs:RoleCode\#B rdfs:subClassOf cs:RoleCode\#Q;
  rdfs:label "Blind";
  dc:title "Blind";
  rdfs:comment "Quality Control specimen submitted to the lab whose identity and composition is not known to the lab.";
  dcterms:description "Quality Control specimen submitted to the lab whose identity and composition is not known to the lab.".

cs:RoleCode\#E rdfs:subClassOf cs:RoleCode\#Q;
  rdfs:label "Electronic QC";
  dc:title "Electronic QC";
  rdfs:comment "An electronically simulated QC specimen";
  dcterms:description "An electronically simulated QC specimen".

cs:RoleCode\#F rdfs:subClassOf cs:RoleCode\#Q;
  rdfs:label "Filler Proficiency";
  dc:title "Filler Proficiency";
  rdfs:comment "Specimen used for testing proficiency of an organization performing testing (how does this differ from O?)";
  dcterms:description "Specimen used for testing proficiency of an organization performing testing (how does this differ from O?)".

cs:RoleCode\#O rdfs:subClassOf cs:RoleCode\#Q;
  rdfs:label "Operator Proficiency";
  dc:title "Operator Proficiency";
  rdfs:comment "A specimen used for evaluation of operator proficiency (operator in what context?)";
  dcterms:description "A specimen used for evaluation of operator proficiency (operator in what context?)".

cs:RoleCode\#V rdfs:subClassOf cs:RoleCode\#Q;
  rdfs:label "Verifying";
  dc:title "Verifying";
  rdfs:comment "A specimen used for periodic calibration checks of instruments";
  dcterms:description "A specimen used for periodic calibration checks of instruments".

cs:RoleCode\#R rdfs:subClassOf cs:RoleCode\#%5fSpecimenRoleType;
  rdfs:label "Replicate";
  dc:title "Replicate";
  rdfs:comment "A portion of an original patent sample that is tested at the same time as the original sample";
  dcterms:description "A portion of an original patent sample that is tested at the same time as the original sample".

cs:RoleCode\#CLAIM rdfs:subClassOf cs:RoleCode;
  rdfs:label "claimant";
  dc:title "claimant";
  rdfs:comment "A party that makes a claim for coverage under a policy.";
  dcterms:description "A party that makes a claim for coverage under a policy.".

cs:RoleCode\#communityLaboratory rdfs:subClassOf cs:RoleCode;
  rdfs:label "Community Laboratory";
  dc:title "Community Laboratory";
  rdfs:comment "Community Laboratory";
  dcterms:description "Community Laboratory".

cs:RoleCode\#GT rdfs:subClassOf cs:RoleCode;
  rdfs:label "Guarantor";
  dc:title "Guarantor";
  rdfs:comment "An individual or organization that makes or gives a promise, assurance, pledge to pay or has paid the healthcare service provider.";
  dcterms:description "An individual or organization that makes or gives a promise, assurance, pledge to pay or has paid the healthcare service provider.".

cs:RoleCode\#homeHealth rdfs:subClassOf cs:RoleCode;
  rdfs:label "Home Health";
  dc:title "Home Health";
  rdfs:comment "Home Health";
  dcterms:description "Home Health".

cs:RoleCode\#laboratory rdfs:subClassOf cs:RoleCode;
  rdfs:label "Laboratory";
  dc:title "Laboratory";
  rdfs:comment "Laboratory";
  dcterms:description "Laboratory".

cs:RoleCode\#pathologist rdfs:subClassOf cs:RoleCode;
  rdfs:label "Pathologist";
  dc:title "Pathologist";
  rdfs:comment "Pathologist";
  dcterms:description "Pathologist".

cs:RoleCode\#PH rdfs:subClassOf cs:RoleCode;
  rdfs:label "Policy Holder";
  dc:title "Policy Holder";
  rdfs:comment "Policy holder for the insurance policy.";
  dcterms:description "Policy holder for the insurance policy.".

cs:RoleCode\#phlebotomist rdfs:subClassOf cs:RoleCode;
  rdfs:label "Phlebotomist";
  dc:title "Phlebotomist";
  rdfs:comment "Phlebotomist";
  dcterms:description "Phlebotomist".

cs:RoleCode\#PROG rdfs:subClassOf cs:RoleCode;
  rdfs:label "program eligible";
  dc:title "program eligible";
  rdfs:comment "A party that meets the eligibility criteria for coverage under a program.";
  dcterms:description "A party that meets the eligibility criteria for coverage under a program.".

cs:RoleCode\#PT rdfs:subClassOf cs:RoleCode;
  rdfs:label "Patient";
  dc:title "Patient";
  rdfs:comment "The recipient for the service(s) and/or product(s) when they are not the covered party.";
  dcterms:description "The recipient for the service(s) and/or product(s) when they are not the covered party.".

cs:RoleCode\#subject rdfs:subClassOf cs:RoleCode;
  rdfs:label "Self";
  dc:title "Self";
  rdfs:comment "Self";
  dcterms:description "Self".

cs:RoleCode\#thirdParty rdfs:subClassOf cs:RoleCode;
  rdfs:label "Third Party";
  dc:title "Third Party";
  rdfs:comment "Third Party";
  dcterms:description "Third Party".

cs:RoleCode\#DEP rdfs:subClassOf cs:RoleCode.

cs:RoleCode\#DEPEN rdfs:subClassOf cs:RoleCode;
  rdfs:label "dependent";
  dc:title "dependent";
  rdfs:comment "A party covered under a policy based on association with a subscriber.";
  dcterms:description "A party covered under a policy based on association with a subscriber.".

cs:RoleCode\#FM rdfs:subClassOf cs:RoleCode;
  rdfs:label "Family Member";
  dc:title "Family Member";
  rdfs:comment "A member of the covered party's family. This could be the spouse, a parent, a grand parent, a sibling, etc.";
  dcterms:description "A member of the covered party's family. This could be the spouse, a parent, a grand parent, a sibling, etc.".

cs:RoleCode\#INDIV rdfs:subClassOf cs:RoleCode;
  rdfs:label "individual";
  dc:title "individual";
  rdfs:comment "A party covered under a policy as the policyholder.";
  dcterms:description "A party covered under a policy as the policyholder.".

cs:RoleCode\#NAMED rdfs:subClassOf cs:RoleCode;
  rdfs:label "named insured";
  dc:title "named insured";
  rdfs:comment "A party to an insurance policy to whom the insurer agrees to indemnify for losses, provides benefits for, or renders services.";
  dcterms:description "A party to an insurance policy to whom the insurer agrees to indemnify for losses, provides benefits for, or renders services.".

cs:RoleCode\#PSYCHCF rdfs:subClassOf cs:RoleCode.

cs:RoleCode\#SUBSCR rdfs:subClassOf cs:RoleCode;
  rdfs:label "subscriber";
  dc:title "subscriber";
  rdfs:comment "A party covered under a policy based on association with a sponsor who is the policy holder, and whose association may provide for the eligibility of dependents for coverage";
  dcterms:description "A party covered under a policy based on association with a sponsor who is the policy holder, and whose association may provide for the eligibility of dependents for coverage".

# - vs:v3-RoleLinkStatus -------------------------------------------------------

vs:v3-RoleLinkStatus a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System RoleLinkStatus";
  dc:title "v3 Code System RoleLinkStatus";
  rdfs:comment "  Description:\r\nCodes representing possible states of a RoleLink, as defined by the RoleLink class state machine.";
  dcterms:description "  Description:\r\nCodes representing possible states of a RoleLink, as defined by the RoleLink class state machine.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:RoleLinkStatus.

cs:RoleLinkStatus.system a fhir:CodeSystem;
  rdfs:label "v3 Code System RoleLinkStatus";
  dc:title "v3 Code System RoleLinkStatus";
  rdfs:comment "  Description:\r\nCodes representing possible states of a RoleLink, as defined by the RoleLink class state machine.";
  dcterms:description "  Description:\r\nCodes representing possible states of a RoleLink, as defined by the RoleLink class state machine.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:RoleLinkStatus a fhir:Concept.

cs:RoleLinkStatus\#NORMAL rdfs:subClassOf cs:RoleLinkStatus;
  rdfs:label "normal";
  dc:title "normal";
  rdfs:comment "Description: The 'typical' state. Excludes \"nullified\" which represents the termination state of a RoleLink instance that was created in error.";
  dcterms:description "Description: The 'typical' state. Excludes \"nullified\" which represents the termination state of a RoleLink instance that was created in error.".

cs:RoleLinkStatus\#ACTIVE rdfs:subClassOf cs:RoleLinkStatus\#NORMAL;
  rdfs:label "active";
  dc:title "active";
  rdfs:comment "Description: The state indicates the RoleLink is in progress.";
  dcterms:description "Description: The state indicates the RoleLink is in progress.".

cs:RoleLinkStatus\#CANCELLED rdfs:subClassOf cs:RoleLinkStatus\#NORMAL;
  rdfs:label "cancelled";
  dc:title "cancelled";
  rdfs:comment "Description: The terminal state resulting from abandoning the RoleLink prior to or after activation.";
  dcterms:description "Description: The terminal state resulting from abandoning the RoleLink prior to or after activation.".

cs:RoleLinkStatus\#COMPLETED rdfs:subClassOf cs:RoleLinkStatus\#NORMAL;
  rdfs:label "completed";
  dc:title "completed";
  rdfs:comment "Description: The terminal state representing the successful completion of the RoleLink.";
  dcterms:description "Description: The terminal state representing the successful completion of the RoleLink.".

cs:RoleLinkStatus\#PENDING rdfs:subClassOf cs:RoleLinkStatus\#NORMAL;
  rdfs:label "pending";
  dc:title "pending";
  rdfs:comment "Description: The state indicates the RoleLink has not yet become active.";
  dcterms:description "Description: The state indicates the RoleLink has not yet become active.".

cs:RoleLinkStatus\#NULLIFIED rdfs:subClassOf cs:RoleLinkStatus;
  rdfs:label "nullified";
  dc:title "nullified";
  rdfs:comment "Description: The state representing the termination of a RoleLink instance that was created in error.";
  dcterms:description "Description: The state representing the termination of a RoleLink instance that was created in error.".

# - vs:v3-RoleLinkType ---------------------------------------------------------

vs:v3-RoleLinkType a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System RoleLinkType";
  dc:title "v3 Code System RoleLinkType";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:RoleLinkType.

cs:RoleLinkType.system a fhir:CodeSystem;
  rdfs:label "v3 Code System RoleLinkType";
  dc:title "v3 Code System RoleLinkType";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:RoleLinkType a fhir:Concept.

cs:RoleLinkType\#REL rdfs:subClassOf cs:RoleLinkType;
  rdfs:label "related";
  dc:title "related";
  rdfs:comment "An action taken with respect to a subject Entity by a regulatory or authoritative body with supervisory capacity over that entity. The action is taken in response to behavior by the subject Entity that body finds to be undesirable.\r\n\n                        Suspension, license restrictions, monetary fine, letter of reprimand, mandated training, mandated supervision, etc.Examples:";
  dcterms:description "An action taken with respect to a subject Entity by a regulatory or authoritative body with supervisory capacity over that entity. The action is taken in response to behavior by the subject Entity that body finds to be undesirable.\r\n\n                        Suspension, license restrictions, monetary fine, letter of reprimand, mandated training, mandated supervision, etc.Examples:".

cs:RoleLinkType\#BACKUP rdfs:subClassOf cs:RoleLinkType\#REL;
  rdfs:label "is backup for";
  dc:title "is backup for";
  rdfs:comment "This relationship indicates the source Role is available to the target Role as a backup. An entity in a backup role will be available as a substitute or replacement in the event that the entity assigned the role is unavailable. In medical roles where it is critical that the function be performed and there is a possibility that the individual assigned may be ill or otherwise indisposed, another individual is assigned to cover for the individual originally assigned the role. A backup may be required to be identified, but unless the backup is actually used, he/she would not assume the assigned entity role.";
  dcterms:description "This relationship indicates the source Role is available to the target Role as a backup. An entity in a backup role will be available as a substitute or replacement in the event that the entity assigned the role is unavailable. In medical roles where it is critical that the function be performed and there is a possibility that the individual assigned may be ill or otherwise indisposed, another individual is assigned to cover for the individual originally assigned the role. A backup may be required to be identified, but unless the backup is actually used, he/she would not assume the assigned entity role.".

cs:RoleLinkType\#CONT rdfs:subClassOf cs:RoleLinkType\#REL;
  rdfs:label "has contact";
  dc:title "has contact";
  rdfs:comment "This relationship indicates the target Role provides or receives information regarding the target role.  For example, AssignedEntity is a contact for a ServiceDeliveryLocation.";
  dcterms:description "This relationship indicates the target Role provides or receives information regarding the target role.  For example, AssignedEntity is a contact for a ServiceDeliveryLocation.".

cs:RoleLinkType\#DIRAUTH rdfs:subClassOf cs:RoleLinkType\#REL;
  rdfs:label "has direct authority over";
  dc:title "has direct authority over";
  rdfs:comment "The source Role has direct authority over the target role in a chain of authority.";
  dcterms:description "The source Role has direct authority over the target role in a chain of authority.".

cs:RoleLinkType\#IDENT rdfs:subClassOf cs:RoleLinkType\#REL;
  rdfs:label "Identification";
  dc:title "Identification";
  rdfs:comment "Description: The source role provides identification for the target role. The source role must be IDENT. The player entity of the source role is constrained to be the same as (i.e. the equivalent of, or equal to) the player of the target role if present. If the player is absent from the source role, then it is assumed to be the same as the player of the target role.";
  dcterms:description "Description: The source role provides identification for the target role. The source role must be IDENT. The player entity of the source role is constrained to be the same as (i.e. the equivalent of, or equal to) the player of the target role if present. If the player is absent from the source role, then it is assumed to be the same as the player of the target role.".

cs:RoleLinkType\#INDAUTH rdfs:subClassOf cs:RoleLinkType\#REL;
  rdfs:label "has indirect authority over";
  dc:title "has indirect authority over";
  rdfs:comment "The source Role has indirect authority over the target role in a chain of authority.";
  dcterms:description "The source Role has indirect authority over the target role in a chain of authority.".

cs:RoleLinkType\#PART rdfs:subClassOf cs:RoleLinkType\#REL;
  rdfs:label "has part";
  dc:title "has part";
  rdfs:comment "The target Role is part of the Source Role.";
  dcterms:description "The target Role is part of the Source Role.".

cs:RoleLinkType\#REPL rdfs:subClassOf cs:RoleLinkType\#REL;
  rdfs:label "replaces";
  dc:title "replaces";
  rdfs:comment "This relationship indicates that the source Role replaces (or subsumes) the target Role.  Allows for new identifiers and/or new effective time for a registry entry or a certification, etc.";
  dcterms:description "This relationship indicates that the source Role replaces (or subsumes) the target Role.  Allows for new identifiers and/or new effective time for a registry entry or a certification, etc.".

# - vs:v3-RoleStatus -----------------------------------------------------------

vs:v3-RoleStatus a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System RoleStatus";
  dc:title "v3 Code System RoleStatus";
  rdfs:comment " Codes representing the defined possible states of an Role, as defined by the Role class state machine.";
  dcterms:description " Codes representing the defined possible states of an Role, as defined by the Role class state machine.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:RoleStatus.

cs:RoleStatus.system a fhir:CodeSystem;
  rdfs:label "v3 Code System RoleStatus";
  dc:title "v3 Code System RoleStatus";
  rdfs:comment " Codes representing the defined possible states of an Role, as defined by the Role class state machine.";
  dcterms:description " Codes representing the defined possible states of an Role, as defined by the Role class state machine.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:RoleStatus a fhir:Concept.

cs:RoleStatus\#normal rdfs:subClassOf cs:RoleStatus;
  rdfs:label "normal";
  dc:title "normal";
  rdfs:comment "The 'typical' state. Excludes \"nullified\" which represents the termination state of a Role instance that was created in error.";
  dcterms:description "The 'typical' state. Excludes \"nullified\" which represents the termination state of a Role instance that was created in error.".

cs:RoleStatus\#active rdfs:subClassOf cs:RoleStatus\#normal;
  rdfs:label "active";
  dc:title "active";
  rdfs:comment "The state representing the fact that the Entity is currently active in the Role.";
  dcterms:description "The state representing the fact that the Entity is currently active in the Role.".

cs:RoleStatus\#cancelled rdfs:subClassOf cs:RoleStatus\#normal;
  rdfs:label "cancelled";
  dc:title "cancelled";
  rdfs:comment "The terminal state resulting from cancellation of the role prior to activation.";
  dcterms:description "The terminal state resulting from cancellation of the role prior to activation.".

cs:RoleStatus\#pending rdfs:subClassOf cs:RoleStatus\#normal;
  rdfs:label "pending";
  dc:title "pending";
  rdfs:comment "The state representing that fact that the role has not yet become active.";
  dcterms:description "The state representing that fact that the role has not yet become active.".

cs:RoleStatus\#suspended rdfs:subClassOf cs:RoleStatus\#normal;
  rdfs:label "suspended";
  dc:title "suspended";
  rdfs:comment "The state that represents a suspension of the Entity playing the Role. This state is arrived at from the \"active\" state.";
  dcterms:description "The state that represents a suspension of the Entity playing the Role. This state is arrived at from the \"active\" state.".

cs:RoleStatus\#terminated rdfs:subClassOf cs:RoleStatus\#normal;
  rdfs:label "terminated";
  dc:title "terminated";
  rdfs:comment "The state representing the successful termination of the Role.";
  dcterms:description "The state representing the successful termination of the Role.".

cs:RoleStatus\#nullified rdfs:subClassOf cs:RoleStatus;
  rdfs:label "nullified";
  dc:title "nullified";
  rdfs:comment "The state representing the termination of a Role instance that was created in error.";
  dcterms:description "The state representing the termination of a Role instance that was created in error.".

# - vs:v3-RouteOfAdministration ------------------------------------------------

vs:v3-RouteOfAdministration a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System RouteOfAdministration";
  dc:title "v3 Code System RouteOfAdministration";
  rdfs:comment " The path the administered medication takes to get into the body or into contact with the body.";
  dcterms:description " The path the administered medication takes to get into the body or into contact with the body.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:RouteOfAdministration.

cs:RouteOfAdministration.system a fhir:CodeSystem;
  rdfs:label "v3 Code System RouteOfAdministration";
  dc:title "v3 Code System RouteOfAdministration";
  rdfs:comment " The path the administered medication takes to get into the body or into contact with the body.";
  dcterms:description " The path the administered medication takes to get into the body or into contact with the body.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:RouteOfAdministration a fhir:Concept.

cs:RouteOfAdministration\#%5fRouteByMethod rdfs:subClassOf cs:RouteOfAdministration;
  rdfs:label "RouteByMethod";
  dc:title "RouteByMethod";
  rdfs:comment "Route of substance administration classified by administration method.";
  dcterms:description "Route of substance administration classified by administration method.".

cs:RouteOfAdministration\#SOAK rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Immersion (soak)";
  dc:title "Immersion (soak)";
  rdfs:comment "Immersion (soak)";
  dcterms:description "Immersion (soak)".

cs:RouteOfAdministration\#SHAMPOO rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Shampoo";
  dc:title "Shampoo";
  rdfs:comment "Shampoo";
  dcterms:description "Shampoo".

cs:RouteOfAdministration\#TRNSLING rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Translingual";
  dc:title "Translingual";
  rdfs:comment "Translingual";
  dcterms:description "Translingual".

cs:RouteOfAdministration\#PO rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Swallow, oral";
  dc:title "Swallow, oral";
  rdfs:comment "Swallow, oral";
  dcterms:description "Swallow, oral".

cs:RouteOfAdministration\#GARGLE rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Gargle";
  dc:title "Gargle";
  rdfs:comment "Gargle";
  dcterms:description "Gargle".

cs:RouteOfAdministration\#SUCK rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Suck, oromucosal";
  dc:title "Suck, oromucosal";
  rdfs:comment "Suck, oromucosal";
  dcterms:description "Suck, oromucosal".

cs:RouteOfAdministration\#%5fChew rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Chew";
  dc:title "Chew";
  rdfs:comment "Chew";
  dcterms:description "Chew".

cs:RouteOfAdministration\#CHEW rdfs:subClassOf cs:RouteOfAdministration\#%5fChew;
  rdfs:label "Chew, oral";
  dc:title "Chew, oral";
  rdfs:comment "Chew, oral";
  dcterms:description "Chew, oral".

cs:RouteOfAdministration\#%5fDiffusion rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Diffusion";
  dc:title "Diffusion";
  rdfs:comment "Diffusion";
  dcterms:description "Diffusion".

cs:RouteOfAdministration\#EXTCORPDIF rdfs:subClassOf cs:RouteOfAdministration\#%5fDiffusion;
  rdfs:label "Diffusion, extracorporeal";
  dc:title "Diffusion, extracorporeal";
  rdfs:comment "Diffusion, extracorporeal";
  dcterms:description "Diffusion, extracorporeal".

cs:RouteOfAdministration\#HEMODIFF rdfs:subClassOf cs:RouteOfAdministration\#%5fDiffusion;
  rdfs:label "Diffusion, hemodialysis";
  dc:title "Diffusion, hemodialysis";
  rdfs:comment "Diffusion, hemodialysis";
  dcterms:description "Diffusion, hemodialysis".

cs:RouteOfAdministration\#TRNSDERMD rdfs:subClassOf cs:RouteOfAdministration\#%5fDiffusion;
  rdfs:label "Diffusion, transdermal";
  dc:title "Diffusion, transdermal";
  rdfs:comment "Diffusion, transdermal";
  dcterms:description "Diffusion, transdermal".

cs:RouteOfAdministration\#%5fDissolve rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Dissolve";
  dc:title "Dissolve";
  rdfs:comment "Dissolve";
  dcterms:description "Dissolve".

cs:RouteOfAdministration\#DISSOLVE rdfs:subClassOf cs:RouteOfAdministration\#%5fDissolve;
  rdfs:label "Dissolve, oral";
  dc:title "Dissolve, oral";
  rdfs:comment "Dissolve, oral";
  dcterms:description "Dissolve, oral".

cs:RouteOfAdministration\#SL rdfs:subClassOf cs:RouteOfAdministration\#%5fDissolve;
  rdfs:label "Dissolve, sublingual";
  dc:title "Dissolve, sublingual";
  rdfs:comment "Dissolve, sublingual";
  dcterms:description "Dissolve, sublingual".

cs:RouteOfAdministration\#%5fDouche rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Douche";
  dc:title "Douche";
  rdfs:comment "Douche";
  dcterms:description "Douche".

cs:RouteOfAdministration\#DOUCHE rdfs:subClassOf cs:RouteOfAdministration\#%5fDouche;
  rdfs:label "Douche, vaginal";
  dc:title "Douche, vaginal";
  rdfs:comment "Douche, vaginal";
  dcterms:description "Douche, vaginal".

cs:RouteOfAdministration\#%5fElectroOsmosisRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "ElectroOsmosisRoute";
  dc:title "ElectroOsmosisRoute";
  rdfs:comment "Electro-osmosis";
  dcterms:description "Electro-osmosis".

cs:RouteOfAdministration\#ELECTOSMOS rdfs:subClassOf cs:RouteOfAdministration\#%5fElectroOsmosisRoute;
  rdfs:label "Electro-osmosis";
  dc:title "Electro-osmosis";
  rdfs:comment "Electro-osmosis";
  dcterms:description "Electro-osmosis".

cs:RouteOfAdministration\#%5fEnema rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Enema";
  dc:title "Enema";
  rdfs:comment "Enema";
  dcterms:description "Enema".

cs:RouteOfAdministration\#ENEMA rdfs:subClassOf cs:RouteOfAdministration\#%5fEnema;
  rdfs:label "Enema, rectal";
  dc:title "Enema, rectal";
  rdfs:comment "Enema, rectal";
  dcterms:description "Enema, rectal".

cs:RouteOfAdministration\#RETENEMA rdfs:subClassOf cs:RouteOfAdministration\#%5fEnema;
  rdfs:label "Enema, rectal retention";
  dc:title "Enema, rectal retention";
  rdfs:comment "Enema, rectal retention";
  dcterms:description "Enema, rectal retention".

cs:RouteOfAdministration\#%5fFlush rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Flush";
  dc:title "Flush";
  rdfs:comment "Flush";
  dcterms:description "Flush".

cs:RouteOfAdministration\#IVFLUSH rdfs:subClassOf cs:RouteOfAdministration\#%5fFlush;
  rdfs:label "Flush, intravenous catheter";
  dc:title "Flush, intravenous catheter";
  rdfs:comment "Flush, intravenous catheter";
  dcterms:description "Flush, intravenous catheter".

cs:RouteOfAdministration\#%5fImplantation rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Implantation";
  dc:title "Implantation";
  rdfs:comment "Implantation";
  dcterms:description "Implantation".

cs:RouteOfAdministration\#IDIMPLNT rdfs:subClassOf cs:RouteOfAdministration\#%5fImplantation;
  rdfs:label "Implantation, intradermal";
  dc:title "Implantation, intradermal";
  rdfs:comment "Implantation, intradermal";
  dcterms:description "Implantation, intradermal".

cs:RouteOfAdministration\#IVITIMPLNT rdfs:subClassOf cs:RouteOfAdministration\#%5fImplantation;
  rdfs:label "Implantation, intravitreal";
  dc:title "Implantation, intravitreal";
  rdfs:comment "Implantation, intravitreal";
  dcterms:description "Implantation, intravitreal".

cs:RouteOfAdministration\#SQIMPLNT rdfs:subClassOf cs:RouteOfAdministration\#%5fImplantation;
  rdfs:label "Implantation, subcutaneous";
  dc:title "Implantation, subcutaneous";
  rdfs:comment "Implantation, subcutaneous";
  dcterms:description "Implantation, subcutaneous".

cs:RouteOfAdministration\#%5fInfusion rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Infusion";
  dc:title "Infusion";
  rdfs:comment "Infusion";
  dcterms:description "Infusion".

cs:RouteOfAdministration\#EPI rdfs:subClassOf cs:RouteOfAdministration\#%5fInfusion;
  rdfs:label "Infusion, epidural";
  dc:title "Infusion, epidural";
  rdfs:comment "Infusion, epidural";
  dcterms:description "Infusion, epidural".

cs:RouteOfAdministration\#IA rdfs:subClassOf cs:RouteOfAdministration\#%5fInfusion;
  rdfs:label "Infusion, intraarterial catheter";
  dc:title "Infusion, intraarterial catheter";
  rdfs:comment "Infusion, intraarterial catheter";
  dcterms:description "Infusion, intraarterial catheter".

cs:RouteOfAdministration\#IC rdfs:subClassOf cs:RouteOfAdministration\#%5fInfusion;
  rdfs:label "Infusion, intracardiac";
  dc:title "Infusion, intracardiac";
  rdfs:comment "Infusion, intracardiac";
  dcterms:description "Infusion, intracardiac".

cs:RouteOfAdministration\#ICOR rdfs:subClassOf cs:RouteOfAdministration\#%5fInfusion;
  rdfs:label "Infusion, intracoronary";
  dc:title "Infusion, intracoronary";
  rdfs:comment "Infusion, intracoronary";
  dcterms:description "Infusion, intracoronary".

cs:RouteOfAdministration\#IOSSC rdfs:subClassOf cs:RouteOfAdministration\#%5fInfusion;
  rdfs:label "Infusion, intraosseous, continuous";
  dc:title "Infusion, intraosseous, continuous";
  rdfs:comment "Infusion, intraosseous, continuous";
  dcterms:description "Infusion, intraosseous, continuous".

cs:RouteOfAdministration\#IT rdfs:subClassOf cs:RouteOfAdministration\#%5fInfusion;
  rdfs:label "Infusion, intrathecal";
  dc:title "Infusion, intrathecal";
  rdfs:comment "Infusion, intrathecal";
  dcterms:description "Infusion, intrathecal".

cs:RouteOfAdministration\#IV rdfs:subClassOf cs:RouteOfAdministration\#%5fInfusion;
  rdfs:label "Infusion, intravenous";
  dc:title "Infusion, intravenous";
  rdfs:comment "Infusion, intravenous";
  dcterms:description "Infusion, intravenous".

cs:RouteOfAdministration\#IVC rdfs:subClassOf cs:RouteOfAdministration\#IV;
  rdfs:label "Infusion, intravenous catheter";
  dc:title "Infusion, intravenous catheter";
  rdfs:comment "Infusion, intravenous catheter";
  dcterms:description "Infusion, intravenous catheter".

cs:RouteOfAdministration\#IVCC rdfs:subClassOf cs:RouteOfAdministration\#IV;
  rdfs:label "Infusion, intravenous catheter, continuous";
  dc:title "Infusion, intravenous catheter, continuous";
  rdfs:comment "Infusion, intravenous catheter, continuous";
  dcterms:description "Infusion, intravenous catheter, continuous".

cs:RouteOfAdministration\#IVCI rdfs:subClassOf cs:RouteOfAdministration\#IV;
  rdfs:label "Infusion, intravenous catheter, intermittent";
  dc:title "Infusion, intravenous catheter, intermittent";
  rdfs:comment "Infusion, intravenous catheter, intermittent";
  dcterms:description "Infusion, intravenous catheter, intermittent".

cs:RouteOfAdministration\#PCA rdfs:subClassOf cs:RouteOfAdministration\#IV;
  rdfs:label "Infusion, intravenous catheter, pca pump";
  dc:title "Infusion, intravenous catheter, pca pump";
  rdfs:comment "Infusion, intravenous catheter, pca pump";
  dcterms:description "Infusion, intravenous catheter, pca pump".

cs:RouteOfAdministration\#IVASCINFUS rdfs:subClassOf cs:RouteOfAdministration\#%5fInfusion;
  rdfs:label "Infusion, intravascular";
  dc:title "Infusion, intravascular";
  rdfs:comment "Infusion, intravascular";
  dcterms:description "Infusion, intravascular".

cs:RouteOfAdministration\#SQINFUS rdfs:subClassOf cs:RouteOfAdministration\#%5fInfusion;
  rdfs:label "Infusion, subcutaneous";
  dc:title "Infusion, subcutaneous";
  rdfs:comment "Infusion, subcutaneous";
  dcterms:description "Infusion, subcutaneous".

cs:RouteOfAdministration\#%5fInhalation rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Inhalation";
  dc:title "Inhalation";
  rdfs:comment "Inhalation";
  dcterms:description "Inhalation".

cs:RouteOfAdministration\#IPINHL rdfs:subClassOf cs:RouteOfAdministration\#%5fInhalation;
  rdfs:label "Inhalation, respiratory";
  dc:title "Inhalation, respiratory";
  rdfs:comment "Inhalation, oral";
  dcterms:description "Inhalation, oral".

cs:RouteOfAdministration\#ORIFINHL rdfs:subClassOf cs:RouteOfAdministration\#IPINHL;
  rdfs:label "Inhalation, oral intermittent flow";
  dc:title "Inhalation, oral intermittent flow";
  rdfs:comment "Inhalation, oral intermittent flow";
  dcterms:description "Inhalation, oral intermittent flow".

cs:RouteOfAdministration\#REBREATH rdfs:subClassOf cs:RouteOfAdministration\#IPINHL;
  rdfs:label "Inhalation, oral rebreather mask";
  dc:title "Inhalation, oral rebreather mask";
  rdfs:comment "Inhalation, oral rebreather mask";
  dcterms:description "Inhalation, oral rebreather mask".

cs:RouteOfAdministration\#IPPB rdfs:subClassOf cs:RouteOfAdministration\#%5fInhalation;
  rdfs:label "Inhalation, intermittent positive pressure breathing (ippb)";
  dc:title "Inhalation, intermittent positive pressure breathing (ippb)";
  rdfs:comment "Inhalation, intermittent positive pressure breathing (ippb)";
  dcterms:description "Inhalation, intermittent positive pressure breathing (ippb)".

cs:RouteOfAdministration\#NASINHL rdfs:subClassOf cs:RouteOfAdministration\#%5fInhalation;
  rdfs:label "Inhalation, nasal";
  dc:title "Inhalation, nasal";
  rdfs:comment "Inhalation, nasal";
  dcterms:description "Inhalation, nasal".

cs:RouteOfAdministration\#NASINHLC rdfs:subClassOf cs:RouteOfAdministration\#NASINHL;
  rdfs:label "Inhalation, nasal cannula";
  dc:title "Inhalation, nasal cannula";
  rdfs:comment "Inhalation, nasal, prongs";
  dcterms:description "Inhalation, nasal, prongs".

cs:RouteOfAdministration\#NEB rdfs:subClassOf cs:RouteOfAdministration\#%5fInhalation;
  rdfs:label "Inhalation, nebulization";
  dc:title "Inhalation, nebulization";
  rdfs:comment "Inhalation, nebulization";
  dcterms:description "Inhalation, nebulization".

cs:RouteOfAdministration\#NASNEB rdfs:subClassOf cs:RouteOfAdministration\#NEB;
  rdfs:label "Inhalation, nebulization, nasal";
  dc:title "Inhalation, nebulization, nasal";
  rdfs:comment "Inhalation, nebulization, nasal";
  dcterms:description "Inhalation, nebulization, nasal".

cs:RouteOfAdministration\#ORNEB rdfs:subClassOf cs:RouteOfAdministration\#NEB;
  rdfs:label "Inhalation, nebulization, oral";
  dc:title "Inhalation, nebulization, oral";
  rdfs:comment "Inhalation, nebulization, oral";
  dcterms:description "Inhalation, nebulization, oral".

cs:RouteOfAdministration\#TRACH rdfs:subClassOf cs:RouteOfAdministration\#%5fInhalation;
  rdfs:label "Inhalation, tracheostomy";
  dc:title "Inhalation, tracheostomy";
  rdfs:comment "Inhalation, tracheostomy";
  dcterms:description "Inhalation, tracheostomy".

cs:RouteOfAdministration\#VENT rdfs:subClassOf cs:RouteOfAdministration\#%5fInhalation;
  rdfs:label "Inhalation, ventilator";
  dc:title "Inhalation, ventilator";
  rdfs:comment "Inhalation, ventilator";
  dcterms:description "Inhalation, ventilator".

cs:RouteOfAdministration\#VENTMASK rdfs:subClassOf cs:RouteOfAdministration\#%5fInhalation;
  rdfs:label "Inhalation, ventimask";
  dc:title "Inhalation, ventimask";
  rdfs:comment "Inhalation, ventimask";
  dcterms:description "Inhalation, ventimask".

cs:RouteOfAdministration\#%5fInjection rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Injection";
  dc:title "Injection";
  rdfs:comment "Injection";
  dcterms:description "Injection".

cs:RouteOfAdministration\#AMNINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, amniotic fluid";
  dc:title "Injection, amniotic fluid";
  rdfs:comment "Injection, amniotic fluid";
  dcterms:description "Injection, amniotic fluid".

cs:RouteOfAdministration\#BILINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, biliary tract";
  dc:title "Injection, biliary tract";
  rdfs:comment "Injection, biliary tract";
  dcterms:description "Injection, biliary tract".

cs:RouteOfAdministration\#CHOLINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, for cholangiography";
  dc:title "Injection, for cholangiography";
  rdfs:comment "Injection, for cholangiography";
  dcterms:description "Injection, for cholangiography".

cs:RouteOfAdministration\#CERVINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, cervical";
  dc:title "Injection, cervical";
  rdfs:comment "Injection, cervical";
  dcterms:description "Injection, cervical".

cs:RouteOfAdministration\#EPIDURINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, epidural";
  dc:title "Injection, epidural";
  rdfs:comment "Injection, epidural";
  dcterms:description "Injection, epidural".

cs:RouteOfAdministration\#EPIINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, epidural, push";
  dc:title "Injection, epidural, push";
  rdfs:comment "Injection, epidural, push";
  dcterms:description "Injection, epidural, push".

cs:RouteOfAdministration\#EPINJSP rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, epidural, slow push";
  dc:title "Injection, epidural, slow push";
  rdfs:comment "Injection, epidural, slow push";
  dcterms:description "Injection, epidural, slow push".

cs:RouteOfAdministration\#EXTRAMNINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, extra-amniotic";
  dc:title "Injection, extra-amniotic";
  rdfs:comment "Injection, extra-amniotic";
  dcterms:description "Injection, extra-amniotic".

cs:RouteOfAdministration\#EXTCORPINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, extracorporeal";
  dc:title "Injection, extracorporeal";
  rdfs:comment "Injection, extracorporeal";
  dcterms:description "Injection, extracorporeal".

cs:RouteOfAdministration\#GBINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, gastric button";
  dc:title "Injection, gastric button";
  rdfs:comment "Injection, gastric button";
  dcterms:description "Injection, gastric button".

cs:RouteOfAdministration\#GINGINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, gingival";
  dc:title "Injection, gingival";
  rdfs:comment "Injection, gingival";
  dcterms:description "Injection, gingival".

cs:RouteOfAdministration\#BLADINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, urinary bladder";
  dc:title "Injection, urinary bladder";
  rdfs:comment "Injection, urinary bladder";
  dcterms:description "Injection, urinary bladder".

cs:RouteOfAdministration\#ENDOSININJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, endosinusial";
  dc:title "Injection, endosinusial";
  rdfs:comment "Injection, endosinusial";
  dcterms:description "Injection, endosinusial".

cs:RouteOfAdministration\#HEMOPORT rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, hemodialysis port";
  dc:title "Injection, hemodialysis port";
  rdfs:comment "Injection, hemodialysis port";
  dcterms:description "Injection, hemodialysis port".

cs:RouteOfAdministration\#IABDINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intra-abdominal";
  dc:title "Injection, intra-abdominal";
  rdfs:comment "Injection, intra-abdominal";
  dcterms:description "Injection, intra-abdominal".

cs:RouteOfAdministration\#IAINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intraarterial";
  dc:title "Injection, intraarterial";
  rdfs:comment "Injection, intraarterial";
  dcterms:description "Injection, intraarterial".

cs:RouteOfAdministration\#IAINJP rdfs:subClassOf cs:RouteOfAdministration\#IAINJ;
  rdfs:label "Injection, intraarterial, push";
  dc:title "Injection, intraarterial, push";
  rdfs:comment "Injection, intraarterial, push";
  dcterms:description "Injection, intraarterial, push".

cs:RouteOfAdministration\#IAINJSP rdfs:subClassOf cs:RouteOfAdministration\#IAINJ;
  rdfs:label "Injection, intraarterial, slow push";
  dc:title "Injection, intraarterial, slow push";
  rdfs:comment "Injection, intraarterial, slow push";
  dcterms:description "Injection, intraarterial, slow push".

cs:RouteOfAdministration\#IARTINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intraarticular";
  dc:title "Injection, intraarticular";
  rdfs:comment "Injection, intraarticular";
  dcterms:description "Injection, intraarticular".

cs:RouteOfAdministration\#IBURSINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intrabursal";
  dc:title "Injection, intrabursal";
  rdfs:comment "Injection, intrabursal";
  dcterms:description "Injection, intrabursal".

cs:RouteOfAdministration\#ICARDINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intracardiac";
  dc:title "Injection, intracardiac";
  rdfs:comment "Injection, intracardiac";
  dcterms:description "Injection, intracardiac".

cs:RouteOfAdministration\#ICARDINJRP rdfs:subClassOf cs:RouteOfAdministration\#ICARDINJ;
  rdfs:label "Injection, intracardiac, rapid push";
  dc:title "Injection, intracardiac, rapid push";
  rdfs:comment "Injection, intracardiac, rapid push";
  dcterms:description "Injection, intracardiac, rapid push".

cs:RouteOfAdministration\#ICARDINJSP rdfs:subClassOf cs:RouteOfAdministration\#ICARDINJ;
  rdfs:label "Injection, intracardiac, slow push";
  dc:title "Injection, intracardiac, slow push";
  rdfs:comment "Injection, intracardiac, slow push";
  dcterms:description "Injection, intracardiac, slow push".

cs:RouteOfAdministration\#ICARINJP rdfs:subClassOf cs:RouteOfAdministration\#ICARDINJ;
  rdfs:label "Injection, intracardiac, push";
  dc:title "Injection, intracardiac, push";
  rdfs:comment "Injection, intracardiac, push";
  dcterms:description "Injection, intracardiac, push".

cs:RouteOfAdministration\#ICARTINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intracartilaginous";
  dc:title "Injection, intracartilaginous";
  rdfs:comment "Injection, intracartilaginous";
  dcterms:description "Injection, intracartilaginous".

cs:RouteOfAdministration\#ICAUDINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intracaudal";
  dc:title "Injection, intracaudal";
  rdfs:comment "Injection, intracaudal";
  dcterms:description "Injection, intracaudal".

cs:RouteOfAdministration\#ICAVINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intracavernous";
  dc:title "Injection, intracavernous";
  rdfs:comment "Injection, intracavernous";
  dcterms:description "Injection, intracavernous".

cs:RouteOfAdministration\#ICAVITINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intracavitary";
  dc:title "Injection, intracavitary";
  rdfs:comment "Injection, intracavitary";
  dcterms:description "Injection, intracavitary".

cs:RouteOfAdministration\#ICEREBINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intracerebral";
  dc:title "Injection, intracerebral";
  rdfs:comment "Injection, intracerebral";
  dcterms:description "Injection, intracerebral".

cs:RouteOfAdministration\#ICISTERNINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intracisternal";
  dc:title "Injection, intracisternal";
  rdfs:comment "Injection, intracisternal";
  dcterms:description "Injection, intracisternal".

cs:RouteOfAdministration\#ICORONINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intracoronary";
  dc:title "Injection, intracoronary";
  rdfs:comment "Injection, intracoronary";
  dcterms:description "Injection, intracoronary".

cs:RouteOfAdministration\#ICORONINJP rdfs:subClassOf cs:RouteOfAdministration\#ICORONINJ;
  rdfs:label "Injection, intracoronary, push";
  dc:title "Injection, intracoronary, push";
  rdfs:comment "Injection, intracoronary, push";
  dcterms:description "Injection, intracoronary, push".

cs:RouteOfAdministration\#ICORPCAVINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intracorpus cavernosum";
  dc:title "Injection, intracorpus cavernosum";
  rdfs:comment "Injection, intracorpus cavernosum";
  dcterms:description "Injection, intracorpus cavernosum".

cs:RouteOfAdministration\#IDINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intradermal";
  dc:title "Injection, intradermal";
  rdfs:comment "Injection, intradermal";
  dcterms:description "Injection, intradermal".

cs:RouteOfAdministration\#IDISCINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intradiscal";
  dc:title "Injection, intradiscal";
  rdfs:comment "Injection, intradiscal";
  dcterms:description "Injection, intradiscal".

cs:RouteOfAdministration\#IDUCTINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intraductal";
  dc:title "Injection, intraductal";
  rdfs:comment "Injection, intraductal";
  dcterms:description "Injection, intraductal".

cs:RouteOfAdministration\#IDURINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intradural";
  dc:title "Injection, intradural";
  rdfs:comment "Injection, intradural";
  dcterms:description "Injection, intradural".

cs:RouteOfAdministration\#IEPIDINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intraepidermal";
  dc:title "Injection, intraepidermal";
  rdfs:comment "Injection, intraepidermal";
  dcterms:description "Injection, intraepidermal".

cs:RouteOfAdministration\#IEPITHINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intraepithelial";
  dc:title "Injection, intraepithelial";
  rdfs:comment "Injection, intraepithelial";
  dcterms:description "Injection, intraepithelial".

cs:RouteOfAdministration\#ILESINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intralesional";
  dc:title "Injection, intralesional";
  rdfs:comment "Injection, intralesional";
  dcterms:description "Injection, intralesional".

cs:RouteOfAdministration\#ILUMINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intraluminal";
  dc:title "Injection, intraluminal";
  rdfs:comment "Injection, intraluminal";
  dcterms:description "Injection, intraluminal".

cs:RouteOfAdministration\#ILYMPJINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intralymphatic";
  dc:title "Injection, intralymphatic";
  rdfs:comment "Injection, intralymphatic";
  dcterms:description "Injection, intralymphatic".

cs:RouteOfAdministration\#IM rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intramuscular";
  dc:title "Injection, intramuscular";
  rdfs:comment "Injection, intramuscular";
  dcterms:description "Injection, intramuscular".

cs:RouteOfAdministration\#IMD rdfs:subClassOf cs:RouteOfAdministration\#IM;
  rdfs:label "Injection, intramuscular, deep";
  dc:title "Injection, intramuscular, deep";
  rdfs:comment "Injection, intramuscular, deep";
  dcterms:description "Injection, intramuscular, deep".

cs:RouteOfAdministration\#IMZ rdfs:subClassOf cs:RouteOfAdministration\#IM;
  rdfs:label "Injection, intramuscular, z track";
  dc:title "Injection, intramuscular, z track";
  rdfs:comment "Injection, intramuscular, z track";
  dcterms:description "Injection, intramuscular, z track".

cs:RouteOfAdministration\#IMEDULINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intramedullary";
  dc:title "Injection, intramedullary";
  rdfs:comment "Injection, intramedullary";
  dcterms:description "Injection, intramedullary".

cs:RouteOfAdministration\#INTERMENINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, interameningeal";
  dc:title "Injection, interameningeal";
  rdfs:comment "Injection, interameningeal";
  dcterms:description "Injection, interameningeal".

cs:RouteOfAdministration\#INTERSTITINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, interstitial";
  dc:title "Injection, interstitial";
  rdfs:comment "Injection, interstitial";
  dcterms:description "Injection, interstitial".

cs:RouteOfAdministration\#IOINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intraocular";
  dc:title "Injection, intraocular";
  rdfs:comment "Injection, intraocular";
  dcterms:description "Injection, intraocular".

cs:RouteOfAdministration\#IOSSINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intraosseous";
  dc:title "Injection, intraosseous";
  rdfs:comment "Injection, intraosseous";
  dcterms:description "Injection, intraosseous".

cs:RouteOfAdministration\#IOVARINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intraovarian";
  dc:title "Injection, intraovarian";
  rdfs:comment "Injection, intraovarian";
  dcterms:description "Injection, intraovarian".

cs:RouteOfAdministration\#IPCARDINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intrapericardial";
  dc:title "Injection, intrapericardial";
  rdfs:comment "Injection, intrapericardial";
  dcterms:description "Injection, intrapericardial".

cs:RouteOfAdministration\#IPERINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intraperitoneal";
  dc:title "Injection, intraperitoneal";
  rdfs:comment "Injection, intraperitoneal";
  dcterms:description "Injection, intraperitoneal".

cs:RouteOfAdministration\#IPINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intrapulmonary";
  dc:title "Injection, intrapulmonary";
  rdfs:comment "Injection, intrapulmonary";
  dcterms:description "Injection, intrapulmonary".

cs:RouteOfAdministration\#IPLRINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intrapleural";
  dc:title "Injection, intrapleural";
  rdfs:comment "Injection, intrapleural";
  dcterms:description "Injection, intrapleural".

cs:RouteOfAdministration\#IPROSTINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intraprostatic";
  dc:title "Injection, intraprostatic";
  rdfs:comment "Injection, intraprostatic";
  dcterms:description "Injection, intraprostatic".

cs:RouteOfAdministration\#IPUMPINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, insulin pump";
  dc:title "Injection, insulin pump";
  rdfs:comment "Injection, insulin pump";
  dcterms:description "Injection, insulin pump".

cs:RouteOfAdministration\#ISINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intraspinal";
  dc:title "Injection, intraspinal";
  rdfs:comment "Injection, intraspinal";
  dcterms:description "Injection, intraspinal".

cs:RouteOfAdministration\#ISTERINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intrasternal";
  dc:title "Injection, intrasternal";
  rdfs:comment "Injection, intrasternal";
  dcterms:description "Injection, intrasternal".

cs:RouteOfAdministration\#ISYNINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intrasynovial";
  dc:title "Injection, intrasynovial";
  rdfs:comment "Injection, intrasynovial";
  dcterms:description "Injection, intrasynovial".

cs:RouteOfAdministration\#ITENDINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intratendinous";
  dc:title "Injection, intratendinous";
  rdfs:comment "Injection, intratendinous";
  dcterms:description "Injection, intratendinous".

cs:RouteOfAdministration\#ITESTINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intratesticular";
  dc:title "Injection, intratesticular";
  rdfs:comment "Injection, intratesticular";
  dcterms:description "Injection, intratesticular".

cs:RouteOfAdministration\#ITHORINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intrathoracic";
  dc:title "Injection, intrathoracic";
  rdfs:comment "Injection, intrathoracic";
  dcterms:description "Injection, intrathoracic".

cs:RouteOfAdministration\#ITINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intrathecal";
  dc:title "Injection, intrathecal";
  rdfs:comment "Injection, intrathecal";
  dcterms:description "Injection, intrathecal".

cs:RouteOfAdministration\#ITUBINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intratubular";
  dc:title "Injection, intratubular";
  rdfs:comment "Injection, intratubular";
  dcterms:description "Injection, intratubular".

cs:RouteOfAdministration\#ITUMINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intratumor";
  dc:title "Injection, intratumor";
  rdfs:comment "Injection, intratumor";
  dcterms:description "Injection, intratumor".

cs:RouteOfAdministration\#ITYMPINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intratympanic";
  dc:title "Injection, intratympanic";
  rdfs:comment "Injection, intratympanic";
  dcterms:description "Injection, intratympanic".

cs:RouteOfAdministration\#IUINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intrauterine";
  dc:title "Injection, intrauterine";
  rdfs:comment "Injection, intracervical (uterus)";
  dcterms:description "Injection, intracervical (uterus)".

cs:RouteOfAdministration\#IUINJC rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intracervical (uterus)";
  dc:title "Injection, intracervical (uterus)";
  rdfs:comment "Injection, intracervical (uterus)";
  dcterms:description "Injection, intracervical (uterus)".

cs:RouteOfAdministration\#IURETINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intraureteral, retrograde";
  dc:title "Injection, intraureteral, retrograde";
  rdfs:comment "Injection, intraureteral, retrograde";
  dcterms:description "Injection, intraureteral, retrograde".

cs:RouteOfAdministration\#IVASCINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intravascular";
  dc:title "Injection, intravascular";
  rdfs:comment "Injection, intravascular";
  dcterms:description "Injection, intravascular".

cs:RouteOfAdministration\#IVENTINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intraventricular (heart)";
  dc:title "Injection, intraventricular (heart)";
  rdfs:comment "Injection, intraventricular (heart)";
  dcterms:description "Injection, intraventricular (heart)".

cs:RouteOfAdministration\#IVESINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intravesicle";
  dc:title "Injection, intravesicle";
  rdfs:comment "Injection, intravesicle";
  dcterms:description "Injection, intravesicle".

cs:RouteOfAdministration\#IVINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intravenous";
  dc:title "Injection, intravenous";
  rdfs:comment "Injection, intravenous";
  dcterms:description "Injection, intravenous".

cs:RouteOfAdministration\#IVINJBOL rdfs:subClassOf cs:RouteOfAdministration\#IVINJ;
  rdfs:label "Injection, intravenous, bolus";
  dc:title "Injection, intravenous, bolus";
  rdfs:comment "Injection, intravenous, bolus";
  dcterms:description "Injection, intravenous, bolus".

cs:RouteOfAdministration\#IVPUSH rdfs:subClassOf cs:RouteOfAdministration\#IVINJ;
  rdfs:label "Injection, intravenous, push";
  dc:title "Injection, intravenous, push";
  rdfs:comment "Injection, intravenous, push";
  dcterms:description "Injection, intravenous, push".

cs:RouteOfAdministration\#IVRPUSH rdfs:subClassOf cs:RouteOfAdministration\#IVINJ;
  rdfs:label "Injection, intravenous, rapid push";
  dc:title "Injection, intravenous, rapid push";
  rdfs:comment "Injection, intravenous, rapid push";
  dcterms:description "Injection, intravenous, rapid push".

cs:RouteOfAdministration\#IVSPUSH rdfs:subClassOf cs:RouteOfAdministration\#IVINJ;
  rdfs:label "Injection, intravenous, slow push";
  dc:title "Injection, intravenous, slow push";
  rdfs:comment "Injection, intravenous, slow push";
  dcterms:description "Injection, intravenous, slow push".

cs:RouteOfAdministration\#IVITINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, intravitreal";
  dc:title "Injection, intravitreal";
  rdfs:comment "Injection, intravitreal";
  dcterms:description "Injection, intravitreal".

cs:RouteOfAdministration\#PAINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, periarticular";
  dc:title "Injection, periarticular";
  rdfs:comment "Injection, periarticular";
  dcterms:description "Injection, periarticular".

cs:RouteOfAdministration\#PARENTINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, parenteral";
  dc:title "Injection, parenteral";
  rdfs:comment "Injection, parenteral";
  dcterms:description "Injection, parenteral".

cs:RouteOfAdministration\#PDONTINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, periodontal";
  dc:title "Injection, periodontal";
  rdfs:comment "Injection, periodontal";
  dcterms:description "Injection, periodontal".

cs:RouteOfAdministration\#PDPINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, peritoneal dialysis port";
  dc:title "Injection, peritoneal dialysis port";
  rdfs:comment "Injection, peritoneal dialysis port";
  dcterms:description "Injection, peritoneal dialysis port".

cs:RouteOfAdministration\#PDURINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, peridural";
  dc:title "Injection, peridural";
  rdfs:comment "Injection, peridural";
  dcterms:description "Injection, peridural".

cs:RouteOfAdministration\#PNINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, perineural";
  dc:title "Injection, perineural";
  rdfs:comment "Injection, perineural";
  dcterms:description "Injection, perineural".

cs:RouteOfAdministration\#PNSINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, paranasal sinuses";
  dc:title "Injection, paranasal sinuses";
  rdfs:comment "Injection, paranasal sinuses";
  dcterms:description "Injection, paranasal sinuses".

cs:RouteOfAdministration\#RBINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, retrobulbar";
  dc:title "Injection, retrobulbar";
  rdfs:comment "Injection, retrobulbar";
  dcterms:description "Injection, retrobulbar".

cs:RouteOfAdministration\#SCINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, subconjunctival";
  dc:title "Injection, subconjunctival";
  rdfs:comment "Injection, subconjunctival";
  dcterms:description "Injection, subconjunctival".

cs:RouteOfAdministration\#SLESINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, sublesional";
  dc:title "Injection, sublesional";
  rdfs:comment "Injection, sublesional";
  dcterms:description "Injection, sublesional".

cs:RouteOfAdministration\#SOFTISINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, soft tissue";
  dc:title "Injection, soft tissue";
  rdfs:comment "Injection, soft tissue";
  dcterms:description "Injection, soft tissue".

cs:RouteOfAdministration\#SQ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, subcutaneous";
  dc:title "Injection, subcutaneous";
  rdfs:comment "Injection, subcutaneous";
  dcterms:description "Injection, subcutaneous".

cs:RouteOfAdministration\#SUBARACHINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, subarachnoid";
  dc:title "Injection, subarachnoid";
  rdfs:comment "Injection, subarachnoid";
  dcterms:description "Injection, subarachnoid".

cs:RouteOfAdministration\#SUBMUCINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, submucosal";
  dc:title "Injection, submucosal";
  rdfs:comment "Injection, submucosal";
  dcterms:description "Injection, submucosal".

cs:RouteOfAdministration\#TRPLACINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, transplacental";
  dc:title "Injection, transplacental";
  rdfs:comment "Injection, transplacental";
  dcterms:description "Injection, transplacental".

cs:RouteOfAdministration\#TRTRACHINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, transtracheal";
  dc:title "Injection, transtracheal";
  rdfs:comment "Injection, transtracheal";
  dcterms:description "Injection, transtracheal".

cs:RouteOfAdministration\#URETHINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, urethral";
  dc:title "Injection, urethral";
  rdfs:comment "Injection, urethral";
  dcterms:description "Injection, urethral".

cs:RouteOfAdministration\#URETINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInjection;
  rdfs:label "Injection, ureteral";
  dc:title "Injection, ureteral";
  rdfs:comment "Injection, ureteral";
  dcterms:description "Injection, ureteral".

cs:RouteOfAdministration\#%5fInsertion rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Insertion";
  dc:title "Insertion";
  rdfs:comment "Insertion";
  dcterms:description "Insertion".

cs:RouteOfAdministration\#CERVINS rdfs:subClassOf cs:RouteOfAdministration\#%5fInsertion;
  rdfs:label "Insertion, cervical (uterine)";
  dc:title "Insertion, cervical (uterine)";
  rdfs:comment "Insertion, cervical (uterine)";
  dcterms:description "Insertion, cervical (uterine)".

cs:RouteOfAdministration\#IOSURGINS rdfs:subClassOf cs:RouteOfAdministration\#%5fInsertion;
  rdfs:label "Insertion, intraocular, surgical";
  dc:title "Insertion, intraocular, surgical";
  rdfs:comment "Insertion, intraocular, surgical";
  dcterms:description "Insertion, intraocular, surgical".

cs:RouteOfAdministration\#IU rdfs:subClassOf cs:RouteOfAdministration\#%5fInsertion;
  rdfs:label "Insertion, intrauterine";
  dc:title "Insertion, intrauterine";
  rdfs:comment "Insertion, intrauterine";
  dcterms:description "Insertion, intrauterine".

cs:RouteOfAdministration\#LPINS rdfs:subClassOf cs:RouteOfAdministration\#%5fInsertion;
  rdfs:label "Insertion, lacrimal puncta";
  dc:title "Insertion, lacrimal puncta";
  rdfs:comment "Insertion, lacrimal puncta";
  dcterms:description "Insertion, lacrimal puncta".

cs:RouteOfAdministration\#PR rdfs:subClassOf cs:RouteOfAdministration\#%5fInsertion;
  rdfs:label "Insertion, rectal";
  dc:title "Insertion, rectal";
  rdfs:comment "Insertion, rectal";
  dcterms:description "Insertion, rectal".

cs:RouteOfAdministration\#SQSURGINS rdfs:subClassOf cs:RouteOfAdministration\#%5fInsertion;
  rdfs:label "Insertion, subcutaneous, surgical";
  dc:title "Insertion, subcutaneous, surgical";
  rdfs:comment "Insertion, subcutaneous, surgical";
  dcterms:description "Insertion, subcutaneous, surgical".

cs:RouteOfAdministration\#URETHINS rdfs:subClassOf cs:RouteOfAdministration\#%5fInsertion;
  rdfs:label "Insertion, urethral";
  dc:title "Insertion, urethral";
  rdfs:comment "Insertion, urethral";
  dcterms:description "Insertion, urethral".

cs:RouteOfAdministration\#VAGINSI rdfs:subClassOf cs:RouteOfAdministration\#%5fInsertion;
  rdfs:label "Insertion, vaginal";
  dc:title "Insertion, vaginal";
  rdfs:comment "Insertion, vaginal";
  dcterms:description "Insertion, vaginal".

cs:RouteOfAdministration\#%5fInstillation rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Instillation";
  dc:title "Instillation";
  rdfs:comment "Instillation";
  dcterms:description "Instillation".

cs:RouteOfAdministration\#CECINSTL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, cecostomy";
  dc:title "Instillation, cecostomy";
  rdfs:comment "Instillation, cecostomy";
  dcterms:description "Instillation, cecostomy".

cs:RouteOfAdministration\#EFT rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, enteral feeding tube";
  dc:title "Instillation, enteral feeding tube";
  rdfs:comment "Instillation, enteral feeding tube";
  dcterms:description "Instillation, enteral feeding tube".

cs:RouteOfAdministration\#ENTINSTL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, enteral";
  dc:title "Instillation, enteral";
  rdfs:comment "Instillation, enteral";
  dcterms:description "Instillation, enteral".

cs:RouteOfAdministration\#GT rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, gastrostomy tube";
  dc:title "Instillation, gastrostomy tube";
  rdfs:comment "Instillation, gastrostomy tube";
  dcterms:description "Instillation, gastrostomy tube".

cs:RouteOfAdministration\#NGT rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, nasogastric tube";
  dc:title "Instillation, nasogastric tube";
  rdfs:comment "Instillation, nasogastric tube";
  dcterms:description "Instillation, nasogastric tube".

cs:RouteOfAdministration\#OGT rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, orogastric tube";
  dc:title "Instillation, orogastric tube";
  rdfs:comment "Instillation, orogastric tube";
  dcterms:description "Instillation, orogastric tube".

cs:RouteOfAdministration\#BLADINSTL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, urinary catheter";
  dc:title "Instillation, urinary catheter";
  rdfs:comment "Instillation, urinary catheter";
  dcterms:description "Instillation, urinary catheter".

cs:RouteOfAdministration\#CAPDINSTL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, continuous ambulatory peritoneal dialysis port";
  dc:title "Instillation, continuous ambulatory peritoneal dialysis port";
  rdfs:comment "Instillation, continuous ambulatory peritoneal dialysis port";
  dcterms:description "Instillation, continuous ambulatory peritoneal dialysis port".

cs:RouteOfAdministration\#CTINSTL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, chest tube";
  dc:title "Instillation, chest tube";
  rdfs:comment "Instillation, chest tube";
  dcterms:description "Instillation, chest tube".

cs:RouteOfAdministration\#ETINSTL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, endotracheal tube";
  dc:title "Instillation, endotracheal tube";
  rdfs:comment "Instillation, endotracheal tube";
  dcterms:description "Instillation, endotracheal tube".

cs:RouteOfAdministration\#GJT rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, gastro-jejunostomy tube";
  dc:title "Instillation, gastro-jejunostomy tube";
  rdfs:comment "Instillation, gastro-jejunostomy tube";
  dcterms:description "Instillation, gastro-jejunostomy tube".

cs:RouteOfAdministration\#IBRONCHINSTIL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, intrabronchial";
  dc:title "Instillation, intrabronchial";
  rdfs:comment "Instillation, intrabronchial";
  dcterms:description "Instillation, intrabronchial".

cs:RouteOfAdministration\#IDUODINSTIL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, intraduodenal";
  dc:title "Instillation, intraduodenal";
  rdfs:comment "Instillation, intraduodenal";
  dcterms:description "Instillation, intraduodenal".

cs:RouteOfAdministration\#IESOPHINSTIL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, intraesophageal";
  dc:title "Instillation, intraesophageal";
  rdfs:comment "Instillation, intraesophageal";
  dcterms:description "Instillation, intraesophageal".

cs:RouteOfAdministration\#IGASTINSTIL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, intragastric";
  dc:title "Instillation, intragastric";
  rdfs:comment "Instillation, intragastric";
  dcterms:description "Instillation, intragastric".

cs:RouteOfAdministration\#IILEALINJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, intraileal";
  dc:title "Instillation, intraileal";
  rdfs:comment "Instillation, intraileal";
  dcterms:description "Instillation, intraileal".

cs:RouteOfAdministration\#IOINSTL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, intraocular";
  dc:title "Instillation, intraocular";
  rdfs:comment "Instillation, intraocular";
  dcterms:description "Instillation, intraocular".

cs:RouteOfAdministration\#ISININSTIL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, intrasinal";
  dc:title "Instillation, intrasinal";
  rdfs:comment "Instillation, intrasinal";
  dcterms:description "Instillation, intrasinal".

cs:RouteOfAdministration\#ITRACHINSTIL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, intratracheal";
  dc:title "Instillation, intratracheal";
  rdfs:comment "Instillation, intratracheal";
  dcterms:description "Instillation, intratracheal".

cs:RouteOfAdministration\#IUINSTL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, intrauterine";
  dc:title "Instillation, intrauterine";
  rdfs:comment "Instillation, intrauterine";
  dcterms:description "Instillation, intrauterine".

cs:RouteOfAdministration\#JJTINSTL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, jejunostomy tube";
  dc:title "Instillation, jejunostomy tube";
  rdfs:comment "Instillation, jejunostomy tube";
  dcterms:description "Instillation, jejunostomy tube".

cs:RouteOfAdministration\#LARYNGINSTIL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, laryngeal";
  dc:title "Instillation, laryngeal";
  rdfs:comment "Instillation, laryngeal";
  dcterms:description "Instillation, laryngeal".

cs:RouteOfAdministration\#NASALINSTIL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, nasal";
  dc:title "Instillation, nasal";
  rdfs:comment "Instillation, nasal";
  dcterms:description "Instillation, nasal".

cs:RouteOfAdministration\#NASOGASINSTIL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, nasogastric";
  dc:title "Instillation, nasogastric";
  rdfs:comment "Instillation, nasogastric";
  dcterms:description "Instillation, nasogastric".

cs:RouteOfAdministration\#NTT rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, nasotracheal tube";
  dc:title "Instillation, nasotracheal tube";
  rdfs:comment "Instillation, nasotracheal tube";
  dcterms:description "Instillation, nasotracheal tube".

cs:RouteOfAdministration\#OJJ rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, orojejunum tube";
  dc:title "Instillation, orojejunum tube";
  rdfs:comment "Instillation, orojejunum tube";
  dcterms:description "Instillation, orojejunum tube".

cs:RouteOfAdministration\#OT rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, otic";
  dc:title "Instillation, otic";
  rdfs:comment "Instillation, otic";
  dcterms:description "Instillation, otic".

cs:RouteOfAdministration\#PDPINSTL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, peritoneal dialysis port";
  dc:title "Instillation, peritoneal dialysis port";
  rdfs:comment "Instillation, peritoneal dialysis port";
  dcterms:description "Instillation, peritoneal dialysis port".

cs:RouteOfAdministration\#PNSINSTL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, paranasal sinuses";
  dc:title "Instillation, paranasal sinuses";
  rdfs:comment "Instillation, paranasal sinuses";
  dcterms:description "Instillation, paranasal sinuses".

cs:RouteOfAdministration\#RECINSTL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, rectal";
  dc:title "Instillation, rectal";
  rdfs:comment "Instillation, rectal";
  dcterms:description "Instillation, rectal".

cs:RouteOfAdministration\#RECTINSTL rdfs:subClassOf cs:RouteOfAdministration\#RECINSTL;
  rdfs:label "Instillation, rectal tube";
  dc:title "Instillation, rectal tube";
  rdfs:comment "Instillation, rectal tube";
  dcterms:description "Instillation, rectal tube".

cs:RouteOfAdministration\#SININSTIL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, sinus, unspecified";
  dc:title "Instillation, sinus, unspecified";
  rdfs:comment "Instillation, sinus, unspecified";
  dcterms:description "Instillation, sinus, unspecified".

cs:RouteOfAdministration\#SOFTISINSTIL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, soft tissue";
  dc:title "Instillation, soft tissue";
  rdfs:comment "Instillation, soft tissue";
  dcterms:description "Instillation, soft tissue".

cs:RouteOfAdministration\#TRACHINSTL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, tracheostomy";
  dc:title "Instillation, tracheostomy";
  rdfs:comment "Instillation, tracheostomy";
  dcterms:description "Instillation, tracheostomy".

cs:RouteOfAdministration\#TRTYMPINSTIL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "Instillation, transtympanic";
  dc:title "Instillation, transtympanic";
  rdfs:comment "Instillation, transtympanic";
  dcterms:description "Instillation, transtympanic".

cs:RouteOfAdministration\#URETHINSTL rdfs:subClassOf cs:RouteOfAdministration\#%5fInstillation;
  rdfs:label "instillation, urethral";
  dc:title "instillation, urethral";
  rdfs:comment "Instillation, urethral";
  dcterms:description "Instillation, urethral".

cs:RouteOfAdministration\#%5fIontophoresisRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "IontophoresisRoute";
  dc:title "IontophoresisRoute";
  rdfs:comment "Iontophoresis";
  dcterms:description "Iontophoresis".

cs:RouteOfAdministration\#IONTO rdfs:subClassOf cs:RouteOfAdministration\#%5fIontophoresisRoute;
  rdfs:label "Topical application, iontophoresis";
  dc:title "Topical application, iontophoresis";
  rdfs:comment "Topical application, iontophoresis";
  dcterms:description "Topical application, iontophoresis".

cs:RouteOfAdministration\#%5fIrrigation rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Irrigation";
  dc:title "Irrigation";
  rdfs:comment "Irrigation";
  dcterms:description "Irrigation".

cs:RouteOfAdministration\#GUIRR rdfs:subClassOf cs:RouteOfAdministration\#%5fIrrigation;
  rdfs:label "Irrigation, genitourinary";
  dc:title "Irrigation, genitourinary";
  rdfs:comment "Irrigation, genitourinary";
  dcterms:description "Irrigation, genitourinary".

cs:RouteOfAdministration\#IGASTIRR rdfs:subClassOf cs:RouteOfAdministration\#%5fIrrigation;
  rdfs:label "Irrigation, intragastric";
  dc:title "Irrigation, intragastric";
  rdfs:comment "Irrigation, intragastric";
  dcterms:description "Irrigation, intragastric".

cs:RouteOfAdministration\#ILESIRR rdfs:subClassOf cs:RouteOfAdministration\#%5fIrrigation;
  rdfs:label "Irrigation, intralesional";
  dc:title "Irrigation, intralesional";
  rdfs:comment "Irrigation, intralesional";
  dcterms:description "Irrigation, intralesional".

cs:RouteOfAdministration\#IOIRR rdfs:subClassOf cs:RouteOfAdministration\#%5fIrrigation;
  rdfs:label "Irrigation, intraocular";
  dc:title "Irrigation, intraocular";
  rdfs:comment "Irrigation, intraocular";
  dcterms:description "Irrigation, intraocular".

cs:RouteOfAdministration\#BLADIRR rdfs:subClassOf cs:RouteOfAdministration\#%5fIrrigation;
  rdfs:label "Irrigation, urinary bladder";
  dc:title "Irrigation, urinary bladder";
  rdfs:comment "Irrigation, urinary bladder";
  dcterms:description "Irrigation, urinary bladder".

cs:RouteOfAdministration\#BLADIRRC rdfs:subClassOf cs:RouteOfAdministration\#BLADIRR;
  rdfs:label "Irrigation, urinary bladder, continuous";
  dc:title "Irrigation, urinary bladder, continuous";
  rdfs:comment "Irrigation, urinary bladder, continuous";
  dcterms:description "Irrigation, urinary bladder, continuous".

cs:RouteOfAdministration\#BLADIRRT rdfs:subClassOf cs:RouteOfAdministration\#BLADIRR;
  rdfs:label "Irrigation, urinary bladder, tidal";
  dc:title "Irrigation, urinary bladder, tidal";
  rdfs:comment "Irrigation, urinary bladder, tidal";
  dcterms:description "Irrigation, urinary bladder, tidal".

cs:RouteOfAdministration\#RECIRR rdfs:subClassOf cs:RouteOfAdministration\#%5fIrrigation;
  rdfs:label "Irrigation, rectal";
  dc:title "Irrigation, rectal";
  rdfs:comment "Irrigation, rectal";
  dcterms:description "Irrigation, rectal".

cs:RouteOfAdministration\#%5fLavageRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "LavageRoute";
  dc:title "LavageRoute";
  rdfs:comment "Lavage";
  dcterms:description "Lavage".

cs:RouteOfAdministration\#IGASTLAV rdfs:subClassOf cs:RouteOfAdministration\#%5fLavageRoute;
  rdfs:label "Lavage, intragastric";
  dc:title "Lavage, intragastric";
  rdfs:comment "Lavage, intragastric";
  dcterms:description "Lavage, intragastric".

cs:RouteOfAdministration\#%5fMucosalAbsorptionRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "MucosalAbsorptionRoute";
  dc:title "MucosalAbsorptionRoute";
  rdfs:comment "Mucosal absorption";
  dcterms:description "Mucosal absorption".

cs:RouteOfAdministration\#IDOUDMAB rdfs:subClassOf cs:RouteOfAdministration\#%5fMucosalAbsorptionRoute;
  rdfs:label "Mucosal absorption, intraduodenal";
  dc:title "Mucosal absorption, intraduodenal";
  rdfs:comment "Mucosal absorption, intraduodenal";
  dcterms:description "Mucosal absorption, intraduodenal".

cs:RouteOfAdministration\#ITRACHMAB rdfs:subClassOf cs:RouteOfAdministration\#%5fMucosalAbsorptionRoute;
  rdfs:label "Mucosal absorption, intratracheal";
  dc:title "Mucosal absorption, intratracheal";
  rdfs:comment "Mucosal absorption, intratracheal";
  dcterms:description "Mucosal absorption, intratracheal".

cs:RouteOfAdministration\#SMUCMAB rdfs:subClassOf cs:RouteOfAdministration\#%5fMucosalAbsorptionRoute;
  rdfs:label "Mucosal absorption, submucosal";
  dc:title "Mucosal absorption, submucosal";
  rdfs:comment "Mucosal absorption, submucosal";
  dcterms:description "Mucosal absorption, submucosal".

cs:RouteOfAdministration\#%5fNebulization rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Nebulization";
  dc:title "Nebulization";
  rdfs:comment "Nebulization";
  dcterms:description "Nebulization".

cs:RouteOfAdministration\#ETNEB rdfs:subClassOf cs:RouteOfAdministration\#%5fNebulization;
  rdfs:label "Nebulization, endotracheal tube";
  dc:title "Nebulization, endotracheal tube";
  rdfs:comment "Nebulization, endotracheal tube";
  dcterms:description "Nebulization, endotracheal tube".

cs:RouteOfAdministration\#%5fRinse rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Rinse";
  dc:title "Rinse";
  rdfs:comment "Rinse";
  dcterms:description "Rinse".

cs:RouteOfAdministration\#DENRINSE rdfs:subClassOf cs:RouteOfAdministration\#%5fRinse;
  rdfs:label "Rinse, dental";
  dc:title "Rinse, dental";
  rdfs:comment "Rinse, dental";
  dcterms:description "Rinse, dental".

cs:RouteOfAdministration\#ORRINSE rdfs:subClassOf cs:RouteOfAdministration\#%5fRinse;
  rdfs:label "Rinse, oral";
  dc:title "Rinse, oral";
  rdfs:comment "Rinse, oral";
  dcterms:description "Rinse, oral".

cs:RouteOfAdministration\#%5fSuppositoryRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "SuppositoryRoute";
  dc:title "SuppositoryRoute";
  rdfs:comment "Suppository";
  dcterms:description "Suppository".

cs:RouteOfAdministration\#URETHSUP rdfs:subClassOf cs:RouteOfAdministration\#%5fSuppositoryRoute;
  rdfs:label "Suppository, urethral";
  dc:title "Suppository, urethral";
  rdfs:comment "Suppository, urethral";
  dcterms:description "Suppository, urethral".

cs:RouteOfAdministration\#%5fSwish rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Swish";
  dc:title "Swish";
  rdfs:comment "Swish";
  dcterms:description "Swish".

cs:RouteOfAdministration\#SWISHSPIT rdfs:subClassOf cs:RouteOfAdministration\#%5fSwish;
  rdfs:label "Swish and spit out, oromucosal";
  dc:title "Swish and spit out, oromucosal";
  rdfs:comment "Swish and spit out, oromucosal";
  dcterms:description "Swish and spit out, oromucosal".

cs:RouteOfAdministration\#SWISHSWAL rdfs:subClassOf cs:RouteOfAdministration\#%5fSwish;
  rdfs:label "Swish and swallow, oromucosal";
  dc:title "Swish and swallow, oromucosal";
  rdfs:comment "Swish and swallow, oromucosal";
  dcterms:description "Swish and swallow, oromucosal".

cs:RouteOfAdministration\#%5fTopicalAbsorptionRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "TopicalAbsorptionRoute";
  dc:title "TopicalAbsorptionRoute";
  rdfs:comment "Topical absorption";
  dcterms:description "Topical absorption".

cs:RouteOfAdministration\#TTYMPTABSORP rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalAbsorptionRoute;
  rdfs:label "Topical absorption, transtympanic";
  dc:title "Topical absorption, transtympanic";
  rdfs:comment "Topical absorption, transtympanic";
  dcterms:description "Topical absorption, transtympanic".

cs:RouteOfAdministration\#%5fTopicalApplication rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "TopicalApplication";
  dc:title "TopicalApplication";
  rdfs:comment "Topical application";
  dcterms:description "Topical application".

cs:RouteOfAdministration\#DRESS rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, soaked dressing";
  dc:title "Topical application, soaked dressing";
  rdfs:comment "Topical application, soaked dressing";
  dcterms:description "Topical application, soaked dressing".

cs:RouteOfAdministration\#SWAB rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, swab";
  dc:title "Topical application, swab";
  rdfs:comment "Topical application, swab";
  dcterms:description "Topical application, swab".

cs:RouteOfAdministration\#TOPICAL rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical";
  dc:title "Topical";
  rdfs:comment "Topical";
  dcterms:description "Topical".

cs:RouteOfAdministration\#BUC rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, buccal";
  dc:title "Topical application, buccal";
  rdfs:comment "Topical application, buccal";
  dcterms:description "Topical application, buccal".

cs:RouteOfAdministration\#CERV rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, cervical";
  dc:title "Topical application, cervical";
  rdfs:comment "Topical application, cervical";
  dcterms:description "Topical application, cervical".

cs:RouteOfAdministration\#DEN rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, dental";
  dc:title "Topical application, dental";
  rdfs:comment "Topical application, dental";
  dcterms:description "Topical application, dental".

cs:RouteOfAdministration\#GIN rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, gingival";
  dc:title "Topical application, gingival";
  rdfs:comment "Topical application, gingival";
  dcterms:description "Topical application, gingival".

cs:RouteOfAdministration\#HAIR rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, hair";
  dc:title "Topical application, hair";
  rdfs:comment "Topical application, hair";
  dcterms:description "Topical application, hair".

cs:RouteOfAdministration\#ICORNTA rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, intracorneal";
  dc:title "Topical application, intracorneal";
  rdfs:comment "Topical application, intracorneal";
  dcterms:description "Topical application, intracorneal".

cs:RouteOfAdministration\#ICORONTA rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, intracoronal (dental)";
  dc:title "Topical application, intracoronal (dental)";
  rdfs:comment "Topical application, intracoronal (dental)";
  dcterms:description "Topical application, intracoronal (dental)".

cs:RouteOfAdministration\#IESOPHTA rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, intraesophageal";
  dc:title "Topical application, intraesophageal";
  rdfs:comment "Topical application, intraesophageal";
  dcterms:description "Topical application, intraesophageal".

cs:RouteOfAdministration\#IILEALTA rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, intraileal";
  dc:title "Topical application, intraileal";
  rdfs:comment "Topical application, intraileal";
  dcterms:description "Topical application, intraileal".

cs:RouteOfAdministration\#ILTOP rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, intralesional";
  dc:title "Topical application, intralesional";
  rdfs:comment "Topical application, intralesional";
  dcterms:description "Topical application, intralesional".

cs:RouteOfAdministration\#ILUMTA rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, intraluminal";
  dc:title "Topical application, intraluminal";
  rdfs:comment "Topical application, intraluminal";
  dcterms:description "Topical application, intraluminal".

cs:RouteOfAdministration\#IOTOP rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, intraocular";
  dc:title "Topical application, intraocular";
  rdfs:comment "Topical application, intraocular";
  dcterms:description "Topical application, intraocular".

cs:RouteOfAdministration\#LARYNGTA rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, laryngeal";
  dc:title "Topical application, laryngeal";
  rdfs:comment "Topical application, laryngeal";
  dcterms:description "Topical application, laryngeal".

cs:RouteOfAdministration\#MUC rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, mucous membrane";
  dc:title "Topical application, mucous membrane";
  rdfs:comment "Topical application, mucous membrane";
  dcterms:description "Topical application, mucous membrane".

cs:RouteOfAdministration\#NAIL rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, nail";
  dc:title "Topical application, nail";
  rdfs:comment "Topical application, nail";
  dcterms:description "Topical application, nail".

cs:RouteOfAdministration\#NASAL rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, nasal";
  dc:title "Topical application, nasal";
  rdfs:comment "Topical application, nasal";
  dcterms:description "Topical application, nasal".

cs:RouteOfAdministration\#OPTHALTA rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, ophthalmic";
  dc:title "Topical application, ophthalmic";
  rdfs:comment "Topical application, ophthalmic";
  dcterms:description "Topical application, ophthalmic".

cs:RouteOfAdministration\#ORALTA rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, oral";
  dc:title "Topical application, oral";
  rdfs:comment "Topical application, oral";
  dcterms:description "Topical application, oral".

cs:RouteOfAdministration\#ORMUC rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, oromucosal";
  dc:title "Topical application, oromucosal";
  rdfs:comment "Topical application, oromucosal";
  dcterms:description "Topical application, oromucosal".

cs:RouteOfAdministration\#OROPHARTA rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, oropharyngeal";
  dc:title "Topical application, oropharyngeal";
  rdfs:comment "Topical application, oropharyngeal";
  dcterms:description "Topical application, oropharyngeal".

cs:RouteOfAdministration\#PERIANAL rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, perianal";
  dc:title "Topical application, perianal";
  rdfs:comment "Topical application, perianal";
  dcterms:description "Topical application, perianal".

cs:RouteOfAdministration\#PERINEAL rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, perineal";
  dc:title "Topical application, perineal";
  rdfs:comment "Topical application, perineal";
  dcterms:description "Topical application, perineal".

cs:RouteOfAdministration\#PDONTTA rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, periodontal";
  dc:title "Topical application, periodontal";
  rdfs:comment "Topical application, periodontal";
  dcterms:description "Topical application, periodontal".

cs:RouteOfAdministration\#RECTAL rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, rectal";
  dc:title "Topical application, rectal";
  rdfs:comment "Topical application, rectal";
  dcterms:description "Topical application, rectal".

cs:RouteOfAdministration\#SCALP rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, scalp";
  dc:title "Topical application, scalp";
  rdfs:comment "Topical application, scalp";
  dcterms:description "Topical application, scalp".

cs:RouteOfAdministration\#OCDRESTA rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Occlusive dressing technique";
  dc:title "Occlusive dressing technique";
  rdfs:comment "Occlusive dressing technique";
  dcterms:description "Occlusive dressing technique".

cs:RouteOfAdministration\#SKIN rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, skin";
  dc:title "Topical application, skin";
  rdfs:comment "Topical application, skin";
  dcterms:description "Topical application, skin".

cs:RouteOfAdministration\#SUBCONJTA rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Subconjunctival";
  dc:title "Subconjunctival";
  rdfs:comment "Subconjunctival";
  dcterms:description "Subconjunctival".

cs:RouteOfAdministration\#TMUCTA rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, transmucosal";
  dc:title "Topical application, transmucosal";
  rdfs:comment "Topical application, transmucosal";
  dcterms:description "Topical application, transmucosal".

cs:RouteOfAdministration\#VAGINS rdfs:subClassOf cs:RouteOfAdministration\#%5fTopicalApplication;
  rdfs:label "Topical application, vaginal";
  dc:title "Topical application, vaginal";
  rdfs:comment "Insertion, vaginal";
  dcterms:description "Insertion, vaginal".

cs:RouteOfAdministration\#INSUF rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Insufflation";
  dc:title "Insufflation";
  rdfs:comment "Insufflation";
  dcterms:description "Insufflation".

cs:RouteOfAdministration\#TRNSDERM rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteByMethod;
  rdfs:label "Transdermal";
  dc:title "Transdermal";
  rdfs:comment "Transdermal";
  dcterms:description "Transdermal".

cs:RouteOfAdministration\#%5fRouteBySite rdfs:subClassOf cs:RouteOfAdministration;
  rdfs:label "RouteBySite";
  dc:title "RouteBySite";
  rdfs:comment "Route of substance administration classified by site.";
  dcterms:description "Route of substance administration classified by site.".

cs:RouteOfAdministration\#%5fAmnioticFluidSacRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "AmnioticFluidSacRoute";
  dc:title "AmnioticFluidSacRoute";
  rdfs:comment "Amniotic fluid sac";
  dcterms:description "Amniotic fluid sac".

cs:RouteOfAdministration\#%5fBiliaryRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "BiliaryRoute";
  dc:title "BiliaryRoute";
  rdfs:comment "Biliary tract";
  dcterms:description "Biliary tract".

cs:RouteOfAdministration\#%5fBodySurfaceRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "BodySurfaceRoute";
  dc:title "BodySurfaceRoute";
  rdfs:comment "Body surface";
  dcterms:description "Body surface".

cs:RouteOfAdministration\#%5fBuccalMucosaRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "BuccalMucosaRoute";
  dc:title "BuccalMucosaRoute";
  rdfs:comment "Buccal mucosa";
  dcterms:description "Buccal mucosa".

cs:RouteOfAdministration\#%5fCecostomyRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "CecostomyRoute";
  dc:title "CecostomyRoute";
  rdfs:comment "Cecostomy";
  dcterms:description "Cecostomy".

cs:RouteOfAdministration\#%5fCervicalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "CervicalRoute";
  dc:title "CervicalRoute";
  rdfs:comment "Cervix of the uterus";
  dcterms:description "Cervix of the uterus".

cs:RouteOfAdministration\#%5fEndocervicalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "EndocervicalRoute";
  dc:title "EndocervicalRoute";
  rdfs:comment "Endocervical";
  dcterms:description "Endocervical".

cs:RouteOfAdministration\#%5fEnteralRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "EnteralRoute";
  dc:title "EnteralRoute";
  rdfs:comment "Enteral";
  dcterms:description "Enteral".

cs:RouteOfAdministration\#%5fEpiduralRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "EpiduralRoute";
  dc:title "EpiduralRoute";
  rdfs:comment "Epidural";
  dcterms:description "Epidural".

cs:RouteOfAdministration\#%5fExtraAmnioticRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "ExtraAmnioticRoute";
  dc:title "ExtraAmnioticRoute";
  rdfs:comment "Extra-amniotic";
  dcterms:description "Extra-amniotic".

cs:RouteOfAdministration\#%5fExtracorporealCirculationRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "ExtracorporealCirculationRoute";
  dc:title "ExtracorporealCirculationRoute";
  rdfs:comment "Extracorporeal circulation";
  dcterms:description "Extracorporeal circulation".

cs:RouteOfAdministration\#%5fGastricRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "GastricRoute";
  dc:title "GastricRoute";
  rdfs:comment "Gastric";
  dcterms:description "Gastric".

cs:RouteOfAdministration\#%5fGenitourinaryRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "GenitourinaryRoute";
  dc:title "GenitourinaryRoute";
  rdfs:comment "Genitourinary";
  dcterms:description "Genitourinary".

cs:RouteOfAdministration\#%5fGingivalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "GingivalRoute";
  dc:title "GingivalRoute";
  rdfs:comment "Gingival";
  dcterms:description "Gingival".

cs:RouteOfAdministration\#%5fHairRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "HairRoute";
  dc:title "HairRoute";
  rdfs:comment "Hair";
  dcterms:description "Hair".

cs:RouteOfAdministration\#%5fInterameningealRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "InterameningealRoute";
  dc:title "InterameningealRoute";
  rdfs:comment "Interameningeal";
  dcterms:description "Interameningeal".

cs:RouteOfAdministration\#%5fInterstitialRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "InterstitialRoute";
  dc:title "InterstitialRoute";
  rdfs:comment "Interstitial";
  dcterms:description "Interstitial".

cs:RouteOfAdministration\#%5fIntraabdominalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraabdominalRoute";
  dc:title "IntraabdominalRoute";
  rdfs:comment "Intra-abdominal";
  dcterms:description "Intra-abdominal".

cs:RouteOfAdministration\#%5fIntraarterialRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraarterialRoute";
  dc:title "IntraarterialRoute";
  rdfs:comment "Intra-arterial";
  dcterms:description "Intra-arterial".

cs:RouteOfAdministration\#%5fIntraarticularRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraarticularRoute";
  dc:title "IntraarticularRoute";
  rdfs:comment "Intraarticular";
  dcterms:description "Intraarticular".

cs:RouteOfAdministration\#%5fIntrabronchialRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntrabronchialRoute";
  dc:title "IntrabronchialRoute";
  rdfs:comment "Intrabronchial";
  dcterms:description "Intrabronchial".

cs:RouteOfAdministration\#%5fIntrabursalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntrabursalRoute";
  dc:title "IntrabursalRoute";
  rdfs:comment "Intrabursal";
  dcterms:description "Intrabursal".

cs:RouteOfAdministration\#%5fIntracardiacRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntracardiacRoute";
  dc:title "IntracardiacRoute";
  rdfs:comment "Intracardiac";
  dcterms:description "Intracardiac".

cs:RouteOfAdministration\#%5fIntracartilaginousRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntracartilaginousRoute";
  dc:title "IntracartilaginousRoute";
  rdfs:comment "Intracartilaginous";
  dcterms:description "Intracartilaginous".

cs:RouteOfAdministration\#%5fIntracaudalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntracaudalRoute";
  dc:title "IntracaudalRoute";
  rdfs:comment "Intracaudal";
  dcterms:description "Intracaudal".

cs:RouteOfAdministration\#%5fIntracavernosalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntracavernosalRoute";
  dc:title "IntracavernosalRoute";
  rdfs:comment "Intracavernosal";
  dcterms:description "Intracavernosal".

cs:RouteOfAdministration\#%5fIntracavitaryRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntracavitaryRoute";
  dc:title "IntracavitaryRoute";
  rdfs:comment "Intracavitary";
  dcterms:description "Intracavitary".

cs:RouteOfAdministration\#%5fIntracerebralRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntracerebralRoute";
  dc:title "IntracerebralRoute";
  rdfs:comment "Intracerebral";
  dcterms:description "Intracerebral".

cs:RouteOfAdministration\#%5fIntracervicalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntracervicalRoute";
  dc:title "IntracervicalRoute";
  rdfs:comment "Intracervical";
  dcterms:description "Intracervical".

cs:RouteOfAdministration\#%5fIntracisternalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntracisternalRoute";
  dc:title "IntracisternalRoute";
  rdfs:comment "Intracisternal";
  dcterms:description "Intracisternal".

cs:RouteOfAdministration\#%5fIntracornealRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntracornealRoute";
  dc:title "IntracornealRoute";
  rdfs:comment "Intracorneal";
  dcterms:description "Intracorneal".

cs:RouteOfAdministration\#%5fIntracoronalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntracoronalRoute";
  dc:title "IntracoronalRoute";
  rdfs:comment "Intracoronal (dental)";
  dcterms:description "Intracoronal (dental)".

cs:RouteOfAdministration\#%5fIntracoronaryRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntracoronaryRoute";
  dc:title "IntracoronaryRoute";
  rdfs:comment "Intracoronary";
  dcterms:description "Intracoronary".

cs:RouteOfAdministration\#%5fIntracorpusCavernosumRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntracorpusCavernosumRoute";
  dc:title "IntracorpusCavernosumRoute";
  rdfs:comment "Intracorpus cavernosum";
  dcterms:description "Intracorpus cavernosum".

cs:RouteOfAdministration\#%5fIntradermalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntradermalRoute";
  dc:title "IntradermalRoute";
  rdfs:comment "Intradermal";
  dcterms:description "Intradermal".

cs:RouteOfAdministration\#%5fIntradiscalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntradiscalRoute";
  dc:title "IntradiscalRoute";
  rdfs:comment "Intradiscal";
  dcterms:description "Intradiscal".

cs:RouteOfAdministration\#%5fIntraductalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraductalRoute";
  dc:title "IntraductalRoute";
  rdfs:comment "Intraductal";
  dcterms:description "Intraductal".

cs:RouteOfAdministration\#%5fIntraduodenalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraduodenalRoute";
  dc:title "IntraduodenalRoute";
  rdfs:comment "Intraduodenal";
  dcterms:description "Intraduodenal".

cs:RouteOfAdministration\#%5fIntraduralRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraduralRoute";
  dc:title "IntraduralRoute";
  rdfs:comment "Intradural";
  dcterms:description "Intradural".

cs:RouteOfAdministration\#%5fIntraepidermalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraepidermalRoute";
  dc:title "IntraepidermalRoute";
  rdfs:comment "Intraepidermal";
  dcterms:description "Intraepidermal".

cs:RouteOfAdministration\#%5fIntraepithelialRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraepithelialRoute";
  dc:title "IntraepithelialRoute";
  rdfs:comment "Intraepithelial";
  dcterms:description "Intraepithelial".

cs:RouteOfAdministration\#%5fIntraesophagealRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraesophagealRoute";
  dc:title "IntraesophagealRoute";
  rdfs:comment "Intraesophageal";
  dcterms:description "Intraesophageal".

cs:RouteOfAdministration\#%5fIntragastricRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntragastricRoute";
  dc:title "IntragastricRoute";
  rdfs:comment "Intragastric";
  dcterms:description "Intragastric".

cs:RouteOfAdministration\#%5fIntrailealRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntrailealRoute";
  dc:title "IntrailealRoute";
  rdfs:comment "Intraileal";
  dcterms:description "Intraileal".

cs:RouteOfAdministration\#%5fIntralesionalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntralesionalRoute";
  dc:title "IntralesionalRoute";
  rdfs:comment "Intralesional";
  dcterms:description "Intralesional".

cs:RouteOfAdministration\#%5fIntraluminalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraluminalRoute";
  dc:title "IntraluminalRoute";
  rdfs:comment "Intraluminal";
  dcterms:description "Intraluminal".

cs:RouteOfAdministration\#%5fIntralymphaticRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntralymphaticRoute";
  dc:title "IntralymphaticRoute";
  rdfs:comment "Intralymphatic";
  dcterms:description "Intralymphatic".

cs:RouteOfAdministration\#%5fIntramedullaryRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntramedullaryRoute";
  dc:title "IntramedullaryRoute";
  rdfs:comment "Intramedullary";
  dcterms:description "Intramedullary".

cs:RouteOfAdministration\#%5fIntramuscularRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntramuscularRoute";
  dc:title "IntramuscularRoute";
  rdfs:comment "Intramuscular";
  dcterms:description "Intramuscular".

cs:RouteOfAdministration\#%5fIntraocularRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraocularRoute";
  dc:title "IntraocularRoute";
  rdfs:comment "Intraocular";
  dcterms:description "Intraocular".

cs:RouteOfAdministration\#%5fIntraosseousRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraosseousRoute";
  dc:title "IntraosseousRoute";
  rdfs:comment "Intraosseous";
  dcterms:description "Intraosseous".

cs:RouteOfAdministration\#%5fIntraovarianRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraovarianRoute";
  dc:title "IntraovarianRoute";
  rdfs:comment "Intraovarian";
  dcterms:description "Intraovarian".

cs:RouteOfAdministration\#%5fIntrapericardialRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntrapericardialRoute";
  dc:title "IntrapericardialRoute";
  rdfs:comment "Intrapericardial";
  dcterms:description "Intrapericardial".

cs:RouteOfAdministration\#%5fIntraperitonealRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraperitonealRoute";
  dc:title "IntraperitonealRoute";
  rdfs:comment "Intraperitoneal";
  dcterms:description "Intraperitoneal".

cs:RouteOfAdministration\#%5fIntrapleuralRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntrapleuralRoute";
  dc:title "IntrapleuralRoute";
  rdfs:comment "Intrapleural";
  dcterms:description "Intrapleural".

cs:RouteOfAdministration\#%5fIntraprostaticRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraprostaticRoute";
  dc:title "IntraprostaticRoute";
  rdfs:comment "Intraprostatic";
  dcterms:description "Intraprostatic".

cs:RouteOfAdministration\#%5fIntrapulmonaryRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntrapulmonaryRoute";
  dc:title "IntrapulmonaryRoute";
  rdfs:comment "Intrapulmonary";
  dcterms:description "Intrapulmonary".

cs:RouteOfAdministration\#%5fIntrasinalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntrasinalRoute";
  dc:title "IntrasinalRoute";
  rdfs:comment "Intrasinal";
  dcterms:description "Intrasinal".

cs:RouteOfAdministration\#%5fIntraspinalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraspinalRoute";
  dc:title "IntraspinalRoute";
  rdfs:comment "Intraspinal";
  dcterms:description "Intraspinal".

cs:RouteOfAdministration\#%5fIntrasternalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntrasternalRoute";
  dc:title "IntrasternalRoute";
  rdfs:comment "Intrasternal";
  dcterms:description "Intrasternal".

cs:RouteOfAdministration\#%5fIntrasynovialRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntrasynovialRoute";
  dc:title "IntrasynovialRoute";
  rdfs:comment "Intrasynovial";
  dcterms:description "Intrasynovial".

cs:RouteOfAdministration\#%5fIntratendinousRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntratendinousRoute";
  dc:title "IntratendinousRoute";
  rdfs:comment "Intratendinous";
  dcterms:description "Intratendinous".

cs:RouteOfAdministration\#%5fIntratesticularRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntratesticularRoute";
  dc:title "IntratesticularRoute";
  rdfs:comment "Intratesticular";
  dcterms:description "Intratesticular".

cs:RouteOfAdministration\#%5fIntrathecalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntrathecalRoute";
  dc:title "IntrathecalRoute";
  rdfs:comment "Intrathecal";
  dcterms:description "Intrathecal".

cs:RouteOfAdministration\#%5fIntrathoracicRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntrathoracicRoute";
  dc:title "IntrathoracicRoute";
  rdfs:comment "Intrathoracic";
  dcterms:description "Intrathoracic".

cs:RouteOfAdministration\#%5fIntratrachealRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntratrachealRoute";
  dc:title "IntratrachealRoute";
  rdfs:comment "Intratracheal";
  dcterms:description "Intratracheal".

cs:RouteOfAdministration\#%5fIntratubularRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntratubularRoute";
  dc:title "IntratubularRoute";
  rdfs:comment "Intratubular";
  dcterms:description "Intratubular".

cs:RouteOfAdministration\#%5fIntratumorRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntratumorRoute";
  dc:title "IntratumorRoute";
  rdfs:comment "Intratumor";
  dcterms:description "Intratumor".

cs:RouteOfAdministration\#%5fIntratympanicRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntratympanicRoute";
  dc:title "IntratympanicRoute";
  rdfs:comment "Intratympanic";
  dcterms:description "Intratympanic".

cs:RouteOfAdministration\#%5fIntrauterineRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntrauterineRoute";
  dc:title "IntrauterineRoute";
  rdfs:comment "Intrauterine";
  dcterms:description "Intrauterine".

cs:RouteOfAdministration\#%5fIntravascularRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntravascularRoute";
  dc:title "IntravascularRoute";
  rdfs:comment "Intravascular";
  dcterms:description "Intravascular".

cs:RouteOfAdministration\#%5fIntravenousRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntravenousRoute";
  dc:title "IntravenousRoute";
  rdfs:comment "Intravenous";
  dcterms:description "Intravenous".

cs:RouteOfAdministration\#%5fIntraventricularRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntraventricularRoute";
  dc:title "IntraventricularRoute";
  rdfs:comment "Intraventricular";
  dcterms:description "Intraventricular".

cs:RouteOfAdministration\#%5fIntravesicleRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntravesicleRoute";
  dc:title "IntravesicleRoute";
  rdfs:comment "Intravesicle";
  dcterms:description "Intravesicle".

cs:RouteOfAdministration\#%5fIntravitrealRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "IntravitrealRoute";
  dc:title "IntravitrealRoute";
  rdfs:comment "Intravitreal";
  dcterms:description "Intravitreal".

cs:RouteOfAdministration\#%5fJejunumRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "JejunumRoute";
  dc:title "JejunumRoute";
  rdfs:comment "Jejunum";
  dcterms:description "Jejunum".

cs:RouteOfAdministration\#%5fLacrimalPunctaRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "LacrimalPunctaRoute";
  dc:title "LacrimalPunctaRoute";
  rdfs:comment "Lacrimal puncta";
  dcterms:description "Lacrimal puncta".

cs:RouteOfAdministration\#%5fLaryngealRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "LaryngealRoute";
  dc:title "LaryngealRoute";
  rdfs:comment "Laryngeal";
  dcterms:description "Laryngeal".

cs:RouteOfAdministration\#%5fLingualRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "LingualRoute";
  dc:title "LingualRoute";
  rdfs:comment "Lingual";
  dcterms:description "Lingual".

cs:RouteOfAdministration\#%5fMucousMembraneRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "MucousMembraneRoute";
  dc:title "MucousMembraneRoute";
  rdfs:comment "Mucous membrane";
  dcterms:description "Mucous membrane".

cs:RouteOfAdministration\#%5fNailRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "NailRoute";
  dc:title "NailRoute";
  rdfs:comment "Nail";
  dcterms:description "Nail".

cs:RouteOfAdministration\#%5fNasalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "NasalRoute";
  dc:title "NasalRoute";
  rdfs:comment "Nasal";
  dcterms:description "Nasal".

cs:RouteOfAdministration\#%5fOphthalmicRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "OphthalmicRoute";
  dc:title "OphthalmicRoute";
  rdfs:comment "Ophthalmic";
  dcterms:description "Ophthalmic".

cs:RouteOfAdministration\#%5fOralRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "OralRoute";
  dc:title "OralRoute";
  rdfs:comment "Oral";
  dcterms:description "Oral".

cs:RouteOfAdministration\#%5fOromucosalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "OromucosalRoute";
  dc:title "OromucosalRoute";
  rdfs:comment "Oromucosal";
  dcterms:description "Oromucosal".

cs:RouteOfAdministration\#%5fOropharyngealRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "OropharyngealRoute";
  dc:title "OropharyngealRoute";
  rdfs:comment "Oropharyngeal";
  dcterms:description "Oropharyngeal".

cs:RouteOfAdministration\#%5fOticRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "OticRoute";
  dc:title "OticRoute";
  rdfs:comment "Otic";
  dcterms:description "Otic".

cs:RouteOfAdministration\#%5fParanasalSinusesRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "ParanasalSinusesRoute";
  dc:title "ParanasalSinusesRoute";
  rdfs:comment "Paranasal sinuses";
  dcterms:description "Paranasal sinuses".

cs:RouteOfAdministration\#%5fParenteralRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "ParenteralRoute";
  dc:title "ParenteralRoute";
  rdfs:comment "Parenteral";
  dcterms:description "Parenteral".

cs:RouteOfAdministration\#%5fPerianalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "PerianalRoute";
  dc:title "PerianalRoute";
  rdfs:comment "Perianal";
  dcterms:description "Perianal".

cs:RouteOfAdministration\#%5fPeriarticularRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "PeriarticularRoute";
  dc:title "PeriarticularRoute";
  rdfs:comment "Periarticular";
  dcterms:description "Periarticular".

cs:RouteOfAdministration\#%5fPeriduralRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "PeriduralRoute";
  dc:title "PeriduralRoute";
  rdfs:comment "Peridural";
  dcterms:description "Peridural".

cs:RouteOfAdministration\#%5fPerinealRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "PerinealRoute";
  dc:title "PerinealRoute";
  rdfs:comment "Perineal";
  dcterms:description "Perineal".

cs:RouteOfAdministration\#%5fPerineuralRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "PerineuralRoute";
  dc:title "PerineuralRoute";
  rdfs:comment "Perineural";
  dcterms:description "Perineural".

cs:RouteOfAdministration\#%5fPeriodontalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "PeriodontalRoute";
  dc:title "PeriodontalRoute";
  rdfs:comment "Periodontal";
  dcterms:description "Periodontal".

cs:RouteOfAdministration\#%5fPulmonaryRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "PulmonaryRoute";
  dc:title "PulmonaryRoute";
  rdfs:comment "Pulmonary";
  dcterms:description "Pulmonary".

cs:RouteOfAdministration\#%5fRectalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "RectalRoute";
  dc:title "RectalRoute";
  rdfs:comment "Rectal";
  dcterms:description "Rectal".

cs:RouteOfAdministration\#%5fRespiratoryTractRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "RespiratoryTractRoute";
  dc:title "RespiratoryTractRoute";
  rdfs:comment "Respiratory tract";
  dcterms:description "Respiratory tract".

cs:RouteOfAdministration\#%5fRetrobulbarRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "RetrobulbarRoute";
  dc:title "RetrobulbarRoute";
  rdfs:comment "Retrobulbar";
  dcterms:description "Retrobulbar".

cs:RouteOfAdministration\#%5fScalpRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "ScalpRoute";
  dc:title "ScalpRoute";
  rdfs:comment "Scalp";
  dcterms:description "Scalp".

cs:RouteOfAdministration\#%5fSinusUnspecifiedRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "SinusUnspecifiedRoute";
  dc:title "SinusUnspecifiedRoute";
  rdfs:comment "Sinus, unspecified";
  dcterms:description "Sinus, unspecified".

cs:RouteOfAdministration\#%5fSkinRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "SkinRoute";
  dc:title "SkinRoute";
  rdfs:comment "Skin";
  dcterms:description "Skin".

cs:RouteOfAdministration\#%5fSoftTissueRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "SoftTissueRoute";
  dc:title "SoftTissueRoute";
  rdfs:comment "Soft tissue";
  dcterms:description "Soft tissue".

cs:RouteOfAdministration\#%5fSubarachnoidRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "SubarachnoidRoute";
  dc:title "SubarachnoidRoute";
  rdfs:comment "Subarachnoid";
  dcterms:description "Subarachnoid".

cs:RouteOfAdministration\#%5fSubconjunctivalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "SubconjunctivalRoute";
  dc:title "SubconjunctivalRoute";
  rdfs:comment "Subconjunctival";
  dcterms:description "Subconjunctival".

cs:RouteOfAdministration\#%5fSubcutaneousRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "SubcutaneousRoute";
  dc:title "SubcutaneousRoute";
  rdfs:comment "Subcutaneous";
  dcterms:description "Subcutaneous".

cs:RouteOfAdministration\#%5fSublesionalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "SublesionalRoute";
  dc:title "SublesionalRoute";
  rdfs:comment "Sublesional";
  dcterms:description "Sublesional".

cs:RouteOfAdministration\#%5fSublingualRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "SublingualRoute";
  dc:title "SublingualRoute";
  rdfs:comment "Sublingual";
  dcterms:description "Sublingual".

cs:RouteOfAdministration\#%5fSubmucosalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "SubmucosalRoute";
  dc:title "SubmucosalRoute";
  rdfs:comment "Submucosal";
  dcterms:description "Submucosal".

cs:RouteOfAdministration\#%5fTracheostomyRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "TracheostomyRoute";
  dc:title "TracheostomyRoute";
  rdfs:comment "Tracheostomy";
  dcterms:description "Tracheostomy".

cs:RouteOfAdministration\#%5fTransmucosalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "TransmucosalRoute";
  dc:title "TransmucosalRoute";
  rdfs:comment "Transmucosal";
  dcterms:description "Transmucosal".

cs:RouteOfAdministration\#%5fTransplacentalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "TransplacentalRoute";
  dc:title "TransplacentalRoute";
  rdfs:comment "Transplacental";
  dcterms:description "Transplacental".

cs:RouteOfAdministration\#%5fTranstrachealRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "TranstrachealRoute";
  dc:title "TranstrachealRoute";
  rdfs:comment "Transtracheal";
  dcterms:description "Transtracheal".

cs:RouteOfAdministration\#%5fTranstympanicRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "TranstympanicRoute";
  dc:title "TranstympanicRoute";
  rdfs:comment "Transtympanic";
  dcterms:description "Transtympanic".

cs:RouteOfAdministration\#%5fUreteralRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "UreteralRoute";
  dc:title "UreteralRoute";
  rdfs:comment "Ureteral";
  dcterms:description "Ureteral".

cs:RouteOfAdministration\#%5fUrethralRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "UrethralRoute";
  dc:title "UrethralRoute";
  rdfs:comment "Urethral";
  dcterms:description "Urethral".

cs:RouteOfAdministration\#%5fUrinaryBladderRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "UrinaryBladderRoute";
  dc:title "UrinaryBladderRoute";
  rdfs:comment "Urinary bladder";
  dcterms:description "Urinary bladder".

cs:RouteOfAdministration\#%5fUrinaryTractRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "UrinaryTractRoute";
  dc:title "UrinaryTractRoute";
  rdfs:comment "Urinary tract";
  dcterms:description "Urinary tract".

cs:RouteOfAdministration\#%5fVaginalRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "VaginalRoute";
  dc:title "VaginalRoute";
  rdfs:comment "Vaginal";
  dcterms:description "Vaginal".

cs:RouteOfAdministration\#%5fVitreousHumourRoute rdfs:subClassOf cs:RouteOfAdministration\#%5fRouteBySite;
  rdfs:label "VitreousHumourRoute";
  dc:title "VitreousHumourRoute";
  rdfs:comment "Vitreous humour";
  dcterms:description "Vitreous humour".

# - vs:v3-SecurityControlObservationValue --------------------------------------

vs:v3-SecurityControlObservationValue a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "SecurityControlObservationValue";
  dc:title "SecurityControlObservationValue";
  rdfs:comment " Security observation values used to indicate security control metadata.  V:SecurityControl is the union of V:SecurityPolicy,V:ObligationPolicy, V:RefrainPolicy, V:PurposeOfUse, and V:GeneralPurpose of Use used to populate the SecurityControlObservationValue attribute in order to convey one or more nonhierarchical security control metadata dictating handling caveats, purpose of use, dissemination controls and other refrain policies, and obligations to which a custodian or receiver is required to comply.";
  dcterms:description " Security observation values used to indicate security control metadata.  V:SecurityControl is the union of V:SecurityPolicy,V:ObligationPolicy, V:RefrainPolicy, V:PurposeOfUse, and V:GeneralPurpose of Use used to populate the SecurityControlObservationValue attribute in order to convey one or more nonhierarchical security control metadata dictating handling caveats, purpose of use, dissemination controls and other refrain policies, and obligations to which a custodian or receiver is required to comply.";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-SecurityIntegrityObservationValue ------------------------------------

vs:v3-SecurityIntegrityObservationValue a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "SecurityIntegrityObservationValue";
  dc:title "SecurityIntegrityObservationValue";
  rdfs:comment "No Description Provided";
  dcterms:description "No Description Provided";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-SecurityPolicy -------------------------------------------------------

vs:v3-SecurityPolicy a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "SecurityPolicy";
  dc:title "SecurityPolicy";
  rdfs:comment " Types of security policies that further specify the ActClassPolicy value set.  Examples:\r\n  encrypt prohibit redisclosure without consent directive";
  dcterms:description " Types of security policies that further specify the ActClassPolicy value set.  Examples:\r\n  encrypt prohibit redisclosure without consent directive";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-Sequencing -----------------------------------------------------------

vs:v3-Sequencing a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System Sequencing";
  dc:title "v3 Code System Sequencing";
  rdfs:comment " Specifies sequence of sort order.";
  dcterms:description " Specifies sequence of sort order.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:Sequencing.

cs:Sequencing.system a fhir:CodeSystem;
  rdfs:label "v3 Code System Sequencing";
  dc:title "v3 Code System Sequencing";
  rdfs:comment " Specifies sequence of sort order.";
  dcterms:description " Specifies sequence of sort order.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:Sequencing a fhir:Concept.

cs:Sequencing\#A rdfs:subClassOf cs:Sequencing;
  rdfs:label "Ascending";
  dc:title "Ascending";
  rdfs:comment "Ascending sequence order.";
  dcterms:description "Ascending sequence order.".

cs:Sequencing\#D rdfs:subClassOf cs:Sequencing;
  rdfs:label "Descending";
  dc:title "Descending";
  rdfs:comment "Descending sequence order.";
  dcterms:description "Descending sequence order.".

cs:Sequencing\#N rdfs:subClassOf cs:Sequencing;
  rdfs:label "None";
  dc:title "None";
  rdfs:comment "No enforced sequence order.";
  dcterms:description "No enforced sequence order.".

# - vs:v3-ServiceDeliveryLocationRoleType --------------------------------------

vs:v3-ServiceDeliveryLocationRoleType a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "ServiceDeliveryLocationRoleType";
  dc:title "ServiceDeliveryLocationRoleType";
  rdfs:comment " A role of a place that further classifies the setting (e.g., accident site, road side, work site, community location) in which services are delivered.";
  dcterms:description " A role of a place that further classifies the setting (e.g., accident site, road side, work site, community location) in which services are delivered.";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-SetOperator ----------------------------------------------------------

vs:v3-SetOperator a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System SetOperator";
  dc:title "v3 Code System SetOperator";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:SetOperator.

cs:SetOperator.system a fhir:CodeSystem;
  rdfs:label "v3 Code System SetOperator";
  dc:title "v3 Code System SetOperator";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:SetOperator a fhir:Concept.

cs:SetOperator\#%5fValueSetOperator rdfs:subClassOf cs:SetOperator;
  rdfs:label "ValueSetOperator";
  dc:title "ValueSetOperator";
  rdfs:comment "Operations that can be used to associate concepts in a terminology.";
  dcterms:description "Operations that can be used to associate concepts in a terminology.".

cs:SetOperator\#E rdfs:subClassOf cs:SetOperator\#%5fValueSetOperator;
  rdfs:label "exclude";
  dc:title "exclude";
  rdfs:comment "Form the set-difference with this value, i.e., exclude this element or set from the resulting set.";
  dcterms:description "Form the set-difference with this value, i.e., exclude this element or set from the resulting set.".

cs:SetOperator\#I rdfs:subClassOf cs:SetOperator\#%5fValueSetOperator;
  rdfs:label "include";
  dc:title "include";
  rdfs:comment "Form the union with this value, i.e., include this element or set in the resulting set.";
  dcterms:description "Form the union with this value, i.e., include this element or set in the resulting set.".

cs:SetOperator\#A rdfs:subClassOf cs:SetOperator;
  rdfs:label "intersect";
  dc:title "intersect";
  rdfs:comment "Form the intersection with the value.";
  dcterms:description "Form the intersection with the value.".

cs:SetOperator\#H rdfs:subClassOf cs:SetOperator;
  rdfs:label "convex hull";
  dc:title "convex hull";
  rdfs:comment "Form the convex hull with the value. The convex hull is defined over ordered domains and is the smallest contiguous superset (interval) that of all the operand sets.";
  dcterms:description "Form the convex hull with the value. The convex hull is defined over ordered domains and is the smallest contiguous superset (interval) that of all the operand sets.".

cs:SetOperator\#P rdfs:subClassOf cs:SetOperator;
  rdfs:label "periodic hull";
  dc:title "periodic hull";
  rdfs:comment "Form the periodic hull with the value. The periodic hull is defined over ordered domains and is the periodic set that contains all contiguous supersets of pairs of intervals generated by the operand periodic intervals.";
  dcterms:description "Form the periodic hull with the value. The periodic hull is defined over ordered domains and is the periodic set that contains all contiguous supersets of pairs of intervals generated by the operand periodic intervals.".

# - vs:v3-SeverityObservation --------------------------------------------------

vs:v3-SeverityObservation a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "SeverityObservation";
  dc:title "SeverityObservation";
  rdfs:comment " Potential values for observations of severity.";
  dcterms:description " Potential values for observations of severity.";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-SpecimenType ---------------------------------------------------------

vs:v3-SpecimenType a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System SpecimenType";
  dc:title "v3 Code System SpecimenType";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:SpecimenType.

cs:SpecimenType.system a fhir:CodeSystem;
  rdfs:label "v3 Code System SpecimenType";
  dc:title "v3 Code System SpecimenType";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:SpecimenType a fhir:Concept.

cs:SpecimenType\#%5fSpecimenEntityType rdfs:subClassOf cs:SpecimenType;
  rdfs:label "SpecimenEntityType";
  dc:title "SpecimenEntityType";
  rdfs:comment "SpecimenEntityType";
  dcterms:description "SpecimenEntityType".

cs:SpecimenType\#ABS rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Abcess";
  dc:title "Abcess";
  rdfs:comment "Abcess";
  dcterms:description "Abcess".

cs:SpecimenType\#AMN rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Amniotic fluid";
  dc:title "Amniotic fluid";
  rdfs:comment "Amniotic fluid";
  dcterms:description "Amniotic fluid".

cs:SpecimenType\#ASP rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Aspirate";
  dc:title "Aspirate";
  rdfs:comment "Aspirate";
  dcterms:description "Aspirate".

cs:SpecimenType\#BBL rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Blood bag";
  dc:title "Blood bag";
  rdfs:comment "Blood bag";
  dcterms:description "Blood bag".

cs:SpecimenType\#BDY rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Whole body";
  dc:title "Whole body";
  rdfs:comment "Whole body";
  dcterms:description "Whole body".

cs:SpecimenType\#BIFL rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Bile fluid";
  dc:title "Bile fluid";
  rdfs:comment "Bile fluid";
  dcterms:description "Bile fluid".

cs:SpecimenType\#BLD rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Whole blood";
  dc:title "Whole blood";
  rdfs:comment "Whole blood";
  dcterms:description "Whole blood".

cs:SpecimenType\#BLDA rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Blood arterial";
  dc:title "Blood arterial";
  rdfs:comment "Blood arterial";
  dcterms:description "Blood arterial".

cs:SpecimenType\#BLDC rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Blood capillary";
  dc:title "Blood capillary";
  rdfs:comment "Blood capillary";
  dcterms:description "Blood capillary".

cs:SpecimenType\#BLDCO rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Blood - cord";
  dc:title "Blood - cord";
  rdfs:comment "Blood - cord";
  dcterms:description "Blood - cord".

cs:SpecimenType\#BLDV rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Blood venous";
  dc:title "Blood venous";
  rdfs:comment "Blood venous";
  dcterms:description "Blood venous".

cs:SpecimenType\#BON rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Bone";
  dc:title "Bone";
  rdfs:comment "Bone";
  dcterms:description "Bone".

cs:SpecimenType\#BPH rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Basophils";
  dc:title "Basophils";
  rdfs:comment "Basophils";
  dcterms:description "Basophils".

cs:SpecimenType\#BPU rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Blood product unit";
  dc:title "Blood product unit";
  rdfs:comment "Blood product unit";
  dcterms:description "Blood product unit".

cs:SpecimenType\#BRN rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Burn";
  dc:title "Burn";
  rdfs:comment "Burn";
  dcterms:description "Burn".

cs:SpecimenType\#BRO rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Bronchial";
  dc:title "Bronchial";
  rdfs:comment "Bronchial";
  dcterms:description "Bronchial".

cs:SpecimenType\#BRTH rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Exhaled gas (=breath)";
  dc:title "Exhaled gas (=breath)";
  rdfs:comment "Exhaled gas (=breath)";
  dcterms:description "Exhaled gas (=breath)".

cs:SpecimenType\#CALC rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Calculus (=Stone)";
  dc:title "Calculus (=Stone)";
  rdfs:comment "Calculus (=Stone)";
  dcterms:description "Calculus (=Stone)".

cs:SpecimenType\#CDM rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Cardiac muscle";
  dc:title "Cardiac muscle";
  rdfs:comment "Cardiac muscle";
  dcterms:description "Cardiac muscle".

cs:SpecimenType\#CNJT rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Conjunctiva";
  dc:title "Conjunctiva";
  rdfs:comment "Conjunctiva";
  dcterms:description "Conjunctiva".

cs:SpecimenType\#CNL rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Cannula";
  dc:title "Cannula";
  rdfs:comment "Cannula";
  dcterms:description "Cannula".

cs:SpecimenType\#COL rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Colostrum";
  dc:title "Colostrum";
  rdfs:comment "Colostrum";
  dcterms:description "Colostrum".

cs:SpecimenType\#CRN rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Cornea";
  dc:title "Cornea";
  rdfs:comment "Cornea";
  dcterms:description "Cornea".

cs:SpecimenType\#CSF rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Cerebral spinal fluid";
  dc:title "Cerebral spinal fluid";
  rdfs:comment "Cerebral spinal fluid";
  dcterms:description "Cerebral spinal fluid".

cs:SpecimenType\#CTP rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Catheter tip";
  dc:title "Catheter tip";
  rdfs:comment "Catheter tip";
  dcterms:description "Catheter tip".

cs:SpecimenType\#CUR rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Curettage";
  dc:title "Curettage";
  rdfs:comment "Curettage";
  dcterms:description "Curettage".

cs:SpecimenType\#CVM rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Cervical mucus";
  dc:title "Cervical mucus";
  rdfs:comment "Cervical mucus";
  dcterms:description "Cervical mucus".

cs:SpecimenType\#CVX rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Cervix";
  dc:title "Cervix";
  rdfs:comment "Cervix";
  dcterms:description "Cervix".

cs:SpecimenType\#CYST rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Cyst";
  dc:title "Cyst";
  rdfs:comment "Cyst";
  dcterms:description "Cyst".

cs:SpecimenType\#DIAF rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Dialysis fluid";
  dc:title "Dialysis fluid";
  rdfs:comment "Dialysis fluid";
  dcterms:description "Dialysis fluid".

cs:SpecimenType\#DOSE rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Dose med or substance";
  dc:title "Dose med or substance";
  rdfs:comment "Dose med or substance";
  dcterms:description "Dose med or substance".

cs:SpecimenType\#DRN rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Drain";
  dc:title "Drain";
  rdfs:comment "Drain";
  dcterms:description "Drain".

cs:SpecimenType\#DUFL rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Duodenal fluid";
  dc:title "Duodenal fluid";
  rdfs:comment "Duodenal fluid";
  dcterms:description "Duodenal fluid".

cs:SpecimenType\#EAR rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Ear";
  dc:title "Ear";
  rdfs:comment "Ear";
  dcterms:description "Ear".

cs:SpecimenType\#EARW rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Ear wax (cerumen)";
  dc:title "Ear wax (cerumen)";
  rdfs:comment "Ear wax (cerumen)";
  dcterms:description "Ear wax (cerumen)".

cs:SpecimenType\#ELT rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Electrode";
  dc:title "Electrode";
  rdfs:comment "Electrode";
  dcterms:description "Electrode".

cs:SpecimenType\#ENDC rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Endocardium";
  dc:title "Endocardium";
  rdfs:comment "Endocardium";
  dcterms:description "Endocardium".

cs:SpecimenType\#ENDM rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Endometrium";
  dc:title "Endometrium";
  rdfs:comment "Endometrium";
  dcterms:description "Endometrium".

cs:SpecimenType\#EOS rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Eosinophils";
  dc:title "Eosinophils";
  rdfs:comment "Eosinophils";
  dcterms:description "Eosinophils".

cs:SpecimenType\#EYE rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Eye";
  dc:title "Eye";
  rdfs:comment "Eye";
  dcterms:description "Eye".

cs:SpecimenType\#FIB rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Fibroblasts";
  dc:title "Fibroblasts";
  rdfs:comment "Fibroblasts";
  dcterms:description "Fibroblasts".

cs:SpecimenType\#FIST rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Fistula";
  dc:title "Fistula";
  rdfs:comment "Fistula";
  dcterms:description "Fistula".

cs:SpecimenType\#FLT rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Filter";
  dc:title "Filter";
  rdfs:comment "Filter";
  dcterms:description "Filter".

cs:SpecimenType\#FLU rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Body fluid, unsp";
  dc:title "Body fluid, unsp";
  rdfs:comment "Body fluid, unsp";
  dcterms:description "Body fluid, unsp".

cs:SpecimenType\#FOOD rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Food sample";
  dc:title "Food sample";
  rdfs:comment "Food sample";
  dcterms:description "Food sample".

cs:SpecimenType\#GAS rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Gas";
  dc:title "Gas";
  rdfs:comment "Gas";
  dcterms:description "Gas".

cs:SpecimenType\#GAST rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Gastric fluid/contents";
  dc:title "Gastric fluid/contents";
  rdfs:comment "Gastric fluid/contents";
  dcterms:description "Gastric fluid/contents".

cs:SpecimenType\#GEN rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Genital";
  dc:title "Genital";
  rdfs:comment "Genital";
  dcterms:description "Genital".

cs:SpecimenType\#GENC rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Genital cervix";
  dc:title "Genital cervix";
  rdfs:comment "Genital cervix";
  dcterms:description "Genital cervix".

cs:SpecimenType\#GENF rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Genital fluid";
  dc:title "Genital fluid";
  rdfs:comment "Genital fluid";
  dcterms:description "Genital fluid".

cs:SpecimenType\#GENL rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Genital lochia";
  dc:title "Genital lochia";
  rdfs:comment "Genital lochia";
  dcterms:description "Genital lochia".

cs:SpecimenType\#GENV rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Genital vaginal";
  dc:title "Genital vaginal";
  rdfs:comment "Genital vaginal";
  dcterms:description "Genital vaginal".

cs:SpecimenType\#HAR rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Hair";
  dc:title "Hair";
  rdfs:comment "Hair";
  dcterms:description "Hair".

cs:SpecimenType\#IHG rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Inhaled Gas";
  dc:title "Inhaled Gas";
  rdfs:comment "Inhaled Gas";
  dcterms:description "Inhaled Gas".

cs:SpecimenType\#ISLT rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Isolate";
  dc:title "Isolate";
  rdfs:comment "Isolate";
  dcterms:description "Isolate".

cs:SpecimenType\#IT rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Intubation tube";
  dc:title "Intubation tube";
  rdfs:comment "Intubation tube";
  dcterms:description "Intubation tube".

cs:SpecimenType\#LAM rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Lamella";
  dc:title "Lamella";
  rdfs:comment "Lamella";
  dcterms:description "Lamella".

cs:SpecimenType\#LIQ rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Liquid NOS";
  dc:title "Liquid NOS";
  rdfs:comment "Liquid NOS";
  dcterms:description "Liquid NOS".

cs:SpecimenType\#LN rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Line";
  dc:title "Line";
  rdfs:comment "Line";
  dcterms:description "Line".

cs:SpecimenType\#LNA rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Line arterial";
  dc:title "Line arterial";
  rdfs:comment "Line arterial";
  dcterms:description "Line arterial".

cs:SpecimenType\#LNV rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Line venous";
  dc:title "Line venous";
  rdfs:comment "Line venous";
  dcterms:description "Line venous".

cs:SpecimenType\#LYM rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Lymphocytes";
  dc:title "Lymphocytes";
  rdfs:comment "Lymphocytes";
  dcterms:description "Lymphocytes".

cs:SpecimenType\#MAC rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Macrophages";
  dc:title "Macrophages";
  rdfs:comment "Macrophages";
  dcterms:description "Macrophages".

cs:SpecimenType\#MAR rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Marrow (bone)";
  dc:title "Marrow (bone)";
  rdfs:comment "Marrow (bone)";
  dcterms:description "Marrow (bone)".

cs:SpecimenType\#MBLD rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Menstrual blood";
  dc:title "Menstrual blood";
  rdfs:comment "Menstrual blood";
  dcterms:description "Menstrual blood".

cs:SpecimenType\#MEC rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Meconium";
  dc:title "Meconium";
  rdfs:comment "Meconium";
  dcterms:description "Meconium".

cs:SpecimenType\#MILK rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Breast milk";
  dc:title "Breast milk";
  rdfs:comment "Breast milk";
  dcterms:description "Breast milk".

cs:SpecimenType\#MLK rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Milk";
  dc:title "Milk";
  rdfs:comment "Milk";
  dcterms:description "Milk".

cs:SpecimenType\#NAIL rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Nail";
  dc:title "Nail";
  rdfs:comment "Nail";
  dcterms:description "Nail".

cs:SpecimenType\#NOS rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Nose (nasal passage)";
  dc:title "Nose (nasal passage)";
  rdfs:comment "Nose (nasal passage)";
  dcterms:description "Nose (nasal passage)".

cs:SpecimenType\#PAFL rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Pancreatic fluid";
  dc:title "Pancreatic fluid";
  rdfs:comment "Pancreatic fluid";
  dcterms:description "Pancreatic fluid".

cs:SpecimenType\#PAT rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Patient";
  dc:title "Patient";
  rdfs:comment "Patient";
  dcterms:description "Patient".

cs:SpecimenType\#PLAS rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Plasma";
  dc:title "Plasma";
  rdfs:comment "Plasma";
  dcterms:description "Plasma".

cs:SpecimenType\#PLB rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Plasma bag";
  dc:title "Plasma bag";
  rdfs:comment "Plasma bag";
  dcterms:description "Plasma bag".

cs:SpecimenType\#PLC rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Placenta";
  dc:title "Placenta";
  rdfs:comment "Placenta";
  dcterms:description "Placenta".

cs:SpecimenType\#PLR rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Pleural fluid (thoracentesis fld)";
  dc:title "Pleural fluid (thoracentesis fld)";
  rdfs:comment "Pleural fluid (thoracentesis fld)";
  dcterms:description "Pleural fluid (thoracentesis fld)".

cs:SpecimenType\#PMN rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Polymorphonuclear neutrophils";
  dc:title "Polymorphonuclear neutrophils";
  rdfs:comment "Polymorphonuclear neutrophils";
  dcterms:description "Polymorphonuclear neutrophils".

cs:SpecimenType\#PPP rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Platelet poor plasma";
  dc:title "Platelet poor plasma";
  rdfs:comment "Platelet poor plasma";
  dcterms:description "Platelet poor plasma".

cs:SpecimenType\#PRP rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Platelet rich plasma";
  dc:title "Platelet rich plasma";
  rdfs:comment "Platelet rich plasma";
  dcterms:description "Platelet rich plasma".

cs:SpecimenType\#PRT rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Peritoneal fluid /ascites";
  dc:title "Peritoneal fluid /ascites";
  rdfs:comment "Peritoneal fluid /ascites";
  dcterms:description "Peritoneal fluid /ascites".

cs:SpecimenType\#PUS rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Pus";
  dc:title "Pus";
  rdfs:comment "Pus";
  dcterms:description "Pus".

cs:SpecimenType\#RBC rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Erythrocytes";
  dc:title "Erythrocytes";
  rdfs:comment "Erythrocytes";
  dcterms:description "Erythrocytes".

cs:SpecimenType\#SAL rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Saliva";
  dc:title "Saliva";
  rdfs:comment "Saliva";
  dcterms:description "Saliva".

cs:SpecimenType\#SER rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Serum";
  dc:title "Serum";
  rdfs:comment "Serum";
  dcterms:description "Serum".

cs:SpecimenType\#SKM rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Skeletal muscle";
  dc:title "Skeletal muscle";
  rdfs:comment "Skeletal muscle";
  dcterms:description "Skeletal muscle".

cs:SpecimenType\#SKN rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Skin";
  dc:title "Skin";
  rdfs:comment "Skin";
  dcterms:description "Skin".

cs:SpecimenType\#SMN rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Seminal fluid";
  dc:title "Seminal fluid";
  rdfs:comment "Seminal fluid";
  dcterms:description "Seminal fluid".

cs:SpecimenType\#SMPLS rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Seminal plasma";
  dc:title "Seminal plasma";
  rdfs:comment "Seminal plasma";
  dcterms:description "Seminal plasma".

cs:SpecimenType\#SNV rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Synovial fluid (Joint fluid)";
  dc:title "Synovial fluid (Joint fluid)";
  rdfs:comment "Synovial fluid (Joint fluid)";
  dcterms:description "Synovial fluid (Joint fluid)".

cs:SpecimenType\#SPRM rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Spermatozoa";
  dc:title "Spermatozoa";
  rdfs:comment "Spermatozoa";
  dcterms:description "Spermatozoa".

cs:SpecimenType\#SPT rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Sputum";
  dc:title "Sputum";
  rdfs:comment "Sputum";
  dcterms:description "Sputum".

cs:SpecimenType\#SPTC rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Sputum - coughed";
  dc:title "Sputum - coughed";
  rdfs:comment "Sputum - coughed";
  dcterms:description "Sputum - coughed".

cs:SpecimenType\#SPTT rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Sputum - tracheal aspirate";
  dc:title "Sputum - tracheal aspirate";
  rdfs:comment "Sputum - tracheal aspirate";
  dcterms:description "Sputum - tracheal aspirate".

cs:SpecimenType\#STL rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Stool = Fecal";
  dc:title "Stool = Fecal";
  rdfs:comment "Stool = Fecal";
  dcterms:description "Stool = Fecal".

cs:SpecimenType\#SWT rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Sweat";
  dc:title "Sweat";
  rdfs:comment "Sweat";
  dcterms:description "Sweat".

cs:SpecimenType\#TEAR rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Tears";
  dc:title "Tears";
  rdfs:comment "Tears";
  dcterms:description "Tears".

cs:SpecimenType\#THRB rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Thrombocyte (platelet)";
  dc:title "Thrombocyte (platelet)";
  rdfs:comment "Thrombocyte (platelet)";
  dcterms:description "Thrombocyte (platelet)".

cs:SpecimenType\#THRT rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Throat";
  dc:title "Throat";
  rdfs:comment "Throat";
  dcterms:description "Throat".

cs:SpecimenType\#TISG rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Tissue gall bladder";
  dc:title "Tissue gall bladder";
  rdfs:comment "Tissue gall bladder";
  dcterms:description "Tissue gall bladder".

cs:SpecimenType\#TISPL rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Tissue placenta";
  dc:title "Tissue placenta";
  rdfs:comment "Tissue placenta";
  dcterms:description "Tissue placenta".

cs:SpecimenType\#TISS rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Tissue, unspecified";
  dc:title "Tissue, unspecified";
  rdfs:comment "Tissue, unspecified";
  dcterms:description "Tissue, unspecified".

cs:SpecimenType\#TISU rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Tissue ulcer";
  dc:title "Tissue ulcer";
  rdfs:comment "Tissue ulcer";
  dcterms:description "Tissue ulcer".

cs:SpecimenType\#TLGI rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Tissue large intestine";
  dc:title "Tissue large intestine";
  rdfs:comment "Tissue large intestine";
  dcterms:description "Tissue large intestine".

cs:SpecimenType\#TLNG rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Tissue lung";
  dc:title "Tissue lung";
  rdfs:comment "Tissue lung";
  dcterms:description "Tissue lung".

cs:SpecimenType\#TSMI rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Tissue small intestine Tissue ulcer";
  dc:title "Tissue small intestine Tissue ulcer";
  rdfs:comment "Tissue small intestine Tissue ulcer";
  dcterms:description "Tissue small intestine Tissue ulcer".

cs:SpecimenType\#TUB rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Tube, unspecified";
  dc:title "Tube, unspecified";
  rdfs:comment "Tube, unspecified";
  dcterms:description "Tube, unspecified".

cs:SpecimenType\#ULC rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Ulcer";
  dc:title "Ulcer";
  rdfs:comment "Ulcer";
  dcterms:description "Ulcer".

cs:SpecimenType\#UMB rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Umbilical blood";
  dc:title "Umbilical blood";
  rdfs:comment "Umbilical blood";
  dcterms:description "Umbilical blood".

cs:SpecimenType\#UMED rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Unknown medicine";
  dc:title "Unknown medicine";
  rdfs:comment "Unknown medicine";
  dcterms:description "Unknown medicine".

cs:SpecimenType\#UR rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Urine";
  dc:title "Urine";
  rdfs:comment "Urine";
  dcterms:description "Urine".

cs:SpecimenType\#URC rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Urine clean catch";
  dc:title "Urine clean catch";
  rdfs:comment "Urine clean catch";
  dcterms:description "Urine clean catch".

cs:SpecimenType\#URNS rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Urine sediment";
  dc:title "Urine sediment";
  rdfs:comment "Urine sediment";
  dcterms:description "Urine sediment".

cs:SpecimenType\#URT rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Urine catheter";
  dc:title "Urine catheter";
  rdfs:comment "Urine catheter";
  dcterms:description "Urine catheter".

cs:SpecimenType\#URTH rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Urethra";
  dc:title "Urethra";
  rdfs:comment "Urethra";
  dcterms:description "Urethra".

cs:SpecimenType\#USUB rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Unknown substance";
  dc:title "Unknown substance";
  rdfs:comment "Unknown substance";
  dcterms:description "Unknown substance".

cs:SpecimenType\#VOM rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Vomitus";
  dc:title "Vomitus";
  rdfs:comment "Vomitus";
  dcterms:description "Vomitus".

cs:SpecimenType\#WAT rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Water";
  dc:title "Water";
  rdfs:comment "Water";
  dcterms:description "Water".

cs:SpecimenType\#WBC rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Leukocytes";
  dc:title "Leukocytes";
  rdfs:comment "Leukocytes";
  dcterms:description "Leukocytes".

cs:SpecimenType\#WICK rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Wick";
  dc:title "Wick";
  rdfs:comment "Wick";
  dcterms:description "Wick".

cs:SpecimenType\#WND rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Wound";
  dc:title "Wound";
  rdfs:comment "Wound";
  dcterms:description "Wound".

cs:SpecimenType\#WNDA rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Wound abscess";
  dc:title "Wound abscess";
  rdfs:comment "Wound abscess";
  dcterms:description "Wound abscess".

cs:SpecimenType\#WNDD rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Wound drainage";
  dc:title "Wound drainage";
  rdfs:comment "Wound drainage";
  dcterms:description "Wound drainage".

cs:SpecimenType\#WNDE rdfs:subClassOf cs:SpecimenType\#%5fSpecimenEntityType;
  rdfs:label "Wound exudate";
  dc:title "Wound exudate";
  rdfs:comment "Wound exudate";
  dcterms:description "Wound exudate".

# - vs:v3-SubstanceAdminSubstitutionReason -------------------------------------

vs:v3-SubstanceAdminSubstitutionReason a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "SubstanceAdminSubstitutionReason";
  dc:title "SubstanceAdminSubstitutionReason";
  rdfs:comment "No Description Provided";
  dcterms:description "No Description Provided";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-SubstitutionCondition ------------------------------------------------

vs:v3-SubstitutionCondition a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System SubstitutionCondition";
  dc:title "v3 Code System SubstitutionCondition";
  rdfs:comment " Identifies what sort of change is permitted or has occurred between the item that was ordered/requested and the one that was/will be provided.";
  dcterms:description " Identifies what sort of change is permitted or has occurred between the item that was ordered/requested and the one that was/will be provided.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:SubstitutionCondition.

cs:SubstitutionCondition.system a fhir:CodeSystem;
  rdfs:label "v3 Code System SubstitutionCondition";
  dc:title "v3 Code System SubstitutionCondition";
  rdfs:comment " Identifies what sort of change is permitted or has occurred between the item that was ordered/requested and the one that was/will be provided.";
  dcterms:description " Identifies what sort of change is permitted or has occurred between the item that was ordered/requested and the one that was/will be provided.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:SubstitutionCondition a fhir:Concept.

cs:SubstitutionCondition\#%5fConditional rdfs:subClassOf cs:SubstitutionCondition;
  rdfs:label "Conditional";
  dc:title "Conditional";
  rdfs:comment "Some conditions may be attached to an allowable substitution.  An allowable substitution is based on a match to any other attributes that may be specified.";
  dcterms:description "Some conditions may be attached to an allowable substitution.  An allowable substitution is based on a match to any other attributes that may be specified.".

cs:SubstitutionCondition\#CONFIRM rdfs:subClassOf cs:SubstitutionCondition\#%5fConditional;
  rdfs:label "Confirm first";
  dc:title "Confirm first";
  rdfs:comment "Confirmation with Contact Person prior to making any substitutions has or will occur.";
  dcterms:description "Confirmation with Contact Person prior to making any substitutions has or will occur.".

cs:SubstitutionCondition\#NOTIFY rdfs:subClassOf cs:SubstitutionCondition\#%5fConditional;
  rdfs:label "Notify first";
  dc:title "Notify first";
  rdfs:comment "Notification to the Contact Person, prior to substitution and through normal institutional procedures, has or will be made.";
  dcterms:description "Notification to the Contact Person, prior to substitution and through normal institutional procedures, has or will be made.".

cs:SubstitutionCondition\#NOSUB rdfs:subClassOf cs:SubstitutionCondition;
  rdfs:label "No substitution";
  dc:title "No substitution";
  rdfs:comment "Substitution is not permitted.";
  dcterms:description "Substitution is not permitted.".

cs:SubstitutionCondition\#UNCOND rdfs:subClassOf cs:SubstitutionCondition;
  rdfs:label "Unconditional";
  dc:title "Unconditional";
  rdfs:comment "No conditions are required.";
  dcterms:description "No conditions are required.".

# - vs:v3-TableCellHorizontalAlign ---------------------------------------------

vs:v3-TableCellHorizontalAlign a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System TableCellHorizontalAlign";
  dc:title "v3 Code System TableCellHorizontalAlign";
  rdfs:comment " These values are defined within the XHTML 4.0 Table Model";
  dcterms:description " These values are defined within the XHTML 4.0 Table Model";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:TableCellHorizontalAlign.

cs:TableCellHorizontalAlign.system a fhir:CodeSystem;
  rdfs:label "v3 Code System TableCellHorizontalAlign";
  dc:title "v3 Code System TableCellHorizontalAlign";
  rdfs:comment " These values are defined within the XHTML 4.0 Table Model";
  dcterms:description " These values are defined within the XHTML 4.0 Table Model";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:TableCellHorizontalAlign a fhir:Concept.

cs:TableCellHorizontalAlign\#center rdfs:subClassOf cs:TableCellHorizontalAlign;
  rdfs:label "center";
  dc:title "center";
  rdfs:comment "center";
  dcterms:description "center".

cs:TableCellHorizontalAlign\#char rdfs:subClassOf cs:TableCellHorizontalAlign;
  rdfs:label "char";
  dc:title "char";
  rdfs:comment "char";
  dcterms:description "char".

cs:TableCellHorizontalAlign\#justify rdfs:subClassOf cs:TableCellHorizontalAlign;
  rdfs:label "justify";
  dc:title "justify";
  rdfs:comment "justify";
  dcterms:description "justify".

cs:TableCellHorizontalAlign\#left rdfs:subClassOf cs:TableCellHorizontalAlign;
  rdfs:label "left";
  dc:title "left";
  rdfs:comment "left";
  dcterms:description "left".

cs:TableCellHorizontalAlign\#right rdfs:subClassOf cs:TableCellHorizontalAlign;
  rdfs:label "right";
  dc:title "right";
  rdfs:comment "right";
  dcterms:description "right".

# - vs:v3-TableCellScope -------------------------------------------------------

vs:v3-TableCellScope a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System TableCellScope";
  dc:title "v3 Code System TableCellScope";
  rdfs:comment " These values are defined within the XHTML 4.0 Table Model";
  dcterms:description " These values are defined within the XHTML 4.0 Table Model";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:TableCellScope.

cs:TableCellScope.system a fhir:CodeSystem;
  rdfs:label "v3 Code System TableCellScope";
  dc:title "v3 Code System TableCellScope";
  rdfs:comment " These values are defined within the XHTML 4.0 Table Model";
  dcterms:description " These values are defined within the XHTML 4.0 Table Model";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:TableCellScope a fhir:Concept.

cs:TableCellScope\#col rdfs:subClassOf cs:TableCellScope;
  rdfs:label "col";
  dc:title "col";
  rdfs:comment "col";
  dcterms:description "col".

cs:TableCellScope\#colgroup rdfs:subClassOf cs:TableCellScope;
  rdfs:label "colgroup";
  dc:title "colgroup";
  rdfs:comment "colgroup";
  dcterms:description "colgroup".

cs:TableCellScope\#row rdfs:subClassOf cs:TableCellScope;
  rdfs:label "row";
  dc:title "row";
  rdfs:comment "row";
  dcterms:description "row".

cs:TableCellScope\#rowgroup rdfs:subClassOf cs:TableCellScope;
  rdfs:label "rowgroup";
  dc:title "rowgroup";
  rdfs:comment "rowgroup";
  dcterms:description "rowgroup".

# - vs:v3-TableCellVerticalAlign -----------------------------------------------

vs:v3-TableCellVerticalAlign a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System TableCellVerticalAlign";
  dc:title "v3 Code System TableCellVerticalAlign";
  rdfs:comment " These values are defined within the XHTML 4.0 Table Model";
  dcterms:description " These values are defined within the XHTML 4.0 Table Model";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:TableCellVerticalAlign.

cs:TableCellVerticalAlign.system a fhir:CodeSystem;
  rdfs:label "v3 Code System TableCellVerticalAlign";
  dc:title "v3 Code System TableCellVerticalAlign";
  rdfs:comment " These values are defined within the XHTML 4.0 Table Model";
  dcterms:description " These values are defined within the XHTML 4.0 Table Model";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:TableCellVerticalAlign a fhir:Concept.

cs:TableCellVerticalAlign\#baseline rdfs:subClassOf cs:TableCellVerticalAlign;
  rdfs:label "baseline";
  dc:title "baseline";
  rdfs:comment "baseline";
  dcterms:description "baseline".

cs:TableCellVerticalAlign\#bottom rdfs:subClassOf cs:TableCellVerticalAlign;
  rdfs:label "bottom";
  dc:title "bottom";
  rdfs:comment "bottom";
  dcterms:description "bottom".

cs:TableCellVerticalAlign\#middle rdfs:subClassOf cs:TableCellVerticalAlign;
  rdfs:label "middle";
  dc:title "middle";
  rdfs:comment "middle";
  dcterms:description "middle".

cs:TableCellVerticalAlign\#top rdfs:subClassOf cs:TableCellVerticalAlign;
  rdfs:label "top";
  dc:title "top";
  rdfs:comment "top";
  dcterms:description "top".

# - vs:v3-TableFrame -----------------------------------------------------------

vs:v3-TableFrame a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System TableFrame";
  dc:title "v3 Code System TableFrame";
  rdfs:comment " These values are defined within the XHTML 4.0 Table Model";
  dcterms:description " These values are defined within the XHTML 4.0 Table Model";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:TableFrame.

cs:TableFrame.system a fhir:CodeSystem;
  rdfs:label "v3 Code System TableFrame";
  dc:title "v3 Code System TableFrame";
  rdfs:comment " These values are defined within the XHTML 4.0 Table Model";
  dcterms:description " These values are defined within the XHTML 4.0 Table Model";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:TableFrame a fhir:Concept.

cs:TableFrame\#above rdfs:subClassOf cs:TableFrame;
  rdfs:label "above";
  dc:title "above";
  rdfs:comment "above";
  dcterms:description "above".

cs:TableFrame\#below rdfs:subClassOf cs:TableFrame;
  rdfs:label "below";
  dc:title "below";
  rdfs:comment "below";
  dcterms:description "below".

cs:TableFrame\#border rdfs:subClassOf cs:TableFrame;
  rdfs:label "border";
  dc:title "border";
  rdfs:comment "border";
  dcterms:description "border".

cs:TableFrame\#box rdfs:subClassOf cs:TableFrame;
  rdfs:label "box";
  dc:title "box";
  rdfs:comment "box";
  dcterms:description "box".

cs:TableFrame\#hsides rdfs:subClassOf cs:TableFrame;
  rdfs:label "hsides";
  dc:title "hsides";
  rdfs:comment "hsides";
  dcterms:description "hsides".

cs:TableFrame\#lhs rdfs:subClassOf cs:TableFrame;
  rdfs:label "lhs";
  dc:title "lhs";
  rdfs:comment "lhs";
  dcterms:description "lhs".

cs:TableFrame\#rhs rdfs:subClassOf cs:TableFrame;
  rdfs:label "rhs";
  dc:title "rhs";
  rdfs:comment "rhs";
  dcterms:description "rhs".

cs:TableFrame\#void rdfs:subClassOf cs:TableFrame;
  rdfs:label "void";
  dc:title "void";
  rdfs:comment "void";
  dcterms:description "void".

cs:TableFrame\#vsides rdfs:subClassOf cs:TableFrame;
  rdfs:label "vsides";
  dc:title "vsides";
  rdfs:comment "vsides";
  dcterms:description "vsides".

# - vs:v3-TableRules -----------------------------------------------------------

vs:v3-TableRules a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System TableRules";
  dc:title "v3 Code System TableRules";
  rdfs:comment " These values are defined within the XHTML 4.0 Table Model";
  dcterms:description " These values are defined within the XHTML 4.0 Table Model";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:TableRules.

cs:TableRules.system a fhir:CodeSystem;
  rdfs:label "v3 Code System TableRules";
  dc:title "v3 Code System TableRules";
  rdfs:comment " These values are defined within the XHTML 4.0 Table Model";
  dcterms:description " These values are defined within the XHTML 4.0 Table Model";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:TableRules a fhir:Concept.

cs:TableRules\#all rdfs:subClassOf cs:TableRules;
  rdfs:label "all";
  dc:title "all";
  rdfs:comment "all";
  dcterms:description "all".

cs:TableRules\#cols rdfs:subClassOf cs:TableRules;
  rdfs:label "cols";
  dc:title "cols";
  rdfs:comment "cols";
  dcterms:description "cols".

cs:TableRules\#groups rdfs:subClassOf cs:TableRules;
  rdfs:label "groups";
  dc:title "groups";
  rdfs:comment "groups";
  dcterms:description "groups".

cs:TableRules\#none rdfs:subClassOf cs:TableRules;
  rdfs:label "none";
  dc:title "none";
  rdfs:comment "none";
  dcterms:description "none".

cs:TableRules\#rows rdfs:subClassOf cs:TableRules;
  rdfs:label "rows";
  dc:title "rows";
  rdfs:comment "rows";
  dcterms:description "rows".

# - vs:v3-TargetAwareness ------------------------------------------------------

vs:v3-TargetAwareness a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System TargetAwareness";
  dc:title "v3 Code System TargetAwareness";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:TargetAwareness.

cs:TargetAwareness.system a fhir:CodeSystem;
  rdfs:label "v3 Code System TargetAwareness";
  dc:title "v3 Code System TargetAwareness";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:TargetAwareness a fhir:Concept.

cs:TargetAwareness\#D rdfs:subClassOf cs:TargetAwareness;
  rdfs:label "denying";
  dc:title "denying";
  rdfs:comment "Target person has been informed about the issue but currently denies it.";
  dcterms:description "Target person has been informed about the issue but currently denies it.".

cs:TargetAwareness\#F rdfs:subClassOf cs:TargetAwareness;
  rdfs:label "full awareness";
  dc:title "full awareness";
  rdfs:comment "Target person is fully aware of the issue.";
  dcterms:description "Target person is fully aware of the issue.".

cs:TargetAwareness\#I rdfs:subClassOf cs:TargetAwareness;
  rdfs:label "incapable";
  dc:title "incapable";
  rdfs:comment "Target person is not capable of comprehending the issue.";
  dcterms:description "Target person is not capable of comprehending the issue.".

cs:TargetAwareness\#M rdfs:subClassOf cs:TargetAwareness;
  rdfs:label "marginal";
  dc:title "marginal";
  rdfs:comment "Target person is marginally aware of the issue.";
  dcterms:description "Target person is marginally aware of the issue.".

cs:TargetAwareness\#P rdfs:subClassOf cs:TargetAwareness;
  rdfs:label "partial";
  dc:title "partial";
  rdfs:comment "Target person is partially aware of the issue.";
  dcterms:description "Target person is partially aware of the issue.".

cs:TargetAwareness\#U rdfs:subClassOf cs:TargetAwareness;
  rdfs:label "uninformed";
  dc:title "uninformed";
  rdfs:comment "Target person has not yet been informed of the issue.";
  dcterms:description "Target person has not yet been informed of the issue.".

# - vs:v3-TelecommunicationCapabilities ----------------------------------------

vs:v3-TelecommunicationCapabilities a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System TelecommunicationCapabilities";
  dc:title "v3 Code System TelecommunicationCapabilities";
  rdfs:comment "  Description:\r\nConcepts that define the telecommunication capabilities of a particular device. Used to identify the expected capabilities to be found at a particular telecommunication address.";
  dcterms:description "  Description:\r\nConcepts that define the telecommunication capabilities of a particular device. Used to identify the expected capabilities to be found at a particular telecommunication address.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:TelecommunicationCapabilities.

cs:TelecommunicationCapabilities.system a fhir:CodeSystem;
  rdfs:label "v3 Code System TelecommunicationCapabilities";
  dc:title "v3 Code System TelecommunicationCapabilities";
  rdfs:comment "  Description:\r\nConcepts that define the telecommunication capabilities of a particular device. Used to identify the expected capabilities to be found at a particular telecommunication address.";
  dcterms:description "  Description:\r\nConcepts that define the telecommunication capabilities of a particular device. Used to identify the expected capabilities to be found at a particular telecommunication address.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:TelecommunicationCapabilities a fhir:Concept.

cs:TelecommunicationCapabilities\#data rdfs:subClassOf cs:TelecommunicationCapabilities;
  rdfs:label "data";
  dc:title "data";
  rdfs:comment "Description: This device can receive data calls (i.e. modem).";
  dcterms:description "Description: This device can receive data calls (i.e. modem).".

cs:TelecommunicationCapabilities\#fax rdfs:subClassOf cs:TelecommunicationCapabilities;
  rdfs:label "fax";
  dc:title "fax";
  rdfs:comment "Description: This device can receive faxes.";
  dcterms:description "Description: This device can receive faxes.".

cs:TelecommunicationCapabilities\#sms rdfs:subClassOf cs:TelecommunicationCapabilities;
  rdfs:label "sms";
  dc:title "sms";
  rdfs:comment "Description: This device can receive SMS messages.";
  dcterms:description "Description: This device can receive SMS messages.".

cs:TelecommunicationCapabilities\#tty rdfs:subClassOf cs:TelecommunicationCapabilities;
  rdfs:label "text";
  dc:title "text";
  rdfs:comment "Description: This device is a text telephone.";
  dcterms:description "Description: This device is a text telephone.".

cs:TelecommunicationCapabilities\#voice rdfs:subClassOf cs:TelecommunicationCapabilities;
  rdfs:label "voice";
  dc:title "voice";
  rdfs:comment "Description: This device can receive voice calls (i.e. talking to another person, or a recording device, or a voice activated computer).";
  dcterms:description "Description: This device can receive voice calls (i.e. talking to another person, or a recording device, or a voice activated computer).".

# - vs:v3-TimingEvent ----------------------------------------------------------

vs:v3-TimingEvent a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System TimingEvent";
  dc:title "v3 Code System TimingEvent";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:TimingEvent.

cs:TimingEvent.system a fhir:CodeSystem;
  rdfs:label "v3 Code System TimingEvent";
  dc:title "v3 Code System TimingEvent";
  rdfs:comment "**** MISSING DEFINITIONS ****";
  dcterms:description "**** MISSING DEFINITIONS ****";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:TimingEvent a fhir:Concept.

cs:TimingEvent\#AC rdfs:subClassOf cs:TimingEvent;
  rdfs:label "AC";
  dc:title "AC";
  rdfs:comment "before meal (from lat. ante cibus)";
  dcterms:description "before meal (from lat. ante cibus)".

cs:TimingEvent\#ACD rdfs:subClassOf cs:TimingEvent;
  rdfs:label "ACD";
  dc:title "ACD";
  rdfs:comment "before lunch (from lat. ante cibus diurnus)";
  dcterms:description "before lunch (from lat. ante cibus diurnus)".

cs:TimingEvent\#ACM rdfs:subClassOf cs:TimingEvent;
  rdfs:label "ACM";
  dc:title "ACM";
  rdfs:comment "before breakfast (from lat. ante cibus matutinus)";
  dcterms:description "before breakfast (from lat. ante cibus matutinus)".

cs:TimingEvent\#ACV rdfs:subClassOf cs:TimingEvent;
  rdfs:label "ACV";
  dc:title "ACV";
  rdfs:comment "before dinner (from lat. ante cibus vespertinus)";
  dcterms:description "before dinner (from lat. ante cibus vespertinus)".

cs:TimingEvent\#C rdfs:subClassOf cs:TimingEvent;
  rdfs:label "C";
  dc:title "C";
  rdfs:comment "Description: meal (from lat. ante cibus)";
  dcterms:description "Description: meal (from lat. ante cibus)".

cs:TimingEvent\#CD rdfs:subClassOf cs:TimingEvent\#C;
  rdfs:label "CD";
  dc:title "CD";
  rdfs:comment "Description: lunch (from lat. cibus diurnus)";
  dcterms:description "Description: lunch (from lat. cibus diurnus)".

cs:TimingEvent\#CM rdfs:subClassOf cs:TimingEvent\#C;
  rdfs:label "CM";
  dc:title "CM";
  rdfs:comment "Description: breakfast (from lat. cibus matutinus)";
  dcterms:description "Description: breakfast (from lat. cibus matutinus)".

cs:TimingEvent\#CV rdfs:subClassOf cs:TimingEvent\#C;
  rdfs:label "CV";
  dc:title "CV";
  rdfs:comment "Description: dinner (from lat. cibus vespertinus)";
  dcterms:description "Description: dinner (from lat. cibus vespertinus)".

cs:TimingEvent\#HS rdfs:subClassOf cs:TimingEvent;
  rdfs:label "HS";
  dc:title "HS";
  rdfs:comment "Description: Prior to beginning a regular period of extended sleep (this would exclude naps).  Note that this might occur at different times of day depending on a person's regular sleep schedule.";
  dcterms:description "Description: Prior to beginning a regular period of extended sleep (this would exclude naps).  Note that this might occur at different times of day depending on a person's regular sleep schedule.".

cs:TimingEvent\#IC rdfs:subClassOf cs:TimingEvent;
  rdfs:label "IC";
  dc:title "IC";
  rdfs:comment "between meals (from lat. inter cibus)";
  dcterms:description "between meals (from lat. inter cibus)".

cs:TimingEvent\#ICD rdfs:subClassOf cs:TimingEvent;
  rdfs:label "ICD";
  dc:title "ICD";
  rdfs:comment "between lunch and dinner";
  dcterms:description "between lunch and dinner".

cs:TimingEvent\#ICM rdfs:subClassOf cs:TimingEvent;
  rdfs:label "ICM";
  dc:title "ICM";
  rdfs:comment "between breakfast and lunch";
  dcterms:description "between breakfast and lunch".

cs:TimingEvent\#ICV rdfs:subClassOf cs:TimingEvent;
  rdfs:label "ICV";
  dc:title "ICV";
  rdfs:comment "between dinner and the hour of sleep";
  dcterms:description "between dinner and the hour of sleep".

cs:TimingEvent\#PC rdfs:subClassOf cs:TimingEvent;
  rdfs:label "PC";
  dc:title "PC";
  rdfs:comment "after meal (from lat. post cibus)";
  dcterms:description "after meal (from lat. post cibus)".

cs:TimingEvent\#PCD rdfs:subClassOf cs:TimingEvent;
  rdfs:label "PCD";
  dc:title "PCD";
  rdfs:comment "after lunch (from lat. post cibus diurnus)";
  dcterms:description "after lunch (from lat. post cibus diurnus)".

cs:TimingEvent\#PCM rdfs:subClassOf cs:TimingEvent;
  rdfs:label "PCM";
  dc:title "PCM";
  rdfs:comment "after breakfast (from lat. post cibus matutinus)";
  dcterms:description "after breakfast (from lat. post cibus matutinus)".

cs:TimingEvent\#PCV rdfs:subClassOf cs:TimingEvent;
  rdfs:label "PCV";
  dc:title "PCV";
  rdfs:comment "after dinner (from lat. post cibus vespertinus)";
  dcterms:description "after dinner (from lat. post cibus vespertinus)".

cs:TimingEvent\#WAKE rdfs:subClassOf cs:TimingEvent;
  rdfs:label "WAKE";
  dc:title "WAKE";
  rdfs:comment "Description: Upon waking up from a regular period of sleep, in order to start regular activities (this would exclude waking up from a nap or temporarily waking up during a period of sleep)\r\n\n                        \n                           Usage Notes: e.g.\r\n\n                        Take pulse rate on waking in management of thyrotoxicosis.\r\n\n                        Take BP on waking in management of hypertension\r\n\n                        Take basal body temperature on waking in establishing date of ovulation";
  dcterms:description "Description: Upon waking up from a regular period of sleep, in order to start regular activities (this would exclude waking up from a nap or temporarily waking up during a period of sleep)\r\n\n                        \n                           Usage Notes: e.g.\r\n\n                        Take pulse rate on waking in management of thyrotoxicosis.\r\n\n                        Take BP on waking in management of hypertension\r\n\n                        Take basal body temperature on waking in establishing date of ovulation".

# - vs:v3-TransmissionRelationshipTypeCode -------------------------------------

vs:v3-TransmissionRelationshipTypeCode a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System TransmissionRelationshipTypeCode";
  dc:title "v3 Code System TransmissionRelationshipTypeCode";
  rdfs:comment "  Description:\r\nA code specifying the meaning and purpose of every TransmissionRelationship instance. Each of its values implies specific constraints to what kinds of Transmission objects can be related and in which way.";
  dcterms:description "  Description:\r\nA code specifying the meaning and purpose of every TransmissionRelationship instance. Each of its values implies specific constraints to what kinds of Transmission objects can be related and in which way.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:TransmissionRelationshipTypeCode.

cs:TransmissionRelationshipTypeCode.system a fhir:CodeSystem;
  rdfs:label "v3 Code System TransmissionRelationshipTypeCode";
  dc:title "v3 Code System TransmissionRelationshipTypeCode";
  rdfs:comment "  Description:\r\nA code specifying the meaning and purpose of every TransmissionRelationship instance. Each of its values implies specific constraints to what kinds of Transmission objects can be related and in which way.";
  dcterms:description "  Description:\r\nA code specifying the meaning and purpose of every TransmissionRelationship instance. Each of its values implies specific constraints to what kinds of Transmission objects can be related and in which way.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:TransmissionRelationshipTypeCode a fhir:Concept.

cs:TransmissionRelationshipTypeCode\#SEQL rdfs:subClassOf cs:TransmissionRelationshipTypeCode;
  rdfs:label "sequence";
  dc:title "sequence";
  rdfs:comment "Description:A transmission relationship indicating that the source transmission follows the target transmission.";
  dcterms:description "Description:A transmission relationship indicating that the source transmission follows the target transmission.".

# - vs:v3-TribalEntityUS -------------------------------------------------------

vs:v3-TribalEntityUS a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System TribalEntityUS";
  dc:title "v3 Code System TribalEntityUS";
  rdfs:comment " INDIAN ENTITIES RECOGNIZED AND ELIGIBLE TO RECEIVE SERVICES FROM THE UNITED STATES BUREAU OF INDIAN AFFAIRS";
  dcterms:description " INDIAN ENTITIES RECOGNIZED AND ELIGIBLE TO RECEIVE SERVICES FROM THE UNITED STATES BUREAU OF INDIAN AFFAIRS";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:TribalEntityUS.

cs:TribalEntityUS.system a fhir:CodeSystem;
  rdfs:label "v3 Code System TribalEntityUS";
  dc:title "v3 Code System TribalEntityUS";
  rdfs:comment " INDIAN ENTITIES RECOGNIZED AND ELIGIBLE TO RECEIVE SERVICES FROM THE UNITED STATES BUREAU OF INDIAN AFFAIRS";
  dcterms:description " INDIAN ENTITIES RECOGNIZED AND ELIGIBLE TO RECEIVE SERVICES FROM THE UNITED STATES BUREAU OF INDIAN AFFAIRS";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:TribalEntityUS a fhir:Concept.

cs:TribalEntityUS\#%5fNativeEntityAlaska rdfs:subClassOf cs:TribalEntityUS;
  rdfs:label "NativeEntityAlaska";
  dc:title "NativeEntityAlaska";
  rdfs:comment "NATIVE ENTITIES WITHIN THE STATE OF ALASKA RECOGNIZED AND ELIGIBLE TO RECEIVE SERVICES FROM THE UNITED STATES BUREAU OF INDIAN AFFAIRS";
  dcterms:description "NATIVE ENTITIES WITHIN THE STATE OF ALASKA RECOGNIZED AND ELIGIBLE TO RECEIVE SERVICES FROM THE UNITED STATES BUREAU OF INDIAN AFFAIRS".

cs:TribalEntityUS\#338 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Afognak";
  dc:title "Village of Afognak";
  rdfs:comment "Village of Afognak";
  dcterms:description "Village of Afognak".

cs:TribalEntityUS\#339 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Agdaagux Tribe of King Cove";
  dc:title "Agdaagux Tribe of King Cove";
  rdfs:comment "Agdaagux Tribe of King Cove";
  dcterms:description "Agdaagux Tribe of King Cove".

cs:TribalEntityUS\#340 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Akhiok";
  dc:title "Native Village of Akhiok";
  rdfs:comment "Native Village of Akhiok";
  dcterms:description "Native Village of Akhiok".

cs:TribalEntityUS\#341 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Akiachak Native Community";
  dc:title "Akiachak Native Community";
  rdfs:comment "Akiachak Native Community";
  dcterms:description "Akiachak Native Community".

cs:TribalEntityUS\#342 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Akiak Native Community";
  dc:title "Akiak Native Community";
  rdfs:comment "Akiak Native Community";
  dcterms:description "Akiak Native Community".

cs:TribalEntityUS\#343 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Akutan";
  dc:title "Native Village of Akutan";
  rdfs:comment "Native Village of Akutan";
  dcterms:description "Native Village of Akutan".

cs:TribalEntityUS\#344 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Alakanuk";
  dc:title "Village of Alakanuk";
  rdfs:comment "Village of Alakanuk";
  dcterms:description "Village of Alakanuk".

cs:TribalEntityUS\#345 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Alatna Village";
  dc:title "Alatna Village";
  rdfs:comment "Alatna Village";
  dcterms:description "Alatna Village".

cs:TribalEntityUS\#346 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Aleknagik";
  dc:title "Native Village of Aleknagik";
  rdfs:comment "Native Village of Aleknagik";
  dcterms:description "Native Village of Aleknagik".

cs:TribalEntityUS\#347 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Algaaciq Native Village (St. Mary's)";
  dc:title "Algaaciq Native Village (St. Mary's)";
  rdfs:comment "Algaaciq Native Village (St. Mary's)";
  dcterms:description "Algaaciq Native Village (St. Mary's)".

cs:TribalEntityUS\#348 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Allakaket Village";
  dc:title "Allakaket Village";
  rdfs:comment "Allakaket Village";
  dcterms:description "Allakaket Village".

cs:TribalEntityUS\#349 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Ambler";
  dc:title "Native Village of Ambler";
  rdfs:comment "Native Village of Ambler";
  dcterms:description "Native Village of Ambler".

cs:TribalEntityUS\#350 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Anaktuvuk Pass";
  dc:title "Village of Anaktuvuk Pass";
  rdfs:comment "Village of Anaktuvuk Pass";
  dcterms:description "Village of Anaktuvuk Pass".

cs:TribalEntityUS\#351 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Yupiit of Andreafski";
  dc:title "Yupiit of Andreafski";
  rdfs:comment "Yupiit of Andreafski";
  dcterms:description "Yupiit of Andreafski".

cs:TribalEntityUS\#352 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Angoon Community Association";
  dc:title "Angoon Community Association";
  rdfs:comment "Angoon Community Association";
  dcterms:description "Angoon Community Association".

cs:TribalEntityUS\#353 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Aniak";
  dc:title "Village of Aniak";
  rdfs:comment "Village of Aniak";
  dcterms:description "Village of Aniak".

cs:TribalEntityUS\#354 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Anvik Village";
  dc:title "Anvik Village";
  rdfs:comment "Anvik Village";
  dcterms:description "Anvik Village".

cs:TribalEntityUS\#355 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Arctic Village (See Native Village of Venetie Trib";
  dc:title "Arctic Village (See Native Village of Venetie Trib";
  rdfs:comment "Arctic Village (See Native Village of Venetie Trib";
  dcterms:description "Arctic Village (See Native Village of Venetie Trib".

cs:TribalEntityUS\#356 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Asa carsarmiut Tribe (formerly Native Village of M";
  dc:title "Asa carsarmiut Tribe (formerly Native Village of M";
  rdfs:comment "Asa carsarmiut Tribe (formerly Native Village of M";
  dcterms:description "Asa carsarmiut Tribe (formerly Native Village of M".

cs:TribalEntityUS\#357 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Atka";
  dc:title "Native Village of Atka";
  rdfs:comment "Native Village of Atka";
  dcterms:description "Native Village of Atka".

cs:TribalEntityUS\#358 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Atmautluak";
  dc:title "Village of Atmautluak";
  rdfs:comment "Village of Atmautluak";
  dcterms:description "Village of Atmautluak".

cs:TribalEntityUS\#359 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Atqasuk Village (Atkasook)";
  dc:title "Atqasuk Village (Atkasook)";
  rdfs:comment "Atqasuk Village (Atkasook)";
  dcterms:description "Atqasuk Village (Atkasook)".

cs:TribalEntityUS\#360 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Barrow Inupiat Traditional Gover";
  dc:title "Native Village of Barrow Inupiat Traditional Gover";
  rdfs:comment "Native Village of Barrow Inupiat Traditional Gover";
  dcterms:description "Native Village of Barrow Inupiat Traditional Gover".

cs:TribalEntityUS\#361 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Beaver Village";
  dc:title "Beaver Village";
  rdfs:comment "Beaver Village";
  dcterms:description "Beaver Village".

cs:TribalEntityUS\#362 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Belkofski";
  dc:title "Native Village of Belkofski";
  rdfs:comment "Native Village of Belkofski";
  dcterms:description "Native Village of Belkofski".

cs:TribalEntityUS\#363 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Bill Moore's Slough";
  dc:title "Village of Bill Moore's Slough";
  rdfs:comment "Village of Bill Moore's Slough";
  dcterms:description "Village of Bill Moore's Slough".

cs:TribalEntityUS\#364 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Birch Creek Tribe";
  dc:title "Birch Creek Tribe";
  rdfs:comment "Birch Creek Tribe";
  dcterms:description "Birch Creek Tribe".

cs:TribalEntityUS\#365 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Brevig Mission";
  dc:title "Native Village of Brevig Mission";
  rdfs:comment "Native Village of Brevig Mission";
  dcterms:description "Native Village of Brevig Mission".

cs:TribalEntityUS\#366 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Buckland";
  dc:title "Native Village of Buckland";
  rdfs:comment "Native Village of Buckland";
  dcterms:description "Native Village of Buckland".

cs:TribalEntityUS\#367 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Cantwell";
  dc:title "Native Village of Cantwell";
  rdfs:comment "Native Village of Cantwell";
  dcterms:description "Native Village of Cantwell".

cs:TribalEntityUS\#368 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Chanega (aka Chenega)";
  dc:title "Native Village of Chanega (aka Chenega)";
  rdfs:comment "Native Village of Chanega (aka Chenega)";
  dcterms:description "Native Village of Chanega (aka Chenega)".

cs:TribalEntityUS\#369 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Chalkyitsik Village";
  dc:title "Chalkyitsik Village";
  rdfs:comment "Chalkyitsik Village";
  dcterms:description "Chalkyitsik Village".

cs:TribalEntityUS\#370 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Chefornak";
  dc:title "Village of Chefornak";
  rdfs:comment "Village of Chefornak";
  dcterms:description "Village of Chefornak".

cs:TribalEntityUS\#371 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Chevak Native Village";
  dc:title "Chevak Native Village";
  rdfs:comment "Chevak Native Village";
  dcterms:description "Chevak Native Village".

cs:TribalEntityUS\#372 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Chickaloon Native Village";
  dc:title "Chickaloon Native Village";
  rdfs:comment "Chickaloon Native Village";
  dcterms:description "Chickaloon Native Village".

cs:TribalEntityUS\#373 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Chignik";
  dc:title "Native Village of Chignik";
  rdfs:comment "Native Village of Chignik";
  dcterms:description "Native Village of Chignik".

cs:TribalEntityUS\#374 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Chignik Lagoon";
  dc:title "Native Village of Chignik Lagoon";
  rdfs:comment "Native Village of Chignik Lagoon";
  dcterms:description "Native Village of Chignik Lagoon".

cs:TribalEntityUS\#375 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Chignik Lake Village";
  dc:title "Chignik Lake Village";
  rdfs:comment "Chignik Lake Village";
  dcterms:description "Chignik Lake Village".

cs:TribalEntityUS\#376 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Chilkat Indian Village (Klukwan)";
  dc:title "Chilkat Indian Village (Klukwan)";
  rdfs:comment "Chilkat Indian Village (Klukwan)";
  dcterms:description "Chilkat Indian Village (Klukwan)".

cs:TribalEntityUS\#377 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Chilkoot Indian Association (Haines)";
  dc:title "Chilkoot Indian Association (Haines)";
  rdfs:comment "Chilkoot Indian Association (Haines)";
  dcterms:description "Chilkoot Indian Association (Haines)".

cs:TribalEntityUS\#378 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Chinik Eskimo Community (Golovin)";
  dc:title "Chinik Eskimo Community (Golovin)";
  rdfs:comment "Chinik Eskimo Community (Golovin)";
  dcterms:description "Chinik Eskimo Community (Golovin)".

cs:TribalEntityUS\#379 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Chistochina";
  dc:title "Native Village of Chistochina";
  rdfs:comment "Native Village of Chistochina";
  dcterms:description "Native Village of Chistochina".

cs:TribalEntityUS\#380 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Chitina";
  dc:title "Native Village of Chitina";
  rdfs:comment "Native Village of Chitina";
  dcterms:description "Native Village of Chitina".

cs:TribalEntityUS\#381 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Chuathbaluk (Russian Mission, Ku";
  dc:title "Native Village of Chuathbaluk (Russian Mission, Ku";
  rdfs:comment "Native Village of Chuathbaluk (Russian Mission, Ku";
  dcterms:description "Native Village of Chuathbaluk (Russian Mission, Ku".

cs:TribalEntityUS\#382 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Chuloonawick Native Village";
  dc:title "Chuloonawick Native Village";
  rdfs:comment "Chuloonawick Native Village";
  dcterms:description "Chuloonawick Native Village".

cs:TribalEntityUS\#383 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Circle Native Community";
  dc:title "Circle Native Community";
  rdfs:comment "Circle Native Community";
  dcterms:description "Circle Native Community".

cs:TribalEntityUS\#384 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Clark's Point";
  dc:title "Village of Clark's Point";
  rdfs:comment "Village of Clark's Point";
  dcterms:description "Village of Clark's Point".

cs:TribalEntityUS\#385 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Council";
  dc:title "Native Village of Council";
  rdfs:comment "Native Village of Council";
  dcterms:description "Native Village of Council".

cs:TribalEntityUS\#386 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Craig Community Association";
  dc:title "Craig Community Association";
  rdfs:comment "Craig Community Association";
  dcterms:description "Craig Community Association".

cs:TribalEntityUS\#387 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Crooked Creek";
  dc:title "Village of Crooked Creek";
  rdfs:comment "Village of Crooked Creek";
  dcterms:description "Village of Crooked Creek".

cs:TribalEntityUS\#388 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Curyung Tribal Council (formerly Native Village of";
  dc:title "Curyung Tribal Council (formerly Native Village of";
  rdfs:comment "Curyung Tribal Council (formerly Native Village of";
  dcterms:description "Curyung Tribal Council (formerly Native Village of".

cs:TribalEntityUS\#389 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Deering";
  dc:title "Native Village of Deering";
  rdfs:comment "Native Village of Deering";
  dcterms:description "Native Village of Deering".

cs:TribalEntityUS\#390 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Diomede (aka Inalik)";
  dc:title "Native Village of Diomede (aka Inalik)";
  rdfs:comment "Native Village of Diomede (aka Inalik)";
  dcterms:description "Native Village of Diomede (aka Inalik)".

cs:TribalEntityUS\#391 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Dot Lake";
  dc:title "Village of Dot Lake";
  rdfs:comment "Village of Dot Lake";
  dcterms:description "Village of Dot Lake".

cs:TribalEntityUS\#392 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Douglas Indian Association";
  dc:title "Douglas Indian Association";
  rdfs:comment "Douglas Indian Association";
  dcterms:description "Douglas Indian Association".

cs:TribalEntityUS\#393 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Eagle";
  dc:title "Native Village of Eagle";
  rdfs:comment "Native Village of Eagle";
  dcterms:description "Native Village of Eagle".

cs:TribalEntityUS\#394 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Eek";
  dc:title "Native Village of Eek";
  rdfs:comment "Native Village of Eek";
  dcterms:description "Native Village of Eek".

cs:TribalEntityUS\#395 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Egegik Village";
  dc:title "Egegik Village";
  rdfs:comment "Egegik Village";
  dcterms:description "Egegik Village".

cs:TribalEntityUS\#396 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Eklutna Native Village";
  dc:title "Eklutna Native Village";
  rdfs:comment "Eklutna Native Village";
  dcterms:description "Eklutna Native Village".

cs:TribalEntityUS\#397 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Ekuk";
  dc:title "Native Village of Ekuk";
  rdfs:comment "Native Village of Ekuk";
  dcterms:description "Native Village of Ekuk".

cs:TribalEntityUS\#398 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Ekwok Village";
  dc:title "Ekwok Village";
  rdfs:comment "Ekwok Village";
  dcterms:description "Ekwok Village".

cs:TribalEntityUS\#399 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Elim";
  dc:title "Native Village of Elim";
  rdfs:comment "Native Village of Elim";
  dcterms:description "Native Village of Elim".

cs:TribalEntityUS\#400 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Emmonak Village";
  dc:title "Emmonak Village";
  rdfs:comment "Emmonak Village";
  dcterms:description "Emmonak Village".

cs:TribalEntityUS\#401 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Evansville Village (aka Bettles Field)";
  dc:title "Evansville Village (aka Bettles Field)";
  rdfs:comment "Evansville Village (aka Bettles Field)";
  dcterms:description "Evansville Village (aka Bettles Field)".

cs:TribalEntityUS\#402 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Eyak (Cordova)";
  dc:title "Native Village of Eyak (Cordova)";
  rdfs:comment "Native Village of Eyak (Cordova)";
  dcterms:description "Native Village of Eyak (Cordova)".

cs:TribalEntityUS\#403 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of False Pass";
  dc:title "Native Village of False Pass";
  rdfs:comment "Native Village of False Pass";
  dcterms:description "Native Village of False Pass".

cs:TribalEntityUS\#404 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Fort Yukon";
  dc:title "Native Village of Fort Yukon";
  rdfs:comment "Native Village of Fort Yukon";
  dcterms:description "Native Village of Fort Yukon".

cs:TribalEntityUS\#405 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Gakona";
  dc:title "Native Village of Gakona";
  rdfs:comment "Native Village of Gakona";
  dcterms:description "Native Village of Gakona".

cs:TribalEntityUS\#406 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Galena Village (aka Louden Village)";
  dc:title "Galena Village (aka Louden Village)";
  rdfs:comment "Galena Village (aka Louden Village)";
  dcterms:description "Galena Village (aka Louden Village)".

cs:TribalEntityUS\#407 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Gambell";
  dc:title "Native Village of Gambell";
  rdfs:comment "Native Village of Gambell";
  dcterms:description "Native Village of Gambell".

cs:TribalEntityUS\#408 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Georgetown";
  dc:title "Native Village of Georgetown";
  rdfs:comment "Native Village of Georgetown";
  dcterms:description "Native Village of Georgetown".

cs:TribalEntityUS\#409 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Goodnews Bay";
  dc:title "Native Village of Goodnews Bay";
  rdfs:comment "Native Village of Goodnews Bay";
  dcterms:description "Native Village of Goodnews Bay".

cs:TribalEntityUS\#410 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Organized Village of Grayling (aka Holikachuk)";
  dc:title "Organized Village of Grayling (aka Holikachuk)";
  rdfs:comment "Organized Village of Grayling (aka Holikachuk)";
  dcterms:description "Organized Village of Grayling (aka Holikachuk)".

cs:TribalEntityUS\#411 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Gulkana Village";
  dc:title "Gulkana Village";
  rdfs:comment "Gulkana Village";
  dcterms:description "Gulkana Village".

cs:TribalEntityUS\#412 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Hamilton";
  dc:title "Native Village of Hamilton";
  rdfs:comment "Native Village of Hamilton";
  dcterms:description "Native Village of Hamilton".

cs:TribalEntityUS\#413 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Healy Lake Village";
  dc:title "Healy Lake Village";
  rdfs:comment "Healy Lake Village";
  dcterms:description "Healy Lake Village".

cs:TribalEntityUS\#414 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Holy Cross Village";
  dc:title "Holy Cross Village";
  rdfs:comment "Holy Cross Village";
  dcterms:description "Holy Cross Village".

cs:TribalEntityUS\#415 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Hoonah Indian Association";
  dc:title "Hoonah Indian Association";
  rdfs:comment "Hoonah Indian Association";
  dcterms:description "Hoonah Indian Association".

cs:TribalEntityUS\#416 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Hooper Bay";
  dc:title "Native Village of Hooper Bay";
  rdfs:comment "Native Village of Hooper Bay";
  dcterms:description "Native Village of Hooper Bay".

cs:TribalEntityUS\#417 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Hughes Village";
  dc:title "Hughes Village";
  rdfs:comment "Hughes Village";
  dcterms:description "Hughes Village".

cs:TribalEntityUS\#418 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Huslia Village";
  dc:title "Huslia Village";
  rdfs:comment "Huslia Village";
  dcterms:description "Huslia Village".

cs:TribalEntityUS\#419 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Hydaburg Cooperative Association";
  dc:title "Hydaburg Cooperative Association";
  rdfs:comment "Hydaburg Cooperative Association";
  dcterms:description "Hydaburg Cooperative Association".

cs:TribalEntityUS\#420 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Igiugig Village";
  dc:title "Igiugig Village";
  rdfs:comment "Igiugig Village";
  dcterms:description "Igiugig Village".

cs:TribalEntityUS\#421 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Iliamna";
  dc:title "Village of Iliamna";
  rdfs:comment "Village of Iliamna";
  dcterms:description "Village of Iliamna".

cs:TribalEntityUS\#422 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Inupiat Community of the Arctic Slope";
  dc:title "Inupiat Community of the Arctic Slope";
  rdfs:comment "Inupiat Community of the Arctic Slope";
  dcterms:description "Inupiat Community of the Arctic Slope".

cs:TribalEntityUS\#423 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Iqurmuit Traditional Council (formerly Native Vill";
  dc:title "Iqurmuit Traditional Council (formerly Native Vill";
  rdfs:comment "Iqurmuit Traditional Council (formerly Native Vill";
  dcterms:description "Iqurmuit Traditional Council (formerly Native Vill".

cs:TribalEntityUS\#424 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Ivanoff Bay Village";
  dc:title "Ivanoff Bay Village";
  rdfs:comment "Ivanoff Bay Village";
  dcterms:description "Ivanoff Bay Village".

cs:TribalEntityUS\#425 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Kaguyak Village";
  dc:title "Kaguyak Village";
  rdfs:comment "Kaguyak Village";
  dcterms:description "Kaguyak Village".

cs:TribalEntityUS\#426 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Organized Village of Kake";
  dc:title "Organized Village of Kake";
  rdfs:comment "Organized Village of Kake";
  dcterms:description "Organized Village of Kake".

cs:TribalEntityUS\#427 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Kaktovik Village (aka Barter Island)";
  dc:title "Kaktovik Village (aka Barter Island)";
  rdfs:comment "Kaktovik Village (aka Barter Island)";
  dcterms:description "Kaktovik Village (aka Barter Island)".

cs:TribalEntityUS\#428 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Kalskag";
  dc:title "Village of Kalskag";
  rdfs:comment "Village of Kalskag";
  dcterms:description "Village of Kalskag".

cs:TribalEntityUS\#429 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Kaltag";
  dc:title "Village of Kaltag";
  rdfs:comment "Village of Kaltag";
  dcterms:description "Village of Kaltag".

cs:TribalEntityUS\#430 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Kanatak";
  dc:title "Native Village of Kanatak";
  rdfs:comment "Native Village of Kanatak";
  dcterms:description "Native Village of Kanatak".

cs:TribalEntityUS\#431 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Karluk";
  dc:title "Native Village of Karluk";
  rdfs:comment "Native Village of Karluk";
  dcterms:description "Native Village of Karluk".

cs:TribalEntityUS\#432 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Organized Village of Kasaan";
  dc:title "Organized Village of Kasaan";
  rdfs:comment "Organized Village of Kasaan";
  dcterms:description "Organized Village of Kasaan".

cs:TribalEntityUS\#433 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Kasigluk";
  dc:title "Native Village of Kasigluk";
  rdfs:comment "Native Village of Kasigluk";
  dcterms:description "Native Village of Kasigluk".

cs:TribalEntityUS\#434 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Kenaitze Indian Tribe";
  dc:title "Kenaitze Indian Tribe";
  rdfs:comment "Kenaitze Indian Tribe";
  dcterms:description "Kenaitze Indian Tribe".

cs:TribalEntityUS\#435 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Ketchikan Indian Corporation";
  dc:title "Ketchikan Indian Corporation";
  rdfs:comment "Ketchikan Indian Corporation";
  dcterms:description "Ketchikan Indian Corporation".

cs:TribalEntityUS\#436 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Kiana";
  dc:title "Native Village of Kiana";
  rdfs:comment "Native Village of Kiana";
  dcterms:description "Native Village of Kiana".

cs:TribalEntityUS\#437 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "King Island Native Community";
  dc:title "King Island Native Community";
  rdfs:comment "King Island Native Community";
  dcterms:description "King Island Native Community".

cs:TribalEntityUS\#438 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "King Salmon Tribe";
  dc:title "King Salmon Tribe";
  rdfs:comment "King Salmon Tribe";
  dcterms:description "King Salmon Tribe".

cs:TribalEntityUS\#439 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Kipnuk";
  dc:title "Native Village of Kipnuk";
  rdfs:comment "Native Village of Kipnuk";
  dcterms:description "Native Village of Kipnuk".

cs:TribalEntityUS\#440 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Kivalina";
  dc:title "Native Village of Kivalina";
  rdfs:comment "Native Village of Kivalina";
  dcterms:description "Native Village of Kivalina".

cs:TribalEntityUS\#441 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Klawock Cooperative Association";
  dc:title "Klawock Cooperative Association";
  rdfs:comment "Klawock Cooperative Association";
  dcterms:description "Klawock Cooperative Association".

cs:TribalEntityUS\#442 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Kluti Kaah (aka Copper Center)";
  dc:title "Native Village of Kluti Kaah (aka Copper Center)";
  rdfs:comment "Native Village of Kluti Kaah (aka Copper Center)";
  dcterms:description "Native Village of Kluti Kaah (aka Copper Center)".

cs:TribalEntityUS\#443 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Knik Tribe";
  dc:title "Knik Tribe";
  rdfs:comment "Knik Tribe";
  dcterms:description "Knik Tribe".

cs:TribalEntityUS\#444 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Kobuk";
  dc:title "Native Village of Kobuk";
  rdfs:comment "Native Village of Kobuk";
  dcterms:description "Native Village of Kobuk".

cs:TribalEntityUS\#445 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Kokhanok Village";
  dc:title "Kokhanok Village";
  rdfs:comment "Kokhanok Village";
  dcterms:description "Kokhanok Village".

cs:TribalEntityUS\#446 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Kongiganak";
  dc:title "Native Village of Kongiganak";
  rdfs:comment "Native Village of Kongiganak";
  dcterms:description "Native Village of Kongiganak".

cs:TribalEntityUS\#447 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Kotlik";
  dc:title "Village of Kotlik";
  rdfs:comment "Village of Kotlik";
  dcterms:description "Village of Kotlik".

cs:TribalEntityUS\#448 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Kotzebue";
  dc:title "Native Village of Kotzebue";
  rdfs:comment "Native Village of Kotzebue";
  dcterms:description "Native Village of Kotzebue".

cs:TribalEntityUS\#449 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Koyuk";
  dc:title "Native Village of Koyuk";
  rdfs:comment "Native Village of Koyuk";
  dcterms:description "Native Village of Koyuk".

cs:TribalEntityUS\#450 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Koyukuk Native Village";
  dc:title "Koyukuk Native Village";
  rdfs:comment "Koyukuk Native Village";
  dcterms:description "Koyukuk Native Village".

cs:TribalEntityUS\#451 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Organized Village of Kwethluk";
  dc:title "Organized Village of Kwethluk";
  rdfs:comment "Organized Village of Kwethluk";
  dcterms:description "Organized Village of Kwethluk".

cs:TribalEntityUS\#452 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Kwigillingok";
  dc:title "Native Village of Kwigillingok";
  rdfs:comment "Native Village of Kwigillingok";
  dcterms:description "Native Village of Kwigillingok".

cs:TribalEntityUS\#453 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Kwinhagak (aka Quinhagak)";
  dc:title "Native Village of Kwinhagak (aka Quinhagak)";
  rdfs:comment "Native Village of Kwinhagak (aka Quinhagak)";
  dcterms:description "Native Village of Kwinhagak (aka Quinhagak)".

cs:TribalEntityUS\#454 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Larsen Bay";
  dc:title "Native Village of Larsen Bay";
  rdfs:comment "Native Village of Larsen Bay";
  dcterms:description "Native Village of Larsen Bay".

cs:TribalEntityUS\#455 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Levelock Village";
  dc:title "Levelock Village";
  rdfs:comment "Levelock Village";
  dcterms:description "Levelock Village".

cs:TribalEntityUS\#456 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Lesnoi Village (aka Woody Island)";
  dc:title "Lesnoi Village (aka Woody Island)";
  rdfs:comment "Lesnoi Village (aka Woody Island)";
  dcterms:description "Lesnoi Village (aka Woody Island)".

cs:TribalEntityUS\#457 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Lime Village";
  dc:title "Lime Village";
  rdfs:comment "Lime Village";
  dcterms:description "Lime Village".

cs:TribalEntityUS\#458 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Lower Kalskag";
  dc:title "Village of Lower Kalskag";
  rdfs:comment "Village of Lower Kalskag";
  dcterms:description "Village of Lower Kalskag".

cs:TribalEntityUS\#459 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Manley Hot Springs Village";
  dc:title "Manley Hot Springs Village";
  rdfs:comment "Manley Hot Springs Village";
  dcterms:description "Manley Hot Springs Village".

cs:TribalEntityUS\#460 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Manokotak Village";
  dc:title "Manokotak Village";
  rdfs:comment "Manokotak Village";
  dcterms:description "Manokotak Village".

cs:TribalEntityUS\#461 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Marshall (aka Fortuna Ledge)";
  dc:title "Native Village of Marshall (aka Fortuna Ledge)";
  rdfs:comment "Native Village of Marshall (aka Fortuna Ledge)";
  dcterms:description "Native Village of Marshall (aka Fortuna Ledge)".

cs:TribalEntityUS\#462 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Mary's Igloo";
  dc:title "Native Village of Mary's Igloo";
  rdfs:comment "Native Village of Mary's Igloo";
  dcterms:description "Native Village of Mary's Igloo".

cs:TribalEntityUS\#463 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "McGrath Native Village";
  dc:title "McGrath Native Village";
  rdfs:comment "McGrath Native Village";
  dcterms:description "McGrath Native Village".

cs:TribalEntityUS\#464 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Mekoryuk";
  dc:title "Native Village of Mekoryuk";
  rdfs:comment "Native Village of Mekoryuk";
  dcterms:description "Native Village of Mekoryuk".

cs:TribalEntityUS\#465 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Mentasta Traditional Council";
  dc:title "Mentasta Traditional Council";
  rdfs:comment "Mentasta Traditional Council";
  dcterms:description "Mentasta Traditional Council".

cs:TribalEntityUS\#466 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Metlakatla Indian Community, Annette Island Reserv";
  dc:title "Metlakatla Indian Community, Annette Island Reserv";
  rdfs:comment "Metlakatla Indian Community, Annette Island Reserv";
  dcterms:description "Metlakatla Indian Community, Annette Island Reserv".

cs:TribalEntityUS\#467 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Minto";
  dc:title "Native Village of Minto";
  rdfs:comment "Native Village of Minto";
  dcterms:description "Native Village of Minto".

cs:TribalEntityUS\#468 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Naknek Native Village";
  dc:title "Naknek Native Village";
  rdfs:comment "Naknek Native Village";
  dcterms:description "Naknek Native Village".

cs:TribalEntityUS\#469 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Nanwalek (aka English Bay)";
  dc:title "Native Village of Nanwalek (aka English Bay)";
  rdfs:comment "Native Village of Nanwalek (aka English Bay)";
  dcterms:description "Native Village of Nanwalek (aka English Bay)".

cs:TribalEntityUS\#470 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Napaimute";
  dc:title "Native Village of Napaimute";
  rdfs:comment "Native Village of Napaimute";
  dcterms:description "Native Village of Napaimute".

cs:TribalEntityUS\#471 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Napakiak";
  dc:title "Native Village of Napakiak";
  rdfs:comment "Native Village of Napakiak";
  dcterms:description "Native Village of Napakiak".

cs:TribalEntityUS\#472 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Napaskiak";
  dc:title "Native Village of Napaskiak";
  rdfs:comment "Native Village of Napaskiak";
  dcterms:description "Native Village of Napaskiak".

cs:TribalEntityUS\#473 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Nelson Lagoon";
  dc:title "Native Village of Nelson Lagoon";
  rdfs:comment "Native Village of Nelson Lagoon";
  dcterms:description "Native Village of Nelson Lagoon".

cs:TribalEntityUS\#474 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Nenana Native Association";
  dc:title "Nenana Native Association";
  rdfs:comment "Nenana Native Association";
  dcterms:description "Nenana Native Association".

cs:TribalEntityUS\#475 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "New Koliganek Village Council (formerly Koliganek";
  dc:title "New Koliganek Village Council (formerly Koliganek";
  rdfs:comment "New Koliganek Village Council (formerly Koliganek";
  dcterms:description "New Koliganek Village Council (formerly Koliganek".

cs:TribalEntityUS\#476 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "New Stuyahok Village";
  dc:title "New Stuyahok Village";
  rdfs:comment "New Stuyahok Village";
  dcterms:description "New Stuyahok Village".

cs:TribalEntityUS\#477 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Newhalen Village";
  dc:title "Newhalen Village";
  rdfs:comment "Newhalen Village";
  dcterms:description "Newhalen Village".

cs:TribalEntityUS\#478 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Newtok Village";
  dc:title "Newtok Village";
  rdfs:comment "Newtok Village";
  dcterms:description "Newtok Village".

cs:TribalEntityUS\#479 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Nightmute";
  dc:title "Native Village of Nightmute";
  rdfs:comment "Native Village of Nightmute";
  dcterms:description "Native Village of Nightmute".

cs:TribalEntityUS\#480 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Nikolai Village";
  dc:title "Nikolai Village";
  rdfs:comment "Nikolai Village";
  dcterms:description "Nikolai Village".

cs:TribalEntityUS\#481 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Nikolski";
  dc:title "Native Village of Nikolski";
  rdfs:comment "Native Village of Nikolski";
  dcterms:description "Native Village of Nikolski".

cs:TribalEntityUS\#482 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Ninilchik Village";
  dc:title "Ninilchik Village";
  rdfs:comment "Ninilchik Village";
  dcterms:description "Ninilchik Village".

cs:TribalEntityUS\#483 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Noatak";
  dc:title "Native Village of Noatak";
  rdfs:comment "Native Village of Noatak";
  dcterms:description "Native Village of Noatak".

cs:TribalEntityUS\#484 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Nome Eskimo Community";
  dc:title "Nome Eskimo Community";
  rdfs:comment "Nome Eskimo Community";
  dcterms:description "Nome Eskimo Community".

cs:TribalEntityUS\#485 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Nondalton Village";
  dc:title "Nondalton Village";
  rdfs:comment "Nondalton Village";
  dcterms:description "Nondalton Village".

cs:TribalEntityUS\#486 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Noorvik Native Community";
  dc:title "Noorvik Native Community";
  rdfs:comment "Noorvik Native Community";
  dcterms:description "Noorvik Native Community".

cs:TribalEntityUS\#487 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Northway Village";
  dc:title "Northway Village";
  rdfs:comment "Northway Village";
  dcterms:description "Northway Village".

cs:TribalEntityUS\#488 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Nuiqsut (aka Nooiksut)";
  dc:title "Native Village of Nuiqsut (aka Nooiksut)";
  rdfs:comment "Native Village of Nuiqsut (aka Nooiksut)";
  dcterms:description "Native Village of Nuiqsut (aka Nooiksut)".

cs:TribalEntityUS\#489 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Nulato Village";
  dc:title "Nulato Village";
  rdfs:comment "Nulato Village";
  dcterms:description "Nulato Village".

cs:TribalEntityUS\#490 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Nunakauyarmiut Tribe (formerly Native Village of T";
  dc:title "Nunakauyarmiut Tribe (formerly Native Village of T";
  rdfs:comment "Nunakauyarmiut Tribe (formerly Native Village of T";
  dcterms:description "Nunakauyarmiut Tribe (formerly Native Village of T".

cs:TribalEntityUS\#491 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Nunapitchuk";
  dc:title "Native Village of Nunapitchuk";
  rdfs:comment "Native Village of Nunapitchuk";
  dcterms:description "Native Village of Nunapitchuk".

cs:TribalEntityUS\#492 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Ohogamiut";
  dc:title "Village of Ohogamiut";
  rdfs:comment "Village of Ohogamiut";
  dcterms:description "Village of Ohogamiut".

cs:TribalEntityUS\#493 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Old Harbor";
  dc:title "Village of Old Harbor";
  rdfs:comment "Village of Old Harbor";
  dcterms:description "Village of Old Harbor".

cs:TribalEntityUS\#494 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Orutsararmuit Native Village (aka Bethel)";
  dc:title "Orutsararmuit Native Village (aka Bethel)";
  rdfs:comment "Orutsararmuit Native Village (aka Bethel)";
  dcterms:description "Orutsararmuit Native Village (aka Bethel)".

cs:TribalEntityUS\#495 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Oscarville Traditional Village";
  dc:title "Oscarville Traditional Village";
  rdfs:comment "Oscarville Traditional Village";
  dcterms:description "Oscarville Traditional Village".

cs:TribalEntityUS\#496 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Ouzinkie";
  dc:title "Native Village of Ouzinkie";
  rdfs:comment "Native Village of Ouzinkie";
  dcterms:description "Native Village of Ouzinkie".

cs:TribalEntityUS\#497 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Paimiut";
  dc:title "Native Village of Paimiut";
  rdfs:comment "Native Village of Paimiut";
  dcterms:description "Native Village of Paimiut".

cs:TribalEntityUS\#498 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Pauloff Harbor Village";
  dc:title "Pauloff Harbor Village";
  rdfs:comment "Pauloff Harbor Village";
  dcterms:description "Pauloff Harbor Village".

cs:TribalEntityUS\#499 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Pedro Bay Village";
  dc:title "Pedro Bay Village";
  rdfs:comment "Pedro Bay Village";
  dcterms:description "Pedro Bay Village".

cs:TribalEntityUS\#500 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Perryville";
  dc:title "Native Village of Perryville";
  rdfs:comment "Native Village of Perryville";
  dcterms:description "Native Village of Perryville".

cs:TribalEntityUS\#501 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Petersburg Indian Association";
  dc:title "Petersburg Indian Association";
  rdfs:comment "Petersburg Indian Association";
  dcterms:description "Petersburg Indian Association".

cs:TribalEntityUS\#502 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Pilot Point";
  dc:title "Native Village of Pilot Point";
  rdfs:comment "Native Village of Pilot Point";
  dcterms:description "Native Village of Pilot Point".

cs:TribalEntityUS\#503 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Pilot Station Traditional Village";
  dc:title "Pilot Station Traditional Village";
  rdfs:comment "Pilot Station Traditional Village";
  dcterms:description "Pilot Station Traditional Village".

cs:TribalEntityUS\#504 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Pitka's Point";
  dc:title "Native Village of Pitka's Point";
  rdfs:comment "Native Village of Pitka's Point";
  dcterms:description "Native Village of Pitka's Point".

cs:TribalEntityUS\#505 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Platinum Traditional Village";
  dc:title "Platinum Traditional Village";
  rdfs:comment "Platinum Traditional Village";
  dcterms:description "Platinum Traditional Village".

cs:TribalEntityUS\#506 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Point Hope";
  dc:title "Native Village of Point Hope";
  rdfs:comment "Native Village of Point Hope";
  dcterms:description "Native Village of Point Hope".

cs:TribalEntityUS\#507 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Point Lay";
  dc:title "Native Village of Point Lay";
  rdfs:comment "Native Village of Point Lay";
  dcterms:description "Native Village of Point Lay".

cs:TribalEntityUS\#508 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Port Graham";
  dc:title "Native Village of Port Graham";
  rdfs:comment "Native Village of Port Graham";
  dcterms:description "Native Village of Port Graham".

cs:TribalEntityUS\#509 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Port Heiden";
  dc:title "Native Village of Port Heiden";
  rdfs:comment "Native Village of Port Heiden";
  dcterms:description "Native Village of Port Heiden".

cs:TribalEntityUS\#510 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Port Lions";
  dc:title "Native Village of Port Lions";
  rdfs:comment "Native Village of Port Lions";
  dcterms:description "Native Village of Port Lions".

cs:TribalEntityUS\#511 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Portage Creek Village (aka Ohgsenakale)";
  dc:title "Portage Creek Village (aka Ohgsenakale)";
  rdfs:comment "Portage Creek Village (aka Ohgsenakale)";
  dcterms:description "Portage Creek Village (aka Ohgsenakale)".

cs:TribalEntityUS\#512 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Pribilof Islands Aleut Communities of St. Paul & S";
  dc:title "Pribilof Islands Aleut Communities of St. Paul & S";
  rdfs:comment "Pribilof Islands Aleut Communities of St. Paul & S";
  dcterms:description "Pribilof Islands Aleut Communities of St. Paul & S".

cs:TribalEntityUS\#513 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Qagan Tayagungin Tribe of Sand Point Village";
  dc:title "Qagan Tayagungin Tribe of Sand Point Village";
  rdfs:comment "Qagan Tayagungin Tribe of Sand Point Village";
  dcterms:description "Qagan Tayagungin Tribe of Sand Point Village".

cs:TribalEntityUS\#514 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Qawalangin Tribe of Unalaska";
  dc:title "Qawalangin Tribe of Unalaska";
  rdfs:comment "Qawalangin Tribe of Unalaska";
  dcterms:description "Qawalangin Tribe of Unalaska".

cs:TribalEntityUS\#515 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Rampart Village";
  dc:title "Rampart Village";
  rdfs:comment "Rampart Village";
  dcterms:description "Rampart Village".

cs:TribalEntityUS\#516 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Red Devil";
  dc:title "Village of Red Devil";
  rdfs:comment "Village of Red Devil";
  dcterms:description "Village of Red Devil".

cs:TribalEntityUS\#517 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Ruby";
  dc:title "Native Village of Ruby";
  rdfs:comment "Native Village of Ruby";
  dcterms:description "Native Village of Ruby".

cs:TribalEntityUS\#518 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Saint George Island(See Pribilof Islands Aleut Com";
  dc:title "Saint George Island(See Pribilof Islands Aleut Com";
  rdfs:comment "Saint George Island(See Pribilof Islands Aleut Com";
  dcterms:description "Saint George Island(See Pribilof Islands Aleut Com".

cs:TribalEntityUS\#519 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Saint Michael";
  dc:title "Native Village of Saint Michael";
  rdfs:comment "Native Village of Saint Michael";
  dcterms:description "Native Village of Saint Michael".

cs:TribalEntityUS\#520 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Saint Paul Island (See Pribilof Islands Aleut Comm";
  dc:title "Saint Paul Island (See Pribilof Islands Aleut Comm";
  rdfs:comment "Saint Paul Island (See Pribilof Islands Aleut Comm";
  dcterms:description "Saint Paul Island (See Pribilof Islands Aleut Comm".

cs:TribalEntityUS\#521 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Salamatoff";
  dc:title "Village of Salamatoff";
  rdfs:comment "Village of Salamatoff";
  dcterms:description "Village of Salamatoff".

cs:TribalEntityUS\#522 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Savoonga";
  dc:title "Native Village of Savoonga";
  rdfs:comment "Native Village of Savoonga";
  dcterms:description "Native Village of Savoonga".

cs:TribalEntityUS\#523 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Organized Village of Saxman";
  dc:title "Organized Village of Saxman";
  rdfs:comment "Organized Village of Saxman";
  dcterms:description "Organized Village of Saxman".

cs:TribalEntityUS\#524 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Scammon Bay";
  dc:title "Native Village of Scammon Bay";
  rdfs:comment "Native Village of Scammon Bay";
  dcterms:description "Native Village of Scammon Bay".

cs:TribalEntityUS\#525 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Selawik";
  dc:title "Native Village of Selawik";
  rdfs:comment "Native Village of Selawik";
  dcterms:description "Native Village of Selawik".

cs:TribalEntityUS\#526 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Seldovia Village Tribe";
  dc:title "Seldovia Village Tribe";
  rdfs:comment "Seldovia Village Tribe";
  dcterms:description "Seldovia Village Tribe".

cs:TribalEntityUS\#527 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Shageluk Native Village";
  dc:title "Shageluk Native Village";
  rdfs:comment "Shageluk Native Village";
  dcterms:description "Shageluk Native Village".

cs:TribalEntityUS\#528 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Shaktoolik";
  dc:title "Native Village of Shaktoolik";
  rdfs:comment "Native Village of Shaktoolik";
  dcterms:description "Native Village of Shaktoolik".

cs:TribalEntityUS\#529 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Sheldon's Point";
  dc:title "Native Village of Sheldon's Point";
  rdfs:comment "Native Village of Sheldon's Point";
  dcterms:description "Native Village of Sheldon's Point".

cs:TribalEntityUS\#530 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Shishmaref";
  dc:title "Native Village of Shishmaref";
  rdfs:comment "Native Village of Shishmaref";
  dcterms:description "Native Village of Shishmaref".

cs:TribalEntityUS\#531 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Shoonaq Tribe of Kodiak";
  dc:title "Shoonaq Tribe of Kodiak";
  rdfs:comment "Shoonaq Tribe of Kodiak";
  dcterms:description "Shoonaq Tribe of Kodiak".

cs:TribalEntityUS\#532 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Shungnak";
  dc:title "Native Village of Shungnak";
  rdfs:comment "Native Village of Shungnak";
  dcterms:description "Native Village of Shungnak".

cs:TribalEntityUS\#533 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Sitka Tribe of Alaska";
  dc:title "Sitka Tribe of Alaska";
  rdfs:comment "Sitka Tribe of Alaska";
  dcterms:description "Sitka Tribe of Alaska".

cs:TribalEntityUS\#534 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Skagway Village";
  dc:title "Skagway Village";
  rdfs:comment "Skagway Village";
  dcterms:description "Skagway Village".

cs:TribalEntityUS\#535 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Sleetmute";
  dc:title "Village of Sleetmute";
  rdfs:comment "Village of Sleetmute";
  dcterms:description "Village of Sleetmute".

cs:TribalEntityUS\#536 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Solomon";
  dc:title "Village of Solomon";
  rdfs:comment "Village of Solomon";
  dcterms:description "Village of Solomon".

cs:TribalEntityUS\#537 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "South Naknek Village";
  dc:title "South Naknek Village";
  rdfs:comment "South Naknek Village";
  dcterms:description "South Naknek Village".

cs:TribalEntityUS\#538 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Stebbins Community Association";
  dc:title "Stebbins Community Association";
  rdfs:comment "Stebbins Community Association";
  dcterms:description "Stebbins Community Association".

cs:TribalEntityUS\#539 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Stevens";
  dc:title "Native Village of Stevens";
  rdfs:comment "Native Village of Stevens";
  dcterms:description "Native Village of Stevens".

cs:TribalEntityUS\#540 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Stony River";
  dc:title "Village of Stony River";
  rdfs:comment "Village of Stony River";
  dcterms:description "Village of Stony River".

cs:TribalEntityUS\#541 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Takotna Village";
  dc:title "Takotna Village";
  rdfs:comment "Takotna Village";
  dcterms:description "Takotna Village".

cs:TribalEntityUS\#542 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Tanacross";
  dc:title "Native Village of Tanacross";
  rdfs:comment "Native Village of Tanacross";
  dcterms:description "Native Village of Tanacross".

cs:TribalEntityUS\#543 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Tanana";
  dc:title "Native Village of Tanana";
  rdfs:comment "Native Village of Tanana";
  dcterms:description "Native Village of Tanana".

cs:TribalEntityUS\#544 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Tatitlek";
  dc:title "Native Village of Tatitlek";
  rdfs:comment "Native Village of Tatitlek";
  dcterms:description "Native Village of Tatitlek".

cs:TribalEntityUS\#545 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Tazlina";
  dc:title "Native Village of Tazlina";
  rdfs:comment "Native Village of Tazlina";
  dcterms:description "Native Village of Tazlina".

cs:TribalEntityUS\#546 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Telida Village";
  dc:title "Telida Village";
  rdfs:comment "Telida Village";
  dcterms:description "Telida Village".

cs:TribalEntityUS\#547 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Teller";
  dc:title "Native Village of Teller";
  rdfs:comment "Native Village of Teller";
  dcterms:description "Native Village of Teller".

cs:TribalEntityUS\#548 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Tetlin";
  dc:title "Native Village of Tetlin";
  rdfs:comment "Native Village of Tetlin";
  dcterms:description "Native Village of Tetlin".

cs:TribalEntityUS\#549 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Central Council of the Tlingit and Haida Indian Tb";
  dc:title "Central Council of the Tlingit and Haida Indian Tb";
  rdfs:comment "Central Council of the Tlingit and Haida Indian Tb";
  dcterms:description "Central Council of the Tlingit and Haida Indian Tb".

cs:TribalEntityUS\#550 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Traditional Village of Togiak";
  dc:title "Traditional Village of Togiak";
  rdfs:comment "Traditional Village of Togiak";
  dcterms:description "Traditional Village of Togiak".

cs:TribalEntityUS\#551 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Tuluksak Native Community";
  dc:title "Tuluksak Native Community";
  rdfs:comment "Tuluksak Native Community";
  dcterms:description "Tuluksak Native Community".

cs:TribalEntityUS\#552 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Tuntutuliak";
  dc:title "Native Village of Tuntutuliak";
  rdfs:comment "Native Village of Tuntutuliak";
  dcterms:description "Native Village of Tuntutuliak".

cs:TribalEntityUS\#553 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Tununak";
  dc:title "Native Village of Tununak";
  rdfs:comment "Native Village of Tununak";
  dcterms:description "Native Village of Tununak".

cs:TribalEntityUS\#554 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Twin Hills Village";
  dc:title "Twin Hills Village";
  rdfs:comment "Twin Hills Village";
  dcterms:description "Twin Hills Village".

cs:TribalEntityUS\#555 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Tyonek";
  dc:title "Native Village of Tyonek";
  rdfs:comment "Native Village of Tyonek";
  dcterms:description "Native Village of Tyonek".

cs:TribalEntityUS\#556 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Ugashik Village";
  dc:title "Ugashik Village";
  rdfs:comment "Ugashik Village";
  dcterms:description "Ugashik Village".

cs:TribalEntityUS\#557 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Umkumiute Native Village";
  dc:title "Umkumiute Native Village";
  rdfs:comment "Umkumiute Native Village";
  dcterms:description "Umkumiute Native Village".

cs:TribalEntityUS\#558 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Unalakleet";
  dc:title "Native Village of Unalakleet";
  rdfs:comment "Native Village of Unalakleet";
  dcterms:description "Native Village of Unalakleet".

cs:TribalEntityUS\#559 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Unga";
  dc:title "Native Village of Unga";
  rdfs:comment "Native Village of Unga";
  dcterms:description "Native Village of Unga".

cs:TribalEntityUS\#560 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Venetie (See Native Village of Venetie";
  dc:title "Village of Venetie (See Native Village of Venetie";
  rdfs:comment "Village of Venetie (See Native Village of Venetie";
  dcterms:description "Village of Venetie (See Native Village of Venetie".

cs:TribalEntityUS\#561 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Venetie Tribal Government (Arcti";
  dc:title "Native Village of Venetie Tribal Government (Arcti";
  rdfs:comment "Native Village of Venetie Tribal Government (Arcti";
  dcterms:description "Native Village of Venetie Tribal Government (Arcti".

cs:TribalEntityUS\#562 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Village of Wainwright";
  dc:title "Village of Wainwright";
  rdfs:comment "Village of Wainwright";
  dcterms:description "Village of Wainwright".

cs:TribalEntityUS\#563 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of Wales";
  dc:title "Native Village of Wales";
  rdfs:comment "Native Village of Wales";
  dcterms:description "Native Village of Wales".

cs:TribalEntityUS\#564 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Native Village of White Mountain";
  dc:title "Native Village of White Mountain";
  rdfs:comment "Native Village of White Mountain";
  dcterms:description "Native Village of White Mountain".

cs:TribalEntityUS\#565 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Wrangell Cooperative Association";
  dc:title "Wrangell Cooperative Association";
  rdfs:comment "Wrangell Cooperative Association";
  dcterms:description "Wrangell Cooperative Association".

cs:TribalEntityUS\#566 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityAlaska;
  rdfs:label "Yakutat Tlingit Tribe";
  dc:title "Yakutat Tlingit Tribe";
  rdfs:comment "Yakutat Tlingit Tribe";
  dcterms:description "Yakutat Tlingit Tribe".

cs:TribalEntityUS\#%5fNativeEntityContiguous rdfs:subClassOf cs:TribalEntityUS;
  rdfs:label "NativeEntityContiguous";
  dc:title "NativeEntityContiguous";
  rdfs:comment "NATIVE ENTITIES WITHIN THE CONTIGUOUS 48 STATES";
  dcterms:description "NATIVE ENTITIES WITHIN THE CONTIGUOUS 48 STATES".

cs:TribalEntityUS\#1 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Absentee-Shawnee Tribe of Indians of Oklahoma";
  dc:title "Absentee-Shawnee Tribe of Indians of Oklahoma";
  rdfs:comment "Absentee-Shawnee Tribe of Indians of Oklahoma";
  dcterms:description "Absentee-Shawnee Tribe of Indians of Oklahoma".

cs:TribalEntityUS\#10 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Assiniboine and Sioux Tribes of the Fort Peck Indi";
  dc:title "Assiniboine and Sioux Tribes of the Fort Peck Indi";
  rdfs:comment "Assiniboine and Sioux Tribes of the Fort Peck Indi";
  dcterms:description "Assiniboine and Sioux Tribes of the Fort Peck Indi".

cs:TribalEntityUS\#100 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Havasupai Tribe of the Havasupai Reservation, Ariz";
  dc:title "Havasupai Tribe of the Havasupai Reservation, Ariz";
  rdfs:comment "Havasupai Tribe of the Havasupai Reservation, Ariz";
  dcterms:description "Havasupai Tribe of the Havasupai Reservation, Ariz".

cs:TribalEntityUS\#101 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Ho-Chunk Nation of Wisconsin (formerly known as th";
  dc:title "Ho-Chunk Nation of Wisconsin (formerly known as th";
  rdfs:comment "Ho-Chunk Nation of Wisconsin (formerly known as th";
  dcterms:description "Ho-Chunk Nation of Wisconsin (formerly known as th".

cs:TribalEntityUS\#102 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Hoh Indian Tribe of the Hoh Indian Reservation, Wa";
  dc:title "Hoh Indian Tribe of the Hoh Indian Reservation, Wa";
  rdfs:comment "Hoh Indian Tribe of the Hoh Indian Reservation, Wa";
  dcterms:description "Hoh Indian Tribe of the Hoh Indian Reservation, Wa".

cs:TribalEntityUS\#103 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Hoopa Valley Tribe, California";
  dc:title "Hoopa Valley Tribe, California";
  rdfs:comment "Hoopa Valley Tribe, California";
  dcterms:description "Hoopa Valley Tribe, California".

cs:TribalEntityUS\#104 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Hopi Tribe of Arizona";
  dc:title "Hopi Tribe of Arizona";
  rdfs:comment "Hopi Tribe of Arizona";
  dcterms:description "Hopi Tribe of Arizona".

cs:TribalEntityUS\#105 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Hopland Band of Pomo Indians of the Hopland Ranche";
  dc:title "Hopland Band of Pomo Indians of the Hopland Ranche";
  rdfs:comment "Hopland Band of Pomo Indians of the Hopland Ranche";
  dcterms:description "Hopland Band of Pomo Indians of the Hopland Ranche".

cs:TribalEntityUS\#106 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Houlton Band of Maliseet Indians of Maine";
  dc:title "Houlton Band of Maliseet Indians of Maine";
  rdfs:comment "Houlton Band of Maliseet Indians of Maine";
  dcterms:description "Houlton Band of Maliseet Indians of Maine".

cs:TribalEntityUS\#107 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Hualapai Indian Tribe of the Hualapai Indian Reser";
  dc:title "Hualapai Indian Tribe of the Hualapai Indian Reser";
  rdfs:comment "Hualapai Indian Tribe of the Hualapai Indian Reser";
  dcterms:description "Hualapai Indian Tribe of the Hualapai Indian Reser".

cs:TribalEntityUS\#108 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Huron Potawatomi, Inc., Michigan";
  dc:title "Huron Potawatomi, Inc., Michigan";
  rdfs:comment "Huron Potawatomi, Inc., Michigan";
  dcterms:description "Huron Potawatomi, Inc., Michigan".

cs:TribalEntityUS\#109 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Inaja Band of Diegueno Mission Indians of the Inaj";
  dc:title "Inaja Band of Diegueno Mission Indians of the Inaj";
  rdfs:comment "Inaja Band of Diegueno Mission Indians of the Inaj";
  dcterms:description "Inaja Band of Diegueno Mission Indians of the Inaj".

cs:TribalEntityUS\#11 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Augustine Band of Cahuilla Mission Indians of the";
  dc:title "Augustine Band of Cahuilla Mission Indians of the";
  rdfs:comment "Augustine Band of Cahuilla Mission Indians of the";
  dcterms:description "Augustine Band of Cahuilla Mission Indians of the".

cs:TribalEntityUS\#110 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Ione Band of Miwok Indians of California";
  dc:title "Ione Band of Miwok Indians of California";
  rdfs:comment "Ione Band of Miwok Indians of California";
  dcterms:description "Ione Band of Miwok Indians of California".

cs:TribalEntityUS\#111 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Iowa Tribe of Kansas and Nebraska";
  dc:title "Iowa Tribe of Kansas and Nebraska";
  rdfs:comment "Iowa Tribe of Kansas and Nebraska";
  dcterms:description "Iowa Tribe of Kansas and Nebraska".

cs:TribalEntityUS\#112 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Iowa Tribe of Oklahoma";
  dc:title "Iowa Tribe of Oklahoma";
  rdfs:comment "Iowa Tribe of Oklahoma";
  dcterms:description "Iowa Tribe of Oklahoma".

cs:TribalEntityUS\#113 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Jackson Rancheria of Me-Wuk Indians of California";
  dc:title "Jackson Rancheria of Me-Wuk Indians of California";
  rdfs:comment "Jackson Rancheria of Me-Wuk Indians of California";
  dcterms:description "Jackson Rancheria of Me-Wuk Indians of California".

cs:TribalEntityUS\#114 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Jamestown S'Klallam Tribe of Washington";
  dc:title "Jamestown S'Klallam Tribe of Washington";
  rdfs:comment "Jamestown S'Klallam Tribe of Washington";
  dcterms:description "Jamestown S'Klallam Tribe of Washington".

cs:TribalEntityUS\#115 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Jamul Indian Village of California";
  dc:title "Jamul Indian Village of California";
  rdfs:comment "Jamul Indian Village of California";
  dcterms:description "Jamul Indian Village of California".

cs:TribalEntityUS\#116 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Jena Band of Choctaw Indians, Louisiana";
  dc:title "Jena Band of Choctaw Indians, Louisiana";
  rdfs:comment "Jena Band of Choctaw Indians, Louisiana";
  dcterms:description "Jena Band of Choctaw Indians, Louisiana".

cs:TribalEntityUS\#117 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Jicarilla Apache Tribe of the Jicarilla Apache Ind";
  dc:title "Jicarilla Apache Tribe of the Jicarilla Apache Ind";
  rdfs:comment "Jicarilla Apache Tribe of the Jicarilla Apache Ind";
  dcterms:description "Jicarilla Apache Tribe of the Jicarilla Apache Ind".

cs:TribalEntityUS\#118 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Kaibab Band of Paiute Indians of the Kaibab Indian";
  dc:title "Kaibab Band of Paiute Indians of the Kaibab Indian";
  rdfs:comment "Kaibab Band of Paiute Indians of the Kaibab Indian";
  dcterms:description "Kaibab Band of Paiute Indians of the Kaibab Indian".

cs:TribalEntityUS\#119 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Kalispel Indian Community of the Kalispel Reservat";
  dc:title "Kalispel Indian Community of the Kalispel Reservat";
  rdfs:comment "Kalispel Indian Community of the Kalispel Reservat";
  dcterms:description "Kalispel Indian Community of the Kalispel Reservat".

cs:TribalEntityUS\#12 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Bad River Band of the Lake Superior Tribe of Chipp";
  dc:title "Bad River Band of the Lake Superior Tribe of Chipp";
  rdfs:comment "Bad River Band of the Lake Superior Tribe of Chipp";
  dcterms:description "Bad River Band of the Lake Superior Tribe of Chipp".

cs:TribalEntityUS\#120 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Karuk Tribe of California";
  dc:title "Karuk Tribe of California";
  rdfs:comment "Karuk Tribe of California";
  dcterms:description "Karuk Tribe of California".

cs:TribalEntityUS\#121 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Kashia Band of Pomo Indians of the Stewarts Point";
  dc:title "Kashia Band of Pomo Indians of the Stewarts Point";
  rdfs:comment "Kashia Band of Pomo Indians of the Stewarts Point";
  dcterms:description "Kashia Band of Pomo Indians of the Stewarts Point".

cs:TribalEntityUS\#122 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Kaw Nation, Oklahoma";
  dc:title "Kaw Nation, Oklahoma";
  rdfs:comment "Kaw Nation, Oklahoma";
  dcterms:description "Kaw Nation, Oklahoma".

cs:TribalEntityUS\#123 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Keweenaw Bay Indian Community of L'Anse and Ontona";
  dc:title "Keweenaw Bay Indian Community of L'Anse and Ontona";
  rdfs:comment "Keweenaw Bay Indian Community of L'Anse and Ontona";
  dcterms:description "Keweenaw Bay Indian Community of L'Anse and Ontona".

cs:TribalEntityUS\#124 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Kialegee Tribal Town, Oklahoma";
  dc:title "Kialegee Tribal Town, Oklahoma";
  rdfs:comment "Kialegee Tribal Town, Oklahoma";
  dcterms:description "Kialegee Tribal Town, Oklahoma".

cs:TribalEntityUS\#125 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Kickapoo Tribe of Indians of the Kickapoo Reservat";
  dc:title "Kickapoo Tribe of Indians of the Kickapoo Reservat";
  rdfs:comment "Kickapoo Tribe of Indians of the Kickapoo Reservat";
  dcterms:description "Kickapoo Tribe of Indians of the Kickapoo Reservat".

cs:TribalEntityUS\#126 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Kickapoo Tribe of Oklahoma";
  dc:title "Kickapoo Tribe of Oklahoma";
  rdfs:comment "Kickapoo Tribe of Oklahoma";
  dcterms:description "Kickapoo Tribe of Oklahoma".

cs:TribalEntityUS\#127 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Kickapoo Traditional Tribe of Texas";
  dc:title "Kickapoo Traditional Tribe of Texas";
  rdfs:comment "Kickapoo Traditional Tribe of Texas";
  dcterms:description "Kickapoo Traditional Tribe of Texas".

cs:TribalEntityUS\#128 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Kiowa Indian Tribe of Oklahoma";
  dc:title "Kiowa Indian Tribe of Oklahoma";
  rdfs:comment "Kiowa Indian Tribe of Oklahoma";
  dcterms:description "Kiowa Indian Tribe of Oklahoma".

cs:TribalEntityUS\#129 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Klamath Indian Tribe of Oregon";
  dc:title "Klamath Indian Tribe of Oregon";
  rdfs:comment "Klamath Indian Tribe of Oregon";
  dcterms:description "Klamath Indian Tribe of Oregon".

cs:TribalEntityUS\#13 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Bay Mills Indian Community of the Sault Ste. Marie";
  dc:title "Bay Mills Indian Community of the Sault Ste. Marie";
  rdfs:comment "Bay Mills Indian Community of the Sault Ste. Marie";
  dcterms:description "Bay Mills Indian Community of the Sault Ste. Marie".

cs:TribalEntityUS\#130 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Kootenai Tribe of Idaho";
  dc:title "Kootenai Tribe of Idaho";
  rdfs:comment "Kootenai Tribe of Idaho";
  dcterms:description "Kootenai Tribe of Idaho".

cs:TribalEntityUS\#131 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "La Jolla Band of Luiseno Mission Indians of the La";
  dc:title "La Jolla Band of Luiseno Mission Indians of the La";
  rdfs:comment "La Jolla Band of Luiseno Mission Indians of the La";
  dcterms:description "La Jolla Band of Luiseno Mission Indians of the La".

cs:TribalEntityUS\#132 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "La Posta Band of Diegueno Mission Indians of the L";
  dc:title "La Posta Band of Diegueno Mission Indians of the L";
  rdfs:comment "La Posta Band of Diegueno Mission Indians of the L";
  dcterms:description "La Posta Band of Diegueno Mission Indians of the L".

cs:TribalEntityUS\#133 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Lac Courte Oreilles Band of Lake Superior Chippewa";
  dc:title "Lac Courte Oreilles Band of Lake Superior Chippewa";
  rdfs:comment "Lac Courte Oreilles Band of Lake Superior Chippewa";
  dcterms:description "Lac Courte Oreilles Band of Lake Superior Chippewa".

cs:TribalEntityUS\#134 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Lac du Flambeau Band of Lake Superior Chippewa Ind";
  dc:title "Lac du Flambeau Band of Lake Superior Chippewa Ind";
  rdfs:comment "Lac du Flambeau Band of Lake Superior Chippewa Ind";
  dcterms:description "Lac du Flambeau Band of Lake Superior Chippewa Ind".

cs:TribalEntityUS\#135 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Lac Vieux Desert Band of Lake Superior Chippewa In";
  dc:title "Lac Vieux Desert Band of Lake Superior Chippewa In";
  rdfs:comment "Lac Vieux Desert Band of Lake Superior Chippewa In";
  dcterms:description "Lac Vieux Desert Band of Lake Superior Chippewa In".

cs:TribalEntityUS\#136 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Las Vegas Tribe of Paiute Indians of the Las Vegas";
  dc:title "Las Vegas Tribe of Paiute Indians of the Las Vegas";
  rdfs:comment "Las Vegas Tribe of Paiute Indians of the Las Vegas";
  dcterms:description "Las Vegas Tribe of Paiute Indians of the Las Vegas".

cs:TribalEntityUS\#137 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Little River Band of Ottawa Indians of Michigan";
  dc:title "Little River Band of Ottawa Indians of Michigan";
  rdfs:comment "Little River Band of Ottawa Indians of Michigan";
  dcterms:description "Little River Band of Ottawa Indians of Michigan".

cs:TribalEntityUS\#138 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Little Traverse Bay Bands of Odawa Indians of Mich";
  dc:title "Little Traverse Bay Bands of Odawa Indians of Mich";
  rdfs:comment "Little Traverse Bay Bands of Odawa Indians of Mich";
  dcterms:description "Little Traverse Bay Bands of Odawa Indians of Mich".

cs:TribalEntityUS\#139 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Lower Lake Rancheria, California";
  dc:title "Lower Lake Rancheria, California";
  rdfs:comment "Lower Lake Rancheria, California";
  dcterms:description "Lower Lake Rancheria, California".

cs:TribalEntityUS\#14 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Bear River Band of the Rohnerville Rancheria, Cali";
  dc:title "Bear River Band of the Rohnerville Rancheria, Cali";
  rdfs:comment "Bear River Band of the Rohnerville Rancheria, Cali";
  dcterms:description "Bear River Band of the Rohnerville Rancheria, Cali".

cs:TribalEntityUS\#140 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Los Coyotes Band of Cahuilla Mission Indians of th";
  dc:title "Los Coyotes Band of Cahuilla Mission Indians of th";
  rdfs:comment "Los Coyotes Band of Cahuilla Mission Indians of th";
  dcterms:description "Los Coyotes Band of Cahuilla Mission Indians of th".

cs:TribalEntityUS\#141 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Lovelock Paiute Tribe of the Lovelock Indian Colon";
  dc:title "Lovelock Paiute Tribe of the Lovelock Indian Colon";
  rdfs:comment "Lovelock Paiute Tribe of the Lovelock Indian Colon";
  dcterms:description "Lovelock Paiute Tribe of the Lovelock Indian Colon".

cs:TribalEntityUS\#142 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Lower Brule Sioux Tribe of the Lower Brule Reserva";
  dc:title "Lower Brule Sioux Tribe of the Lower Brule Reserva";
  rdfs:comment "Lower Brule Sioux Tribe of the Lower Brule Reserva";
  dcterms:description "Lower Brule Sioux Tribe of the Lower Brule Reserva".

cs:TribalEntityUS\#143 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Lower Elwha Tribal Community of the Lower Elwha Re";
  dc:title "Lower Elwha Tribal Community of the Lower Elwha Re";
  rdfs:comment "Lower Elwha Tribal Community of the Lower Elwha Re";
  dcterms:description "Lower Elwha Tribal Community of the Lower Elwha Re".

cs:TribalEntityUS\#144 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Lower Sioux Indian Community of Minnesota Mdewakan";
  dc:title "Lower Sioux Indian Community of Minnesota Mdewakan";
  rdfs:comment "Lower Sioux Indian Community of Minnesota Mdewakan";
  dcterms:description "Lower Sioux Indian Community of Minnesota Mdewakan".

cs:TribalEntityUS\#145 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Lummi Tribe of the Lummi Reservation, Washington";
  dc:title "Lummi Tribe of the Lummi Reservation, Washington";
  rdfs:comment "Lummi Tribe of the Lummi Reservation, Washington";
  dcterms:description "Lummi Tribe of the Lummi Reservation, Washington".

cs:TribalEntityUS\#146 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Lytton Rancheria of California";
  dc:title "Lytton Rancheria of California";
  rdfs:comment "Lytton Rancheria of California";
  dcterms:description "Lytton Rancheria of California".

cs:TribalEntityUS\#147 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Makah Indian Tribe of the Makah Indian Reservation";
  dc:title "Makah Indian Tribe of the Makah Indian Reservation";
  rdfs:comment "Makah Indian Tribe of the Makah Indian Reservation";
  dcterms:description "Makah Indian Tribe of the Makah Indian Reservation".

cs:TribalEntityUS\#148 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Manchester Band of Pomo Indians of the Manchester-";
  dc:title "Manchester Band of Pomo Indians of the Manchester-";
  rdfs:comment "Manchester Band of Pomo Indians of the Manchester-";
  dcterms:description "Manchester Band of Pomo Indians of the Manchester-".

cs:TribalEntityUS\#149 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Manzanita Band of Diegueno Mission Indians of the";
  dc:title "Manzanita Band of Diegueno Mission Indians of the";
  rdfs:comment "Manzanita Band of Diegueno Mission Indians of the";
  dcterms:description "Manzanita Band of Diegueno Mission Indians of the".

cs:TribalEntityUS\#15 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Berry Creek Rancheria of Maidu Indians of Californ";
  dc:title "Berry Creek Rancheria of Maidu Indians of Californ";
  rdfs:comment "Berry Creek Rancheria of Maidu Indians of Californ";
  dcterms:description "Berry Creek Rancheria of Maidu Indians of Californ".

cs:TribalEntityUS\#150 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Mashantucket Pequot Tribe of Connecticut";
  dc:title "Mashantucket Pequot Tribe of Connecticut";
  rdfs:comment "Mashantucket Pequot Tribe of Connecticut";
  dcterms:description "Mashantucket Pequot Tribe of Connecticut".

cs:TribalEntityUS\#151 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Match-e-be-nash-she-wish Band of Pottawatomi India";
  dc:title "Match-e-be-nash-she-wish Band of Pottawatomi India";
  rdfs:comment "Match-e-be-nash-she-wish Band of Pottawatomi India";
  dcterms:description "Match-e-be-nash-she-wish Band of Pottawatomi India".

cs:TribalEntityUS\#152 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Mechoopda Indian Tribe of Chico Rancheria, Califor";
  dc:title "Mechoopda Indian Tribe of Chico Rancheria, Califor";
  rdfs:comment "Mechoopda Indian Tribe of Chico Rancheria, Califor";
  dcterms:description "Mechoopda Indian Tribe of Chico Rancheria, Califor".

cs:TribalEntityUS\#153 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Menominee Indian Tribe of Wisconsin";
  dc:title "Menominee Indian Tribe of Wisconsin";
  rdfs:comment "Menominee Indian Tribe of Wisconsin";
  dcterms:description "Menominee Indian Tribe of Wisconsin".

cs:TribalEntityUS\#154 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Mesa Grande Band of Diegueno Mission Indians of th";
  dc:title "Mesa Grande Band of Diegueno Mission Indians of th";
  rdfs:comment "Mesa Grande Band of Diegueno Mission Indians of th";
  dcterms:description "Mesa Grande Band of Diegueno Mission Indians of th".

cs:TribalEntityUS\#155 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Mescalero Apache Tribe of the Mescalero Reservatio";
  dc:title "Mescalero Apache Tribe of the Mescalero Reservatio";
  rdfs:comment "Mescalero Apache Tribe of the Mescalero Reservatio";
  dcterms:description "Mescalero Apache Tribe of the Mescalero Reservatio".

cs:TribalEntityUS\#156 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Miami Tribe of Oklahoma";
  dc:title "Miami Tribe of Oklahoma";
  rdfs:comment "Miami Tribe of Oklahoma";
  dcterms:description "Miami Tribe of Oklahoma".

cs:TribalEntityUS\#157 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Miccosukee Tribe of Indians of Florida";
  dc:title "Miccosukee Tribe of Indians of Florida";
  rdfs:comment "Miccosukee Tribe of Indians of Florida";
  dcterms:description "Miccosukee Tribe of Indians of Florida".

cs:TribalEntityUS\#158 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Middletown Rancheria of Pomo Indians of California";
  dc:title "Middletown Rancheria of Pomo Indians of California";
  rdfs:comment "Middletown Rancheria of Pomo Indians of California";
  dcterms:description "Middletown Rancheria of Pomo Indians of California".

cs:TribalEntityUS\#159 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Minnesota Chippewa Tribe, Minnesota (Six component";
  dc:title "Minnesota Chippewa Tribe, Minnesota (Six component";
  rdfs:comment "Minnesota Chippewa Tribe, Minnesota (Six component";
  dcterms:description "Minnesota Chippewa Tribe, Minnesota (Six component".

cs:TribalEntityUS\#16 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Big Lagoon Rancheria, California";
  dc:title "Big Lagoon Rancheria, California";
  rdfs:comment "Big Lagoon Rancheria, California";
  dcterms:description "Big Lagoon Rancheria, California".

cs:TribalEntityUS\#160 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Bois Forte Band (Nett Lake); Fond du Lac Band; Gra";
  dc:title "Bois Forte Band (Nett Lake); Fond du Lac Band; Gra";
  rdfs:comment "Bois Forte Band (Nett Lake); Fond du Lac Band; Gra";
  dcterms:description "Bois Forte Band (Nett Lake); Fond du Lac Band; Gra".

cs:TribalEntityUS\#161 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Mississippi Band of Choctaw Indians, Mississippi";
  dc:title "Mississippi Band of Choctaw Indians, Mississippi";
  rdfs:comment "Mississippi Band of Choctaw Indians, Mississippi";
  dcterms:description "Mississippi Band of Choctaw Indians, Mississippi".

cs:TribalEntityUS\#162 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Moapa Band of Paiute Indians of the Moapa River In";
  dc:title "Moapa Band of Paiute Indians of the Moapa River In";
  rdfs:comment "Moapa Band of Paiute Indians of the Moapa River In";
  dcterms:description "Moapa Band of Paiute Indians of the Moapa River In".

cs:TribalEntityUS\#163 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Modoc Tribe of Oklahoma";
  dc:title "Modoc Tribe of Oklahoma";
  rdfs:comment "Modoc Tribe of Oklahoma";
  dcterms:description "Modoc Tribe of Oklahoma".

cs:TribalEntityUS\#164 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Mohegan Indian Tribe of Connecticut";
  dc:title "Mohegan Indian Tribe of Connecticut";
  rdfs:comment "Mohegan Indian Tribe of Connecticut";
  dcterms:description "Mohegan Indian Tribe of Connecticut".

cs:TribalEntityUS\#165 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Mooretown Rancheria of Maidu Indians of California";
  dc:title "Mooretown Rancheria of Maidu Indians of California";
  rdfs:comment "Mooretown Rancheria of Maidu Indians of California";
  dcterms:description "Mooretown Rancheria of Maidu Indians of California".

cs:TribalEntityUS\#166 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Morongo Band of Cahuilla Mission Indians of the Mo";
  dc:title "Morongo Band of Cahuilla Mission Indians of the Mo";
  rdfs:comment "Morongo Band of Cahuilla Mission Indians of the Mo";
  dcterms:description "Morongo Band of Cahuilla Mission Indians of the Mo".

cs:TribalEntityUS\#167 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Muckleshoot Indian Tribe of the Muckleshoot Reserv";
  dc:title "Muckleshoot Indian Tribe of the Muckleshoot Reserv";
  rdfs:comment "Muckleshoot Indian Tribe of the Muckleshoot Reserv";
  dcterms:description "Muckleshoot Indian Tribe of the Muckleshoot Reserv".

cs:TribalEntityUS\#168 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Muscogee (Creek) Nation, Oklahoma";
  dc:title "Muscogee (Creek) Nation, Oklahoma";
  rdfs:comment "Muscogee (Creek) Nation, Oklahoma";
  dcterms:description "Muscogee (Creek) Nation, Oklahoma".

cs:TribalEntityUS\#169 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Narragansett Indian Tribe of Rhode Island";
  dc:title "Narragansett Indian Tribe of Rhode Island";
  rdfs:comment "Narragansett Indian Tribe of Rhode Island";
  dcterms:description "Narragansett Indian Tribe of Rhode Island".

cs:TribalEntityUS\#17 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Big Pine Band of Owens Valley Paiute Shoshone Indi";
  dc:title "Big Pine Band of Owens Valley Paiute Shoshone Indi";
  rdfs:comment "Big Pine Band of Owens Valley Paiute Shoshone Indi";
  dcterms:description "Big Pine Band of Owens Valley Paiute Shoshone Indi".

cs:TribalEntityUS\#170 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Navajo Nation, Arizona, New Mexico & Utah";
  dc:title "Navajo Nation, Arizona, New Mexico & Utah";
  rdfs:comment "Navajo Nation, Arizona, New Mexico & Utah";
  dcterms:description "Navajo Nation, Arizona, New Mexico & Utah".

cs:TribalEntityUS\#171 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Nez Perce Tribe of Idaho";
  dc:title "Nez Perce Tribe of Idaho";
  rdfs:comment "Nez Perce Tribe of Idaho";
  dcterms:description "Nez Perce Tribe of Idaho".

cs:TribalEntityUS\#172 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Nisqually Indian Tribe of the Nisqually Reservatio";
  dc:title "Nisqually Indian Tribe of the Nisqually Reservatio";
  rdfs:comment "Nisqually Indian Tribe of the Nisqually Reservatio";
  dcterms:description "Nisqually Indian Tribe of the Nisqually Reservatio".

cs:TribalEntityUS\#173 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Nooksack Indian Tribe of Washington";
  dc:title "Nooksack Indian Tribe of Washington";
  rdfs:comment "Nooksack Indian Tribe of Washington";
  dcterms:description "Nooksack Indian Tribe of Washington".

cs:TribalEntityUS\#174 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Northern Cheyenne Tribe of the Northern Cheyenne I";
  dc:title "Northern Cheyenne Tribe of the Northern Cheyenne I";
  rdfs:comment "Northern Cheyenne Tribe of the Northern Cheyenne I";
  dcterms:description "Northern Cheyenne Tribe of the Northern Cheyenne I".

cs:TribalEntityUS\#175 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Northfork Rancheria of Mono Indians of California";
  dc:title "Northfork Rancheria of Mono Indians of California";
  rdfs:comment "Northfork Rancheria of Mono Indians of California";
  dcterms:description "Northfork Rancheria of Mono Indians of California".

cs:TribalEntityUS\#176 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Northwestern Band of Shoshoni Nation of Utah (Wash";
  dc:title "Northwestern Band of Shoshoni Nation of Utah (Wash";
  rdfs:comment "Northwestern Band of Shoshoni Nation of Utah (Wash";
  dcterms:description "Northwestern Band of Shoshoni Nation of Utah (Wash".

cs:TribalEntityUS\#177 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Oglala Sioux Tribe of the Pine Ridge Reservation,";
  dc:title "Oglala Sioux Tribe of the Pine Ridge Reservation,";
  rdfs:comment "Oglala Sioux Tribe of the Pine Ridge Reservation,";
  dcterms:description "Oglala Sioux Tribe of the Pine Ridge Reservation,".

cs:TribalEntityUS\#178 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Omaha Tribe of Nebraska";
  dc:title "Omaha Tribe of Nebraska";
  rdfs:comment "Omaha Tribe of Nebraska";
  dcterms:description "Omaha Tribe of Nebraska".

cs:TribalEntityUS\#179 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Oneida Nation of New York";
  dc:title "Oneida Nation of New York";
  rdfs:comment "Oneida Nation of New York";
  dcterms:description "Oneida Nation of New York".

cs:TribalEntityUS\#18 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Big Sandy Rancheria of Mono Indians of California";
  dc:title "Big Sandy Rancheria of Mono Indians of California";
  rdfs:comment "Big Sandy Rancheria of Mono Indians of California";
  dcterms:description "Big Sandy Rancheria of Mono Indians of California".

cs:TribalEntityUS\#180 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Oneida Tribe of Wisconsin";
  dc:title "Oneida Tribe of Wisconsin";
  rdfs:comment "Oneida Tribe of Wisconsin";
  dcterms:description "Oneida Tribe of Wisconsin".

cs:TribalEntityUS\#181 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Onondaga Nation of New York";
  dc:title "Onondaga Nation of New York";
  rdfs:comment "Onondaga Nation of New York";
  dcterms:description "Onondaga Nation of New York".

cs:TribalEntityUS\#182 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Osage Tribe, Oklahoma";
  dc:title "Osage Tribe, Oklahoma";
  rdfs:comment "Osage Tribe, Oklahoma";
  dcterms:description "Osage Tribe, Oklahoma".

cs:TribalEntityUS\#183 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Ottawa Tribe of Oklahoma";
  dc:title "Ottawa Tribe of Oklahoma";
  rdfs:comment "Ottawa Tribe of Oklahoma";
  dcterms:description "Ottawa Tribe of Oklahoma".

cs:TribalEntityUS\#184 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Otoe-Missouria Tribe of Indians, Oklahoma";
  dc:title "Otoe-Missouria Tribe of Indians, Oklahoma";
  rdfs:comment "Otoe-Missouria Tribe of Indians, Oklahoma";
  dcterms:description "Otoe-Missouria Tribe of Indians, Oklahoma".

cs:TribalEntityUS\#185 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Paiute Indian Tribe of Utah";
  dc:title "Paiute Indian Tribe of Utah";
  rdfs:comment "Paiute Indian Tribe of Utah";
  dcterms:description "Paiute Indian Tribe of Utah".

cs:TribalEntityUS\#186 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Paiute-Shoshone Indians of the Bishop Community of";
  dc:title "Paiute-Shoshone Indians of the Bishop Community of";
  rdfs:comment "Paiute-Shoshone Indians of the Bishop Community of";
  dcterms:description "Paiute-Shoshone Indians of the Bishop Community of".

cs:TribalEntityUS\#187 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Paiute-Shoshone Tribe of the Fallon Reservation an";
  dc:title "Paiute-Shoshone Tribe of the Fallon Reservation an";
  rdfs:comment "Paiute-Shoshone Tribe of the Fallon Reservation an";
  dcterms:description "Paiute-Shoshone Tribe of the Fallon Reservation an".

cs:TribalEntityUS\#188 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Paiute-Shoshone Indians of the Lone Pine Community";
  dc:title "Paiute-Shoshone Indians of the Lone Pine Community";
  rdfs:comment "Paiute-Shoshone Indians of the Lone Pine Community";
  dcterms:description "Paiute-Shoshone Indians of the Lone Pine Community".

cs:TribalEntityUS\#189 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pala Band of Luiseno Mission Indians of the Pala R";
  dc:title "Pala Band of Luiseno Mission Indians of the Pala R";
  rdfs:comment "Pala Band of Luiseno Mission Indians of the Pala R";
  dcterms:description "Pala Band of Luiseno Mission Indians of the Pala R".

cs:TribalEntityUS\#19 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Big Valley Band of Pomo Indians of the Big Valley";
  dc:title "Big Valley Band of Pomo Indians of the Big Valley";
  rdfs:comment "Big Valley Band of Pomo Indians of the Big Valley";
  dcterms:description "Big Valley Band of Pomo Indians of the Big Valley".

cs:TribalEntityUS\#190 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pascua Yaqui Tribe of Arizona";
  dc:title "Pascua Yaqui Tribe of Arizona";
  rdfs:comment "Pascua Yaqui Tribe of Arizona";
  dcterms:description "Pascua Yaqui Tribe of Arizona".

cs:TribalEntityUS\#191 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Paskenta Band of Nomlaki Indians of California";
  dc:title "Paskenta Band of Nomlaki Indians of California";
  rdfs:comment "Paskenta Band of Nomlaki Indians of California";
  dcterms:description "Paskenta Band of Nomlaki Indians of California".

cs:TribalEntityUS\#192 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Passamaquoddy Tribe of Maine";
  dc:title "Passamaquoddy Tribe of Maine";
  rdfs:comment "Passamaquoddy Tribe of Maine";
  dcterms:description "Passamaquoddy Tribe of Maine".

cs:TribalEntityUS\#193 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pauma Band of Luiseno Mission Indians of the Pauma";
  dc:title "Pauma Band of Luiseno Mission Indians of the Pauma";
  rdfs:comment "Pauma Band of Luiseno Mission Indians of the Pauma";
  dcterms:description "Pauma Band of Luiseno Mission Indians of the Pauma".

cs:TribalEntityUS\#194 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pawnee Nation of Oklahoma";
  dc:title "Pawnee Nation of Oklahoma";
  rdfs:comment "Pawnee Nation of Oklahoma";
  dcterms:description "Pawnee Nation of Oklahoma".

cs:TribalEntityUS\#195 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pechanga Band of Luiseno Mission Indians of the Pe";
  dc:title "Pechanga Band of Luiseno Mission Indians of the Pe";
  rdfs:comment "Pechanga Band of Luiseno Mission Indians of the Pe";
  dcterms:description "Pechanga Band of Luiseno Mission Indians of the Pe".

cs:TribalEntityUS\#196 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Penobscot Tribe of Maine";
  dc:title "Penobscot Tribe of Maine";
  rdfs:comment "Penobscot Tribe of Maine";
  dcterms:description "Penobscot Tribe of Maine".

cs:TribalEntityUS\#197 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Peoria Tribe of Indians of Oklahoma";
  dc:title "Peoria Tribe of Indians of Oklahoma";
  rdfs:comment "Peoria Tribe of Indians of Oklahoma";
  dcterms:description "Peoria Tribe of Indians of Oklahoma".

cs:TribalEntityUS\#198 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Picayune Rancheria of Chukchansi Indians of Califo";
  dc:title "Picayune Rancheria of Chukchansi Indians of Califo";
  rdfs:comment "Picayune Rancheria of Chukchansi Indians of Califo";
  dcterms:description "Picayune Rancheria of Chukchansi Indians of Califo".

cs:TribalEntityUS\#199 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pinoleville Rancheria of Pomo Indians of Californi";
  dc:title "Pinoleville Rancheria of Pomo Indians of Californi";
  rdfs:comment "Pinoleville Rancheria of Pomo Indians of Californi";
  dcterms:description "Pinoleville Rancheria of Pomo Indians of Californi".

cs:TribalEntityUS\#2 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Agua Caliente Band of Cahuilla Indians of the Agua";
  dc:title "Agua Caliente Band of Cahuilla Indians of the Agua";
  rdfs:comment "Agua Caliente Band of Cahuilla Indians of the Agua";
  dcterms:description "Agua Caliente Band of Cahuilla Indians of the Agua".

cs:TribalEntityUS\#20 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Blackfeet Tribe of the Blackfeet Indian Reservatio";
  dc:title "Blackfeet Tribe of the Blackfeet Indian Reservatio";
  rdfs:comment "Blackfeet Tribe of the Blackfeet Indian Reservatio";
  dcterms:description "Blackfeet Tribe of the Blackfeet Indian Reservatio".

cs:TribalEntityUS\#200 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pit River Tribe, California (includes Big Bend, Lo";
  dc:title "Pit River Tribe, California (includes Big Bend, Lo";
  rdfs:comment "Pit River Tribe, California (includes Big Bend, Lo";
  dcterms:description "Pit River Tribe, California (includes Big Bend, Lo".

cs:TribalEntityUS\#201 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Poarch Band of Creek Indians of Alabama";
  dc:title "Poarch Band of Creek Indians of Alabama";
  rdfs:comment "Poarch Band of Creek Indians of Alabama";
  dcterms:description "Poarch Band of Creek Indians of Alabama".

cs:TribalEntityUS\#202 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pokagon Band of Potawatomi Indians of Michigan";
  dc:title "Pokagon Band of Potawatomi Indians of Michigan";
  rdfs:comment "Pokagon Band of Potawatomi Indians of Michigan";
  dcterms:description "Pokagon Band of Potawatomi Indians of Michigan".

cs:TribalEntityUS\#203 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Ponca Tribe of Indians of Oklahoma";
  dc:title "Ponca Tribe of Indians of Oklahoma";
  rdfs:comment "Ponca Tribe of Indians of Oklahoma";
  dcterms:description "Ponca Tribe of Indians of Oklahoma".

cs:TribalEntityUS\#204 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Ponca Tribe of Nebraska";
  dc:title "Ponca Tribe of Nebraska";
  rdfs:comment "Ponca Tribe of Nebraska";
  dcterms:description "Ponca Tribe of Nebraska".

cs:TribalEntityUS\#205 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Port Gamble Indian Community of the Port Gamble Re";
  dc:title "Port Gamble Indian Community of the Port Gamble Re";
  rdfs:comment "Port Gamble Indian Community of the Port Gamble Re";
  dcterms:description "Port Gamble Indian Community of the Port Gamble Re".

cs:TribalEntityUS\#206 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Potter Valley Rancheria of Pomo Indians of Califor";
  dc:title "Potter Valley Rancheria of Pomo Indians of Califor";
  rdfs:comment "Potter Valley Rancheria of Pomo Indians of Califor";
  dcterms:description "Potter Valley Rancheria of Pomo Indians of Califor".

cs:TribalEntityUS\#207 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Prairie Band of Potawatomi Indians, Kansas";
  dc:title "Prairie Band of Potawatomi Indians, Kansas";
  rdfs:comment "Prairie Band of Potawatomi Indians, Kansas";
  dcterms:description "Prairie Band of Potawatomi Indians, Kansas".

cs:TribalEntityUS\#208 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Prairie Island Indian Community of Minnesota Mdewa";
  dc:title "Prairie Island Indian Community of Minnesota Mdewa";
  rdfs:comment "Prairie Island Indian Community of Minnesota Mdewa";
  dcterms:description "Prairie Island Indian Community of Minnesota Mdewa".

cs:TribalEntityUS\#209 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of Acoma, New Mexico";
  dc:title "Pueblo of Acoma, New Mexico";
  rdfs:comment "Pueblo of Acoma, New Mexico";
  dcterms:description "Pueblo of Acoma, New Mexico".

cs:TribalEntityUS\#21 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Blue Lake Rancheria, California";
  dc:title "Blue Lake Rancheria, California";
  rdfs:comment "Blue Lake Rancheria, California";
  dcterms:description "Blue Lake Rancheria, California".

cs:TribalEntityUS\#210 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of Cochiti, New Mexico";
  dc:title "Pueblo of Cochiti, New Mexico";
  rdfs:comment "Pueblo of Cochiti, New Mexico";
  dcterms:description "Pueblo of Cochiti, New Mexico".

cs:TribalEntityUS\#211 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of Jemez, New Mexico";
  dc:title "Pueblo of Jemez, New Mexico";
  rdfs:comment "Pueblo of Jemez, New Mexico";
  dcterms:description "Pueblo of Jemez, New Mexico".

cs:TribalEntityUS\#212 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of Isleta, New Mexico";
  dc:title "Pueblo of Isleta, New Mexico";
  rdfs:comment "Pueblo of Isleta, New Mexico";
  dcterms:description "Pueblo of Isleta, New Mexico".

cs:TribalEntityUS\#213 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of Laguna, New Mexico";
  dc:title "Pueblo of Laguna, New Mexico";
  rdfs:comment "Pueblo of Laguna, New Mexico";
  dcterms:description "Pueblo of Laguna, New Mexico".

cs:TribalEntityUS\#214 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of Nambe, New Mexico";
  dc:title "Pueblo of Nambe, New Mexico";
  rdfs:comment "Pueblo of Nambe, New Mexico";
  dcterms:description "Pueblo of Nambe, New Mexico".

cs:TribalEntityUS\#215 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of Picuris, New Mexico";
  dc:title "Pueblo of Picuris, New Mexico";
  rdfs:comment "Pueblo of Picuris, New Mexico";
  dcterms:description "Pueblo of Picuris, New Mexico".

cs:TribalEntityUS\#216 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of Pojoaque, New Mexico";
  dc:title "Pueblo of Pojoaque, New Mexico";
  rdfs:comment "Pueblo of Pojoaque, New Mexico";
  dcterms:description "Pueblo of Pojoaque, New Mexico".

cs:TribalEntityUS\#217 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of San Felipe, New Mexico";
  dc:title "Pueblo of San Felipe, New Mexico";
  rdfs:comment "Pueblo of San Felipe, New Mexico";
  dcterms:description "Pueblo of San Felipe, New Mexico".

cs:TribalEntityUS\#218 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of San Juan, New Mexico";
  dc:title "Pueblo of San Juan, New Mexico";
  rdfs:comment "Pueblo of San Juan, New Mexico";
  dcterms:description "Pueblo of San Juan, New Mexico".

cs:TribalEntityUS\#219 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of San Ildefonso, New Mexico";
  dc:title "Pueblo of San Ildefonso, New Mexico";
  rdfs:comment "Pueblo of San Ildefonso, New Mexico";
  dcterms:description "Pueblo of San Ildefonso, New Mexico".

cs:TribalEntityUS\#22 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Bridgeport Paiute Indian Colony of California";
  dc:title "Bridgeport Paiute Indian Colony of California";
  rdfs:comment "Bridgeport Paiute Indian Colony of California";
  dcterms:description "Bridgeport Paiute Indian Colony of California".

cs:TribalEntityUS\#220 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of Sandia, New Mexico";
  dc:title "Pueblo of Sandia, New Mexico";
  rdfs:comment "Pueblo of Sandia, New Mexico";
  dcterms:description "Pueblo of Sandia, New Mexico".

cs:TribalEntityUS\#221 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of Santa Ana, New Mexico";
  dc:title "Pueblo of Santa Ana, New Mexico";
  rdfs:comment "Pueblo of Santa Ana, New Mexico";
  dcterms:description "Pueblo of Santa Ana, New Mexico".

cs:TribalEntityUS\#222 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of Santa Clara, New Mexico";
  dc:title "Pueblo of Santa Clara, New Mexico";
  rdfs:comment "Pueblo of Santa Clara, New Mexico";
  dcterms:description "Pueblo of Santa Clara, New Mexico".

cs:TribalEntityUS\#223 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of Santo Domingo, New Mexico";
  dc:title "Pueblo of Santo Domingo, New Mexico";
  rdfs:comment "Pueblo of Santo Domingo, New Mexico";
  dcterms:description "Pueblo of Santo Domingo, New Mexico".

cs:TribalEntityUS\#224 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of Taos, New Mexico";
  dc:title "Pueblo of Taos, New Mexico";
  rdfs:comment "Pueblo of Taos, New Mexico";
  dcterms:description "Pueblo of Taos, New Mexico".

cs:TribalEntityUS\#225 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of Tesuque, New Mexico";
  dc:title "Pueblo of Tesuque, New Mexico";
  rdfs:comment "Pueblo of Tesuque, New Mexico";
  dcterms:description "Pueblo of Tesuque, New Mexico".

cs:TribalEntityUS\#226 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pueblo of Zia, New Mexico";
  dc:title "Pueblo of Zia, New Mexico";
  rdfs:comment "Pueblo of Zia, New Mexico";
  dcterms:description "Pueblo of Zia, New Mexico".

cs:TribalEntityUS\#227 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Puyallup Tribe of the Puyallup Reservation, Washin";
  dc:title "Puyallup Tribe of the Puyallup Reservation, Washin";
  rdfs:comment "Puyallup Tribe of the Puyallup Reservation, Washin";
  dcterms:description "Puyallup Tribe of the Puyallup Reservation, Washin".

cs:TribalEntityUS\#228 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Pyramid Lake Paiute Tribe of the Pyramid Lake Rese";
  dc:title "Pyramid Lake Paiute Tribe of the Pyramid Lake Rese";
  rdfs:comment "Pyramid Lake Paiute Tribe of the Pyramid Lake Rese";
  dcterms:description "Pyramid Lake Paiute Tribe of the Pyramid Lake Rese".

cs:TribalEntityUS\#229 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Quapaw Tribe of Indians, Oklahoma";
  dc:title "Quapaw Tribe of Indians, Oklahoma";
  rdfs:comment "Quapaw Tribe of Indians, Oklahoma";
  dcterms:description "Quapaw Tribe of Indians, Oklahoma".

cs:TribalEntityUS\#23 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Buena Vista Rancheria of Me-Wuk Indians of Califor";
  dc:title "Buena Vista Rancheria of Me-Wuk Indians of Califor";
  rdfs:comment "Buena Vista Rancheria of Me-Wuk Indians of Califor";
  dcterms:description "Buena Vista Rancheria of Me-Wuk Indians of Califor".

cs:TribalEntityUS\#230 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Quartz Valley Indian Community of the Quartz Valle";
  dc:title "Quartz Valley Indian Community of the Quartz Valle";
  rdfs:comment "Quartz Valley Indian Community of the Quartz Valle";
  dcterms:description "Quartz Valley Indian Community of the Quartz Valle".

cs:TribalEntityUS\#231 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Quechan Tribe of the Fort Yuma Indian Reservation,";
  dc:title "Quechan Tribe of the Fort Yuma Indian Reservation,";
  rdfs:comment "Quechan Tribe of the Fort Yuma Indian Reservation,";
  dcterms:description "Quechan Tribe of the Fort Yuma Indian Reservation,".

cs:TribalEntityUS\#232 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Quileute Tribe of the Quileute Reservation, Washin";
  dc:title "Quileute Tribe of the Quileute Reservation, Washin";
  rdfs:comment "Quileute Tribe of the Quileute Reservation, Washin";
  dcterms:description "Quileute Tribe of the Quileute Reservation, Washin".

cs:TribalEntityUS\#233 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Quinault Tribe of the Quinault Reservation, Washin";
  dc:title "Quinault Tribe of the Quinault Reservation, Washin";
  rdfs:comment "Quinault Tribe of the Quinault Reservation, Washin";
  dcterms:description "Quinault Tribe of the Quinault Reservation, Washin".

cs:TribalEntityUS\#234 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Ramona Band or Village of Cahuilla Mission Indians";
  dc:title "Ramona Band or Village of Cahuilla Mission Indians";
  rdfs:comment "Ramona Band or Village of Cahuilla Mission Indians";
  dcterms:description "Ramona Band or Village of Cahuilla Mission Indians".

cs:TribalEntityUS\#235 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Red Cliff Band of Lake Superior Chippewa Indians o";
  dc:title "Red Cliff Band of Lake Superior Chippewa Indians o";
  rdfs:comment "Red Cliff Band of Lake Superior Chippewa Indians o";
  dcterms:description "Red Cliff Band of Lake Superior Chippewa Indians o".

cs:TribalEntityUS\#236 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Red Lake Band of Chippewa Indians of the Red Lake";
  dc:title "Red Lake Band of Chippewa Indians of the Red Lake";
  rdfs:comment "Red Lake Band of Chippewa Indians of the Red Lake";
  dcterms:description "Red Lake Band of Chippewa Indians of the Red Lake".

cs:TribalEntityUS\#237 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Redding Rancheria, California";
  dc:title "Redding Rancheria, California";
  rdfs:comment "Redding Rancheria, California";
  dcterms:description "Redding Rancheria, California".

cs:TribalEntityUS\#238 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Redwood Valley Rancheria of Pomo Indians of Califo";
  dc:title "Redwood Valley Rancheria of Pomo Indians of Califo";
  rdfs:comment "Redwood Valley Rancheria of Pomo Indians of Califo";
  dcterms:description "Redwood Valley Rancheria of Pomo Indians of Califo".

cs:TribalEntityUS\#239 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Reno-Sparks Indian Colony, Nevada";
  dc:title "Reno-Sparks Indian Colony, Nevada";
  rdfs:comment "Reno-Sparks Indian Colony, Nevada";
  dcterms:description "Reno-Sparks Indian Colony, Nevada".

cs:TribalEntityUS\#24 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Burns Paiute Tribe of the Burns Paiute Indian Colo";
  dc:title "Burns Paiute Tribe of the Burns Paiute Indian Colo";
  rdfs:comment "Burns Paiute Tribe of the Burns Paiute Indian Colo";
  dcterms:description "Burns Paiute Tribe of the Burns Paiute Indian Colo".

cs:TribalEntityUS\#240 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Resighini Rancheria, California (formerly known as";
  dc:title "Resighini Rancheria, California (formerly known as";
  rdfs:comment "Resighini Rancheria, California (formerly known as";
  dcterms:description "Resighini Rancheria, California (formerly known as".

cs:TribalEntityUS\#241 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Rincon Band of Luiseno Mission Indians of the Rinc";
  dc:title "Rincon Band of Luiseno Mission Indians of the Rinc";
  rdfs:comment "Rincon Band of Luiseno Mission Indians of the Rinc";
  dcterms:description "Rincon Band of Luiseno Mission Indians of the Rinc".

cs:TribalEntityUS\#242 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Robinson Rancheria of Pomo Indians of California";
  dc:title "Robinson Rancheria of Pomo Indians of California";
  rdfs:comment "Robinson Rancheria of Pomo Indians of California";
  dcterms:description "Robinson Rancheria of Pomo Indians of California".

cs:TribalEntityUS\#243 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Rosebud Sioux Tribe of the Rosebud Indian Reservat";
  dc:title "Rosebud Sioux Tribe of the Rosebud Indian Reservat";
  rdfs:comment "Rosebud Sioux Tribe of the Rosebud Indian Reservat";
  dcterms:description "Rosebud Sioux Tribe of the Rosebud Indian Reservat".

cs:TribalEntityUS\#244 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Round Valley Indian Tribes of the Round Valley Res";
  dc:title "Round Valley Indian Tribes of the Round Valley Res";
  rdfs:comment "Round Valley Indian Tribes of the Round Valley Res";
  dcterms:description "Round Valley Indian Tribes of the Round Valley Res".

cs:TribalEntityUS\#245 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Rumsey Indian Rancheria of Wintun Indians of Calif";
  dc:title "Rumsey Indian Rancheria of Wintun Indians of Calif";
  rdfs:comment "Rumsey Indian Rancheria of Wintun Indians of Calif";
  dcterms:description "Rumsey Indian Rancheria of Wintun Indians of Calif".

cs:TribalEntityUS\#246 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Sac and Fox Tribe of the Mississippi in Iowa";
  dc:title "Sac and Fox Tribe of the Mississippi in Iowa";
  rdfs:comment "Sac and Fox Tribe of the Mississippi in Iowa";
  dcterms:description "Sac and Fox Tribe of the Mississippi in Iowa".

cs:TribalEntityUS\#247 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Sac and Fox Nation of Missouri in Kansas and Nebra";
  dc:title "Sac and Fox Nation of Missouri in Kansas and Nebra";
  rdfs:comment "Sac and Fox Nation of Missouri in Kansas and Nebra";
  dcterms:description "Sac and Fox Nation of Missouri in Kansas and Nebra".

cs:TribalEntityUS\#248 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Sac and Fox Nation, Oklahoma";
  dc:title "Sac and Fox Nation, Oklahoma";
  rdfs:comment "Sac and Fox Nation, Oklahoma";
  dcterms:description "Sac and Fox Nation, Oklahoma".

cs:TribalEntityUS\#249 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Saginaw Chippewa Indian Tribe of Michigan, Isabell";
  dc:title "Saginaw Chippewa Indian Tribe of Michigan, Isabell";
  rdfs:comment "Saginaw Chippewa Indian Tribe of Michigan, Isabell";
  dcterms:description "Saginaw Chippewa Indian Tribe of Michigan, Isabell".

cs:TribalEntityUS\#25 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cabazon Band of Cahuilla Mission Indians of the Ca";
  dc:title "Cabazon Band of Cahuilla Mission Indians of the Ca";
  rdfs:comment "Cabazon Band of Cahuilla Mission Indians of the Ca";
  dcterms:description "Cabazon Band of Cahuilla Mission Indians of the Ca".

cs:TribalEntityUS\#250 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Salt River Pima-Maricopa Indian Community of the S";
  dc:title "Salt River Pima-Maricopa Indian Community of the S";
  rdfs:comment "Salt River Pima-Maricopa Indian Community of the S";
  dcterms:description "Salt River Pima-Maricopa Indian Community of the S".

cs:TribalEntityUS\#251 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Samish Indian Tribe, Washington";
  dc:title "Samish Indian Tribe, Washington";
  rdfs:comment "Samish Indian Tribe, Washington";
  dcterms:description "Samish Indian Tribe, Washington".

cs:TribalEntityUS\#252 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "San Carlos Apache Tribe of the San Carlos Reservat";
  dc:title "San Carlos Apache Tribe of the San Carlos Reservat";
  rdfs:comment "San Carlos Apache Tribe of the San Carlos Reservat";
  dcterms:description "San Carlos Apache Tribe of the San Carlos Reservat".

cs:TribalEntityUS\#253 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "San Juan Southern Paiute Tribe of Arizona";
  dc:title "San Juan Southern Paiute Tribe of Arizona";
  rdfs:comment "San Juan Southern Paiute Tribe of Arizona";
  dcterms:description "San Juan Southern Paiute Tribe of Arizona".

cs:TribalEntityUS\#254 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "San Manual Band of Serrano Mission Indians of the";
  dc:title "San Manual Band of Serrano Mission Indians of the";
  rdfs:comment "San Manual Band of Serrano Mission Indians of the";
  dcterms:description "San Manual Band of Serrano Mission Indians of the".

cs:TribalEntityUS\#255 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "San Pasqual Band of Diegueno Mission Indians of Ca";
  dc:title "San Pasqual Band of Diegueno Mission Indians of Ca";
  rdfs:comment "San Pasqual Band of Diegueno Mission Indians of Ca";
  dcterms:description "San Pasqual Band of Diegueno Mission Indians of Ca".

cs:TribalEntityUS\#256 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Santa Rosa Indian Community of the Santa Rosa Ranc";
  dc:title "Santa Rosa Indian Community of the Santa Rosa Ranc";
  rdfs:comment "Santa Rosa Indian Community of the Santa Rosa Ranc";
  dcterms:description "Santa Rosa Indian Community of the Santa Rosa Ranc".

cs:TribalEntityUS\#257 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Santa Rosa Band of Cahuilla Mission Indians of the";
  dc:title "Santa Rosa Band of Cahuilla Mission Indians of the";
  rdfs:comment "Santa Rosa Band of Cahuilla Mission Indians of the";
  dcterms:description "Santa Rosa Band of Cahuilla Mission Indians of the".

cs:TribalEntityUS\#258 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Santa Ynez Band of Chumash Mission Indians of the";
  dc:title "Santa Ynez Band of Chumash Mission Indians of the";
  rdfs:comment "Santa Ynez Band of Chumash Mission Indians of the";
  dcterms:description "Santa Ynez Band of Chumash Mission Indians of the".

cs:TribalEntityUS\#259 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Santa Ysabel Band of Diegueno Mission Indians of t";
  dc:title "Santa Ysabel Band of Diegueno Mission Indians of t";
  rdfs:comment "Santa Ysabel Band of Diegueno Mission Indians of t";
  dcterms:description "Santa Ysabel Band of Diegueno Mission Indians of t".

cs:TribalEntityUS\#26 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cachil DeHe Band of Wintun Indians of the Colusa I";
  dc:title "Cachil DeHe Band of Wintun Indians of the Colusa I";
  rdfs:comment "Cachil DeHe Band of Wintun Indians of the Colusa I";
  dcterms:description "Cachil DeHe Band of Wintun Indians of the Colusa I".

cs:TribalEntityUS\#260 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Santee Sioux Tribe of the Santee Reservation of Ne";
  dc:title "Santee Sioux Tribe of the Santee Reservation of Ne";
  rdfs:comment "Santee Sioux Tribe of the Santee Reservation of Ne";
  dcterms:description "Santee Sioux Tribe of the Santee Reservation of Ne".

cs:TribalEntityUS\#261 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Sauk-Suiattle Indian Tribe of Washington";
  dc:title "Sauk-Suiattle Indian Tribe of Washington";
  rdfs:comment "Sauk-Suiattle Indian Tribe of Washington";
  dcterms:description "Sauk-Suiattle Indian Tribe of Washington".

cs:TribalEntityUS\#262 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Sault Ste. Marie Tribe of Chippewa Indians of Mich";
  dc:title "Sault Ste. Marie Tribe of Chippewa Indians of Mich";
  rdfs:comment "Sault Ste. Marie Tribe of Chippewa Indians of Mich";
  dcterms:description "Sault Ste. Marie Tribe of Chippewa Indians of Mich".

cs:TribalEntityUS\#263 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Scotts Valley Band of Pomo Indians of California";
  dc:title "Scotts Valley Band of Pomo Indians of California";
  rdfs:comment "Scotts Valley Band of Pomo Indians of California";
  dcterms:description "Scotts Valley Band of Pomo Indians of California".

cs:TribalEntityUS\#264 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Seminole Nation of Oklahoma";
  dc:title "Seminole Nation of Oklahoma";
  rdfs:comment "Seminole Nation of Oklahoma";
  dcterms:description "Seminole Nation of Oklahoma".

cs:TribalEntityUS\#265 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Seminole Tribe of Florida, Dania, Big Cypress, Bri";
  dc:title "Seminole Tribe of Florida, Dania, Big Cypress, Bri";
  rdfs:comment "Seminole Tribe of Florida, Dania, Big Cypress, Bri";
  dcterms:description "Seminole Tribe of Florida, Dania, Big Cypress, Bri".

cs:TribalEntityUS\#266 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Seneca Nation of New York";
  dc:title "Seneca Nation of New York";
  rdfs:comment "Seneca Nation of New York";
  dcterms:description "Seneca Nation of New York".

cs:TribalEntityUS\#267 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Seneca-Cayuga Tribe of Oklahoma";
  dc:title "Seneca-Cayuga Tribe of Oklahoma";
  rdfs:comment "Seneca-Cayuga Tribe of Oklahoma";
  dcterms:description "Seneca-Cayuga Tribe of Oklahoma".

cs:TribalEntityUS\#268 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Shakopee Mdewakanton Sioux Community of Minnesota";
  dc:title "Shakopee Mdewakanton Sioux Community of Minnesota";
  rdfs:comment "Shakopee Mdewakanton Sioux Community of Minnesota";
  dcterms:description "Shakopee Mdewakanton Sioux Community of Minnesota".

cs:TribalEntityUS\#269 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Shawnee Tribe, Oklahoma";
  dc:title "Shawnee Tribe, Oklahoma";
  rdfs:comment "Shawnee Tribe, Oklahoma";
  dcterms:description "Shawnee Tribe, Oklahoma".

cs:TribalEntityUS\#27 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Caddo Indian Tribe of Oklahoma";
  dc:title "Caddo Indian Tribe of Oklahoma";
  rdfs:comment "Caddo Indian Tribe of Oklahoma";
  dcterms:description "Caddo Indian Tribe of Oklahoma".

cs:TribalEntityUS\#270 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Sherwood Valley Rancheria of Pomo Indians of Calif";
  dc:title "Sherwood Valley Rancheria of Pomo Indians of Calif";
  rdfs:comment "Sherwood Valley Rancheria of Pomo Indians of Calif";
  dcterms:description "Sherwood Valley Rancheria of Pomo Indians of Calif".

cs:TribalEntityUS\#271 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Shingle Springs Band of Miwok Indians, Shingle Spr";
  dc:title "Shingle Springs Band of Miwok Indians, Shingle Spr";
  rdfs:comment "Shingle Springs Band of Miwok Indians, Shingle Spr";
  dcterms:description "Shingle Springs Band of Miwok Indians, Shingle Spr".

cs:TribalEntityUS\#272 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Shoalwater Bay Tribe of the Shoalwater Bay Indian";
  dc:title "Shoalwater Bay Tribe of the Shoalwater Bay Indian";
  rdfs:comment "Shoalwater Bay Tribe of the Shoalwater Bay Indian";
  dcterms:description "Shoalwater Bay Tribe of the Shoalwater Bay Indian".

cs:TribalEntityUS\#273 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Shoshone Tribe of the Wind River Reservation, Wyom";
  dc:title "Shoshone Tribe of the Wind River Reservation, Wyom";
  rdfs:comment "Shoshone Tribe of the Wind River Reservation, Wyom";
  dcterms:description "Shoshone Tribe of the Wind River Reservation, Wyom".

cs:TribalEntityUS\#274 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Shoshone-Bannock Tribes of the Fort Hall Reservati";
  dc:title "Shoshone-Bannock Tribes of the Fort Hall Reservati";
  rdfs:comment "Shoshone-Bannock Tribes of the Fort Hall Reservati";
  dcterms:description "Shoshone-Bannock Tribes of the Fort Hall Reservati".

cs:TribalEntityUS\#275 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Shoshone-Paiute Tribes of the Duck Valley Reservat";
  dc:title "Shoshone-Paiute Tribes of the Duck Valley Reservat";
  rdfs:comment "Shoshone-Paiute Tribes of the Duck Valley Reservat";
  dcterms:description "Shoshone-Paiute Tribes of the Duck Valley Reservat".

cs:TribalEntityUS\#276 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Sisseton-Wahpeton Sioux Tribe of the Lake Traverse";
  dc:title "Sisseton-Wahpeton Sioux Tribe of the Lake Traverse";
  rdfs:comment "Sisseton-Wahpeton Sioux Tribe of the Lake Traverse";
  dcterms:description "Sisseton-Wahpeton Sioux Tribe of the Lake Traverse".

cs:TribalEntityUS\#277 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Skokomish Indian Tribe of the Skokomish Reservatio";
  dc:title "Skokomish Indian Tribe of the Skokomish Reservatio";
  rdfs:comment "Skokomish Indian Tribe of the Skokomish Reservatio";
  dcterms:description "Skokomish Indian Tribe of the Skokomish Reservatio".

cs:TribalEntityUS\#278 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Skull Valley Band of Goshute Indians of Utah";
  dc:title "Skull Valley Band of Goshute Indians of Utah";
  rdfs:comment "Skull Valley Band of Goshute Indians of Utah";
  dcterms:description "Skull Valley Band of Goshute Indians of Utah".

cs:TribalEntityUS\#279 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Smith River Rancheria, California";
  dc:title "Smith River Rancheria, California";
  rdfs:comment "Smith River Rancheria, California";
  dcterms:description "Smith River Rancheria, California".

cs:TribalEntityUS\#28 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cahuilla Band of Mission Indians of the Cahuilla R";
  dc:title "Cahuilla Band of Mission Indians of the Cahuilla R";
  rdfs:comment "Cahuilla Band of Mission Indians of the Cahuilla R";
  dcterms:description "Cahuilla Band of Mission Indians of the Cahuilla R".

cs:TribalEntityUS\#280 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Snoqualmie Tribe, Washington";
  dc:title "Snoqualmie Tribe, Washington";
  rdfs:comment "Snoqualmie Tribe, Washington";
  dcterms:description "Snoqualmie Tribe, Washington".

cs:TribalEntityUS\#281 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Soboba Band of Luiseno Indians, California (former";
  dc:title "Soboba Band of Luiseno Indians, California (former";
  rdfs:comment "Soboba Band of Luiseno Indians, California (former";
  dcterms:description "Soboba Band of Luiseno Indians, California (former".

cs:TribalEntityUS\#282 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Sokaogon Chippewa Community of the Mole Lake Band";
  dc:title "Sokaogon Chippewa Community of the Mole Lake Band";
  rdfs:comment "Sokaogon Chippewa Community of the Mole Lake Band";
  dcterms:description "Sokaogon Chippewa Community of the Mole Lake Band".

cs:TribalEntityUS\#283 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Southern Ute Indian Tribe of the Southern Ute Rese";
  dc:title "Southern Ute Indian Tribe of the Southern Ute Rese";
  rdfs:comment "Southern Ute Indian Tribe of the Southern Ute Rese";
  dcterms:description "Southern Ute Indian Tribe of the Southern Ute Rese".

cs:TribalEntityUS\#284 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Spirit Lake Tribe, North Dakota (formerly known as";
  dc:title "Spirit Lake Tribe, North Dakota (formerly known as";
  rdfs:comment "Spirit Lake Tribe, North Dakota (formerly known as";
  dcterms:description "Spirit Lake Tribe, North Dakota (formerly known as".

cs:TribalEntityUS\#285 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Spokane Tribe of the Spokane Reservation, Washingt";
  dc:title "Spokane Tribe of the Spokane Reservation, Washingt";
  rdfs:comment "Spokane Tribe of the Spokane Reservation, Washingt";
  dcterms:description "Spokane Tribe of the Spokane Reservation, Washingt".

cs:TribalEntityUS\#286 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Squaxin Island Tribe of the Squaxin Island Reserva";
  dc:title "Squaxin Island Tribe of the Squaxin Island Reserva";
  rdfs:comment "Squaxin Island Tribe of the Squaxin Island Reserva";
  dcterms:description "Squaxin Island Tribe of the Squaxin Island Reserva".

cs:TribalEntityUS\#287 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "St. Croix Chippewa Indians of Wisconsin, St. Croix";
  dc:title "St. Croix Chippewa Indians of Wisconsin, St. Croix";
  rdfs:comment "St. Croix Chippewa Indians of Wisconsin, St. Croix";
  dcterms:description "St. Croix Chippewa Indians of Wisconsin, St. Croix".

cs:TribalEntityUS\#288 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "St. Regis Band of Mohawk Indians of New York";
  dc:title "St. Regis Band of Mohawk Indians of New York";
  rdfs:comment "St. Regis Band of Mohawk Indians of New York";
  dcterms:description "St. Regis Band of Mohawk Indians of New York".

cs:TribalEntityUS\#289 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Standing Rock Sioux Tribe of North & South Dakota";
  dc:title "Standing Rock Sioux Tribe of North & South Dakota";
  rdfs:comment "Standing Rock Sioux Tribe of North & South Dakota";
  dcterms:description "Standing Rock Sioux Tribe of North & South Dakota".

cs:TribalEntityUS\#29 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cahto Indian Tribe of the Laytonville Rancheria, C";
  dc:title "Cahto Indian Tribe of the Laytonville Rancheria, C";
  rdfs:comment "Cahto Indian Tribe of the Laytonville Rancheria, C";
  dcterms:description "Cahto Indian Tribe of the Laytonville Rancheria, C".

cs:TribalEntityUS\#290 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Stockbridge-Munsee Community of Mohican Indians of";
  dc:title "Stockbridge-Munsee Community of Mohican Indians of";
  rdfs:comment "Stockbridge-Munsee Community of Mohican Indians of";
  dcterms:description "Stockbridge-Munsee Community of Mohican Indians of".

cs:TribalEntityUS\#291 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Stillaguamish Tribe of Washington";
  dc:title "Stillaguamish Tribe of Washington";
  rdfs:comment "Stillaguamish Tribe of Washington";
  dcterms:description "Stillaguamish Tribe of Washington".

cs:TribalEntityUS\#292 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Summit Lake Paiute Tribe of Nevada";
  dc:title "Summit Lake Paiute Tribe of Nevada";
  rdfs:comment "Summit Lake Paiute Tribe of Nevada";
  dcterms:description "Summit Lake Paiute Tribe of Nevada".

cs:TribalEntityUS\#293 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Suquamish Indian Tribe of the Port Madison Reserva";
  dc:title "Suquamish Indian Tribe of the Port Madison Reserva";
  rdfs:comment "Suquamish Indian Tribe of the Port Madison Reserva";
  dcterms:description "Suquamish Indian Tribe of the Port Madison Reserva".

cs:TribalEntityUS\#294 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Susanville Indian Rancheria, California";
  dc:title "Susanville Indian Rancheria, California";
  rdfs:comment "Susanville Indian Rancheria, California";
  dcterms:description "Susanville Indian Rancheria, California".

cs:TribalEntityUS\#295 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Swinomish Indians of the Swinomish Reservation, Wa";
  dc:title "Swinomish Indians of the Swinomish Reservation, Wa";
  rdfs:comment "Swinomish Indians of the Swinomish Reservation, Wa";
  dcterms:description "Swinomish Indians of the Swinomish Reservation, Wa".

cs:TribalEntityUS\#296 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Sycuan Band of Diegueno Mission Indians of Califor";
  dc:title "Sycuan Band of Diegueno Mission Indians of Califor";
  rdfs:comment "Sycuan Band of Diegueno Mission Indians of Califor";
  dcterms:description "Sycuan Band of Diegueno Mission Indians of Califor".

cs:TribalEntityUS\#297 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Table Bluff Reservation - Wiyot Tribe, California";
  dc:title "Table Bluff Reservation - Wiyot Tribe, California";
  rdfs:comment "Table Bluff Reservation - Wiyot Tribe, California";
  dcterms:description "Table Bluff Reservation - Wiyot Tribe, California".

cs:TribalEntityUS\#298 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Table Mountain Rancheria of California";
  dc:title "Table Mountain Rancheria of California";
  rdfs:comment "Table Mountain Rancheria of California";
  dcterms:description "Table Mountain Rancheria of California".

cs:TribalEntityUS\#299 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Te-Moak Tribe of Western Shoshone Indians of Nevad";
  dc:title "Te-Moak Tribe of Western Shoshone Indians of Nevad";
  rdfs:comment "Te-Moak Tribe of Western Shoshone Indians of Nevad";
  dcterms:description "Te-Moak Tribe of Western Shoshone Indians of Nevad".

cs:TribalEntityUS\#3 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Ak Chin Indian Community of the Maricopa (Ak Chin)";
  dc:title "Ak Chin Indian Community of the Maricopa (Ak Chin)";
  rdfs:comment "Ak Chin Indian Community of the Maricopa (Ak Chin)";
  dcterms:description "Ak Chin Indian Community of the Maricopa (Ak Chin)".

cs:TribalEntityUS\#30 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "California Valley Miwok Tribe, California (formerl";
  dc:title "California Valley Miwok Tribe, California (formerl";
  rdfs:comment "California Valley Miwok Tribe, California (formerl";
  dcterms:description "California Valley Miwok Tribe, California (formerl".

cs:TribalEntityUS\#300 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Thlopthlocco Tribal Town, Oklahoma";
  dc:title "Thlopthlocco Tribal Town, Oklahoma";
  rdfs:comment "Thlopthlocco Tribal Town, Oklahoma";
  dcterms:description "Thlopthlocco Tribal Town, Oklahoma".

cs:TribalEntityUS\#301 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Three Affiliated Tribes of the Fort Berthold Reser";
  dc:title "Three Affiliated Tribes of the Fort Berthold Reser";
  rdfs:comment "Three Affiliated Tribes of the Fort Berthold Reser";
  dcterms:description "Three Affiliated Tribes of the Fort Berthold Reser".

cs:TribalEntityUS\#302 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Tohono O'odham Nation of Arizona";
  dc:title "Tohono O'odham Nation of Arizona";
  rdfs:comment "Tohono O'odham Nation of Arizona";
  dcterms:description "Tohono O'odham Nation of Arizona".

cs:TribalEntityUS\#303 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Tonawanda Band of Seneca Indians of New York";
  dc:title "Tonawanda Band of Seneca Indians of New York";
  rdfs:comment "Tonawanda Band of Seneca Indians of New York";
  dcterms:description "Tonawanda Band of Seneca Indians of New York".

cs:TribalEntityUS\#304 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Tonkawa Tribe of Indians of Oklahoma";
  dc:title "Tonkawa Tribe of Indians of Oklahoma";
  rdfs:comment "Tonkawa Tribe of Indians of Oklahoma";
  dcterms:description "Tonkawa Tribe of Indians of Oklahoma".

cs:TribalEntityUS\#305 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Tonto Apache Tribe of Arizona";
  dc:title "Tonto Apache Tribe of Arizona";
  rdfs:comment "Tonto Apache Tribe of Arizona";
  dcterms:description "Tonto Apache Tribe of Arizona".

cs:TribalEntityUS\#306 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Torres-Martinez Band of Cahuilla Mission Indians o";
  dc:title "Torres-Martinez Band of Cahuilla Mission Indians o";
  rdfs:comment "Torres-Martinez Band of Cahuilla Mission Indians o";
  dcterms:description "Torres-Martinez Band of Cahuilla Mission Indians o".

cs:TribalEntityUS\#307 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Tule River Indian Tribe of the Tule River Reservat";
  dc:title "Tule River Indian Tribe of the Tule River Reservat";
  rdfs:comment "Tule River Indian Tribe of the Tule River Reservat";
  dcterms:description "Tule River Indian Tribe of the Tule River Reservat".

cs:TribalEntityUS\#308 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Tulalip Tribes of the Tulalip Reservation, Washing";
  dc:title "Tulalip Tribes of the Tulalip Reservation, Washing";
  rdfs:comment "Tulalip Tribes of the Tulalip Reservation, Washing";
  dcterms:description "Tulalip Tribes of the Tulalip Reservation, Washing".

cs:TribalEntityUS\#309 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Tunica-Biloxi Indian Tribe of Louisiana";
  dc:title "Tunica-Biloxi Indian Tribe of Louisiana";
  rdfs:comment "Tunica-Biloxi Indian Tribe of Louisiana";
  dcterms:description "Tunica-Biloxi Indian Tribe of Louisiana".

cs:TribalEntityUS\#31 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Campo Band of Diegueno Mission Indians of the Camp";
  dc:title "Campo Band of Diegueno Mission Indians of the Camp";
  rdfs:comment "Campo Band of Diegueno Mission Indians of the Camp";
  dcterms:description "Campo Band of Diegueno Mission Indians of the Camp".

cs:TribalEntityUS\#310 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Tuolumne Band of Me-Wuk Indians of the Tuolumne Ra";
  dc:title "Tuolumne Band of Me-Wuk Indians of the Tuolumne Ra";
  rdfs:comment "Tuolumne Band of Me-Wuk Indians of the Tuolumne Ra";
  dcterms:description "Tuolumne Band of Me-Wuk Indians of the Tuolumne Ra".

cs:TribalEntityUS\#311 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Turtle Mountain Band of Chippewa Indians of North";
  dc:title "Turtle Mountain Band of Chippewa Indians of North";
  rdfs:comment "Turtle Mountain Band of Chippewa Indians of North";
  dcterms:description "Turtle Mountain Band of Chippewa Indians of North".

cs:TribalEntityUS\#312 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Tuscarora Nation of New York";
  dc:title "Tuscarora Nation of New York";
  rdfs:comment "Tuscarora Nation of New York";
  dcterms:description "Tuscarora Nation of New York".

cs:TribalEntityUS\#313 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Twenty-Nine Palms Band of Mission Indians of Calif";
  dc:title "Twenty-Nine Palms Band of Mission Indians of Calif";
  rdfs:comment "Twenty-Nine Palms Band of Mission Indians of Calif";
  dcterms:description "Twenty-Nine Palms Band of Mission Indians of Calif".

cs:TribalEntityUS\#314 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "United Auburn Indian Community of the Auburn Ranch";
  dc:title "United Auburn Indian Community of the Auburn Ranch";
  rdfs:comment "United Auburn Indian Community of the Auburn Ranch";
  dcterms:description "United Auburn Indian Community of the Auburn Ranch".

cs:TribalEntityUS\#315 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "United Keetoowah Band of Cherokee Indians of Oklah";
  dc:title "United Keetoowah Band of Cherokee Indians of Oklah";
  rdfs:comment "United Keetoowah Band of Cherokee Indians of Oklah";
  dcterms:description "United Keetoowah Band of Cherokee Indians of Oklah".

cs:TribalEntityUS\#316 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Upper Lake Band of Pomo Indians of Upper Lake Ranc";
  dc:title "Upper Lake Band of Pomo Indians of Upper Lake Ranc";
  rdfs:comment "Upper Lake Band of Pomo Indians of Upper Lake Ranc";
  dcterms:description "Upper Lake Band of Pomo Indians of Upper Lake Ranc".

cs:TribalEntityUS\#317 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Upper Sioux Indian Community of the Upper Sioux Re";
  dc:title "Upper Sioux Indian Community of the Upper Sioux Re";
  rdfs:comment "Upper Sioux Indian Community of the Upper Sioux Re";
  dcterms:description "Upper Sioux Indian Community of the Upper Sioux Re".

cs:TribalEntityUS\#318 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Upper Skagit Indian Tribe of Washington";
  dc:title "Upper Skagit Indian Tribe of Washington";
  rdfs:comment "Upper Skagit Indian Tribe of Washington";
  dcterms:description "Upper Skagit Indian Tribe of Washington".

cs:TribalEntityUS\#319 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Ute Indian Tribe of the Uintah & Ouray Reservation";
  dc:title "Ute Indian Tribe of the Uintah & Ouray Reservation";
  rdfs:comment "Ute Indian Tribe of the Uintah & Ouray Reservation";
  dcterms:description "Ute Indian Tribe of the Uintah & Ouray Reservation".

cs:TribalEntityUS\#32 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Capitan Grande Band of Diegueno Mission Indians of";
  dc:title "Capitan Grande Band of Diegueno Mission Indians of";
  rdfs:comment "Capitan Grande Band of Diegueno Mission Indians of";
  dcterms:description "Capitan Grande Band of Diegueno Mission Indians of".

cs:TribalEntityUS\#320 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Ute Mountain Tribe of the Ute Mountain Reservation";
  dc:title "Ute Mountain Tribe of the Ute Mountain Reservation";
  rdfs:comment "Ute Mountain Tribe of the Ute Mountain Reservation";
  dcterms:description "Ute Mountain Tribe of the Ute Mountain Reservation".

cs:TribalEntityUS\#321 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Utu Utu Gwaitu Paiute Tribe of the Benton Paiute R";
  dc:title "Utu Utu Gwaitu Paiute Tribe of the Benton Paiute R";
  rdfs:comment "Utu Utu Gwaitu Paiute Tribe of the Benton Paiute R";
  dcterms:description "Utu Utu Gwaitu Paiute Tribe of the Benton Paiute R".

cs:TribalEntityUS\#322 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Walker River Paiute Tribe of the Walker River Rese";
  dc:title "Walker River Paiute Tribe of the Walker River Rese";
  rdfs:comment "Walker River Paiute Tribe of the Walker River Rese";
  dcterms:description "Walker River Paiute Tribe of the Walker River Rese".

cs:TribalEntityUS\#323 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Wampanoag Tribe of Gay Head (Aquinnah) of Massachu";
  dc:title "Wampanoag Tribe of Gay Head (Aquinnah) of Massachu";
  rdfs:comment "Wampanoag Tribe of Gay Head (Aquinnah) of Massachu";
  dcterms:description "Wampanoag Tribe of Gay Head (Aquinnah) of Massachu".

cs:TribalEntityUS\#324 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Washoe Tribe of Nevada & California (Carson Colony";
  dc:title "Washoe Tribe of Nevada & California (Carson Colony";
  rdfs:comment "Washoe Tribe of Nevada & California (Carson Colony";
  dcterms:description "Washoe Tribe of Nevada & California (Carson Colony".

cs:TribalEntityUS\#325 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "White Mountain Apache Tribe of the Fort Apache Res";
  dc:title "White Mountain Apache Tribe of the Fort Apache Res";
  rdfs:comment "White Mountain Apache Tribe of the Fort Apache Res";
  dcterms:description "White Mountain Apache Tribe of the Fort Apache Res".

cs:TribalEntityUS\#326 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Wichita and Affiliated Tribes (Wichita, Keechi, Wa";
  dc:title "Wichita and Affiliated Tribes (Wichita, Keechi, Wa";
  rdfs:comment "Wichita and Affiliated Tribes (Wichita, Keechi, Wa";
  dcterms:description "Wichita and Affiliated Tribes (Wichita, Keechi, Wa".

cs:TribalEntityUS\#327 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Winnebago Tribe of Nebraska";
  dc:title "Winnebago Tribe of Nebraska";
  rdfs:comment "Winnebago Tribe of Nebraska";
  dcterms:description "Winnebago Tribe of Nebraska".

cs:TribalEntityUS\#328 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Winnemucca Indian Colony of Nevada";
  dc:title "Winnemucca Indian Colony of Nevada";
  rdfs:comment "Winnemucca Indian Colony of Nevada";
  dcterms:description "Winnemucca Indian Colony of Nevada".

cs:TribalEntityUS\#329 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Wyandotte Tribe of Oklahoma";
  dc:title "Wyandotte Tribe of Oklahoma";
  rdfs:comment "Wyandotte Tribe of Oklahoma";
  dcterms:description "Wyandotte Tribe of Oklahoma".

cs:TribalEntityUS\#33 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Barona Group of Capitan Grande Band of Mission Ind";
  dc:title "Barona Group of Capitan Grande Band of Mission Ind";
  rdfs:comment "Barona Group of Capitan Grande Band of Mission Ind";
  dcterms:description "Barona Group of Capitan Grande Band of Mission Ind".

cs:TribalEntityUS\#330 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Yankton Sioux Tribe of South Dakota";
  dc:title "Yankton Sioux Tribe of South Dakota";
  rdfs:comment "Yankton Sioux Tribe of South Dakota";
  dcterms:description "Yankton Sioux Tribe of South Dakota".

cs:TribalEntityUS\#331 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Yavapai-Apache Nation of the Camp Verde Indian Res";
  dc:title "Yavapai-Apache Nation of the Camp Verde Indian Res";
  rdfs:comment "Yavapai-Apache Nation of the Camp Verde Indian Res";
  dcterms:description "Yavapai-Apache Nation of the Camp Verde Indian Res".

cs:TribalEntityUS\#332 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Yavapai-Prescott Tribe of the Yavapai Reservation,";
  dc:title "Yavapai-Prescott Tribe of the Yavapai Reservation,";
  rdfs:comment "Yavapai-Prescott Tribe of the Yavapai Reservation,";
  dcterms:description "Yavapai-Prescott Tribe of the Yavapai Reservation,".

cs:TribalEntityUS\#333 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Yerington Paiute Tribe of the Yerington Colony & C";
  dc:title "Yerington Paiute Tribe of the Yerington Colony & C";
  rdfs:comment "Yerington Paiute Tribe of the Yerington Colony & C";
  dcterms:description "Yerington Paiute Tribe of the Yerington Colony & C".

cs:TribalEntityUS\#334 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Yomba Shoshone Tribe of the Yomba Reservation, Nev";
  dc:title "Yomba Shoshone Tribe of the Yomba Reservation, Nev";
  rdfs:comment "Yomba Shoshone Tribe of the Yomba Reservation, Nev";
  dcterms:description "Yomba Shoshone Tribe of the Yomba Reservation, Nev".

cs:TribalEntityUS\#335 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Ysleta Del Sur Pueblo of Texas";
  dc:title "Ysleta Del Sur Pueblo of Texas";
  rdfs:comment "Ysleta Del Sur Pueblo of Texas";
  dcterms:description "Ysleta Del Sur Pueblo of Texas".

cs:TribalEntityUS\#336 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Yurok Tribe of the Yurok Reservation, California";
  dc:title "Yurok Tribe of the Yurok Reservation, California";
  rdfs:comment "Yurok Tribe of the Yurok Reservation, California";
  dcterms:description "Yurok Tribe of the Yurok Reservation, California".

cs:TribalEntityUS\#337 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Zuni Tribe of the Zuni Reservation, New Mexico";
  dc:title "Zuni Tribe of the Zuni Reservation, New Mexico";
  rdfs:comment "Zuni Tribe of the Zuni Reservation, New Mexico";
  dcterms:description "Zuni Tribe of the Zuni Reservation, New Mexico".

cs:TribalEntityUS\#34 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Viejas (Baron Long) Group of Capitan Grande Band o";
  dc:title "Viejas (Baron Long) Group of Capitan Grande Band o";
  rdfs:comment "Viejas (Baron Long) Group of Capitan Grande Band o";
  dcterms:description "Viejas (Baron Long) Group of Capitan Grande Band o".

cs:TribalEntityUS\#35 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Catawba Indian Nation (aka Catawba Tribe of South";
  dc:title "Catawba Indian Nation (aka Catawba Tribe of South";
  rdfs:comment "Catawba Indian Nation (aka Catawba Tribe of South";
  dcterms:description "Catawba Indian Nation (aka Catawba Tribe of South".

cs:TribalEntityUS\#36 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cayuga Nation of New York";
  dc:title "Cayuga Nation of New York";
  rdfs:comment "Cayuga Nation of New York";
  dcterms:description "Cayuga Nation of New York".

cs:TribalEntityUS\#37 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cedarville Rancheria, California";
  dc:title "Cedarville Rancheria, California";
  rdfs:comment "Cedarville Rancheria, California";
  dcterms:description "Cedarville Rancheria, California".

cs:TribalEntityUS\#38 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Chemehuevi Indian Tribe of the Chemehuevi Reservat";
  dc:title "Chemehuevi Indian Tribe of the Chemehuevi Reservat";
  rdfs:comment "Chemehuevi Indian Tribe of the Chemehuevi Reservat";
  dcterms:description "Chemehuevi Indian Tribe of the Chemehuevi Reservat".

cs:TribalEntityUS\#39 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cher-Ae Heights Indian Community of the Trinidad R";
  dc:title "Cher-Ae Heights Indian Community of the Trinidad R";
  rdfs:comment "Cher-Ae Heights Indian Community of the Trinidad R";
  dcterms:description "Cher-Ae Heights Indian Community of the Trinidad R".

cs:TribalEntityUS\#4 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Alabama-Coushatta Tribes of Texas";
  dc:title "Alabama-Coushatta Tribes of Texas";
  rdfs:comment "Alabama-Coushatta Tribes of Texas";
  dcterms:description "Alabama-Coushatta Tribes of Texas".

cs:TribalEntityUS\#40 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cherokee Nation, Oklahoma";
  dc:title "Cherokee Nation, Oklahoma";
  rdfs:comment "Cherokee Nation, Oklahoma";
  dcterms:description "Cherokee Nation, Oklahoma".

cs:TribalEntityUS\#41 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cheyenne-Arapaho Tribes of Oklahoma";
  dc:title "Cheyenne-Arapaho Tribes of Oklahoma";
  rdfs:comment "Cheyenne-Arapaho Tribes of Oklahoma";
  dcterms:description "Cheyenne-Arapaho Tribes of Oklahoma".

cs:TribalEntityUS\#42 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cheyenne River Sioux Tribe of the Cheyenne River R";
  dc:title "Cheyenne River Sioux Tribe of the Cheyenne River R";
  rdfs:comment "Cheyenne River Sioux Tribe of the Cheyenne River R";
  dcterms:description "Cheyenne River Sioux Tribe of the Cheyenne River R".

cs:TribalEntityUS\#43 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Chickasaw Nation, Oklahoma";
  dc:title "Chickasaw Nation, Oklahoma";
  rdfs:comment "Chickasaw Nation, Oklahoma";
  dcterms:description "Chickasaw Nation, Oklahoma".

cs:TribalEntityUS\#44 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Chicken Ranch Rancheria of Me-Wuk Indians of Calif";
  dc:title "Chicken Ranch Rancheria of Me-Wuk Indians of Calif";
  rdfs:comment "Chicken Ranch Rancheria of Me-Wuk Indians of Calif";
  dcterms:description "Chicken Ranch Rancheria of Me-Wuk Indians of Calif".

cs:TribalEntityUS\#45 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Chippewa-Cree Indians of the Rocky Boy's Reservati";
  dc:title "Chippewa-Cree Indians of the Rocky Boy's Reservati";
  rdfs:comment "Chippewa-Cree Indians of the Rocky Boy's Reservati";
  dcterms:description "Chippewa-Cree Indians of the Rocky Boy's Reservati".

cs:TribalEntityUS\#46 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Chitimacha Tribe of Louisiana";
  dc:title "Chitimacha Tribe of Louisiana";
  rdfs:comment "Chitimacha Tribe of Louisiana";
  dcterms:description "Chitimacha Tribe of Louisiana".

cs:TribalEntityUS\#47 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Choctaw Nation of Oklahoma";
  dc:title "Choctaw Nation of Oklahoma";
  rdfs:comment "Choctaw Nation of Oklahoma";
  dcterms:description "Choctaw Nation of Oklahoma".

cs:TribalEntityUS\#48 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Citizen Potawatomi Nation, Oklahoma";
  dc:title "Citizen Potawatomi Nation, Oklahoma";
  rdfs:comment "Citizen Potawatomi Nation, Oklahoma";
  dcterms:description "Citizen Potawatomi Nation, Oklahoma".

cs:TribalEntityUS\#49 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cloverdale Rancheria of Pomo Indians of California";
  dc:title "Cloverdale Rancheria of Pomo Indians of California";
  rdfs:comment "Cloverdale Rancheria of Pomo Indians of California";
  dcterms:description "Cloverdale Rancheria of Pomo Indians of California".

cs:TribalEntityUS\#5 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Alabama-Quassarte Tribal Town, Oklahoma";
  dc:title "Alabama-Quassarte Tribal Town, Oklahoma";
  rdfs:comment "Alabama-Quassarte Tribal Town, Oklahoma";
  dcterms:description "Alabama-Quassarte Tribal Town, Oklahoma".

cs:TribalEntityUS\#50 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cocopah Tribe of Arizona";
  dc:title "Cocopah Tribe of Arizona";
  rdfs:comment "Cocopah Tribe of Arizona";
  dcterms:description "Cocopah Tribe of Arizona".

cs:TribalEntityUS\#51 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Coeur D'Alene Tribe of the Coeur D'Alene Reservati";
  dc:title "Coeur D'Alene Tribe of the Coeur D'Alene Reservati";
  rdfs:comment "Coeur D'Alene Tribe of the Coeur D'Alene Reservati";
  dcterms:description "Coeur D'Alene Tribe of the Coeur D'Alene Reservati".

cs:TribalEntityUS\#52 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cold Springs Rancheria of Mono Indians of Californ";
  dc:title "Cold Springs Rancheria of Mono Indians of Californ";
  rdfs:comment "Cold Springs Rancheria of Mono Indians of Californ";
  dcterms:description "Cold Springs Rancheria of Mono Indians of Californ".

cs:TribalEntityUS\#53 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Colorado River Indian Tribes of the Colorado River";
  dc:title "Colorado River Indian Tribes of the Colorado River";
  rdfs:comment "Colorado River Indian Tribes of the Colorado River";
  dcterms:description "Colorado River Indian Tribes of the Colorado River".

cs:TribalEntityUS\#54 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Comanche Indian Tribe, Oklahoma";
  dc:title "Comanche Indian Tribe, Oklahoma";
  rdfs:comment "Comanche Indian Tribe, Oklahoma";
  dcterms:description "Comanche Indian Tribe, Oklahoma".

cs:TribalEntityUS\#55 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Confederated Salish & Kootenai Tribes of the Flath";
  dc:title "Confederated Salish & Kootenai Tribes of the Flath";
  rdfs:comment "Confederated Salish & Kootenai Tribes of the Flath";
  dcterms:description "Confederated Salish & Kootenai Tribes of the Flath".

cs:TribalEntityUS\#56 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Confederated Tribes of the Chehalis Reservation, W";
  dc:title "Confederated Tribes of the Chehalis Reservation, W";
  rdfs:comment "Confederated Tribes of the Chehalis Reservation, W";
  dcterms:description "Confederated Tribes of the Chehalis Reservation, W".

cs:TribalEntityUS\#57 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Confederated Tribes of the Colville Reservation, W";
  dc:title "Confederated Tribes of the Colville Reservation, W";
  rdfs:comment "Confederated Tribes of the Colville Reservation, W";
  dcterms:description "Confederated Tribes of the Colville Reservation, W".

cs:TribalEntityUS\#58 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Confederated Tribes of the Coos, Lower Umpqua and";
  dc:title "Confederated Tribes of the Coos, Lower Umpqua and";
  rdfs:comment "Confederated Tribes of the Coos, Lower Umpqua and";
  dcterms:description "Confederated Tribes of the Coos, Lower Umpqua and".

cs:TribalEntityUS\#59 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Confederated Tribes of the Goshute Reservation, Ne";
  dc:title "Confederated Tribes of the Goshute Reservation, Ne";
  rdfs:comment "Confederated Tribes of the Goshute Reservation, Ne";
  dcterms:description "Confederated Tribes of the Goshute Reservation, Ne".

cs:TribalEntityUS\#6 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Alturas Indian Rancheria, California";
  dc:title "Alturas Indian Rancheria, California";
  rdfs:comment "Alturas Indian Rancheria, California";
  dcterms:description "Alturas Indian Rancheria, California".

cs:TribalEntityUS\#60 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Confederated Tribes of the Grand Ronde Community o";
  dc:title "Confederated Tribes of the Grand Ronde Community o";
  rdfs:comment "Confederated Tribes of the Grand Ronde Community o";
  dcterms:description "Confederated Tribes of the Grand Ronde Community o".

cs:TribalEntityUS\#61 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Confederated Tribes of the Siletz Reservation, Ore";
  dc:title "Confederated Tribes of the Siletz Reservation, Ore";
  rdfs:comment "Confederated Tribes of the Siletz Reservation, Ore";
  dcterms:description "Confederated Tribes of the Siletz Reservation, Ore".

cs:TribalEntityUS\#62 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Confederated Tribes of the Umatilla Reservation, O";
  dc:title "Confederated Tribes of the Umatilla Reservation, O";
  rdfs:comment "Confederated Tribes of the Umatilla Reservation, O";
  dcterms:description "Confederated Tribes of the Umatilla Reservation, O".

cs:TribalEntityUS\#63 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Confederated Tribes of the Warm Springs Reservatio";
  dc:title "Confederated Tribes of the Warm Springs Reservatio";
  rdfs:comment "Confederated Tribes of the Warm Springs Reservatio";
  dcterms:description "Confederated Tribes of the Warm Springs Reservatio".

cs:TribalEntityUS\#64 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Confederated Tribes and Bands of the Yakama Indian";
  dc:title "Confederated Tribes and Bands of the Yakama Indian";
  rdfs:comment "Confederated Tribes and Bands of the Yakama Indian";
  dcterms:description "Confederated Tribes and Bands of the Yakama Indian".

cs:TribalEntityUS\#65 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Coquille Tribe of Oregon";
  dc:title "Coquille Tribe of Oregon";
  rdfs:comment "Coquille Tribe of Oregon";
  dcterms:description "Coquille Tribe of Oregon".

cs:TribalEntityUS\#66 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cortina Indian Rancheria of Wintun Indians of Cali";
  dc:title "Cortina Indian Rancheria of Wintun Indians of Cali";
  rdfs:comment "Cortina Indian Rancheria of Wintun Indians of Cali";
  dcterms:description "Cortina Indian Rancheria of Wintun Indians of Cali".

cs:TribalEntityUS\#67 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Coushatta Tribe of Louisiana";
  dc:title "Coushatta Tribe of Louisiana";
  rdfs:comment "Coushatta Tribe of Louisiana";
  dcterms:description "Coushatta Tribe of Louisiana".

cs:TribalEntityUS\#68 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cow Creek Band of Umpqua Indians of Oregon";
  dc:title "Cow Creek Band of Umpqua Indians of Oregon";
  rdfs:comment "Cow Creek Band of Umpqua Indians of Oregon";
  dcterms:description "Cow Creek Band of Umpqua Indians of Oregon".

cs:TribalEntityUS\#69 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Coyote Valley Band of Pomo Indians of California";
  dc:title "Coyote Valley Band of Pomo Indians of California";
  rdfs:comment "Coyote Valley Band of Pomo Indians of California";
  dcterms:description "Coyote Valley Band of Pomo Indians of California".

cs:TribalEntityUS\#7 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Apache Tribe of Oklahoma";
  dc:title "Apache Tribe of Oklahoma";
  rdfs:comment "Apache Tribe of Oklahoma";
  dcterms:description "Apache Tribe of Oklahoma".

cs:TribalEntityUS\#70 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Crow Tribe of Montana";
  dc:title "Crow Tribe of Montana";
  rdfs:comment "Crow Tribe of Montana";
  dcterms:description "Crow Tribe of Montana".

cs:TribalEntityUS\#71 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Crow Creek Sioux Tribe of the Crow Creek Reservati";
  dc:title "Crow Creek Sioux Tribe of the Crow Creek Reservati";
  rdfs:comment "Crow Creek Sioux Tribe of the Crow Creek Reservati";
  dcterms:description "Crow Creek Sioux Tribe of the Crow Creek Reservati".

cs:TribalEntityUS\#72 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Cuyapaipe Community of Diegueno Mission Indians of";
  dc:title "Cuyapaipe Community of Diegueno Mission Indians of";
  rdfs:comment "Cuyapaipe Community of Diegueno Mission Indians of";
  dcterms:description "Cuyapaipe Community of Diegueno Mission Indians of".

cs:TribalEntityUS\#73 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Death Valley Timbi-Sha Shoshone Band of California";
  dc:title "Death Valley Timbi-Sha Shoshone Band of California";
  rdfs:comment "Death Valley Timbi-Sha Shoshone Band of California";
  dcterms:description "Death Valley Timbi-Sha Shoshone Band of California".

cs:TribalEntityUS\#74 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Delaware Nation, Oklahoma (formerly Delaware Tribe";
  dc:title "Delaware Nation, Oklahoma (formerly Delaware Tribe";
  rdfs:comment "Delaware Nation, Oklahoma (formerly Delaware Tribe";
  dcterms:description "Delaware Nation, Oklahoma (formerly Delaware Tribe".

cs:TribalEntityUS\#75 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Delaware Tribe of Indians, Oklahoma";
  dc:title "Delaware Tribe of Indians, Oklahoma";
  rdfs:comment "Delaware Tribe of Indians, Oklahoma";
  dcterms:description "Delaware Tribe of Indians, Oklahoma".

cs:TribalEntityUS\#76 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Dry Creek Rancheria of Pomo Indians of California";
  dc:title "Dry Creek Rancheria of Pomo Indians of California";
  rdfs:comment "Dry Creek Rancheria of Pomo Indians of California";
  dcterms:description "Dry Creek Rancheria of Pomo Indians of California".

cs:TribalEntityUS\#77 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Duckwater Shoshone Tribe of the Duckwater Reservat";
  dc:title "Duckwater Shoshone Tribe of the Duckwater Reservat";
  rdfs:comment "Duckwater Shoshone Tribe of the Duckwater Reservat";
  dcterms:description "Duckwater Shoshone Tribe of the Duckwater Reservat".

cs:TribalEntityUS\#78 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Eastern Band of Cherokee Indians of North Carolina";
  dc:title "Eastern Band of Cherokee Indians of North Carolina";
  rdfs:comment "Eastern Band of Cherokee Indians of North Carolina";
  dcterms:description "Eastern Band of Cherokee Indians of North Carolina".

cs:TribalEntityUS\#79 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Eastern Shawnee Tribe of Oklahoma";
  dc:title "Eastern Shawnee Tribe of Oklahoma";
  rdfs:comment "Eastern Shawnee Tribe of Oklahoma";
  dcterms:description "Eastern Shawnee Tribe of Oklahoma".

cs:TribalEntityUS\#8 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Arapahoe Tribe of the Wind River Reservation, Wyom";
  dc:title "Arapahoe Tribe of the Wind River Reservation, Wyom";
  rdfs:comment "Arapahoe Tribe of the Wind River Reservation, Wyom";
  dcterms:description "Arapahoe Tribe of the Wind River Reservation, Wyom".

cs:TribalEntityUS\#80 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Elem Indian Colony of Pomo Indians of the Sulphur";
  dc:title "Elem Indian Colony of Pomo Indians of the Sulphur";
  rdfs:comment "Elem Indian Colony of Pomo Indians of the Sulphur";
  dcterms:description "Elem Indian Colony of Pomo Indians of the Sulphur".

cs:TribalEntityUS\#81 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Elk Valley Rancheria, California";
  dc:title "Elk Valley Rancheria, California";
  rdfs:comment "Elk Valley Rancheria, California";
  dcterms:description "Elk Valley Rancheria, California".

cs:TribalEntityUS\#82 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Ely Shoshone Tribe of Nevada";
  dc:title "Ely Shoshone Tribe of Nevada";
  rdfs:comment "Ely Shoshone Tribe of Nevada";
  dcterms:description "Ely Shoshone Tribe of Nevada".

cs:TribalEntityUS\#83 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Enterprise Rancheria of Maidu Indians of Californi";
  dc:title "Enterprise Rancheria of Maidu Indians of Californi";
  rdfs:comment "Enterprise Rancheria of Maidu Indians of Californi";
  dcterms:description "Enterprise Rancheria of Maidu Indians of Californi".

cs:TribalEntityUS\#84 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Flandreau Santee Sioux Tribe of South Dakota";
  dc:title "Flandreau Santee Sioux Tribe of South Dakota";
  rdfs:comment "Flandreau Santee Sioux Tribe of South Dakota";
  dcterms:description "Flandreau Santee Sioux Tribe of South Dakota".

cs:TribalEntityUS\#85 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Forest County Potawatomi Community of Wisconsin Po";
  dc:title "Forest County Potawatomi Community of Wisconsin Po";
  rdfs:comment "Forest County Potawatomi Community of Wisconsin Po";
  dcterms:description "Forest County Potawatomi Community of Wisconsin Po".

cs:TribalEntityUS\#86 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Fort Belknap Indian Community of the Fort Belknap";
  dc:title "Fort Belknap Indian Community of the Fort Belknap";
  rdfs:comment "Fort Belknap Indian Community of the Fort Belknap";
  dcterms:description "Fort Belknap Indian Community of the Fort Belknap".

cs:TribalEntityUS\#87 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Fort Bidwell Indian Community of the Fort Bidwell";
  dc:title "Fort Bidwell Indian Community of the Fort Bidwell";
  rdfs:comment "Fort Bidwell Indian Community of the Fort Bidwell";
  dcterms:description "Fort Bidwell Indian Community of the Fort Bidwell".

cs:TribalEntityUS\#88 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Fort Independence Indian Community of Paiute India";
  dc:title "Fort Independence Indian Community of Paiute India";
  rdfs:comment "Fort Independence Indian Community of Paiute India";
  dcterms:description "Fort Independence Indian Community of Paiute India".

cs:TribalEntityUS\#89 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Fort McDermitt Paiute and Shoshone Tribes of the F";
  dc:title "Fort McDermitt Paiute and Shoshone Tribes of the F";
  rdfs:comment "Fort McDermitt Paiute and Shoshone Tribes of the F";
  dcterms:description "Fort McDermitt Paiute and Shoshone Tribes of the F".

cs:TribalEntityUS\#9 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Aroostook Band of Micmac Indians of Maine";
  dc:title "Aroostook Band of Micmac Indians of Maine";
  rdfs:comment "Aroostook Band of Micmac Indians of Maine";
  dcterms:description "Aroostook Band of Micmac Indians of Maine".

cs:TribalEntityUS\#90 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Fort McDowell Yavapai Nation, Arizona (formerly th";
  dc:title "Fort McDowell Yavapai Nation, Arizona (formerly th";
  rdfs:comment "Fort McDowell Yavapai Nation, Arizona (formerly th";
  dcterms:description "Fort McDowell Yavapai Nation, Arizona (formerly th".

cs:TribalEntityUS\#91 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Fort Mojave Indian Tribe of Arizona, California";
  dc:title "Fort Mojave Indian Tribe of Arizona, California";
  rdfs:comment "Fort Mojave Indian Tribe of Arizona, California";
  dcterms:description "Fort Mojave Indian Tribe of Arizona, California".

cs:TribalEntityUS\#92 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Fort Sill Apache Tribe of Oklahoma";
  dc:title "Fort Sill Apache Tribe of Oklahoma";
  rdfs:comment "Fort Sill Apache Tribe of Oklahoma";
  dcterms:description "Fort Sill Apache Tribe of Oklahoma".

cs:TribalEntityUS\#93 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Gila River Indian Community of the Gila River Indi";
  dc:title "Gila River Indian Community of the Gila River Indi";
  rdfs:comment "Gila River Indian Community of the Gila River Indi";
  dcterms:description "Gila River Indian Community of the Gila River Indi".

cs:TribalEntityUS\#94 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Grand Traverse Band of Ottawa & Chippewa Indians o";
  dc:title "Grand Traverse Band of Ottawa & Chippewa Indians o";
  rdfs:comment "Grand Traverse Band of Ottawa & Chippewa Indians o";
  dcterms:description "Grand Traverse Band of Ottawa & Chippewa Indians o".

cs:TribalEntityUS\#95 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Graton Rancheria, California";
  dc:title "Graton Rancheria, California";
  rdfs:comment "Graton Rancheria, California";
  dcterms:description "Graton Rancheria, California".

cs:TribalEntityUS\#96 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Greenville Rancheria of Maidu Indians of Californi";
  dc:title "Greenville Rancheria of Maidu Indians of Californi";
  rdfs:comment "Greenville Rancheria of Maidu Indians of Californi";
  dcterms:description "Greenville Rancheria of Maidu Indians of Californi".

cs:TribalEntityUS\#97 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Grindstone Indian Rancheria of Wintun-Wailaki Indi";
  dc:title "Grindstone Indian Rancheria of Wintun-Wailaki Indi";
  rdfs:comment "Grindstone Indian Rancheria of Wintun-Wailaki Indi";
  dcterms:description "Grindstone Indian Rancheria of Wintun-Wailaki Indi".

cs:TribalEntityUS\#98 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Guidiville Rancheria of California";
  dc:title "Guidiville Rancheria of California";
  rdfs:comment "Guidiville Rancheria of California";
  dcterms:description "Guidiville Rancheria of California".

cs:TribalEntityUS\#99 rdfs:subClassOf cs:TribalEntityUS\#%5fNativeEntityContiguous;
  rdfs:label "Hannahville Indian Community of Wisconsin Potawato";
  dc:title "Hannahville Indian Community of Wisconsin Potawato";
  rdfs:comment "Hannahville Indian Community of Wisconsin Potawato";
  dcterms:description "Hannahville Indian Community of Wisconsin Potawato".

# - vs:v3-VaccineManufacturer --------------------------------------------------

vs:v3-VaccineManufacturer a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System VaccineManufacturer";
  dc:title "v3 Code System VaccineManufacturer";
  rdfs:comment " The manufacturer of a vaccine.";
  dcterms:description " The manufacturer of a vaccine.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:VaccineManufacturer.

cs:VaccineManufacturer.system a fhir:CodeSystem;
  rdfs:label "v3 Code System VaccineManufacturer";
  dc:title "v3 Code System VaccineManufacturer";
  rdfs:comment " The manufacturer of a vaccine.";
  dcterms:description " The manufacturer of a vaccine.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:VaccineManufacturer a fhir:Concept.

cs:VaccineManufacturer\#AB rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Abbott Laboratories (includes Ross Products Division)";
  dc:title "Abbott Laboratories (includes Ross Products Division)";
  rdfs:comment "Abbott Laboratories (includes Ross Products Division)";
  dcterms:description "Abbott Laboratories (includes Ross Products Division)".

cs:VaccineManufacturer\#AD rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Adams Laboratories";
  dc:title "Adams Laboratories";
  rdfs:comment "Adams Laboratories";
  dcterms:description "Adams Laboratories".

cs:VaccineManufacturer\#ALP rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Alpha Therapeutic Corporation";
  dc:title "Alpha Therapeutic Corporation";
  rdfs:comment "Alpha Therapeutic Corporation";
  dcterms:description "Alpha Therapeutic Corporation".

cs:VaccineManufacturer\#AR rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Armour [Inactive - use CEN]";
  dc:title "Armour [Inactive - use CEN]";
  rdfs:comment "Armour [Inactive-use CEN]";
  dcterms:description "Armour [Inactive-use CEN]".

cs:VaccineManufacturer\#AVI rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Aviron";
  dc:title "Aviron";
  rdfs:comment "Aviron";
  dcterms:description "Aviron".

cs:VaccineManufacturer\#BA rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Baxter Healthcare Corporation";
  dc:title "Baxter Healthcare Corporation";
  rdfs:comment "Baxter Healthcare Corporation";
  dcterms:description "Baxter Healthcare Corporation".

cs:VaccineManufacturer\#BAY rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Bayer Corporation (includes Miles, Inc. and Cutter Laboratories)";
  dc:title "Bayer Corporation (includes Miles, Inc. and Cutter Laboratories)";
  rdfs:comment "Bayer Corporation (includes Miles, Inc. and Cutter Laboratories)";
  dcterms:description "Bayer Corporation (includes Miles, Inc. and Cutter Laboratories)".

cs:VaccineManufacturer\#BP rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Berna Products [Inactive - use BPC]";
  dc:title "Berna Products [Inactive - use BPC]";
  rdfs:comment "Berna Products [Inactive-use BPC]";
  dcterms:description "Berna Products [Inactive-use BPC]".

cs:VaccineManufacturer\#BPC rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Berna Products Corporation (includes Swiss Serum and Vaccine Institute Berne)";
  dc:title "Berna Products Corporation (includes Swiss Serum and Vaccine Institute Berne)";
  rdfs:comment "Berna Products Corporation (includes Swiss Serum and Vaccine Institute Berne)";
  dcterms:description "Berna Products Corporation (includes Swiss Serum and Vaccine Institute Berne)".

cs:VaccineManufacturer\#CEN rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Centeon L.L.C. (includes Armour Pharmaceutical Company)";
  dc:title "Centeon L.L.C. (includes Armour Pharmaceutical Company)";
  rdfs:comment "Centeon L.L.C. (includes Armour Pharmaceutical Company)";
  dcterms:description "Centeon L.L.C. (includes Armour Pharmaceutical Company)".

cs:VaccineManufacturer\#CHI rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Chiron Corporation";
  dc:title "Chiron Corporation";
  rdfs:comment "Chiron Corporation";
  dcterms:description "Chiron Corporation".

cs:VaccineManufacturer\#CON rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Connaught [Inactive - use PMC]";
  dc:title "Connaught [Inactive - use PMC]";
  rdfs:comment "Connaught [Inactive-use PMC]";
  dcterms:description "Connaught [Inactive-use PMC]".

cs:VaccineManufacturer\#EVN rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Evans Medical Limited (an affiliate of Medeva Pharmaceuticals, Inc.)";
  dc:title "Evans Medical Limited (an affiliate of Medeva Pharmaceuticals, Inc.)";
  rdfs:comment "Evans Medical Limited (an affiliate of Medeva Pharmaceuticals, Inc.)";
  dcterms:description "Evans Medical Limited (an affiliate of Medeva Pharmaceuticals, Inc.)".

cs:VaccineManufacturer\#GRE rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Greer Laboratories, Inc.";
  dc:title "Greer Laboratories, Inc.";
  rdfs:comment "Greer Laboratories, Inc.";
  dcterms:description "Greer Laboratories, Inc.".

cs:VaccineManufacturer\#IAG rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Immuno International AG";
  dc:title "Immuno International AG";
  rdfs:comment "Immuno International AG";
  dcterms:description "Immuno International AG".

cs:VaccineManufacturer\#IM rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Merieux [Inactive - use PMC]";
  dc:title "Merieux [Inactive - use PMC]";
  rdfs:comment "Merieux [Inactive-use PMC]";
  dcterms:description "Merieux [Inactive-use PMC]".

cs:VaccineManufacturer\#IUS rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Immuno-U.S., Inc.";
  dc:title "Immuno-U.S., Inc.";
  rdfs:comment "Immuno-U.S., Inc.";
  dcterms:description "Immuno-U.S., Inc.".

cs:VaccineManufacturer\#JPN rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "The Research Foundation for Microbial Diseases of Osaka University (BIKEN)";
  dc:title "The Research Foundation for Microbial Diseases of Osaka University (BIKEN)";
  rdfs:comment "The Research Foundation for Microbial Diseases of Osaka University (BIKEN)";
  dcterms:description "The Research Foundation for Microbial Diseases of Osaka University (BIKEN)".

cs:VaccineManufacturer\#KGC rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Korea Green Cross Corporation";
  dc:title "Korea Green Cross Corporation";
  rdfs:comment "Korea Green Cross Corporation";
  dcterms:description "Korea Green Cross Corporation".

cs:VaccineManufacturer\#LED rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Lederle [Inactive - use WAL]";
  dc:title "Lederle [Inactive - use WAL]";
  rdfs:comment "Lederle [Inactive-use WAL]";
  dcterms:description "Lederle [Inactive-use WAL]".

cs:VaccineManufacturer\#MA rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Massachusetts Public Health Biologic Laboratories";
  dc:title "Massachusetts Public Health Biologic Laboratories";
  rdfs:comment "Massachusetts Public Health Biologic Laboratories";
  dcterms:description "Massachusetts Public Health Biologic Laboratories".

cs:VaccineManufacturer\#MED rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "MedImmune, Inc.";
  dc:title "MedImmune, Inc.";
  rdfs:comment "MedImmune, Inc.";
  dcterms:description "MedImmune, Inc.".

cs:VaccineManufacturer\#MIL rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Miles [Inactive - use BAY]";
  dc:title "Miles [Inactive - use BAY]";
  rdfs:comment "Miles [Inactive-use BAY]";
  dcterms:description "Miles [Inactive-use BAY]".

cs:VaccineManufacturer\#MIP rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Bioport Corporation (formerly Michigan Biologic Products Institute)";
  dc:title "Bioport Corporation (formerly Michigan Biologic Products Institute)";
  rdfs:comment "Bioport Corporation (formerly Michigan Biologic Products Institute)";
  dcterms:description "Bioport Corporation (formerly Michigan Biologic Products Institute)".

cs:VaccineManufacturer\#MSD rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Merck and Co., Inc.";
  dc:title "Merck and Co., Inc.";
  rdfs:comment "Merck & Co., Inc.";
  dcterms:description "Merck & Co., Inc.".

cs:VaccineManufacturer\#NAB rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "NABI (formerly North American Biologicals, Inc.)";
  dc:title "NABI (formerly North American Biologicals, Inc.)";
  rdfs:comment "NABI (formerly North American Biologicals, Inc.)";
  dcterms:description "NABI (formerly North American Biologicals, Inc.)".

cs:VaccineManufacturer\#NAV rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "North American Vaccine, Inc.";
  dc:title "North American Vaccine, Inc.";
  rdfs:comment "North American Vaccine, Inc.";
  dcterms:description "North American Vaccine, Inc.".

cs:VaccineManufacturer\#NOV rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Novartis Pharmaceutical Corporation (includes Ciba-Geigy Limited and Sandoz Limited)";
  dc:title "Novartis Pharmaceutical Corporation (includes Ciba-Geigy Limited and Sandoz Limited)";
  rdfs:comment "Novartis Pharmaceutical Corporation (includes Ciba-Geigy Limited and Sandoz Limited)";
  dcterms:description "Novartis Pharmaceutical Corporation (includes Ciba-Geigy Limited and Sandoz Limited)".

cs:VaccineManufacturer\#NYB rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "New York Blood Center";
  dc:title "New York Blood Center";
  rdfs:comment "New York Blood Center";
  dcterms:description "New York Blood Center".

cs:VaccineManufacturer\#ORT rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Ortho Diagnostic Systems, Inc.";
  dc:title "Ortho Diagnostic Systems, Inc.";
  rdfs:comment "Ortho Diagnostic Systems, Inc.";
  dcterms:description "Ortho Diagnostic Systems, Inc.".

cs:VaccineManufacturer\#OTC rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Organon Teknika Corporation";
  dc:title "Organon Teknika Corporation";
  rdfs:comment "Organon Teknika Corporation";
  dcterms:description "Organon Teknika Corporation".

cs:VaccineManufacturer\#PD rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Parkedale Pharmaceuticals (formerly Parke-Davis)";
  dc:title "Parkedale Pharmaceuticals (formerly Parke-Davis)";
  rdfs:comment "Parkedale Pharmaceuticals (formerly Parke-Davis)";
  dcterms:description "Parkedale Pharmaceuticals (formerly Parke-Davis)".

cs:VaccineManufacturer\#PMC rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Aventis Pasteur Inc. (formerly Pasteur Merieux Connaught; includes Connaught Laboratories and Pasteur Merieux)";
  dc:title "Aventis Pasteur Inc. (formerly Pasteur Merieux Connaught; includes Connaught Laboratories and Pasteur Merieux)";
  rdfs:comment "Aventis Pasteur Inc. (formerly Pasteur Merieux Connaught; includes Connaught Laboratories and Pasteur Merieux)";
  dcterms:description "Aventis Pasteur Inc. (formerly Pasteur Merieux Connaught; includes Connaught Laboratories and Pasteur Merieux)".

cs:VaccineManufacturer\#PRX rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Praxis Biologics [Inactive - use WAL]";
  dc:title "Praxis Biologics [Inactive - use WAL]";
  rdfs:comment "Praxis Biologics [Inactive-use WAL]";
  dcterms:description "Praxis Biologics [Inactive-use WAL]".

cs:VaccineManufacturer\#SCL rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Sclavo, Inc.";
  dc:title "Sclavo, Inc.";
  rdfs:comment "Sclavo, Inc.";
  dcterms:description "Sclavo, Inc.".

cs:VaccineManufacturer\#SI rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Swiss Serum and Vaccine Inst. [Inactive - use BPC]";
  dc:title "Swiss Serum and Vaccine Inst. [Inactive - use BPC]";
  rdfs:comment "Swiss Serum and Vaccine Inst. [Inactive-use BPC]";
  dcterms:description "Swiss Serum and Vaccine Inst. [Inactive-use BPC]".

cs:VaccineManufacturer\#SKB rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "SmithKline Beecham";
  dc:title "SmithKline Beecham";
  rdfs:comment "SmithKline Beecham";
  dcterms:description "SmithKline Beecham".

cs:VaccineManufacturer\#USA rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "United States Army Medical Research and Materiel Command";
  dc:title "United States Army Medical Research and Materiel Command";
  rdfs:comment "United States Army Medical Research and Materiel Command";
  dcterms:description "United States Army Medical Research and Materiel Command".

cs:VaccineManufacturer\#WA rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Wyeth-Ayerst [Inactive - use WAL]";
  dc:title "Wyeth-Ayerst [Inactive - use WAL]";
  rdfs:comment "Wyeth-Ayerst [Inactive-use WAL]";
  dcterms:description "Wyeth-Ayerst [Inactive-use WAL]".

cs:VaccineManufacturer\#WAL rdfs:subClassOf cs:VaccineManufacturer;
  rdfs:label "Wyeth-Ayerst (includes Wyeth-Lederle Vaccines and Pediatrics, Wyeth Laboratories, Lederle Laboratories, and Praxis Biologics)";
  dc:title "Wyeth-Ayerst (includes Wyeth-Lederle Vaccines and Pediatrics, Wyeth Laboratories, Lederle Laboratories, and Praxis Biologics)";
  rdfs:comment "Wyeth-Ayerst (includes Wyeth-Lederle Vaccines and Pediatrics, Wyeth Laboratories, Lederle Laboratories, and Praxis Biologics)";
  dcterms:description "Wyeth-Ayerst (includes Wyeth-Lederle Vaccines and Pediatrics, Wyeth Laboratories, Lederle Laboratories, and Praxis Biologics)".

# - vs:v3-VerificationMethod ---------------------------------------------------

vs:v3-VerificationMethod a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "VerificationMethod";
  dc:title "VerificationMethod";
  rdfs:comment "No Description Provided";
  dcterms:description "No Description Provided";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# - vs:v3-hl7Realm -------------------------------------------------------------

vs:v3-hl7Realm a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System hl7Realm";
  dc:title "v3 Code System hl7Realm";
  rdfs:comment "  Description:\r\nCoded concepts representing Binding Realms (used for Context Binding of terminology in HL7 models)  and/or Namespace Realms (used to help ensure unique identification of HL7 artifacts). This value set is partitioned into three sections: Affiliate realms, Binding realms and Namespace realms.  All affiliate realm codes may automatically be used as both binding realms and namespace realms.  Furthermore, affiliate realms are the only realms that have authority over the creation of binding realms.  (Note that 'affiliate' includes the idea of both international affiliates and the HL7 International organization.)  All other codes must be associated with an owning affiliate realm and must appear as a specialization of _BindingRealm or _NamespaceRealm.  For affiliates whose concepts align with nations, the country codes from ISO 3166-1 2-character alpha are used for the code when possible so these codes should not be used for other realm types.  It is recommended that binding realm and namespace codes submitted by affiliates use the realm code as a prefix to avoid possible collisions with ISO codes.  However, tooling does not currently support namepace realm codes greater than 2 characters.  Open Issue:\r\nThe name of the concept property \"owningAffiliate\" should be changed to better reflect that the property value is the human readable name of the organizational entity that manages the Realm identified by the Realm Code.  Open Issue:\r\nIn spite of the inability of tooling to process codes longer than 2 characters, there is at least one realm codes ('SOA') that was added that is 3 characters in length.";
  dcterms:description "  Description:\r\nCoded concepts representing Binding Realms (used for Context Binding of terminology in HL7 models)  and/or Namespace Realms (used to help ensure unique identification of HL7 artifacts). This value set is partitioned into three sections: Affiliate realms, Binding realms and Namespace realms.  All affiliate realm codes may automatically be used as both binding realms and namespace realms.  Furthermore, affiliate realms are the only realms that have authority over the creation of binding realms.  (Note that 'affiliate' includes the idea of both international affiliates and the HL7 International organization.)  All other codes must be associated with an owning affiliate realm and must appear as a specialization of _BindingRealm or _NamespaceRealm.  For affiliates whose concepts align with nations, the country codes from ISO 3166-1 2-character alpha are used for the code when possible so these codes should not be used for other realm types.  It is recommended that binding realm and namespace codes submitted by affiliates use the realm code as a prefix to avoid possible collisions with ISO codes.  However, tooling does not currently support namepace realm codes greater than 2 characters.  Open Issue:\r\nThe name of the concept property \"owningAffiliate\" should be changed to better reflect that the property value is the human readable name of the organizational entity that manages the Realm identified by the Realm Code.  Open Issue:\r\nIn spite of the inability of tooling to process codes longer than 2 characters, there is at least one realm codes ('SOA') that was added that is 3 characters in length.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:hl7Realm.

cs:hl7Realm.system a fhir:CodeSystem;
  rdfs:label "v3 Code System hl7Realm";
  dc:title "v3 Code System hl7Realm";
  rdfs:comment "  Description:\r\nCoded concepts representing Binding Realms (used for Context Binding of terminology in HL7 models)  and/or Namespace Realms (used to help ensure unique identification of HL7 artifacts). This code system is partitioned into three sections: Affiliate realms, Binding realms and Namespace realms.  All affiliate realm codes may automatically be used as both binding realms and namespace realms.  Furthermore, affiliate realms are the only realms that have authority over the creation of binding realms.  (Note that 'affiliate' includes the idea of both international affiliates and the HL7 International organization.)  All other codes must be associated with an owning affiliate realm and must appear as a specialization of _BindingRealm or _NamespaceRealm.  For affiliates whose concepts align with nations, the country codes from ISO 3166-1 2-character alpha are used for the code when possible so these codes should not be used for other realm types.  It is recommended that binding realm and namespace codes submitted by affiliates use the realm code as a prefix to avoid possible collisions with ISO codes.  However, tooling does not currently support namepace realm codes greater than 2 characters.  Open Issue:\r\nThe name of the concept property \"owningAffiliate\" should be changed to better reflect that the property value is the human readable name of the organizational entity that manages the Realm identified by the Realm Code.  Open Issue:\r\nIn spite of the inability of tooling to process codes longer than 2 characters, there is at least one realm codes ('SOA') that was added that is 3 characters in length.";
  dcterms:description "  Description:\r\nCoded concepts representing Binding Realms (used for Context Binding of terminology in HL7 models)  and/or Namespace Realms (used to help ensure unique identification of HL7 artifacts). This code system is partitioned into three sections: Affiliate realms, Binding realms and Namespace realms.  All affiliate realm codes may automatically be used as both binding realms and namespace realms.  Furthermore, affiliate realms are the only realms that have authority over the creation of binding realms.  (Note that 'affiliate' includes the idea of both international affiliates and the HL7 International organization.)  All other codes must be associated with an owning affiliate realm and must appear as a specialization of _BindingRealm or _NamespaceRealm.  For affiliates whose concepts align with nations, the country codes from ISO 3166-1 2-character alpha are used for the code when possible so these codes should not be used for other realm types.  It is recommended that binding realm and namespace codes submitted by affiliates use the realm code as a prefix to avoid possible collisions with ISO codes.  However, tooling does not currently support namepace realm codes greater than 2 characters.  Open Issue:\r\nThe name of the concept property \"owningAffiliate\" should be changed to better reflect that the property value is the human readable name of the organizational entity that manages the Realm identified by the Realm Code.  Open Issue:\r\nIn spite of the inability of tooling to process codes longer than 2 characters, there is at least one realm codes ('SOA') that was added that is 3 characters in length.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:hl7Realm a fhir:Concept.

cs:hl7Realm\#BindingRealms rdfs:subClassOf cs:hl7Realm;
  rdfs:label "binding realms";
  dc:title "binding realms";
  rdfs:comment "Description: Concepts that can be used as Binding Realms when creating Binding Statements.  These codes are permitted to appear in the InfrastructureRoot.realmCode attribute.";
  dcterms:description "Description: Concepts that can be used as Binding Realms when creating Binding Statements.  These codes are permitted to appear in the InfrastructureRoot.realmCode attribute.".

cs:hl7Realm\#AffiliateRealms rdfs:subClassOf cs:hl7Realm\#BindingRealms;
  rdfs:label "Affiliate Realms";
  dc:title "Affiliate Realms";
  rdfs:comment "Description: Realm codes for official HL7 organizational bodies.  This includes both the HL7 International organization as well as all recognized international affiliates (past and present).  These groups have the ability to bind vocabulary and develop artifacts.  As well, they have the ability to have \"ownership\" over other binding realms and namespace realms via the owningAffiliate property of those other realm codes.";
  dcterms:description "Description: Realm codes for official HL7 organizational bodies.  This includes both the HL7 International organization as well as all recognized international affiliates (past and present).  These groups have the ability to bind vocabulary and develop artifacts.  As well, they have the ability to have \"ownership\" over other binding realms and namespace realms via the owningAffiliate property of those other realm codes.".

cs:hl7Realm\#AR rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Argentina";
  dc:title "Argentina";
  rdfs:comment "Description: Realm code for use of Argentina";
  dcterms:description "Description: Realm code for use of Argentina".

cs:hl7Realm\#AT rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Austria";
  dc:title "Austria";
  rdfs:comment "Description: Realm code for use of Austria";
  dcterms:description "Description: Realm code for use of Austria".

cs:hl7Realm\#AU rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Australia";
  dc:title "Australia";
  rdfs:comment "Description: Realm code for use of Australia";
  dcterms:description "Description: Realm code for use of Australia".

cs:hl7Realm\#BR rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Brazil";
  dc:title "Brazil";
  rdfs:comment "Description: Realm code for use of Brazil";
  dcterms:description "Description: Realm code for use of Brazil".

cs:hl7Realm\#CA rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Canada";
  dc:title "Canada";
  rdfs:comment "Description: Realm code for use of Canada";
  dcterms:description "Description: Realm code for use of Canada".

cs:hl7Realm\#CH rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Switzerland";
  dc:title "Switzerland";
  rdfs:comment "Description: Realm code for use of Switzerland";
  dcterms:description "Description: Realm code for use of Switzerland".

cs:hl7Realm\#CL rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Chile";
  dc:title "Chile";
  rdfs:comment "Description: Realm code for use of Chile";
  dcterms:description "Description: Realm code for use of Chile".

cs:hl7Realm\#CN rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "China";
  dc:title "China";
  rdfs:comment "Description: Realm code for use of China";
  dcterms:description "Description: Realm code for use of China".

cs:hl7Realm\#CO rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Columbia";
  dc:title "Columbia";
  rdfs:comment "Description: Realm code for use of Localized Version";
  dcterms:description "Description: Realm code for use of Localized Version".

cs:hl7Realm\#CZ rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Czech Republic";
  dc:title "Czech Republic";
  rdfs:comment "Description: Realm code for use of Czech Republic";
  dcterms:description "Description: Realm code for use of Czech Republic".

cs:hl7Realm\#DE rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Germany";
  dc:title "Germany";
  rdfs:comment "Description: Realm code for use of Germany";
  dcterms:description "Description: Realm code for use of Germany".

cs:hl7Realm\#DK rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Denmark";
  dc:title "Denmark";
  rdfs:comment "Description: Realm code for use of Denmark";
  dcterms:description "Description: Realm code for use of Denmark".

cs:hl7Realm\#ES rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Spain";
  dc:title "Spain";
  rdfs:comment "Description: Realm code for use of Spain";
  dcterms:description "Description: Realm code for use of Spain".

cs:hl7Realm\#FI rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Finland";
  dc:title "Finland";
  rdfs:comment "Description: Realm code for use of Finland";
  dcterms:description "Description: Realm code for use of Finland".

cs:hl7Realm\#FR rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "France";
  dc:title "France";
  rdfs:comment "Description: Realm code for use of France";
  dcterms:description "Description: Realm code for use of France".

cs:hl7Realm\#GR rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Greece";
  dc:title "Greece";
  rdfs:comment "Description: Realm code for use of Greece";
  dcterms:description "Description: Realm code for use of Greece".

cs:hl7Realm\#HR rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Croatia";
  dc:title "Croatia";
  rdfs:comment "Description: Realm code for use of Croatia";
  dcterms:description "Description: Realm code for use of Croatia".

cs:hl7Realm\#IE rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Ireland";
  dc:title "Ireland";
  rdfs:comment "Description: Realm code for use of Ireland";
  dcterms:description "Description: Realm code for use of Ireland".

cs:hl7Realm\#IN rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "India";
  dc:title "India";
  rdfs:comment "Description: Realm code for use of India";
  dcterms:description "Description: Realm code for use of India".

cs:hl7Realm\#IT rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Italy";
  dc:title "Italy";
  rdfs:comment "Description: Realm code for use of Italy";
  dcterms:description "Description: Realm code for use of Italy".

cs:hl7Realm\#JP rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Japan";
  dc:title "Japan";
  rdfs:comment "Description: Realm code for use of Japan";
  dcterms:description "Description: Realm code for use of Japan".

cs:hl7Realm\#KR rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Korea";
  dc:title "Korea";
  rdfs:comment "Description: Realm code for use of Korea";
  dcterms:description "Description: Realm code for use of Korea".

cs:hl7Realm\#LT rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Lithuania";
  dc:title "Lithuania";
  rdfs:comment "Description: Realm code for use of Lithuania";
  dcterms:description "Description: Realm code for use of Lithuania".

cs:hl7Realm\#MX rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Mexico";
  dc:title "Mexico";
  rdfs:comment "Description: Realm code for use of Mexico";
  dcterms:description "Description: Realm code for use of Mexico".

cs:hl7Realm\#NL rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "The Netherlands";
  dc:title "The Netherlands";
  rdfs:comment "Description: Realm code for use of The Netherlands";
  dcterms:description "Description: Realm code for use of The Netherlands".

cs:hl7Realm\#NZ rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "New Zealand";
  dc:title "New Zealand";
  rdfs:comment "Description: Realm code for use of New Zealand";
  dcterms:description "Description: Realm code for use of New Zealand".

cs:hl7Realm\#RO rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Romania";
  dc:title "Romania";
  rdfs:comment "Description: Realm code for use of Romania";
  dcterms:description "Description: Realm code for use of Romania".

cs:hl7Realm\#RU rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Russian Federation";
  dc:title "Russian Federation";
  rdfs:comment "Description: Realm code for use of Russian Federation";
  dcterms:description "Description: Realm code for use of Russian Federation".

cs:hl7Realm\#SE rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Sweden";
  dc:title "Sweden";
  rdfs:comment "Description: Realm code for use of Sweden";
  dcterms:description "Description: Realm code for use of Sweden".

cs:hl7Realm\#SG rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Singapore";
  dc:title "Singapore";
  rdfs:comment "Description: Realm code for use of Localized Version";
  dcterms:description "Description: Realm code for use of Localized Version".

cs:hl7Realm\#SOA rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Southern Africa";
  dc:title "Southern Africa";
  rdfs:comment "Description: Realm code for use of Southern Africa";
  dcterms:description "Description: Realm code for use of Southern Africa".

cs:hl7Realm\#TR rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Turkey";
  dc:title "Turkey";
  rdfs:comment "Description: Realm code for use of Turkey";
  dcterms:description "Description: Realm code for use of Turkey".

cs:hl7Realm\#TW rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Taiwan";
  dc:title "Taiwan";
  rdfs:comment "Description: Realm code for use of Taiwan";
  dcterms:description "Description: Realm code for use of Taiwan".

cs:hl7Realm\#UK rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "United Kingdom";
  dc:title "United Kingdom";
  rdfs:comment "Description: Realm code for use of United Kingdom";
  dcterms:description "Description: Realm code for use of United Kingdom".

cs:hl7Realm\#US rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "United States of America";
  dc:title "United States of America";
  rdfs:comment "Description: Realm code for use of United States of America";
  dcterms:description "Description: Realm code for use of United States of America".

cs:hl7Realm\#UV rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Universal";
  dc:title "Universal";
  rdfs:comment "Description: Realm code for use of Universal realm or context, used in every instance";
  dcterms:description "Description: Realm code for use of Universal realm or context, used in every instance".

cs:hl7Realm\#UY rdfs:subClassOf cs:hl7Realm\#AffiliateRealms;
  rdfs:label "Uruguay";
  dc:title "Uruguay";
  rdfs:comment "Description: Realm code for use of Uruguay";
  dcterms:description "Description: Realm code for use of Uruguay".

cs:hl7Realm\#C1 rdfs:subClassOf cs:hl7Realm\#BindingRealms;
  rdfs:label "Unclassified Realm";
  dc:title "Unclassified Realm";
  rdfs:comment "Description: Realm code for use of Unclassified Realm";
  dcterms:description "Description: Realm code for use of Unclassified Realm".

cs:hl7Realm\#GB rdfs:subClassOf cs:hl7Realm\#BindingRealms;
  rdfs:label "Great Britain";
  dc:title "Great Britain";
  rdfs:comment "Description: Realm code for use of Great Britain";
  dcterms:description "Description: Realm code for use of Great Britain".

cs:hl7Realm\#R1 rdfs:subClassOf cs:hl7Realm\#BindingRealms;
  rdfs:label "Representative Realm";
  dc:title "Representative Realm";
  rdfs:comment "Description: Realm code for use of Representative Realm";
  dcterms:description "Description: Realm code for use of Representative Realm".

cs:hl7Realm\#X1 rdfs:subClassOf cs:hl7Realm\#BindingRealms;
  rdfs:label "Example Realm";
  dc:title "Example Realm";
  rdfs:comment "Description: Realm code for use of Example Realm";
  dcterms:description "Description: Realm code for use of Example Realm".

cs:hl7Realm\#NamespaceRealms rdfs:subClassOf cs:hl7Realm;
  rdfs:label "namespace realms";
  dc:title "namespace realms";
  rdfs:comment "Description: Codes that can be used in the \"realm\" portion of HL7 v3 artifact identifiers.";
  dcterms:description "Description: Codes that can be used in the \"realm\" portion of HL7 v3 artifact identifiers.".

cs:hl7Realm\#ZZ rdfs:subClassOf cs:hl7Realm\#NamespaceRealms;
  rdfs:label "Localized Version";
  dc:title "Localized Version";
  rdfs:comment "Description: An artifact created for local use only.  This realm namespace has no owning affiliate.  Its use is uncontrolled, i.e. anyone can create artifacts using this realm namespace.  Because of this, there is a significant likelihood of artifact identifier collisions.  Implementers are encouraged to register their artifacts under an affiliate owned and controlled namespace to avoid such collision problems where possible.";
  dcterms:description "Description: An artifact created for local use only.  This realm namespace has no owning affiliate.  Its use is uncontrolled, i.e. anyone can create artifacts using this realm namespace.  Because of this, there is a significant likelihood of artifact identifier collisions.  Implementers are encouraged to register their artifacts under an affiliate owned and controlled namespace to avoid such collision problems where possible.".

# - vs:v3-hl7V3Conformance -----------------------------------------------------

vs:v3-hl7V3Conformance a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System hl7V3Conformance";
  dc:title "v3 Code System hl7V3Conformance";
  rdfs:comment "  Description:\r\nIdentifies allowed codes for HL7aTMs v3 conformance property.";
  dcterms:description "  Description:\r\nIdentifies allowed codes for HL7aTMs v3 conformance property.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:hl7V3Conformance.

cs:hl7V3Conformance.system a fhir:CodeSystem;
  rdfs:label "v3 Code System hl7V3Conformance";
  dc:title "v3 Code System hl7V3Conformance";
  rdfs:comment "  Description:\r\nIdentifies allowed codes for HL7aTMs v3 conformance property.";
  dcterms:description "  Description:\r\nIdentifies allowed codes for HL7aTMs v3 conformance property.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:hl7V3Conformance a fhir:Concept.

cs:hl7V3Conformance\#I rdfs:subClassOf cs:hl7V3Conformance;
  rdfs:label "ignored";
  dc:title "ignored";
  rdfs:comment "Description: Implementers receiving this property must not raise an error if the data is received, but will not perform any useful function with the data.  This conformance level is not used in profiles or other artifacts that are specific to the \"sender\" or \"initiator\" of a communication.";
  dcterms:description "Description: Implementers receiving this property must not raise an error if the data is received, but will not perform any useful function with the data.  This conformance level is not used in profiles or other artifacts that are specific to the \"sender\" or \"initiator\" of a communication.".

cs:hl7V3Conformance\#NP rdfs:subClassOf cs:hl7V3Conformance;
  rdfs:label "not permitted";
  dc:title "not permitted";
  rdfs:comment "Description: All implementers are prohibited from transmitting this content, and may raise an error if they receive it.";
  dcterms:description "Description: All implementers are prohibited from transmitting this content, and may raise an error if they receive it.".

cs:hl7V3Conformance\#R rdfs:subClassOf cs:hl7V3Conformance;
  rdfs:label "required";
  dc:title "required";
  rdfs:comment "Description: All implementers must support this property.  I.e. they must be able to transmit, or to receive and usefully handle the concept.";
  dcterms:description "Description: All implementers must support this property.  I.e. they must be able to transmit, or to receive and usefully handle the concept.".

cs:hl7V3Conformance\#RC rdfs:subClassOf cs:hl7V3Conformance;
  rdfs:label "required for consumer";
  dc:title "required for consumer";
  rdfs:comment "Description: The element is considered \"required\" (i.e. must be supported) from the perspective of systems that consume  instances, but is \"undetermined\" for systems that generate instances.  Used only as part of specifications that define both initiator and consumer expectations.";
  dcterms:description "Description: The element is considered \"required\" (i.e. must be supported) from the perspective of systems that consume  instances, but is \"undetermined\" for systems that generate instances.  Used only as part of specifications that define both initiator and consumer expectations.".

cs:hl7V3Conformance\#RI rdfs:subClassOf cs:hl7V3Conformance;
  rdfs:label "required for initiator";
  dc:title "required for initiator";
  rdfs:comment "Description: The element is considered \"required\" (i.e. must be supported) from the perspective of systems that generate instances, but is \"undetermined\" for systems that consume instances.  Used only as part of specifications that define both initiator and consumer expectations.";
  dcterms:description "Description: The element is considered \"required\" (i.e. must be supported) from the perspective of systems that generate instances, but is \"undetermined\" for systems that consume instances.  Used only as part of specifications that define both initiator and consumer expectations.".

cs:hl7V3Conformance\#U rdfs:subClassOf cs:hl7V3Conformance;
  rdfs:label "undetermined";
  dc:title "undetermined";
  rdfs:comment "Description: The conformance expectations for this element have not yet been determined.";
  dcterms:description "Description: The conformance expectations for this element have not yet been determined.".

# - vs:v3-orderableDrugForm ----------------------------------------------------

vs:v3-orderableDrugForm a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System orderableDrugForm";
  dc:title "v3 Code System orderableDrugForm";
  rdfs:comment "  OpenIssue:\r\nMissing description.";
  dcterms:description "  OpenIssue:\r\nMissing description.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:orderableDrugForm.

cs:orderableDrugForm.system a fhir:CodeSystem;
  rdfs:label "v3 Code System orderableDrugForm";
  dc:title "v3 Code System orderableDrugForm";
  rdfs:comment "  OpenIssue:\r\nMissing description.";
  dcterms:description "  OpenIssue:\r\nMissing description.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:orderableDrugForm a fhir:Concept.

cs:orderableDrugForm\#%5fAdministrableDrugForm rdfs:subClassOf cs:orderableDrugForm;
  rdfs:label "AdministrableDrugForm";
  dc:title "AdministrableDrugForm";
  rdfs:comment "AdministrableDrugForm";
  dcterms:description "AdministrableDrugForm".

cs:orderableDrugForm\#APPFUL rdfs:subClassOf cs:orderableDrugForm\#%5fAdministrableDrugForm;
  rdfs:label "Applicatorful";
  dc:title "Applicatorful";
  rdfs:comment "Applicatorful";
  dcterms:description "Applicatorful".

cs:orderableDrugForm\#DROP rdfs:subClassOf cs:orderableDrugForm\#%5fAdministrableDrugForm;
  rdfs:label "Drops";
  dc:title "Drops";
  rdfs:comment "Drops";
  dcterms:description "Drops".

cs:orderableDrugForm\#NDROP rdfs:subClassOf cs:orderableDrugForm\#DROP;
  rdfs:label "Nasal Drops";
  dc:title "Nasal Drops";
  rdfs:comment "Nasal Drops";
  dcterms:description "Nasal Drops".

cs:orderableDrugForm\#OPDROP rdfs:subClassOf cs:orderableDrugForm\#DROP;
  rdfs:label "Ophthalmic Drops";
  dc:title "Ophthalmic Drops";
  rdfs:comment "Ophthalmic Drops";
  dcterms:description "Ophthalmic Drops".

cs:orderableDrugForm\#ORDROP rdfs:subClassOf cs:orderableDrugForm\#DROP;
  rdfs:label "Oral Drops";
  dc:title "Oral Drops";
  rdfs:comment "Oral Drops";
  dcterms:description "Oral Drops".

cs:orderableDrugForm\#OTDROP rdfs:subClassOf cs:orderableDrugForm\#DROP;
  rdfs:label "Otic Drops";
  dc:title "Otic Drops";
  rdfs:comment "Otic Drops";
  dcterms:description "Otic Drops".

cs:orderableDrugForm\#PUFF rdfs:subClassOf cs:orderableDrugForm\#%5fAdministrableDrugForm;
  rdfs:label "Puff";
  dc:title "Puff";
  rdfs:comment "Puff";
  dcterms:description "Puff".

cs:orderableDrugForm\#SCOOP rdfs:subClassOf cs:orderableDrugForm\#%5fAdministrableDrugForm;
  rdfs:label "Scoops";
  dc:title "Scoops";
  rdfs:comment "Scoops";
  dcterms:description "Scoops".

cs:orderableDrugForm\#SPRY rdfs:subClassOf cs:orderableDrugForm\#%5fAdministrableDrugForm;
  rdfs:label "Sprays";
  dc:title "Sprays";
  rdfs:comment "Sprays";
  dcterms:description "Sprays".

cs:orderableDrugForm\#%5fDispensableDrugForm rdfs:subClassOf cs:orderableDrugForm;
  rdfs:label "DispensableDrugForm";
  dc:title "DispensableDrugForm";
  rdfs:comment "DispensableDrugForm";
  dcterms:description "DispensableDrugForm".

cs:orderableDrugForm\#%5fGasDrugForm rdfs:subClassOf cs:orderableDrugForm\#%5fDispensableDrugForm;
  rdfs:label "GasDrugForm";
  dc:title "GasDrugForm";
  rdfs:comment "Any elastic aeriform fluid in which the molecules are separated from one another and have free paths.";
  dcterms:description "Any elastic aeriform fluid in which the molecules are separated from one another and have free paths.".

cs:orderableDrugForm\#GASINHL rdfs:subClassOf cs:orderableDrugForm\#%5fGasDrugForm;
  rdfs:label "Gas for Inhalation";
  dc:title "Gas for Inhalation";
  rdfs:comment "Gas for Inhalation";
  dcterms:description "Gas for Inhalation".

cs:orderableDrugForm\#%5fGasLiquidMixture rdfs:subClassOf cs:orderableDrugForm\#%5fDispensableDrugForm;
  rdfs:label "GasLiquidMixture";
  dc:title "GasLiquidMixture";
  rdfs:comment "GasLiquidMixture";
  dcterms:description "GasLiquidMixture".

cs:orderableDrugForm\#AER rdfs:subClassOf cs:orderableDrugForm\#%5fGasLiquidMixture;
  rdfs:label "Aerosol";
  dc:title "Aerosol";
  rdfs:comment "Aerosol";
  dcterms:description "Aerosol".

cs:orderableDrugForm\#BAINHL rdfs:subClassOf cs:orderableDrugForm\#AER;
  rdfs:label "Breath Activated Inhaler";
  dc:title "Breath Activated Inhaler";
  rdfs:comment "Breath Activated Inhaler";
  dcterms:description "Breath Activated Inhaler".

cs:orderableDrugForm\#INHLSOL rdfs:subClassOf cs:orderableDrugForm\#AER;
  rdfs:label "Inhalant Solution";
  dc:title "Inhalant Solution";
  rdfs:comment "Inhalant Solution";
  dcterms:description "Inhalant Solution".

cs:orderableDrugForm\#MDINHL rdfs:subClassOf cs:orderableDrugForm\#AER;
  rdfs:label "Metered Dose Inhaler";
  dc:title "Metered Dose Inhaler";
  rdfs:comment "Metered Dose Inhaler";
  dcterms:description "Metered Dose Inhaler".

cs:orderableDrugForm\#NASSPRY rdfs:subClassOf cs:orderableDrugForm\#AER;
  rdfs:label "Nasal Spray";
  dc:title "Nasal Spray";
  rdfs:comment "Nasal Spray";
  dcterms:description "Nasal Spray".

cs:orderableDrugForm\#DERMSPRY rdfs:subClassOf cs:orderableDrugForm\#%5fGasLiquidMixture;
  rdfs:label "Dermal Spray";
  dc:title "Dermal Spray";
  rdfs:comment "Dermal Spray";
  dcterms:description "Dermal Spray".

cs:orderableDrugForm\#FOAM rdfs:subClassOf cs:orderableDrugForm\#%5fGasLiquidMixture;
  rdfs:label "Foam";
  dc:title "Foam";
  rdfs:comment "Foam";
  dcterms:description "Foam".

cs:orderableDrugForm\#FOAMAPL rdfs:subClassOf cs:orderableDrugForm\#FOAM;
  rdfs:label "Foam with Applicator";
  dc:title "Foam with Applicator";
  rdfs:comment "Foam with Applicator";
  dcterms:description "Foam with Applicator".

cs:orderableDrugForm\#RECFORM rdfs:subClassOf cs:orderableDrugForm\#FOAM;
  rdfs:label "Rectal foam";
  dc:title "Rectal foam";
  rdfs:comment "Rectal foam";
  dcterms:description "Rectal foam".

cs:orderableDrugForm\#VAGFOAM rdfs:subClassOf cs:orderableDrugForm\#FOAM;
  rdfs:label "Vaginal foam";
  dc:title "Vaginal foam";
  rdfs:comment "Vaginal foam";
  dcterms:description "Vaginal foam".

cs:orderableDrugForm\#VAGFOAMAPL rdfs:subClassOf cs:orderableDrugForm\#VAGFOAM;
  rdfs:label "Vaginal foam with applicator";
  dc:title "Vaginal foam with applicator";
  rdfs:comment "Vaginal foam with applicator";
  dcterms:description "Vaginal foam with applicator".

cs:orderableDrugForm\#RECSPRY rdfs:subClassOf cs:orderableDrugForm\#%5fGasLiquidMixture;
  rdfs:label "Rectal Spray";
  dc:title "Rectal Spray";
  rdfs:comment "Rectal Spray";
  dcterms:description "Rectal Spray".

cs:orderableDrugForm\#VAGSPRY rdfs:subClassOf cs:orderableDrugForm\#%5fGasLiquidMixture;
  rdfs:label "Vaginal Spray";
  dc:title "Vaginal Spray";
  rdfs:comment "Vaginal Spray";
  dcterms:description "Vaginal Spray".

cs:orderableDrugForm\#%5fGasSolidSpray rdfs:subClassOf cs:orderableDrugForm\#%5fDispensableDrugForm;
  rdfs:label "GasSolidSpray";
  dc:title "GasSolidSpray";
  rdfs:comment "GasSolidSpray";
  dcterms:description "GasSolidSpray".

cs:orderableDrugForm\#INHL rdfs:subClassOf cs:orderableDrugForm\#%5fGasSolidSpray;
  rdfs:label "Inhalant";
  dc:title "Inhalant";
  rdfs:comment "Inhalant";
  dcterms:description "Inhalant".

cs:orderableDrugForm\#BAINHLPWD rdfs:subClassOf cs:orderableDrugForm\#INHL;
  rdfs:label "Breath Activated Powder Inhaler";
  dc:title "Breath Activated Powder Inhaler";
  rdfs:comment "Breath Activated Powder Inhaler";
  dcterms:description "Breath Activated Powder Inhaler".

cs:orderableDrugForm\#INHLPWD rdfs:subClassOf cs:orderableDrugForm\#INHL;
  rdfs:label "Inhalant Powder";
  dc:title "Inhalant Powder";
  rdfs:comment "Inhalant Powder";
  dcterms:description "Inhalant Powder".

cs:orderableDrugForm\#MDINHLPWD rdfs:subClassOf cs:orderableDrugForm\#INHL;
  rdfs:label "Metered Dose Powder Inhaler";
  dc:title "Metered Dose Powder Inhaler";
  rdfs:comment "Metered Dose Powder Inhaler";
  dcterms:description "Metered Dose Powder Inhaler".

cs:orderableDrugForm\#NASINHL rdfs:subClassOf cs:orderableDrugForm\#INHL;
  rdfs:label "Nasal Inhalant";
  dc:title "Nasal Inhalant";
  rdfs:comment "Nasal Inhalant";
  dcterms:description "Nasal Inhalant".

cs:orderableDrugForm\#ORINHL rdfs:subClassOf cs:orderableDrugForm\#INHL;
  rdfs:label "Oral Inhalant";
  dc:title "Oral Inhalant";
  rdfs:comment "Oral Inhalant";
  dcterms:description "Oral Inhalant".

cs:orderableDrugForm\#PWDSPRY rdfs:subClassOf cs:orderableDrugForm\#%5fGasSolidSpray;
  rdfs:label "Powder Spray";
  dc:title "Powder Spray";
  rdfs:comment "Powder Spray";
  dcterms:description "Powder Spray".

cs:orderableDrugForm\#SPRYADAPT rdfs:subClassOf cs:orderableDrugForm\#%5fGasSolidSpray;
  rdfs:label "Spray with Adaptor";
  dc:title "Spray with Adaptor";
  rdfs:comment "Spray with Adaptor";
  dcterms:description "Spray with Adaptor".

cs:orderableDrugForm\#%5fLiquid rdfs:subClassOf cs:orderableDrugForm\#%5fDispensableDrugForm;
  rdfs:label "Liquid";
  dc:title "Liquid";
  rdfs:comment "A state of substance that is an intermediate one entered into as matter goes from solid to gas; liquids are also intermediate in that they have neither the orderliness of a crystal nor the randomness of a gas. (Note: This term should not be used to describe solutions, only pure chemicals in their liquid state.)";
  dcterms:description "A state of substance that is an intermediate one entered into as matter goes from solid to gas; liquids are also intermediate in that they have neither the orderliness of a crystal nor the randomness of a gas. (Note: This term should not be used to describe solutions, only pure chemicals in their liquid state.)".

cs:orderableDrugForm\#LIQCLN rdfs:subClassOf cs:orderableDrugForm\#%5fLiquid;
  rdfs:label "Liquid Cleanser";
  dc:title "Liquid Cleanser";
  rdfs:comment "Liquid Cleanser";
  dcterms:description "Liquid Cleanser".

cs:orderableDrugForm\#LIQSOAP rdfs:subClassOf cs:orderableDrugForm\#LIQCLN;
  rdfs:label "Medicated Liquid Soap";
  dc:title "Medicated Liquid Soap";
  rdfs:comment "Medicated Liquid Soap";
  dcterms:description "Medicated Liquid Soap".

cs:orderableDrugForm\#SHMP rdfs:subClassOf cs:orderableDrugForm\#LIQCLN;
  rdfs:label "Shampoo";
  dc:title "Shampoo";
  rdfs:comment "A liquid soap or detergent used to clean the hair and scalp and is often used as a vehicle for dermatologic agents.";
  dcterms:description "A liquid soap or detergent used to clean the hair and scalp and is often used as a vehicle for dermatologic agents.".

cs:orderableDrugForm\#OIL rdfs:subClassOf cs:orderableDrugForm\#%5fLiquid;
  rdfs:label "Oil";
  dc:title "Oil";
  rdfs:comment "An unctuous, combustible substance which is liquid, or easily liquefiable, on warming, and is soluble in ether but insoluble in water. Such substances, depending on their origin, are classified as animal, mineral, or vegetable oils.";
  dcterms:description "An unctuous, combustible substance which is liquid, or easily liquefiable, on warming, and is soluble in ether but insoluble in water. Such substances, depending on their origin, are classified as animal, mineral, or vegetable oils.".

cs:orderableDrugForm\#TOPOIL rdfs:subClassOf cs:orderableDrugForm\#OIL;
  rdfs:label "Topical Oil";
  dc:title "Topical Oil";
  rdfs:comment "Topical Oil";
  dcterms:description "Topical Oil".

cs:orderableDrugForm\#SOL rdfs:subClassOf cs:orderableDrugForm\#%5fLiquid;
  rdfs:label "Solution";
  dc:title "Solution";
  rdfs:comment "A liquid preparation that contains one or more chemical substances dissolved, i.e., molecularly dispersed, in a suitable solvent or mixture of mutually miscible solvents.";
  dcterms:description "A liquid preparation that contains one or more chemical substances dissolved, i.e., molecularly dispersed, in a suitable solvent or mixture of mutually miscible solvents.".

cs:orderableDrugForm\#IPSOL rdfs:subClassOf cs:orderableDrugForm\#SOL;
  rdfs:label "Intraperitoneal Solution";
  dc:title "Intraperitoneal Solution";
  rdfs:comment "Intraperitoneal Solution";
  dcterms:description "Intraperitoneal Solution".

cs:orderableDrugForm\#IRSOL rdfs:subClassOf cs:orderableDrugForm\#SOL;
  rdfs:label "Irrigation Solution";
  dc:title "Irrigation Solution";
  rdfs:comment "A sterile solution intended to bathe or flush open wounds or body cavities; they're used topically, never parenterally.";
  dcterms:description "A sterile solution intended to bathe or flush open wounds or body cavities; they're used topically, never parenterally.".

cs:orderableDrugForm\#DOUCHE rdfs:subClassOf cs:orderableDrugForm\#IRSOL;
  rdfs:label "Douche";
  dc:title "Douche";
  rdfs:comment "A liquid preparation, intended for the irrigative cleansing of the vagina, that is prepared from powders, liquid solutions, or liquid concentrates and contains one or more chemical substances dissolved in a suitable solvent or mutually miscible solvents.";
  dcterms:description "A liquid preparation, intended for the irrigative cleansing of the vagina, that is prepared from powders, liquid solutions, or liquid concentrates and contains one or more chemical substances dissolved in a suitable solvent or mutually miscible solvents.".

cs:orderableDrugForm\#ENEMA rdfs:subClassOf cs:orderableDrugForm\#IRSOL;
  rdfs:label "Enema";
  dc:title "Enema";
  rdfs:comment "A rectal preparation for therapeutic, diagnostic, or nutritive purposes.";
  dcterms:description "A rectal preparation for therapeutic, diagnostic, or nutritive purposes.".

cs:orderableDrugForm\#OPIRSOL rdfs:subClassOf cs:orderableDrugForm\#IRSOL;
  rdfs:label "Ophthalmic Irrigation Solution";
  dc:title "Ophthalmic Irrigation Solution";
  rdfs:comment "Ophthalmic Irrigation Solution";
  dcterms:description "Ophthalmic Irrigation Solution".

cs:orderableDrugForm\#IVSOL rdfs:subClassOf cs:orderableDrugForm\#SOL;
  rdfs:label "Intravenous Solution";
  dc:title "Intravenous Solution";
  rdfs:comment "Intravenous Solution";
  dcterms:description "Intravenous Solution".

cs:orderableDrugForm\#ORALSOL rdfs:subClassOf cs:orderableDrugForm\#SOL;
  rdfs:label "Oral Solution";
  dc:title "Oral Solution";
  rdfs:comment "Oral Solution";
  dcterms:description "Oral Solution".

cs:orderableDrugForm\#ELIXIR rdfs:subClassOf cs:orderableDrugForm\#ORALSOL;
  rdfs:label "Elixir";
  dc:title "Elixir";
  rdfs:comment "A clear, pleasantly flavored, sweetened hydroalcoholic liquid containing dissolved medicinal agents; it is intended for oral use.";
  dcterms:description "A clear, pleasantly flavored, sweetened hydroalcoholic liquid containing dissolved medicinal agents; it is intended for oral use.".

cs:orderableDrugForm\#RINSE rdfs:subClassOf cs:orderableDrugForm\#ORALSOL;
  rdfs:label "Mouthwash/Rinse";
  dc:title "Mouthwash/Rinse";
  rdfs:comment "An aqueous solution which is most often used for its deodorant, refreshing, or antiseptic effect.";
  dcterms:description "An aqueous solution which is most often used for its deodorant, refreshing, or antiseptic effect.".

cs:orderableDrugForm\#SYRUP rdfs:subClassOf cs:orderableDrugForm\#ORALSOL;
  rdfs:label "Syrup";
  dc:title "Syrup";
  rdfs:comment "An oral solution containing high concentrations of sucrose or other sugars; the term has also been used to include any other liquid dosage form prepared in a sweet and viscid vehicle, including oral suspensions.";
  dcterms:description "An oral solution containing high concentrations of sucrose or other sugars; the term has also been used to include any other liquid dosage form prepared in a sweet and viscid vehicle, including oral suspensions.".

cs:orderableDrugForm\#RECSOL rdfs:subClassOf cs:orderableDrugForm\#SOL;
  rdfs:label "Rectal Solution";
  dc:title "Rectal Solution";
  rdfs:comment "Rectal Solution";
  dcterms:description "Rectal Solution".

cs:orderableDrugForm\#TOPSOL rdfs:subClassOf cs:orderableDrugForm\#SOL;
  rdfs:label "Topical Solution";
  dc:title "Topical Solution";
  rdfs:comment "Topical Solution";
  dcterms:description "Topical Solution".

cs:orderableDrugForm\#LIN rdfs:subClassOf cs:orderableDrugForm\#TOPSOL;
  rdfs:label "Liniment";
  dc:title "Liniment";
  rdfs:comment "A solution or mixture of various substances in oil, alcoholic solutions of soap, or emulsions intended for external application.";
  dcterms:description "A solution or mixture of various substances in oil, alcoholic solutions of soap, or emulsions intended for external application.".

cs:orderableDrugForm\#MUCTOPSOL rdfs:subClassOf cs:orderableDrugForm\#TOPSOL;
  rdfs:label "Mucous Membrane Topical Solution";
  dc:title "Mucous Membrane Topical Solution";
  rdfs:comment "Mucous Membrane Topical Solution";
  dcterms:description "Mucous Membrane Topical Solution".

cs:orderableDrugForm\#TINC rdfs:subClassOf cs:orderableDrugForm\#TOPSOL;
  rdfs:label "Tincture";
  dc:title "Tincture";
  rdfs:comment "Tincture";
  dcterms:description "Tincture".

cs:orderableDrugForm\#%5fLiquidLiquidEmulsion rdfs:subClassOf cs:orderableDrugForm\#%5fDispensableDrugForm;
  rdfs:label "LiquidLiquidEmulsion";
  dc:title "LiquidLiquidEmulsion";
  rdfs:comment "A two-phase system in which one liquid is dispersed throughout another liquid in the form of small droplets.";
  dcterms:description "A two-phase system in which one liquid is dispersed throughout another liquid in the form of small droplets.".

cs:orderableDrugForm\#CRM rdfs:subClassOf cs:orderableDrugForm\#%5fLiquidLiquidEmulsion;
  rdfs:label "Cream";
  dc:title "Cream";
  rdfs:comment "A semisolid dosage form containing one or more drug substances dissolved or dispersed in a suitable base; more recently, the term has been restricted to products consisting of oil-in-water emulsions or aqueous microcrystalline dispersions of long chain fatty acids or alcohols that are water washable and more cosmetically and aesthetically acceptable.";
  dcterms:description "A semisolid dosage form containing one or more drug substances dissolved or dispersed in a suitable base; more recently, the term has been restricted to products consisting of oil-in-water emulsions or aqueous microcrystalline dispersions of long chain fatty acids or alcohols that are water washable and more cosmetically and aesthetically acceptable.".

cs:orderableDrugForm\#NASCRM rdfs:subClassOf cs:orderableDrugForm\#CRM;
  rdfs:label "Nasal Cream";
  dc:title "Nasal Cream";
  rdfs:comment "Nasal Cream";
  dcterms:description "Nasal Cream".

cs:orderableDrugForm\#OPCRM rdfs:subClassOf cs:orderableDrugForm\#CRM;
  rdfs:label "Ophthalmic Cream";
  dc:title "Ophthalmic Cream";
  rdfs:comment "Ophthalmic Cream";
  dcterms:description "Ophthalmic Cream".

cs:orderableDrugForm\#ORCRM rdfs:subClassOf cs:orderableDrugForm\#CRM;
  rdfs:label "Oral Cream";
  dc:title "Oral Cream";
  rdfs:comment "Oral Cream";
  dcterms:description "Oral Cream".

cs:orderableDrugForm\#OTCRM rdfs:subClassOf cs:orderableDrugForm\#CRM;
  rdfs:label "Otic Cream";
  dc:title "Otic Cream";
  rdfs:comment "Otic Cream";
  dcterms:description "Otic Cream".

cs:orderableDrugForm\#RECCRM rdfs:subClassOf cs:orderableDrugForm\#CRM;
  rdfs:label "Rectal Cream";
  dc:title "Rectal Cream";
  rdfs:comment "Rectal Cream";
  dcterms:description "Rectal Cream".

cs:orderableDrugForm\#TOPCRM rdfs:subClassOf cs:orderableDrugForm\#CRM;
  rdfs:label "Topical Cream";
  dc:title "Topical Cream";
  rdfs:comment "Topical Cream";
  dcterms:description "Topical Cream".

cs:orderableDrugForm\#VAGCRM rdfs:subClassOf cs:orderableDrugForm\#CRM;
  rdfs:label "Vaginal Cream";
  dc:title "Vaginal Cream";
  rdfs:comment "Vaginal Cream";
  dcterms:description "Vaginal Cream".

cs:orderableDrugForm\#VAGCRMAPL rdfs:subClassOf cs:orderableDrugForm\#VAGCRM;
  rdfs:label "Vaginal Cream with Applicator";
  dc:title "Vaginal Cream with Applicator";
  rdfs:comment "Vaginal Cream with Applicator";
  dcterms:description "Vaginal Cream with Applicator".

cs:orderableDrugForm\#LTN rdfs:subClassOf cs:orderableDrugForm\#%5fLiquidLiquidEmulsion;
  rdfs:label "Lotion";
  dc:title "Lotion";
  rdfs:comment "The term \"lotion\" has been used to categorize many topical suspensions, solutions and emulsions intended for application to the skin.";
  dcterms:description "The term \"lotion\" has been used to categorize many topical suspensions, solutions and emulsions intended for application to the skin.".

cs:orderableDrugForm\#TOPLTN rdfs:subClassOf cs:orderableDrugForm\#LTN;
  rdfs:label "Topical Lotion";
  dc:title "Topical Lotion";
  rdfs:comment "Topical Lotion";
  dcterms:description "Topical Lotion".

cs:orderableDrugForm\#OINT rdfs:subClassOf cs:orderableDrugForm\#%5fLiquidLiquidEmulsion;
  rdfs:label "Ointment";
  dc:title "Ointment";
  rdfs:comment "A semisolid preparation intended for external application to the skin or mucous membranes.";
  dcterms:description "A semisolid preparation intended for external application to the skin or mucous membranes.".

cs:orderableDrugForm\#NASOINT rdfs:subClassOf cs:orderableDrugForm\#OINT;
  rdfs:label "Nasal Ointment";
  dc:title "Nasal Ointment";
  rdfs:comment "Nasal Ointment";
  dcterms:description "Nasal Ointment".

cs:orderableDrugForm\#OINTAPL rdfs:subClassOf cs:orderableDrugForm\#OINT;
  rdfs:label "Ointment with Applicator";
  dc:title "Ointment with Applicator";
  rdfs:comment "Ointment with Applicator";
  dcterms:description "Ointment with Applicator".

cs:orderableDrugForm\#OPOINT rdfs:subClassOf cs:orderableDrugForm\#OINT;
  rdfs:label "Ophthalmic Ointment";
  dc:title "Ophthalmic Ointment";
  rdfs:comment "Ophthalmic Ointment";
  dcterms:description "Ophthalmic Ointment".

cs:orderableDrugForm\#OTOINT rdfs:subClassOf cs:orderableDrugForm\#OINT;
  rdfs:label "Otic Ointment";
  dc:title "Otic Ointment";
  rdfs:comment "Otic Ointment";
  dcterms:description "Otic Ointment".

cs:orderableDrugForm\#RECOINT rdfs:subClassOf cs:orderableDrugForm\#OINT;
  rdfs:label "Rectal Ointment";
  dc:title "Rectal Ointment";
  rdfs:comment "Rectal Ointment";
  dcterms:description "Rectal Ointment".

cs:orderableDrugForm\#TOPOINT rdfs:subClassOf cs:orderableDrugForm\#OINT;
  rdfs:label "Topical Ointment";
  dc:title "Topical Ointment";
  rdfs:comment "Topical Ointment";
  dcterms:description "Topical Ointment".

cs:orderableDrugForm\#VAGOINT rdfs:subClassOf cs:orderableDrugForm\#OINT;
  rdfs:label "Vaginal Ointment";
  dc:title "Vaginal Ointment";
  rdfs:comment "Vaginal Ointment";
  dcterms:description "Vaginal Ointment".

cs:orderableDrugForm\#VAGOINTAPL rdfs:subClassOf cs:orderableDrugForm\#VAGOINT;
  rdfs:label "Vaginal Ointment with Applicator";
  dc:title "Vaginal Ointment with Applicator";
  rdfs:comment "Vaginal Ointment with Applicator";
  dcterms:description "Vaginal Ointment with Applicator".

cs:orderableDrugForm\#%5fLiquidSolidSuspension rdfs:subClassOf cs:orderableDrugForm\#%5fDispensableDrugForm;
  rdfs:label "LiquidSolidSuspension";
  dc:title "LiquidSolidSuspension";
  rdfs:comment "A liquid preparation which consists of solid particles dispersed throughout a liquid phase in which the particles are not soluble.";
  dcterms:description "A liquid preparation which consists of solid particles dispersed throughout a liquid phase in which the particles are not soluble.".

cs:orderableDrugForm\#GEL rdfs:subClassOf cs:orderableDrugForm\#%5fLiquidSolidSuspension;
  rdfs:label "Gel";
  dc:title "Gel";
  rdfs:comment "A semisolid system consisting of either suspensions made up of small inorganic particles or large organic molecules interpenetrated by a liquid.";
  dcterms:description "A semisolid system consisting of either suspensions made up of small inorganic particles or large organic molecules interpenetrated by a liquid.".

cs:orderableDrugForm\#GELAPL rdfs:subClassOf cs:orderableDrugForm\#GEL;
  rdfs:label "Gel with Applicator";
  dc:title "Gel with Applicator";
  rdfs:comment "Gel with Applicator";
  dcterms:description "Gel with Applicator".

cs:orderableDrugForm\#NASGEL rdfs:subClassOf cs:orderableDrugForm\#GEL;
  rdfs:label "Nasal Gel";
  dc:title "Nasal Gel";
  rdfs:comment "Nasal Gel";
  dcterms:description "Nasal Gel".

cs:orderableDrugForm\#OPGEL rdfs:subClassOf cs:orderableDrugForm\#GEL;
  rdfs:label "Ophthalmic Gel";
  dc:title "Ophthalmic Gel";
  rdfs:comment "Ophthalmic Gel";
  dcterms:description "Ophthalmic Gel".

cs:orderableDrugForm\#OTGEL rdfs:subClassOf cs:orderableDrugForm\#GEL;
  rdfs:label "Otic Gel";
  dc:title "Otic Gel";
  rdfs:comment "Otic Gel";
  dcterms:description "Otic Gel".

cs:orderableDrugForm\#TOPGEL rdfs:subClassOf cs:orderableDrugForm\#GEL;
  rdfs:label "Topical Gel";
  dc:title "Topical Gel";
  rdfs:comment "Topical Gel";
  dcterms:description "Topical Gel".

cs:orderableDrugForm\#URETHGEL rdfs:subClassOf cs:orderableDrugForm\#GEL;
  rdfs:label "Urethral Gel";
  dc:title "Urethral Gel";
  rdfs:comment "Urethral Gel";
  dcterms:description "Urethral Gel".

cs:orderableDrugForm\#VAGGEL rdfs:subClassOf cs:orderableDrugForm\#GEL;
  rdfs:label "Vaginal Gel";
  dc:title "Vaginal Gel";
  rdfs:comment "Vaginal Gel";
  dcterms:description "Vaginal Gel".

cs:orderableDrugForm\#VGELAPL rdfs:subClassOf cs:orderableDrugForm\#VAGGEL;
  rdfs:label "Vaginal Gel with Applicator";
  dc:title "Vaginal Gel with Applicator";
  rdfs:comment "Vaginal Gel with Applicator";
  dcterms:description "Vaginal Gel with Applicator".

cs:orderableDrugForm\#PASTE rdfs:subClassOf cs:orderableDrugForm\#%5fLiquidSolidSuspension;
  rdfs:label "Paste";
  dc:title "Paste";
  rdfs:comment "A semisolid dosage form that contains one or more drug substances intended for topical application.";
  dcterms:description "A semisolid dosage form that contains one or more drug substances intended for topical application.".

cs:orderableDrugForm\#PUD rdfs:subClassOf cs:orderableDrugForm\#PASTE;
  rdfs:label "Pudding";
  dc:title "Pudding";
  rdfs:comment "Pudding";
  dcterms:description "Pudding".

cs:orderableDrugForm\#TPASTE rdfs:subClassOf cs:orderableDrugForm\#PASTE;
  rdfs:label "Toothpaste";
  dc:title "Toothpaste";
  rdfs:comment "A paste formulation intended to clean and/or polish the teeth, and which may contain certain additional agents.";
  dcterms:description "A paste formulation intended to clean and/or polish the teeth, and which may contain certain additional agents.".

cs:orderableDrugForm\#SUSP rdfs:subClassOf cs:orderableDrugForm\#%5fLiquidSolidSuspension;
  rdfs:label "Suspension";
  dc:title "Suspension";
  rdfs:comment "Suspension";
  dcterms:description "Suspension".

cs:orderableDrugForm\#ITSUSP rdfs:subClassOf cs:orderableDrugForm\#SUSP;
  rdfs:label "Intrathecal Suspension";
  dc:title "Intrathecal Suspension";
  rdfs:comment "Intrathecal Suspension";
  dcterms:description "Intrathecal Suspension".

cs:orderableDrugForm\#OPSUSP rdfs:subClassOf cs:orderableDrugForm\#SUSP;
  rdfs:label "Ophthalmic Suspension";
  dc:title "Ophthalmic Suspension";
  rdfs:comment "Ophthalmic Suspension";
  dcterms:description "Ophthalmic Suspension".

cs:orderableDrugForm\#ORSUSP rdfs:subClassOf cs:orderableDrugForm\#SUSP;
  rdfs:label "Oral Suspension";
  dc:title "Oral Suspension";
  rdfs:comment "Oral Suspension";
  dcterms:description "Oral Suspension".

cs:orderableDrugForm\#ERSUSP rdfs:subClassOf cs:orderableDrugForm\#ORSUSP;
  rdfs:label "Extended-Release Suspension";
  dc:title "Extended-Release Suspension";
  rdfs:comment "Extended-Release Suspension";
  dcterms:description "Extended-Release Suspension".

cs:orderableDrugForm\#ERSUSP12 rdfs:subClassOf cs:orderableDrugForm\#ERSUSP;
  rdfs:label "12 Hour Extended-Release Suspension";
  dc:title "12 Hour Extended-Release Suspension";
  rdfs:comment "12 Hour Extended-Release Suspension";
  dcterms:description "12 Hour Extended-Release Suspension".

cs:orderableDrugForm\#ERSUSP24 rdfs:subClassOf cs:orderableDrugForm\#ERSUSP;
  rdfs:label "24 Hour Extended Release Suspension";
  dc:title "24 Hour Extended Release Suspension";
  rdfs:comment "24 Hour Extended Release Suspension";
  dcterms:description "24 Hour Extended Release Suspension".

cs:orderableDrugForm\#OTSUSP rdfs:subClassOf cs:orderableDrugForm\#SUSP;
  rdfs:label "Otic Suspension";
  dc:title "Otic Suspension";
  rdfs:comment "Otic Suspension";
  dcterms:description "Otic Suspension".

cs:orderableDrugForm\#RECSUSP rdfs:subClassOf cs:orderableDrugForm\#SUSP;
  rdfs:label "Rectal Suspension";
  dc:title "Rectal Suspension";
  rdfs:comment "Rectal Suspension";
  dcterms:description "Rectal Suspension".

cs:orderableDrugForm\#%5fSolidDrugForm rdfs:subClassOf cs:orderableDrugForm\#%5fDispensableDrugForm;
  rdfs:label "SolidDrugForm";
  dc:title "SolidDrugForm";
  rdfs:comment "SolidDrugForm";
  dcterms:description "SolidDrugForm".

cs:orderableDrugForm\#BAR rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Bar";
  dc:title "Bar";
  rdfs:comment "Bar";
  dcterms:description "Bar".

cs:orderableDrugForm\#BARSOAP rdfs:subClassOf cs:orderableDrugForm\#BAR;
  rdfs:label "Bar Soap";
  dc:title "Bar Soap";
  rdfs:comment "Bar Soap";
  dcterms:description "Bar Soap".

cs:orderableDrugForm\#MEDBAR rdfs:subClassOf cs:orderableDrugForm\#BARSOAP;
  rdfs:label "Medicated Bar Soap";
  dc:title "Medicated Bar Soap";
  rdfs:comment "Medicated Bar Soap";
  dcterms:description "Medicated Bar Soap".

cs:orderableDrugForm\#CHEWBAR rdfs:subClassOf cs:orderableDrugForm\#BAR;
  rdfs:label "Chewable Bar";
  dc:title "Chewable Bar";
  rdfs:comment "A solid dosage form usually in the form of a rectangle that is meant to be chewed.";
  dcterms:description "A solid dosage form usually in the form of a rectangle that is meant to be chewed.".

cs:orderableDrugForm\#BEAD rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Beads";
  dc:title "Beads";
  rdfs:comment "A solid dosage form in the shape of a small ball.";
  dcterms:description "A solid dosage form in the shape of a small ball.".

cs:orderableDrugForm\#CAKE rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Cake";
  dc:title "Cake";
  rdfs:comment "Cake";
  dcterms:description "Cake".

cs:orderableDrugForm\#CEMENT rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Cement";
  dc:title "Cement";
  rdfs:comment "A substance that serves to produce solid union between two surfaces.";
  dcterms:description "A substance that serves to produce solid union between two surfaces.".

cs:orderableDrugForm\#CRYS rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Crystals";
  dc:title "Crystals";
  rdfs:comment "A naturally produced angular solid of definite form in which the ultimate units from which it is built up are systematically arranged; they are usually evenly spaced on a regular space lattice.";
  dcterms:description "A naturally produced angular solid of definite form in which the ultimate units from which it is built up are systematically arranged; they are usually evenly spaced on a regular space lattice.".

cs:orderableDrugForm\#DISK rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Disk";
  dc:title "Disk";
  rdfs:comment "A circular plate-like organ or structure.";
  dcterms:description "A circular plate-like organ or structure.".

cs:orderableDrugForm\#FLAKE rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Flakes";
  dc:title "Flakes";
  rdfs:comment "Flakes";
  dcterms:description "Flakes".

cs:orderableDrugForm\#GRAN rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Granules";
  dc:title "Granules";
  rdfs:comment "A small particle or grain.";
  dcterms:description "A small particle or grain.".

cs:orderableDrugForm\#GUM rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "ChewingGum";
  dc:title "ChewingGum";
  rdfs:comment "A sweetened and flavored insoluble plastic material of various shapes which when chewed, releases a drug substance into the oral cavity.";
  dcterms:description "A sweetened and flavored insoluble plastic material of various shapes which when chewed, releases a drug substance into the oral cavity.".

cs:orderableDrugForm\#PAD rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Pad";
  dc:title "Pad";
  rdfs:comment "Pad";
  dcterms:description "Pad".

cs:orderableDrugForm\#MEDPAD rdfs:subClassOf cs:orderableDrugForm\#PAD;
  rdfs:label "Medicated Pad";
  dc:title "Medicated Pad";
  rdfs:comment "Medicated Pad";
  dcterms:description "Medicated Pad".

cs:orderableDrugForm\#PATCH rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Patch";
  dc:title "Patch";
  rdfs:comment "A drug delivery system that contains an adhesived backing and that permits its ingredients to diffuse from some portion of it (e.g., the backing itself, a reservoir, the adhesive, or some other component) into the body from the external site where it is applied.";
  dcterms:description "A drug delivery system that contains an adhesived backing and that permits its ingredients to diffuse from some portion of it (e.g., the backing itself, a reservoir, the adhesive, or some other component) into the body from the external site where it is applied.".

cs:orderableDrugForm\#TPATCH rdfs:subClassOf cs:orderableDrugForm\#PATCH;
  rdfs:label "Transdermal Patch";
  dc:title "Transdermal Patch";
  rdfs:comment "Transdermal Patch";
  dcterms:description "Transdermal Patch".

cs:orderableDrugForm\#TPATH16 rdfs:subClassOf cs:orderableDrugForm\#TPATCH;
  rdfs:label "16 Hour Transdermal Patch";
  dc:title "16 Hour Transdermal Patch";
  rdfs:comment "16 Hour Transdermal Patch";
  dcterms:description "16 Hour Transdermal Patch".

cs:orderableDrugForm\#TPATH24 rdfs:subClassOf cs:orderableDrugForm\#TPATCH;
  rdfs:label "24 Hour Transdermal Patch";
  dc:title "24 Hour Transdermal Patch";
  rdfs:comment "24 Hour Transdermal Patch";
  dcterms:description "24 Hour Transdermal Patch".

cs:orderableDrugForm\#TPATH2WK rdfs:subClassOf cs:orderableDrugForm\#TPATCH;
  rdfs:label "Biweekly Transdermal Patch";
  dc:title "Biweekly Transdermal Patch";
  rdfs:comment "Biweekly Transdermal Patch";
  dcterms:description "Biweekly Transdermal Patch".

cs:orderableDrugForm\#TPATH72 rdfs:subClassOf cs:orderableDrugForm\#TPATCH;
  rdfs:label "72 Hour Transdermal Patch";
  dc:title "72 Hour Transdermal Patch";
  rdfs:comment "72 Hour Transdermal Patch";
  dcterms:description "72 Hour Transdermal Patch".

cs:orderableDrugForm\#TPATHWK rdfs:subClassOf cs:orderableDrugForm\#TPATCH;
  rdfs:label "Weekly Transdermal Patch";
  dc:title "Weekly Transdermal Patch";
  rdfs:comment "Weekly Transdermal Patch";
  dcterms:description "Weekly Transdermal Patch".

cs:orderableDrugForm\#PELLET rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Pellet";
  dc:title "Pellet";
  rdfs:comment "A small sterile solid mass consisting of a highly purified drug (with or without excipients) made by the formation of granules, or by compression and molding.";
  dcterms:description "A small sterile solid mass consisting of a highly purified drug (with or without excipients) made by the formation of granules, or by compression and molding.".

cs:orderableDrugForm\#PILL rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Pill";
  dc:title "Pill";
  rdfs:comment "A small, round solid dosage form containing a medicinal agent intended for oral administration.";
  dcterms:description "A small, round solid dosage form containing a medicinal agent intended for oral administration.".

cs:orderableDrugForm\#CAP rdfs:subClassOf cs:orderableDrugForm\#PILL;
  rdfs:label "Capsule";
  dc:title "Capsule";
  rdfs:comment "A solid dosage form in which the drug is enclosed within either a hard or soft soluble container or \"shell\" made from a suitable form of gelatin.";
  dcterms:description "A solid dosage form in which the drug is enclosed within either a hard or soft soluble container or \"shell\" made from a suitable form of gelatin.".

cs:orderableDrugForm\#ORCAP rdfs:subClassOf cs:orderableDrugForm\#CAP;
  rdfs:label "Oral Capsule";
  dc:title "Oral Capsule";
  rdfs:comment "Oral Capsule";
  dcterms:description "Oral Capsule".

cs:orderableDrugForm\#ENTCAP rdfs:subClassOf cs:orderableDrugForm\#ORCAP;
  rdfs:label "Enteric Coated Capsule";
  dc:title "Enteric Coated Capsule";
  rdfs:comment "Enteric Coated Capsule";
  dcterms:description "Enteric Coated Capsule".

cs:orderableDrugForm\#ERENTCAP rdfs:subClassOf cs:orderableDrugForm\#ENTCAP;
  rdfs:label "Extended Release Enteric Coated Capsule";
  dc:title "Extended Release Enteric Coated Capsule";
  rdfs:comment "Extended Release Enteric Coated Capsule";
  dcterms:description "Extended Release Enteric Coated Capsule".

cs:orderableDrugForm\#ERCAP rdfs:subClassOf cs:orderableDrugForm\#ORCAP;
  rdfs:label "Extended Release Capsule";
  dc:title "Extended Release Capsule";
  rdfs:comment "A solid dosage form in which the drug is enclosed within either a hard or soft soluble container made from a suitable form of gelatin, and which releases a drug (or drugs) in such a manner to allow a reduction in dosing frequency as compared to that drug (or drugs) presented as a conventional dosage form.";
  dcterms:description "A solid dosage form in which the drug is enclosed within either a hard or soft soluble container made from a suitable form of gelatin, and which releases a drug (or drugs) in such a manner to allow a reduction in dosing frequency as compared to that drug (or drugs) presented as a conventional dosage form.".

cs:orderableDrugForm\#ERCAP12 rdfs:subClassOf cs:orderableDrugForm\#ERCAP;
  rdfs:label "12 Hour Extended Release Capsule";
  dc:title "12 Hour Extended Release Capsule";
  rdfs:comment "12 Hour Extended Release Capsule";
  dcterms:description "12 Hour Extended Release Capsule".

cs:orderableDrugForm\#ERCAP24 rdfs:subClassOf cs:orderableDrugForm\#ERCAP;
  rdfs:label "24 Hour Extended Release Capsule";
  dc:title "24 Hour Extended Release Capsule";
  rdfs:comment "24 Hour Extended Release Capsule";
  dcterms:description "24 Hour Extended Release Capsule".

cs:orderableDrugForm\#ERECCAP rdfs:subClassOf cs:orderableDrugForm\#ERCAP;
  rdfs:label "Extended Release Enteric Coated Capsule";
  dc:title "Extended Release Enteric Coated Capsule";
  rdfs:comment "Rationale: Duplicate of code ERENTCAP. Use code ERENTCAP instead.";
  dcterms:description "Rationale: Duplicate of code ERENTCAP. Use code ERENTCAP instead.".

cs:orderableDrugForm\#TAB rdfs:subClassOf cs:orderableDrugForm\#PILL;
  rdfs:label "Tablet";
  dc:title "Tablet";
  rdfs:comment "A solid dosage form containing medicinal substances with or without suitable diluents.";
  dcterms:description "A solid dosage form containing medicinal substances with or without suitable diluents.".

cs:orderableDrugForm\#ORTAB rdfs:subClassOf cs:orderableDrugForm\#TAB;
  rdfs:label "Oral Tablet";
  dc:title "Oral Tablet";
  rdfs:comment "Oral Tablet";
  dcterms:description "Oral Tablet".

cs:orderableDrugForm\#BUCTAB rdfs:subClassOf cs:orderableDrugForm\#ORTAB;
  rdfs:label "Buccal Tablet";
  dc:title "Buccal Tablet";
  rdfs:comment "Buccal Tablet";
  dcterms:description "Buccal Tablet".

cs:orderableDrugForm\#SRBUCTAB rdfs:subClassOf cs:orderableDrugForm\#BUCTAB;
  rdfs:label "Sustained Release Buccal Tablet";
  dc:title "Sustained Release Buccal Tablet";
  rdfs:comment "Sustained Release Buccal Tablet";
  dcterms:description "Sustained Release Buccal Tablet".

cs:orderableDrugForm\#CAPLET rdfs:subClassOf cs:orderableDrugForm\#ORTAB;
  rdfs:label "Caplet";
  dc:title "Caplet";
  rdfs:comment "Caplet";
  dcterms:description "Caplet".

cs:orderableDrugForm\#CHEWTAB rdfs:subClassOf cs:orderableDrugForm\#ORTAB;
  rdfs:label "Chewable Tablet";
  dc:title "Chewable Tablet";
  rdfs:comment "A solid dosage form containing medicinal substances with or without suitable diluents that is intended to be chewed, producing a pleasant tasting residue in the oral cavity that is easily swallowed and does not leave a bitter or unpleasant after-taste.";
  dcterms:description "A solid dosage form containing medicinal substances with or without suitable diluents that is intended to be chewed, producing a pleasant tasting residue in the oral cavity that is easily swallowed and does not leave a bitter or unpleasant after-taste.".

cs:orderableDrugForm\#CPTAB rdfs:subClassOf cs:orderableDrugForm\#ORTAB;
  rdfs:label "Coated Particles Tablet";
  dc:title "Coated Particles Tablet";
  rdfs:comment "Coated Particles Tablet";
  dcterms:description "Coated Particles Tablet".

cs:orderableDrugForm\#DISINTAB rdfs:subClassOf cs:orderableDrugForm\#ORTAB;
  rdfs:label "Disintegrating Tablet";
  dc:title "Disintegrating Tablet";
  rdfs:comment "A solid dosage form containing medicinal substances which disintegrates rapidly, usually within a matter of seconds, when placed upon the tongue.";
  dcterms:description "A solid dosage form containing medicinal substances which disintegrates rapidly, usually within a matter of seconds, when placed upon the tongue.".

cs:orderableDrugForm\#DRTAB rdfs:subClassOf cs:orderableDrugForm\#ORTAB;
  rdfs:label "Delayed Release Tablet";
  dc:title "Delayed Release Tablet";
  rdfs:comment "Delayed Release Tablet";
  dcterms:description "Delayed Release Tablet".

cs:orderableDrugForm\#ECTAB rdfs:subClassOf cs:orderableDrugForm\#ORTAB;
  rdfs:label "Enteric Coated Tablet";
  dc:title "Enteric Coated Tablet";
  rdfs:comment "Enteric Coated Tablet";
  dcterms:description "Enteric Coated Tablet".

cs:orderableDrugForm\#ERECTAB rdfs:subClassOf cs:orderableDrugForm\#ECTAB;
  rdfs:label "Extended Release Enteric Coated Tablet";
  dc:title "Extended Release Enteric Coated Tablet";
  rdfs:comment "Extended Release Enteric Coated Tablet";
  dcterms:description "Extended Release Enteric Coated Tablet".

cs:orderableDrugForm\#ERTAB rdfs:subClassOf cs:orderableDrugForm\#ORTAB;
  rdfs:label "Extended Release Tablet";
  dc:title "Extended Release Tablet";
  rdfs:comment "A solid dosage form containing a drug which allows at least a reduction in dosing frequency as compared to that drug presented in conventional dosage form.";
  dcterms:description "A solid dosage form containing a drug which allows at least a reduction in dosing frequency as compared to that drug presented in conventional dosage form.".

cs:orderableDrugForm\#ERTAB12 rdfs:subClassOf cs:orderableDrugForm\#ERTAB;
  rdfs:label "12 Hour Extended Release Tablet";
  dc:title "12 Hour Extended Release Tablet";
  rdfs:comment "12 Hour Extended Release Tablet";
  dcterms:description "12 Hour Extended Release Tablet".

cs:orderableDrugForm\#ERTAB24 rdfs:subClassOf cs:orderableDrugForm\#ERTAB;
  rdfs:label "24 Hour Extended Release Tablet";
  dc:title "24 Hour Extended Release Tablet";
  rdfs:comment "24 Hour Extended Release Tablet";
  dcterms:description "24 Hour Extended Release Tablet".

cs:orderableDrugForm\#ORTROCHE rdfs:subClassOf cs:orderableDrugForm\#ORTAB;
  rdfs:label "Lozenge/Oral Troche";
  dc:title "Lozenge/Oral Troche";
  rdfs:comment "A solid preparation containing one or more medicaments, usually in a flavored, sweetened base which is intended to dissolve or disintegrate slowly in the mouth.";
  dcterms:description "A solid preparation containing one or more medicaments, usually in a flavored, sweetened base which is intended to dissolve or disintegrate slowly in the mouth.".

cs:orderableDrugForm\#SLTAB rdfs:subClassOf cs:orderableDrugForm\#ORTAB;
  rdfs:label "Sublingual Tablet";
  dc:title "Sublingual Tablet";
  rdfs:comment "Sublingual Tablet";
  dcterms:description "Sublingual Tablet".

cs:orderableDrugForm\#VAGTAB rdfs:subClassOf cs:orderableDrugForm\#TAB;
  rdfs:label "Vaginal Tablet";
  dc:title "Vaginal Tablet";
  rdfs:comment "Vaginal Tablet";
  dcterms:description "Vaginal Tablet".

cs:orderableDrugForm\#POWD rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Powder";
  dc:title "Powder";
  rdfs:comment "An intimate mixture of dry, finely divided drugs and/or chemicals that may be intended for internal or external use.";
  dcterms:description "An intimate mixture of dry, finely divided drugs and/or chemicals that may be intended for internal or external use.".

cs:orderableDrugForm\#TOPPWD rdfs:subClassOf cs:orderableDrugForm\#POWD;
  rdfs:label "Topical Powder";
  dc:title "Topical Powder";
  rdfs:comment "Topical Powder";
  dcterms:description "Topical Powder".

cs:orderableDrugForm\#RECPWD rdfs:subClassOf cs:orderableDrugForm\#TOPPWD;
  rdfs:label "Rectal Powder";
  dc:title "Rectal Powder";
  rdfs:comment "Rectal Powder";
  dcterms:description "Rectal Powder".

cs:orderableDrugForm\#VAGPWD rdfs:subClassOf cs:orderableDrugForm\#TOPPWD;
  rdfs:label "Vaginal Powder";
  dc:title "Vaginal Powder";
  rdfs:comment "Vaginal Powder";
  dcterms:description "Vaginal Powder".

cs:orderableDrugForm\#SUPP rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Suppository";
  dc:title "Suppository";
  rdfs:comment "A solid body of various weights and shapes, adapted for introduction into the rectal, vaginal, or urethral orifice of the human body; they usually melt, soften, or dissolve at body temperature.";
  dcterms:description "A solid body of various weights and shapes, adapted for introduction into the rectal, vaginal, or urethral orifice of the human body; they usually melt, soften, or dissolve at body temperature.".

cs:orderableDrugForm\#RECSUPP rdfs:subClassOf cs:orderableDrugForm\#SUPP;
  rdfs:label "Rectal Suppository";
  dc:title "Rectal Suppository";
  rdfs:comment "Rectal Suppository";
  dcterms:description "Rectal Suppository".

cs:orderableDrugForm\#URETHSUPP rdfs:subClassOf cs:orderableDrugForm\#SUPP;
  rdfs:label "Urethral suppository";
  dc:title "Urethral suppository";
  rdfs:comment "Urethral suppository";
  dcterms:description "Urethral suppository".

cs:orderableDrugForm\#VAGSUPP rdfs:subClassOf cs:orderableDrugForm\#SUPP;
  rdfs:label "Vaginal Suppository";
  dc:title "Vaginal Suppository";
  rdfs:comment "Vaginal Suppository";
  dcterms:description "Vaginal Suppository".

cs:orderableDrugForm\#SWAB rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Swab";
  dc:title "Swab";
  rdfs:comment "A wad of absorbent material usually wound around one end of a small stick and used for applying medication or for removing material from an area.";
  dcterms:description "A wad of absorbent material usually wound around one end of a small stick and used for applying medication or for removing material from an area.".

cs:orderableDrugForm\#MEDSWAB rdfs:subClassOf cs:orderableDrugForm\#SWAB;
  rdfs:label "Medicated swab";
  dc:title "Medicated swab";
  rdfs:comment "Medicated swab";
  dcterms:description "Medicated swab".

cs:orderableDrugForm\#WAFER rdfs:subClassOf cs:orderableDrugForm\#%5fSolidDrugForm;
  rdfs:label "Wafer";
  dc:title "Wafer";
  rdfs:comment "A thin slice of material containing a medicinal agent.";
  dcterms:description "A thin slice of material containing a medicinal agent.".

# - vs:v3-substanceAdminSubstitution -------------------------------------------

vs:v3-substanceAdminSubstitution a fhir:ValueSet;
  fhir:version "2015-11-30";
  rdfs:label "v3 Code System substanceAdminSubstitution";
  dc:title "v3 Code System substanceAdminSubstitution";
  rdfs:comment " Identifies what sort of change is permitted or has occurred between the therapy that was ordered and the therapy that was/will be provided.";
  dcterms:description " Identifies what sort of change is permitted or has occurred between the therapy that was ordered and the therapy that was/will be provided.";
  dc:date "2015-11-30";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active];
  fhir:include cs:substanceAdminSubstitution.

cs:substanceAdminSubstitution.system a fhir:CodeSystem;
  rdfs:label "v3 Code System substanceAdminSubstitution";
  dc:title "v3 Code System substanceAdminSubstitution";
  rdfs:comment " Identifies what sort of change is permitted or has occurred between the therapy that was ordered and the therapy that was/will be provided.";
  dcterms:description " Identifies what sort of change is permitted or has occurred between the therapy that was ordered and the therapy that was/will be provided.";
  dc:date "Mon Nov 30 00:00:00 AEDT 2015".

cs:substanceAdminSubstitution a fhir:Concept.

cs:substanceAdminSubstitution\#%5fActSubstanceAdminSubstitutionCode rdfs:subClassOf cs:substanceAdminSubstitution;
  rdfs:label "ActSubstanceAdminSubstitutionCode";
  dc:title "ActSubstanceAdminSubstitutionCode";
  rdfs:comment "Description: Substitution occurred or is permitted with another product that may potentially have different ingredients, but having the same biological and therapeutic effects.";
  dcterms:description "Description: Substitution occurred or is permitted with another product that may potentially have different ingredients, but having the same biological and therapeutic effects.".

cs:substanceAdminSubstitution\#E rdfs:subClassOf cs:substanceAdminSubstitution\#%5fActSubstanceAdminSubstitutionCode;
  rdfs:label "equivalent";
  dc:title "equivalent";
  rdfs:comment "Description: Substitution occurred or is permitted with another bioequivalent and therapeutically equivalent product.";
  dcterms:description "Description: Substitution occurred or is permitted with another bioequivalent and therapeutically equivalent product.".

cs:substanceAdminSubstitution\#EC rdfs:subClassOf cs:substanceAdminSubstitution\#E;
  rdfs:label "equivalent composition";
  dc:title "equivalent composition";
  rdfs:comment "Description: \n                        \r\n\n                        Substitution occurred or is permitted with another product that is a:\r\n\n                        \n                           pharmaceutical alternative containing the same active ingredient but is formulated with different salt, ester\n                           pharmaceutical equivalent that has the same active ingredient, strength, dosage form and route of administration\n                        \n                        \n                           Examples: \n                        \r\n\n                        \n                           \n                              Pharmaceutical alternative: Erythromycin Ethylsuccinate for Erythromycin Stearate\n                           \n                              Pharmaceutical equivalent: Lisonpril for Zestril";
  dcterms:description "Description: \n                        \r\n\n                        Substitution occurred or is permitted with another product that is a:\r\n\n                        \n                           pharmaceutical alternative containing the same active ingredient but is formulated with different salt, ester\n                           pharmaceutical equivalent that has the same active ingredient, strength, dosage form and route of administration\n                        \n                        \n                           Examples: \n                        \r\n\n                        \n                           \n                              Pharmaceutical alternative: Erythromycin Ethylsuccinate for Erythromycin Stearate\n                           \n                              Pharmaceutical equivalent: Lisonpril for Zestril".

cs:substanceAdminSubstitution\#BC rdfs:subClassOf cs:substanceAdminSubstitution\#EC;
  rdfs:label "brand composition";
  dc:title "brand composition";
  rdfs:comment "Description: \n                        \r\n\n                        Substitution occurred or is permitted between equivalent Brands but not Generics\r\n\n                        \n                           Examples: \n                        \r\n\n                        \n                           Zestril  for Prinivil\n                           Coumadin for Jantoven";
  dcterms:description "Description: \n                        \r\n\n                        Substitution occurred or is permitted between equivalent Brands but not Generics\r\n\n                        \n                           Examples: \n                        \r\n\n                        \n                           Zestril  for Prinivil\n                           Coumadin for Jantoven".

cs:substanceAdminSubstitution\#G rdfs:subClassOf cs:substanceAdminSubstitution\#EC;
  rdfs:label "generic composition";
  dc:title "generic composition";
  rdfs:comment "Description: Substitution occurred or is permitted between equivalent Generics but not Brands\r\n\n                        \n                           Examples: \n                        \r\n\n                        \n                           Lisnopril (Lupin Corp) for Lisnopril (Wockhardt Corp)";
  dcterms:description "Description: Substitution occurred or is permitted between equivalent Generics but not Brands\r\n\n                        \n                           Examples: \n                        \r\n\n                        \n                           Lisnopril (Lupin Corp) for Lisnopril (Wockhardt Corp)".

cs:substanceAdminSubstitution\#TE rdfs:subClassOf cs:substanceAdminSubstitution\#E;
  rdfs:label "therapeutic alternative";
  dc:title "therapeutic alternative";
  rdfs:comment "Description: Substitution occurred or is permitted with another product having the same therapeutic objective and safety profile.\r\n\n                        \n                           Examples: \n                        \r\n\n                        \n                           ranitidine for Tagamet";
  dcterms:description "Description: Substitution occurred or is permitted with another product having the same therapeutic objective and safety profile.\r\n\n                        \n                           Examples: \n                        \r\n\n                        \n                           ranitidine for Tagamet".

cs:substanceAdminSubstitution\#TB rdfs:subClassOf cs:substanceAdminSubstitution\#TE;
  rdfs:label "therapeutic brand";
  dc:title "therapeutic brand";
  rdfs:comment "Description: Substitution occurred or is permitted between therapeutically equivalent Brands but not Generics\r\n>\n                           Examples: \n                        \r\n\n                        \n                           Zantac for Tagamet";
  dcterms:description "Description: Substitution occurred or is permitted between therapeutically equivalent Brands but not Generics\r\n>\n                           Examples: \n                        \r\n\n                        \n                           Zantac for Tagamet".

cs:substanceAdminSubstitution\#TG rdfs:subClassOf cs:substanceAdminSubstitution\#TE;
  rdfs:label "therapeutic generic";
  dc:title "therapeutic generic";
  rdfs:comment "Description: Substitution occurred or is permitted between therapeutically equivalent Generics but not Brands\r\n>\n                           Examples: \n                        \r\n\n                        \n                           Ranitidine  for cimetidine";
  dcterms:description "Description: Substitution occurred or is permitted between therapeutically equivalent Generics but not Brands\r\n>\n                           Examples: \n                        \r\n\n                        \n                           Ranitidine  for cimetidine".

cs:substanceAdminSubstitution\#F rdfs:subClassOf cs:substanceAdminSubstitution\#%5fActSubstanceAdminSubstitutionCode;
  rdfs:label "formulary";
  dc:title "formulary";
  rdfs:comment "Description: This substitution was performed or is permitted based on formulary guidelines.";
  dcterms:description "Description: This substitution was performed or is permitted based on formulary guidelines.".

cs:substanceAdminSubstitution\#N rdfs:subClassOf cs:substanceAdminSubstitution\#%5fActSubstanceAdminSubstitutionCode;
  rdfs:label "none";
  dc:title "none";
  rdfs:comment "No substitution occurred or is permitted.";
  dcterms:description "No substitution occurred or is permitted.".

# - vs:v3-xBasicConfidentialityKind --------------------------------------------

vs:v3-xBasicConfidentialityKind a fhir:ValueSet;
  fhir:version "2014-03-26";
  rdfs:label "x_BasicConfidentialityKind";
  dc:title "x_BasicConfidentialityKind";
  rdfs:comment "  Description:\r\nUsed to enumerate the typical confidentiality constraints placed upon a clinical document.  Usage Note:\r\nx_BasicConfidentialityKind is a subset of Confidentiality codes that are used as metadata indicating the receiver responsibility to comply with normally applicable jurisdictional privacy law or disclosure authorization; that the receiver may not disclose this information except as directed by the information custodian, who may be the information subject; or that the receiver may not disclose this information except as directed by the information custodian, who may be the information subject.";
  dcterms:description "  Description:\r\nUsed to enumerate the typical confidentiality constraints placed upon a clinical document.  Usage Note:\r\nx_BasicConfidentialityKind is a subset of Confidentiality codes that are used as metadata indicating the receiver responsibility to comply with normally applicable jurisdictional privacy law or disclosure authorization; that the receiver may not disclose this information except as directed by the information custodian, who may be the information subject; or that the receiver may not disclose this information except as directed by the information custodian, who may be the information subject.";
  fhir:status [ a fhir:conformance-resource-status\#active];
  fhir:canonicalStatus [ a fhir:canonical-status\#active].

# -------------------------------------------------------------------------------------

