From b5e478af60f40cb3a38f2294b7dc872a8a9dbca4 Mon Sep 17 00:00:00 2001 From: Christian Mader Date: Tue, 26 Sep 2017 14:20:31 +0200 Subject: [PATCH 001/300] Initial commit --- README.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..e47c5ff5 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# InformationModel +The Industrial Data Space Information Model From 24c0c2bdafa0169a4b214434fdb0d521ec2f715d Mon Sep 17 00:00:00 2001 From: christianmader Date: Tue, 26 Sep 2017 16:12:25 +0200 Subject: [PATCH 002/300] initial commit --- .gitignore | 2 + LICENSE | 13 + README.md | 14 +- rdf/Action.ttl | 58 + rdf/Base.ttl | 121 + rdf/BinaryOperator.ttl | 36 + rdf/Broker.ttl | 13 + rdf/BrokerCommunication.ttl | 184 ++ rdf/Connector.ttl | 34 + rdf/Contract.ttl | 48 + rdf/DataAsset.ttl | 101 + rdf/DataTransfer.ttl | 135 + rdf/Gender.ttl | 25 + rdf/HashFunction.ttl | 51 + rdf/HttpMethod.ttl | 52 + rdf/IANAMediaType.ttl | 4842 +++++++++++++++++++++++++++++++++++ rdf/ISIC.ttl | 3080 ++++++++++++++++++++++ rdf/Language.ttl | 416 +++ rdf/License.ttl | 28 + rdf/ParameterDataType.ttl | 75 + rdf/Participant.ttl | 154 ++ rdf/ProtocolBinding.ttl | 125 + rdf/Provenance.ttl | 113 + rdf/Rule.ttl | 168 ++ rdf/SecurityProfile.ttl | 279 ++ rdf/Service.ttl | 276 ++ rdf/Spatial.ttl | 95 + rdf/Temporal.ttl | 56 + rdf/Unit.ttl | 29 + 29 files changed, 10622 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 rdf/Action.ttl create mode 100644 rdf/Base.ttl create mode 100644 rdf/BinaryOperator.ttl create mode 100644 rdf/Broker.ttl create mode 100644 rdf/BrokerCommunication.ttl create mode 100644 rdf/Connector.ttl create mode 100644 rdf/Contract.ttl create mode 100644 rdf/DataAsset.ttl create mode 100644 rdf/DataTransfer.ttl create mode 100644 rdf/Gender.ttl create mode 100644 rdf/HashFunction.ttl create mode 100644 rdf/HttpMethod.ttl create mode 100644 rdf/IANAMediaType.ttl create mode 100644 rdf/ISIC.ttl create mode 100644 rdf/Language.ttl create mode 100644 rdf/License.ttl create mode 100644 rdf/ParameterDataType.ttl create mode 100644 rdf/Participant.ttl create mode 100644 rdf/ProtocolBinding.ttl create mode 100644 rdf/Provenance.ttl create mode 100644 rdf/Rule.ttl create mode 100644 rdf/SecurityProfile.ttl create mode 100644 rdf/Service.ttl create mode 100644 rdf/Spatial.ttl create mode 100644 rdf/Temporal.ttl create mode 100644 rdf/Unit.ttl diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..c6ef2182 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea + diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..c0753785 --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2017. Industrial Data Space Association + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. \ No newline at end of file diff --git a/README.md b/README.md index e47c5ff5..409a47fe 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,14 @@ -# InformationModel +# The Industrial Data Space Information Model The Industrial Data Space Information Model + +## Introduction + +## Overview + +## Usage + +## Contributors + +* Fraunhofer IAIS, FIT +* Industrial Data Space Associaton + diff --git a/rdf/Action.ttl b/rdf/Action.ttl new file mode 100644 index 00000000..17576a84 --- /dev/null +++ b/rdf/Action.ttl @@ -0,0 +1,58 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . +@prefix xsd: . +@prefix odrl: . + +@prefix ids: . +@prefix ids_act: . +@prefix valid: . +@prefix idoc: . + +# Classes +# ------- + +ids:Action rdfs:subClassOf odrl:Action; + a owl:Class; + rdfs:label "Action"@en; + idoc:labelPluralForm "Actions"@en; + rdfs:comment "A thing one might be permitted to do or prohibited from doing to something."@en. + +# Instances +# --------- + +ids_act:invokeOperation a ids:Action; + rdfs:comment "The act of invoking a specific operation."; + dct:identifier "INVOKE_OPERATION". + +ids_act:payOnce a ids:Action; + rdfs:seeAlso odrl:pay; + rdfs:comment "The act of paying a financial amount to a party once for use of the asset."; + dct:identifier "PAY_ONCE". + +ids_act:payPerVolume a ids:Action; + rdfs:comment "The act of paying a financial amount to a party for use of the asset, depending on the requested volume of data."; + dct:identifier "PAY_PER_VOLUME". + +ids_act:payPerUser a ids:Action; + rdfs:comment "The act of paying a financial amount to a party for use of the asset, depending on the number of users of the data."; + dct:identifier "PAY_PER_USER". + +ids_act:payPeriodically a ids:Action; + rdfs:comment "The act of periodically paying a financial amount to a party for use of the asset."; + dct:identifier "PAY_PERIODICALLY". + +ids_act:delete a ids:Action; + rdfs:seeAlso odrl:delete; + rdfs:comment "The act of permanently removing all copies of an Asset."; + dct:identifier "DELETE". + +ids_act:grantUse a ids:Action; + rdfs:seeAlso odrl:grantUse; + rdfs:comment "The act of granting the use of the Asset to third parties."; + dct:identifier "GRANT_USE". + +ids_act:distribute a ids:Action; + rdfs:seeAlso odrl:distribute; + rdfs:comment "The act of distributing the Asset."; + dct:identifier "DISTRIBUTE". \ No newline at end of file diff --git a/rdf/Base.ttl b/rdf/Base.ttl new file mode 100644 index 00000000..823ad6dc --- /dev/null +++ b/rdf/Base.ttl @@ -0,0 +1,121 @@ +@prefix owl: . +@prefix dct: . +@prefix rdfs: . +@prefix prov: . +@prefix rdf: . + +@prefix ids: . +@prefix valid: . +@prefix idoc: . +@prefix trns: . + + +# Description of this ontology +# ---------------------------- + +ids: a owl:Ontology; + dct:title "The Industrial Dataspace Information Model"@en; + rdfs:comment "This ontology defines classes and properties for describing participants, infrastructure, data and services of the Industrial Dataspace."; + dct:creator "Christian Mader" ; + dct:creator "Jaroslav Pullmann" ; + dct:creator "Niklas Petersen" ; + dct:creator "Christoph Lange-Bever" ; + dct:creator "Steffen Lohmann" ; + dct:publisher "Fraunhofer IAIS/EIS"; + dct:publisher "Fraunhofer FIT"; + dct:date "2017-06-20"; + owl:versionInfo "0.9.0". + +# Classes +# ------- + +ids:EntityWithLifecycle a owl:Class; + trns:isAbstract true; + rdfs:label "EntityWithLifecycle"@en ; + rdfs:comment "The class of all individuals that are subject of a lifecycle which needs to be tracked."; + ids:validation [ + owl:onProperty ids:lifecycleActivity; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:entityName; + valid:relationType "@OneToMany"; + valid:constraint "@NotNull"; + ]; + ids:validation [ + owl:onProperty ids:entityDescription; + valid:relationType "@OneToMany"; + ]. + +ids:InfrastructureComponent rdfs:subClassOf ids:EntityWithLifecycle; + a owl:Class; + trns:isAbstract true; + rdfs:label "InfrastructureComponent"@en ; + rdfs:comment "The class of all infrastructure components of the IDS."; + ids:validation [ + owl:onProperty ids:operator; + valid:constraint "@NotNull"; + ]. + +# Properties of InfrastructureComponent +# ------------------------------------- + +ids:maintainer a owl:ObjectProperty; + rdfs:label "maintainer"@en; + rdfs:domain ids:InfrastructureComponent; + rdfs:range ids:Participant; + trns:refByURI true; + rdfs:comment "Participant responsible for maintaining the InfrastructureComponent."@en. + +ids:operator a owl:ObjectProperty; + rdfs:label "operator"@en; + rdfs:domain ids:InfrastructureComponent; + rdfs:range ids:Participant; + trns:refByURI true; + rdfs:comment "Participant responsible for operating the InfrastructureComponent."@en. + +ids:owner a owl:ObjectProperty; + rdfs:label "owner"@en; + rdfs:domain ids:InfrastructureComponent; + rdfs:range ids:Participant; + trns:refByURI true; + rdfs:comment "Participant owning the InfrastructureComponent."@en. + +ids:physicalLocation a owl:ObjectProperty; + rdfs:label "physicalLocation"@en; + rdfs:domain ids:InfrastructureComponent; + rdfs:range ids:Location; + rdfs:comment "The location where the Connector is physically deployed."@en. + +# Properties of EntityWithLifecycle +# ------------------------------------- + +ids:entityName rdfs:subPropertyOf dct:title; + a owl:DatatypeProperty; + rdfs:domain ids:EntityWithLifecycle; + rdfs:range rdf:PlainLiteral; + rdfs:label "entityName"@en; + idoc:labelPluralForm "entityNames"@en; + rdfs:comment "Name of the EntityWithLifecycle."@en. + +ids:entityDescription rdfs:subPropertyOf dct:description; + a owl:DatatypeProperty; + rdfs:domain ids:EntityWithLifecycle; + rdfs:range rdf:PlainLiteral; + rdfs:label "entityDescription"@en; + idoc:labelPluralForm "entityDescriptions"@en; + rdfs:comment "Freetext description of the EntityWithLifecycle.". + +ids:generationActivity rdfs:subPropertyOf prov:wasGeneratedBy; + a owl:ObjectProperty; + rdfs:label "generationActivity"@en; + rdfs:domain ids:InfrastructureComponent; + rdfs:range ids:CreationActivity; + rdfs:comment "Activity that led to the generation of the InfrastructureComponent."@en. + +ids:lifecycleActivity a owl:ObjectProperty; + rdfs:label "lifecycleActivity"@en; + idoc:labelPluralForm "lifecycleActivities"@en; + rdfs:domain ids:EntityWithLifecycle; + rdfs:range ids:Activity; + rdfs:comment "Activity that occurs during the lifecycle of the InfrastructureComponent."@en. \ No newline at end of file diff --git a/rdf/BinaryOperator.ttl b/rdf/BinaryOperator.ttl new file mode 100644 index 00000000..1d8a6a56 --- /dev/null +++ b/rdf/BinaryOperator.ttl @@ -0,0 +1,36 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . +@prefix xsd: . +@prefix odrl: . + +@prefix ids: . +@prefix ids_bop: . +@prefix valid: . +@prefix idoc: . + +# Classes +# ------- + +ids:BinaryOperator rdfs:subClassOf odrl:Operator; + a owl:Class; + rdfs:label "BinaryOperator"@en; + rdfs:comment "The class of binary operators."@en. + +# Instances +# --------- + +ids_bop:eq a ids:BinaryOperator; + rdfs:seeAlso odrl:eq; + rdfs:comment "Equals operator."; + dct:identifier "EQUALS". + +ids_bop:gt a ids:BinaryOperator; + rdfs:seeAlso odrl:gt; + rdfs:comment "Greater-than operator."; + dct:identifier "GREATER_THAN". + +ids_bop:lt a ids:BinaryOperator; + rdfs:seeAlso odrl:lt; + rdfs:comment "Less-than operator."; + dct:identifier "LESS_THAN". \ No newline at end of file diff --git a/rdf/Broker.ttl b/rdf/Broker.ttl new file mode 100644 index 00000000..109033e3 --- /dev/null +++ b/rdf/Broker.ttl @@ -0,0 +1,13 @@ +@prefix owl: . +@prefix rdfs: . + +@prefix ids: . +@prefix valid: . + +# Classes +# ------- + +ids:Broker rdfs:subClassOf ids:Connector; + a owl:Class; + rdfs:label "Broker"@en ; + rdfs:comment "Broker holding an index of published data endpoints."@en. diff --git a/rdf/BrokerCommunication.ttl b/rdf/BrokerCommunication.ttl new file mode 100644 index 00000000..7cfeefad --- /dev/null +++ b/rdf/BrokerCommunication.ttl @@ -0,0 +1,184 @@ +@prefix owl: . +@prefix rdfs: . +@prefix xsd: . +@prefix dct: . + +@prefix ids: . +@prefix valid: . +@prefix trns: . + +# Classes +# ------- + +ids:BrokerMessage a owl:Class; + rdfs:label "BrokerMessage"@en ; + trns:isAbstract true; + rdfs:comment "The class of all messages to interact with a Broker."; + ids:validation [ + owl:onProperty ids:messageContent; + valid:constraint "@NotNull"; + ]. + +ids:BrokerDataMessage rdfs:subClassOf ids:BrokerMessage; + a owl:Class; + trns:isAbstract true; + rdfs:label "BrokerDataMessage"@en ; + rdfs:comment "The class of all messages intended for data transfer to/from a Broker.". + +ids:BrokerQueryMessage rdfs:subClassOf ids:BrokerMessage; + a owl:Class; + trns:isAbstract true; + rdfs:label "BrokerQueryMessage"@en ; + rdfs:comment "The class of all messages that query the broker for data.". + +ids:BrokerRequestMessage rdfs:subClassOf ids:BrokerMessage; + a owl:Class; + trns:isAbstract true; + rdfs:label "BrokerRequestMessage"@en ; + rdfs:comment "The class of all messages that represent requests to a Broker."; + ids:validation [ + owl:onProperty ids:coveredEntity; + valid:constraint "@NotNull"; + ]. + +ids:BrokerResponseMessage rdfs:subClassOf ids:BrokerMessage; + a owl:Class; + trns:isAbstract true; + rdfs:label "BrokerResponseMessage"@en ; + rdfs:comment "The class of all messages that represent responses of a Broker."; + ids:validation [ + owl:onProperty ids:correlationId; + valid:constraint "@NotNull"; + ]. + +ids:BrokerDataRequest rdfs:subClassOf ids:BrokerDataMessage, ids:BrokerRequestMessage; + a owl:Class; + rdfs:label "BrokerDataRequest"@en ; + rdfs:comment "The class of all messages that represent data requests to a Broker."; + ids:validation [ + owl:onProperty ids:dataRequestAction; + valid:constraint "@NotNull"; + ]. + +ids:BrokerDataResponse rdfs:subClassOf ids:BrokerDataMessage, ids:BrokerResponseMessage; + a owl:Class; + rdfs:label "BrokerDataResponse"@en ; + rdfs:comment "The class of all messages that represent data responses of a Broker.". + +ids:BrokerQueryRequest rdfs:subClassOf ids:BrokerRequestMessage, ids:BrokerQueryMessage; + a owl:Class; + rdfs:label "BrokerQueryRequest"@en ; + rdfs:comment "The class of all messages that represent query requests to a Broker."; + ids:validation [ + owl:onProperty ids:queryRequestAction; + valid:constraint "@NotNull"; + ]; + ids:validation [ + owl:onProperty ids:queryScope; + valid:constraint "@NotNull"; + ]. + +ids:BrokerQueryResponse rdfs:subClassOf ids:BrokerQueryMessage, ids:BrokerResponseMessage; + a owl:Class; + rdfs:label "BrokerQueryResponse"@en ; + rdfs:comment "The class of all messages that represent a Broker's response to a query.". + +# Classes with a fixed set of instances +# ------------------------------------- + +ids:BrokerDataRequestAction a owl:Class; + rdfs:label "BrokerDataRequestAction"@en ; + rdfs:comment "The class of all actions that can be issued to a broker in a data request message.". + +ids:BrokerDataRegisterAction a ids:BrokerDataRequestAction; + dct:identifier "REGISTER"@en. + +ids:BrokerDataUpdateAction a ids:BrokerDataRequestAction; + dct:identifier "UPDATE"@en. + +ids:BrokerDataPassivateAction a ids:BrokerDataRequestAction; + dct:identifier "PASSIVATE"@en. + +ids:BrokerDataActivateAction a ids:BrokerDataRequestAction; + dct:identifier "ACTIVATE"@en. + +ids:BrokerDataRemoveAction a ids:BrokerDataRequestAction; + dct:identifier "REMOVE"@en. + +ids:BrokerQueryRequestAction a owl:Class; + rdfs:label "BrokerQueryRequestAction"@en ; + rdfs:comment "The class of all actions that can be issued to a broker in a query message.". + +ids:BrokerQueryRequestGetAction a ids:BrokerQueryRequestAction; + dct:identifier "GET"@en. + +ids:BrokerQueryRequestListAction a ids:BrokerQueryRequestAction; + dct:identifier "LIST"@en. + +ids:BrokerQueryRequestQueryAction a ids:BrokerQueryRequestAction; + dct:identifier "QUERY"@en. + +ids:BrokerQueryMessageScope a owl:Class; + rdfs:label "BrokerQueryMessageScope"@en ; + rdfs:comment "The class of scopes that filter datasets by their states when queried.". + +ids:BrokerQueryMessageScopeAll a ids:BrokerQueryMessageScope; + dct:identifier "ALL"@en. + +ids:BrokerQueryMessageScopeActive a ids:BrokerQueryMessageScope; + dct:identifier "ACTIVE"@en. + +ids:BrokerQueryMessageScopeAccess a ids:BrokerQueryMessageScope; + dct:identifier "ACCESS"@en. + +ids:EntityCoveredByDataRequest a owl:Class; + rdfs:label "CoveredComponent"@en ; + rdfs:comment "The class of IDS entities that are described in a BrokerDataRequest message.". + +ids:CoveredParticipant a ids:EntityCoveredByDataRequest; + dct:identifier "PARTICIPANT"@en. + +ids:CoveredConnector a ids:EntityCoveredByDataRequest; + dct:identifier "CONNECTOR"@en. + +ids:CoveredDataEndpoint a ids:EntityCoveredByDataRequest; + dct:identifier "DATA_ENDPOINT"@en. + +# Properties +# ---------- + +ids:dataRequestAction a owl:ObjectProperty; + rdfs:label "dataRequestAction"; + rdfs:domain ids:BrokerDataRequest; + rdfs:range ids:BrokerDataRequestAction; + rdfs:comment "The action that should be performed with the message's content at the Broker."@en. + +ids:queryRequestAction a owl:ObjectProperty; + rdfs:label "queryRequestAction"; + rdfs:domain ids:BrokerQueryRequest; + rdfs:range ids:BrokerQueryRequestAction; + rdfs:comment "The action that should be performed by the query."@en. + +ids:coveredEntity a owl:ObjectProperty; + rdfs:label "coveredEntity"; + rdfs:domain ids:BrokerRequestMessage; + rdfs:range ids:EntityCoveredByDataRequest; + rdfs:comment "The IDS entity covered in the data request."@en. + +ids:messageContent a owl:DatatypeProperty; + rdfs:label "messageContent"; + rdfs:domain ids:BrokerMessage; + rdfs:range xsd:string; + rdfs:comment "The message's content, e.g., a query."@en. + +ids:correlationId a owl:DatatypeProperty; + rdfs:label "correlationId"; + rdfs:domain ids:BrokerResponseMessage; + rdfs:range xsd:anyURI; + rdfs:comment "The unique ID of the source request which is referred to by a response message."@en. + +ids:queryScope a owl:ObjectProperty; + rdfs:label "queryScope"; + rdfs:domain ids:BrokerQueryMessage; + rdfs:range ids:BrokerQueryMessageScope; + rdfs:comment "The scope of a query defined in a query message."@en. \ No newline at end of file diff --git a/rdf/Connector.ttl b/rdf/Connector.ttl new file mode 100644 index 00000000..5385462b --- /dev/null +++ b/rdf/Connector.ttl @@ -0,0 +1,34 @@ +@prefix owl: . +@prefix rdfs: . +@prefix xsd: . + +@prefix ids: . +@prefix valid: . +@prefix trns: . + +# Classes +# ------- + +ids:Connector rdfs:subClassOf ids:InfrastructureComponent; + a owl:Class; + rdfs:label "Connector"@en ; + rdfs:comment "Connector for hosting data services."@en; + ids:validation [ + owl:onProperty ids:provides; + valid:relationType "@OneToMany"; + ]. + +# Properties +# ---------- + +ids:provides a owl:ObjectProperty; + rdfs:domain ids:Connector; + rdfs:range ids:DataEndpoint; + rdfs:label "provides"@en; + rdfs:comment "The DataEndpoints provided by a Connector."@en. + +ids:securityProfile a owl:ObjectProperty; + rdfs:domain ids:Connector; + rdfs:range ids:SecurityProfile; + rdfs:label "securityProfile"@en; + rdfs:comment "The SecurityProfile supported by the Connector."@en. \ No newline at end of file diff --git a/rdf/Contract.ttl b/rdf/Contract.ttl new file mode 100644 index 00000000..baa169e1 --- /dev/null +++ b/rdf/Contract.ttl @@ -0,0 +1,48 @@ +@prefix owl: . +@prefix dct: . +@prefix rdfs: . +@prefix odrl: . + +@prefix ids: . +@prefix valid: . +@prefix idoc: . +@prefix trns: . + +# Classes +# ------- + +ids:ServiceContract rdfs:subClassOf odrl:Offer; + a owl:Class; + rdfs:label "ServiceContract"@en ; + rdfs:comment "An offered policy that describes how parties can act on a specified resource."@en; + ids:validation [ + owl:onProperty ids:permission; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:prohibition; + valid:relationType "@OneToMany"; + ]. + +# Properties of ServiceContract +# ----------------------------- + +ids:contractDuration a owl:ObjectProperty; + rdfs:domain ids:ServiceContract; + rdfs:range ids:TemporalEntity; + rdfs:label "contractDuration"@en; + rdfs:comment "The duration for which the ServiceContract is valid."@en. + +ids:permission rdfs:subPropertyOf odrl:permission; + a owl:ObjectProperty; + rdfs:label "permission"@en; + rdfs:domain ids:ServiceContract; + rdfs:range ids:Permission; + rdfs:comment "The Permissions granted by a ServiceContract."@en. + +ids:prohibition rdfs:subPropertyOf odrl:prohibition; + a owl:ObjectProperty; + rdfs:label "prohibition"@en; + rdfs:domain ids:ServiceContract; + rdfs:range ids:Prohibition; + rdfs:comment "The Prohibitions imposed by a ServiceContract."@en. diff --git a/rdf/DataAsset.ttl b/rdf/DataAsset.ttl new file mode 100644 index 00000000..16f17306 --- /dev/null +++ b/rdf/DataAsset.ttl @@ -0,0 +1,101 @@ +@prefix owl: . +@prefix rdfs: . +@prefix xsd: . +@prefix dct: . +@prefix dcat: . + +@prefix ids: . +@prefix valid: . +@prefix idoc: . + +# Classes +# ------- + +ids:DataAsset rdfs:subClassOf ids:EntityWithLifecycle; + rdfs:subClassOf dcat:Dataset; + a owl:Class; + rdfs:label "DataAsset"@en; + rdfs:comment "DataAsset on the Industrial Dataspace. May be a data offering, data that is in the state of being transfered or an aggregation of multiple other dataassets."@en; + ids:validation [ + owl:onProperty ids:coversTemporal; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:coversSpatial; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:coversCategory; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:coversLanguage; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:keyword; + valid:relationType "@OneToMany"; + ]. + +# Properties +# ---------- + +ids:version rdfs:subPropertyOf dct:hasVersion; + a owl:DatatypeProperty; + rdfs:label "version"@en; + rdfs:domain ids:DataAsset; + rdfs:range xsd:string; + rdfs:comment "Version identifier of the InfrastructureComponent."@en. + +ids:licenseDocument rdfs:subPropertyOf dct:license; + a owl:ObjectProperty; + rdfs:label "licenseDocument"@en; + rdfs:domain ids:DataAsset; + rdfs:range ids:LicenseDocument; + rdfs:comment "License of the DataAsset. Refers to common standard licenses used in the IDS."@en. + +ids:licenseReference rdfs:subPropertyOf dct:license; + a owl:ObjectProperty; + rdfs:label "licenseReference"@en; + rdfs:domain ids:DataAsset; + rdfs:range xsd:anyURI; + rdfs:comment "References a license document that is publicly available on the Web."@en. + +ids:coversTemporal rdfs:subPropertyOf dct:temporal; + rdfs:label "coversTemporal"@en; + rdfs:domain ids:DataAsset; + rdfs:range ids:TemporalEntity; + rdfs:comment "Temporal period or instance covered by the DataAsset."@en. + +ids:coversSpatial rdfs:subPropertyOf dct:spatial; + rdfs:label "coversSpatial"@en; + rdfs:domain ids:DataAsset; + rdfs:range ids:SpatialEntity; + rdfs:comment "Spatial location covered by the DataAsset."@en. + +ids:coversCategory rdfs:subPropertyOf dcat:theme; + rdfs:label "coversCategory"@en; + idoc:labelPluralForm "coversCategories"@en; + rdfs:domain ids:DataAsset; + rdfs:range xsd:anyURI; + rdfs:comment "Links to a taxonomy categorizing content-related coverage of the DataAsset."@en. + +ids:keyword rdfs:subPropertyOf dcat:theme; + rdfs:label "keyword"@en; + idoc:labelPluralForm "keywords"@en; + rdfs:domain ids:DataAsset; + rdfs:range xsd:anyURI; + rdfs:comment "Links to an item in a flat list of controlled keywords that describe content-related coverage of the DataAsset."@en. + +ids:coversLanguage rdfs:subPropertyOf dct:language; + rdfs:label "coversLanguage"@en; + idoc:labelPluralForm "coversLanguages"@en; + rdfs:domain ids:DataAsset; + rdfs:range ids:Language; + rdfs:comment "States the language that is used in the DataAsset."@en. + +ids:origin a owl:DatatypeProperty; + rdfs:label "origin"@en; + rdfs:domain ids:DataAsset; + rdfs:range xsd:anyURI; + rdfs:comment "Links to the original creator or entity from which the DataAsset has been derived."@en. \ No newline at end of file diff --git a/rdf/DataTransfer.ttl b/rdf/DataTransfer.ttl new file mode 100644 index 00000000..a811355e --- /dev/null +++ b/rdf/DataTransfer.ttl @@ -0,0 +1,135 @@ +@prefix owl: . +@prefix rdfs: . +@prefix xsd: . +@prefix credential: . +@prefix dct: . + +@prefix ids: . +@prefix valid: . +@prefix idoc: . +@prefix trns: . + +# Classes +# ------- + +ids:DataTransfer + a owl:Class; + rdfs:label "DataTransfer"@en; + rdfs:comment "The class of resources that describe a data transfer on the IDS."@en; + ids:validation [ + owl:onProperty ids:customAttribute; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:sender; + valid:constraint "@NotNull"; + ]; + ids:validation [ + owl:onProperty ids:receiver; + valid:constraint "@NotNull"; + ]; + ids:validation [ + owl:onProperty ids:transferCreatedAt; + valid:constraint "@NotNull"; + ]. + +ids:TransferAttribute + a owl:Class; + rdfs:label "TransferAttribute"@en; + rdfs:comment "General attribute for additional description of security aspects of a data transfer."@en; + ids:validation [ + owl:onProperty ids:transferAttributeKey; + valid:constraint "@NotNull"; + ]; + ids:validation [ + owl:onProperty ids:transferAttributeValue; + valid:constraint "@NotNull"; + ]. + +ids:AuthToken rdfs:subClassOf credential:SimpleCredential; + a owl:Class; + rdfs:label "AuthToken"@en; + rdfs:comment "Authorization Token."@en; + ids:validation [ + owl:onProperty ids:tokenValue; + valid:constraint "@NotNull"; + ]. + +# Properties +# ---------- + +ids:sender + a owl:DatatypeProperty; + rdfs:label "sender"@en; + rdfs:domain ids:DataTransfer; + rdfs:range ids:Participant; + trns:refByURI true; + rdfs:comment "The data endpoint which is the origin of the message."@en. + +ids:receiver + a owl:DatatypeProperty; + rdfs:label "receiver"@en; + rdfs:domain ids:DataTransfer; + rdfs:range ids:Participant; + trns:refByURI true; + rdfs:comment "The data endpoint which is the recipient of the message."@en. + +ids:invokedOperation + a owl:DatatypeProperty; + rdfs:label "invokedOperation"@en; + rdfs:domain ids:DataTransfer; + rdfs:range ids:Operation; + trns:refByURI true; + rdfs:comment "The operation that has been invoked to retrieve the transferred data."@en. + +ids:authToken + a owl:ObjectProperty; + rdfs:label "authToken"@en; + rdfs:domain ids:DataTransfer; + rdfs:range ids:AuthToken; + rdfs:comment "An authorization token like JSON Web Token."@en. + +ids:payloadDigest + a owl:DatatypeProperty; + rdfs:label "digest"@en; + rdfs:domain ids:DataTransfer; + rdfs:range xsd:base64Binary; + rdfs:comment "The digest of the DataAsset being transfered."@en. + +ids:customAttribute + a owl:ObjectProperty; + rdfs:label "customAttribute"@en; + idoc:labelPluralForm "customAttributes"@en; + rdfs:domain ids:DataTransfer; + rdfs:range ids:TransferAttribute; + rdfs:comment "Additional attributes that can be specified for a DataTransfer."@en. + +ids:tokenValue a owl:DatatypeProperty; + rdfs:label "tokenValue"@en; + rdfs:domain ids:AuthToken; + rdfs:range xsd:string; + rdfs:comment "An authorization token value like JSON Web Token."@en. + +ids:transferAttributeKey a owl:DatatypeProperty; + rdfs:label "transferAttributeKey"@en; + rdfs:domain ids:TransferProperty; + rdfs:range xsd:string. + +ids:transferAttributeValue a owl:DatatypeProperty; + rdfs:label "transferAttributeValue"@en; + rdfs:domain ids:TransferProperty; + rdfs:range xsd:string. + +ids:transferCreatedAt rdfs:subPropertyOf dct:dateSubmitted; + a owl:DatatypeProperty; + rdfs:label "transferCreatedAt"@en; + rdfs:domain ids:DataTransfer; + rdfs:range xsd:dateTime; + rdfs:comment "Date of creation of the DataTransfer."@en. + +ids:hashFunction a owl:ObjectProperty; + rdfs:label "hashFunction"@en; + rdfs:domain ids:DataTransfer; + rdfs:range ids:HashFunction; + rdfs:comment "Algorithm used to calculate the payload digest of a DataTransfer."@en. + diff --git a/rdf/Gender.ttl b/rdf/Gender.ttl new file mode 100644 index 00000000..ec1d70b1 --- /dev/null +++ b/rdf/Gender.ttl @@ -0,0 +1,25 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . + +@prefix ids: . +@prefix ids_gen: . + +# Classes +# ------- + +ids:Gender a owl:Class; + rdfs:label "Gender"@en ; + rdfs:comment "The class of genders of persons."@en. + +# Instances +# --------- + + a ids:Gender; + rdfs:comment "Male"; + dct:identifier "MALE". + + a ids:Gender; + rdfs:comment "Feale"; + dct:identifier "FEMALE". + diff --git a/rdf/HashFunction.ttl b/rdf/HashFunction.ttl new file mode 100644 index 00000000..278229bb --- /dev/null +++ b/rdf/HashFunction.ttl @@ -0,0 +1,51 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . + +@prefix ids: . +@prefix ids_hash: . + +# Classes +# ------- + +ids:HashFunction a owl:Class; + rdfs:label "HashFunction"@en ; + rdfs:comment "The class of hash functions used by IDS DataTransfers.". + +# Instances +# --------- + + a ids:HashFunction; + rdfs:label "MD2"; + rdfs:comment "MD2"; + dct:identifier "MD2". + + a ids:HashFunction; + rdfs:label "MD5"; + rdfs:comment "MD5"; + dct:identifier "MD5". + + a ids:HashFunction; + rdfs:label "SHA-1"; + rdfs:comment "SHA-1"; + dct:identifier "SHA_1". + + a ids:HashFunction; + rdfs:label "SHA-224"; + rdfs:comment "SHA-224"; + dct:identifier "SHA_224". + + a ids:HashFunction; + rdfs:label "SHA-256"; + rdfs:comment "SHA-256"; + dct:identifier "SHA_256". + + a ids:HashFunction; + rdfs:label "SHA-384"; + rdfs:comment "SHA-384"; + dct:identifier "SHA_384". + + a ids:HashFunction; + rdfs:label "SHA-512"; + rdfs:comment "SHA-512"; + dct:identifier "SHA_512". \ No newline at end of file diff --git a/rdf/HttpMethod.ttl b/rdf/HttpMethod.ttl new file mode 100644 index 00000000..d1fbd2f8 --- /dev/null +++ b/rdf/HttpMethod.ttl @@ -0,0 +1,52 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . + +@prefix ids: . +@prefix ids_hm: . + +# Classes +# ------- + +ids:HttpMethod a owl:Class; + rdfs:label "HTTP Methods"@en ; + rdfs:comment "The class of HTTP/1.1 Request Methods.". + +# Instances +# --------- + + a ids:HttpMethod; + rdfs:comment "GET"; + dct:identifier "HTTP_GET". + + a ids:HttpMethod; + rdfs:comment "HEAD"; + dct:identifier "HTTP_HEAD". + + a ids:HttpMethod; + rdfs:comment "POST"; + dct:identifier "HTTP_POST". + + a ids:HttpMethod; + rdfs:comment "PUT"; + dct:identifier "HTTP_PUT". + + a ids:HttpMethod; + rdfs:comment "DELETE"; + dct:identifier "HTTP_DELETE". + + a ids:HttpMethod; + rdfs:comment "CONNECT"; + dct:identifier "HTTP_CONNECT". + + a ids:HttpMethod; + rdfs:comment "OPTIONS"; + dct:identifier "HTTP_OPTIONS". + + a ids:HttpMethod; + rdfs:comment "TRACE"; + dct:identifier "HTTP_TRACE". + + a ids:HttpMethod; + rdfs:comment "PATCH"; + dct:identifier "HTTP_PATCH". \ No newline at end of file diff --git a/rdf/IANAMediaType.ttl b/rdf/IANAMediaType.ttl new file mode 100644 index 00000000..7fe5ff16 --- /dev/null +++ b/rdf/IANAMediaType.ttl @@ -0,0 +1,4842 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . + +@prefix ids: . +@prefix ids_mt: . + +# Classes +# ------- + +ids:IANAMediaType a owl:Class; + rdfs:label "IANAMediaType"@en ; + rdfs:comment "The class of media types (formerly known as MIME types) as defined by IANA.". + +# Instances +# --------- + + a ids:IANAMediaType; + rdfs:comment "application/1d-interleaved-parityfec"; + dct:identifier "APPLICATION_1D_INTERLEAVED_PARITYFEC". + + a ids:IANAMediaType; + rdfs:comment "application/3gpdash-qoe-report+xml"; + dct:identifier "APPLICATION_3GPDASH_QOE_REPORT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/3gpp-ims+xml"; + dct:identifier "APPLICATION_3GPP_IMS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/A2L"; + dct:identifier "APPLICATION_A2L". + + a ids:IANAMediaType; + rdfs:comment "application/activemessage"; + dct:identifier "APPLICATION_ACTIVEMESSAGE". + + a ids:IANAMediaType; + rdfs:comment "application/activemessage"; + dct:identifier "APPLICATION_ACTIVEMESSAGE". + + a ids:IANAMediaType; + rdfs:comment "application/alto-costmap+json"; + dct:identifier "APPLICATION_ALTO_COSTMAP_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/alto-costmapfilter+json"; + dct:identifier "APPLICATION_ALTO_COSTMAPFILTER_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/alto-directory+json"; + dct:identifier "APPLICATION_ALTO_DIRECTORY_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/alto-endpointprop+json"; + dct:identifier "APPLICATION_ALTO_ENDPOINTPROP_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/alto-endpointpropparams+json"; + dct:identifier "APPLICATION_ALTO_ENDPOINTPROPPARAMS_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/alto-endpointcost+json"; + dct:identifier "APPLICATION_ALTO_ENDPOINTCOST_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/alto-endpointcostparams+json"; + dct:identifier "APPLICATION_ALTO_ENDPOINTCOSTPARAMS_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/alto-error+json"; + dct:identifier "APPLICATION_ALTO_ERROR_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/alto-networkmapfilter+json"; + dct:identifier "APPLICATION_ALTO_NETWORKMAPFILTER_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/alto-networkmap+json"; + dct:identifier "APPLICATION_ALTO_NETWORKMAP_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/AML"; + dct:identifier "APPLICATION_AML". + + a ids:IANAMediaType; + rdfs:comment "application/andrew-inset"; + dct:identifier "APPLICATION_ANDREW_INSET". + + a ids:IANAMediaType; + rdfs:comment "application/applefile"; + dct:identifier "APPLICATION_APPLEFILE". + + a ids:IANAMediaType; + rdfs:comment "application/ATF"; + dct:identifier "APPLICATION_ATF". + + a ids:IANAMediaType; + rdfs:comment "application/ATFX"; + dct:identifier "APPLICATION_ATFX". + + a ids:IANAMediaType; + rdfs:comment "application/atom+xml"; + dct:identifier "APPLICATION_ATOM_XML". + + a ids:IANAMediaType; + rdfs:comment "application/atomcat+xml"; + dct:identifier "APPLICATION_ATOMCAT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/atomdeleted+xml"; + dct:identifier "APPLICATION_ATOMDELETED_XML". + + a ids:IANAMediaType; + rdfs:comment "application/atomicmail"; + dct:identifier "APPLICATION_ATOMICMAIL". + + a ids:IANAMediaType; + rdfs:comment "application/atomsvc+xml"; + dct:identifier "APPLICATION_ATOMSVC_XML". + + a ids:IANAMediaType; + rdfs:comment "application/ATXML"; + dct:identifier "APPLICATION_ATXML". + + a ids:IANAMediaType; + rdfs:comment "application/auth-policy+xml"; + dct:identifier "APPLICATION_AUTH_POLICY_XML". + + a ids:IANAMediaType; + rdfs:comment "application/bacnet-xdd+zip"; + dct:identifier "APPLICATION_BACNET_XDD_ZIP". + + a ids:IANAMediaType; + rdfs:comment "application/batch-SMTP"; + dct:identifier "APPLICATION_BATCH_SMTP". + + a ids:IANAMediaType; + rdfs:comment "application/beep+xml"; + dct:identifier "APPLICATION_BEEP_XML". + + a ids:IANAMediaType; + rdfs:comment "application/calendar+json"; + dct:identifier "APPLICATION_CALENDAR_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/calendar+xml"; + dct:identifier "APPLICATION_CALENDAR_XML". + + a ids:IANAMediaType; + rdfs:comment "application/call-completion"; + dct:identifier "APPLICATION_CALL_COMPLETION". + + a ids:IANAMediaType; + rdfs:comment "application/CALS-1840"; + dct:identifier "APPLICATION_CALS_1840". + + a ids:IANAMediaType; + rdfs:comment "application/cbor"; + dct:identifier "APPLICATION_CBOR". + + a ids:IANAMediaType; + rdfs:comment "application/ccmp+xml"; + dct:identifier "APPLICATION_CCMP_XML". + + a ids:IANAMediaType; + rdfs:comment "application/ccxml+xml"; + dct:identifier "APPLICATION_CCXML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/CDFX+XML"; + dct:identifier "APPLICATION_CDFX_XML". + + a ids:IANAMediaType; + rdfs:comment "application/cdmi-capability"; + dct:identifier "APPLICATION_CDMI_CAPABILITY". + + a ids:IANAMediaType; + rdfs:comment "application/cdmi-container"; + dct:identifier "APPLICATION_CDMI_CONTAINER". + + a ids:IANAMediaType; + rdfs:comment "application/cdmi-domain"; + dct:identifier "APPLICATION_CDMI_DOMAIN". + + a ids:IANAMediaType; + rdfs:comment "application/cdmi-object"; + dct:identifier "APPLICATION_CDMI_OBJECT". + + a ids:IANAMediaType; + rdfs:comment "application/cdmi-queue"; + dct:identifier "APPLICATION_CDMI_QUEUE". + + a ids:IANAMediaType; + rdfs:comment "application/cdni"; + dct:identifier "APPLICATION_CDNI". + + a ids:IANAMediaType; + rdfs:comment "application/CEA"; + dct:identifier "APPLICATION_CEA". + + a ids:IANAMediaType; + rdfs:comment "application/cea-2018+xml"; + dct:identifier "APPLICATION_CEA_2018_XML". + + a ids:IANAMediaType; + rdfs:comment "application/cellml+xml"; + dct:identifier "APPLICATION_CELLML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/cfw"; + dct:identifier "APPLICATION_CFW". + + a ids:IANAMediaType; + rdfs:comment "application/clue_info+xml"; + dct:identifier "APPLICATION_CLUE_INFO_XML". + + a ids:IANAMediaType; + rdfs:comment "application/cms"; + dct:identifier "APPLICATION_CMS". + + a ids:IANAMediaType; + rdfs:comment "application/cnrp+xml"; + dct:identifier "APPLICATION_CNRP_XML". + + a ids:IANAMediaType; + rdfs:comment "application/coap-group+json"; + dct:identifier "APPLICATION_COAP_GROUP_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/coap-payload"; + dct:identifier "APPLICATION_COAP_PAYLOAD". + + a ids:IANAMediaType; + rdfs:comment "application/commonground"; + dct:identifier "APPLICATION_COMMONGROUND". + + a ids:IANAMediaType; + rdfs:comment "application/conference-info+xml"; + dct:identifier "APPLICATION_CONFERENCE_INFO_XML". + + a ids:IANAMediaType; + rdfs:comment "application/cpl+xml"; + dct:identifier "APPLICATION_CPL_XML". + + a ids:IANAMediaType; + rdfs:comment "application/cose"; + dct:identifier "APPLICATION_COSE". + + a ids:IANAMediaType; + rdfs:comment "application/cose-key"; + dct:identifier "APPLICATION_COSE_KEY". + + a ids:IANAMediaType; + rdfs:comment "application/cose-key-set"; + dct:identifier "APPLICATION_COSE_KEY_SET". + + a ids:IANAMediaType; + rdfs:comment "application/csrattrs"; + dct:identifier "APPLICATION_CSRATTRS". + + a ids:IANAMediaType; + rdfs:comment "application/csta+xml"; + dct:identifier "APPLICATION_CSTA_XML". + + a ids:IANAMediaType; + rdfs:comment "application/CSTAdata+xml"; + dct:identifier "APPLICATION_CSTADATA_XML". + + a ids:IANAMediaType; + rdfs:comment "application/csvm+json"; + dct:identifier "APPLICATION_CSVM_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/cybercash"; + dct:identifier "APPLICATION_CYBERCASH". + + a ids:IANAMediaType; + rdfs:comment "application/dash+xml"; + dct:identifier "APPLICATION_DASH_XML". + + a ids:IANAMediaType; + rdfs:comment "application/dashdelta"; + dct:identifier "APPLICATION_DASHDELTA". + + a ids:IANAMediaType; + rdfs:comment "application/davmount+xml"; + dct:identifier "APPLICATION_DAVMOUNT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/dca-rft"; + dct:identifier "APPLICATION_DCA_RFT". + + a ids:IANAMediaType; + rdfs:comment "application/DCD"; + dct:identifier "APPLICATION_DCD". + + a ids:IANAMediaType; + rdfs:comment "application/dec-dx"; + dct:identifier "APPLICATION_DEC_DX". + + a ids:IANAMediaType; + rdfs:comment "application/dialog-info+xml"; + dct:identifier "APPLICATION_DIALOG_INFO_XML". + + a ids:IANAMediaType; + rdfs:comment "application/dicom"; + dct:identifier "APPLICATION_DICOM". + + a ids:IANAMediaType; + rdfs:comment "application/dicom+json"; + dct:identifier "APPLICATION_DICOM_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/dicom+xml"; + dct:identifier "APPLICATION_DICOM_XML". + + a ids:IANAMediaType; + rdfs:comment "application/DII"; + dct:identifier "APPLICATION_DII". + + a ids:IANAMediaType; + rdfs:comment "application/DIT"; + dct:identifier "APPLICATION_DIT". + + a ids:IANAMediaType; + rdfs:comment "application/dns"; + dct:identifier "APPLICATION_DNS". + + a ids:IANAMediaType; + rdfs:comment "application/dskpp+xml"; + dct:identifier "APPLICATION_DSKPP_XML". + + a ids:IANAMediaType; + rdfs:comment "application/dssc+der"; + dct:identifier "APPLICATION_DSSC_DER". + + a ids:IANAMediaType; + rdfs:comment "application/dssc+xml"; + dct:identifier "APPLICATION_DSSC_XML". + + a ids:IANAMediaType; + rdfs:comment "application/dvcs"; + dct:identifier "APPLICATION_DVCS". + + a ids:IANAMediaType; + rdfs:comment "application/ecmascript"; + dct:identifier "APPLICATION_ECMASCRIPT". + + a ids:IANAMediaType; + rdfs:comment "application/EDI-consent"; + dct:identifier "APPLICATION_EDI_CONSENT". + + a ids:IANAMediaType; + rdfs:comment "application/EDIFACT"; + dct:identifier "APPLICATION_EDIFACT". + + a ids:IANAMediaType; + rdfs:comment "application/EDI-X12"; + dct:identifier "APPLICATION_EDI_X12". + + a ids:IANAMediaType; + rdfs:comment "application/efi"; + dct:identifier "APPLICATION_EFI". + + a ids:IANAMediaType; + rdfs:comment "application/EmergencyCallData.Comment+xml"; + dct:identifier "APPLICATION_EMERGENCYCALLDATA_COMMENT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/EmergencyCallData.Control+xml"; + dct:identifier "APPLICATION_EMERGENCYCALLDATA_CONTROL_XML". + + a ids:IANAMediaType; + rdfs:comment "application/EmergencyCallData.DeviceInfo+xml"; + dct:identifier "APPLICATION_EMERGENCYCALLDATA_DEVICEINFO_XML". + + a ids:IANAMediaType; + rdfs:comment "application/EmergencyCallData.eCall.MSD"; + dct:identifier "APPLICATION_EMERGENCYCALLDATA_ECALL_MSD". + + a ids:IANAMediaType; + rdfs:comment "application/EmergencyCallData.ProviderInfo+xml"; + dct:identifier "APPLICATION_EMERGENCYCALLDATA_PROVIDERINFO_XML". + + a ids:IANAMediaType; + rdfs:comment "application/EmergencyCallData.ServiceInfo+xml"; + dct:identifier "APPLICATION_EMERGENCYCALLDATA_SERVICEINFO_XML". + + a ids:IANAMediaType; + rdfs:comment "application/EmergencyCallData.SubscriberInfo+xml"; + dct:identifier "APPLICATION_EMERGENCYCALLDATA_SUBSCRIBERINFO_XML". + + a ids:IANAMediaType; + rdfs:comment "application/EmergencyCallData.VEDS+xml"; + dct:identifier "APPLICATION_EMERGENCYCALLDATA_VEDS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/emotionml+xml"; + dct:identifier "APPLICATION_EMOTIONML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/encaprtp"; + dct:identifier "APPLICATION_ENCAPRTP". + + a ids:IANAMediaType; + rdfs:comment "application/epp+xml"; + dct:identifier "APPLICATION_EPP_XML". + + a ids:IANAMediaType; + rdfs:comment "application/epub+zip"; + dct:identifier "APPLICATION_EPUB_ZIP". + + a ids:IANAMediaType; + rdfs:comment "application/eshop"; + dct:identifier "APPLICATION_ESHOP". + + a ids:IANAMediaType; + rdfs:comment "application/example"; + dct:identifier "APPLICATION_EXAMPLE". + + a ids:IANAMediaType; + rdfs:comment "application/fastinfoset"; + dct:identifier "APPLICATION_FASTINFOSET". + + a ids:IANAMediaType; + rdfs:comment "application/fastsoap"; + dct:identifier "APPLICATION_FASTSOAP". + + a ids:IANAMediaType; + rdfs:comment "application/fdt+xml"; + dct:identifier "APPLICATION_FDT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/fits"; + dct:identifier "APPLICATION_FITS". + + a ids:IANAMediaType; + rdfs:comment "application/font-sfnt"; + dct:identifier "APPLICATION_FONT_SFNT". + + a ids:IANAMediaType; + rdfs:comment "application/font-tdpfr"; + dct:identifier "APPLICATION_FONT_TDPFR". + + a ids:IANAMediaType; + rdfs:comment "application/font-woff"; + dct:identifier "APPLICATION_FONT_WOFF". + + a ids:IANAMediaType; + rdfs:comment "application/framework-attributes+xml"; + dct:identifier "APPLICATION_FRAMEWORK_ATTRIBUTES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/geo+json"; + dct:identifier "APPLICATION_GEO_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/geo+json-seq"; + dct:identifier "APPLICATION_GEO_JSON_SEQ". + + a ids:IANAMediaType; + rdfs:comment "application/gml+xml"; + dct:identifier "APPLICATION_GML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/gzip"; + dct:identifier "APPLICATION_GZIP". + + a ids:IANAMediaType; + rdfs:comment "application/H224"; + dct:identifier "APPLICATION_H224". + + a ids:IANAMediaType; + rdfs:comment "application/held+xml"; + dct:identifier "APPLICATION_HELD_XML". + + a ids:IANAMediaType; + rdfs:comment "application/http"; + dct:identifier "APPLICATION_HTTP". + + a ids:IANAMediaType; + rdfs:comment "application/hyperstudio"; + dct:identifier "APPLICATION_HYPERSTUDIO". + + a ids:IANAMediaType; + rdfs:comment "application/ibe-key-request+xml"; + dct:identifier "APPLICATION_IBE_KEY_REQUEST_XML". + + a ids:IANAMediaType; + rdfs:comment "application/ibe-pkg-reply+xml"; + dct:identifier "APPLICATION_IBE_PKG_REPLY_XML". + + a ids:IANAMediaType; + rdfs:comment "application/ibe-pp-data"; + dct:identifier "APPLICATION_IBE_PP_DATA". + + a ids:IANAMediaType; + rdfs:comment "application/iges"; + dct:identifier "APPLICATION_IGES". + + a ids:IANAMediaType; + rdfs:comment "application/im-iscomposing+xml"; + dct:identifier "APPLICATION_IM_ISCOMPOSING_XML". + + a ids:IANAMediaType; + rdfs:comment "application/index"; + dct:identifier "APPLICATION_INDEX". + + a ids:IANAMediaType; + rdfs:comment "application/index.cmd"; + dct:identifier "APPLICATION_INDEX_CMD". + + a ids:IANAMediaType; + rdfs:comment "application/index-obj"; + dct:identifier "APPLICATION_INDEX_OBJ". + + a ids:IANAMediaType; + rdfs:comment "application/index.response"; + dct:identifier "APPLICATION_INDEX_RESPONSE". + + a ids:IANAMediaType; + rdfs:comment "application/index.vnd"; + dct:identifier "APPLICATION_INDEX_VND". + + a ids:IANAMediaType; + rdfs:comment "application/inkml+xml"; + dct:identifier "APPLICATION_INKML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/IOTP"; + dct:identifier "APPLICATION_IOTP". + + a ids:IANAMediaType; + rdfs:comment "application/ipfix"; + dct:identifier "APPLICATION_IPFIX". + + a ids:IANAMediaType; + rdfs:comment "application/ipp"; + dct:identifier "APPLICATION_IPP". + + a ids:IANAMediaType; + rdfs:comment "application/ISUP"; + dct:identifier "APPLICATION_ISUP". + + a ids:IANAMediaType; + rdfs:comment "application/its+xml"; + dct:identifier "APPLICATION_ITS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/javascript"; + dct:identifier "APPLICATION_JAVASCRIPT". + + a ids:IANAMediaType; + rdfs:comment "application/jose"; + dct:identifier "APPLICATION_JOSE". + + a ids:IANAMediaType; + rdfs:comment "application/jose+json"; + dct:identifier "APPLICATION_JOSE_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/jrd+json"; + dct:identifier "APPLICATION_JRD_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/json"; + dct:identifier "APPLICATION_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/json-patch+json"; + dct:identifier "APPLICATION_JSON_PATCH_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/json-seq"; + dct:identifier "APPLICATION_JSON_SEQ". + + a ids:IANAMediaType; + rdfs:comment "application/jwk+json"; + dct:identifier "APPLICATION_JWK_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/jwk-set+json"; + dct:identifier "APPLICATION_JWK_SET_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/jwt"; + dct:identifier "APPLICATION_JWT". + + a ids:IANAMediaType; + rdfs:comment "application/kpml-request+xml"; + dct:identifier "APPLICATION_KPML_REQUEST_XML". + + a ids:IANAMediaType; + rdfs:comment "application/kpml-response+xml"; + dct:identifier "APPLICATION_KPML_RESPONSE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/ld+json"; + dct:identifier "APPLICATION_LD_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/lgr+xml"; + dct:identifier "APPLICATION_LGR_XML". + + a ids:IANAMediaType; + rdfs:comment "application/link-format"; + dct:identifier "APPLICATION_LINK_FORMAT". + + a ids:IANAMediaType; + rdfs:comment "application/load-control+xml"; + dct:identifier "APPLICATION_LOAD_CONTROL_XML". + + a ids:IANAMediaType; + rdfs:comment "application/lost+xml"; + dct:identifier "APPLICATION_LOST_XML". + + a ids:IANAMediaType; + rdfs:comment "application/lostsync+xml"; + dct:identifier "APPLICATION_LOSTSYNC_XML". + + a ids:IANAMediaType; + rdfs:comment "application/LXF"; + dct:identifier "APPLICATION_LXF". + + a ids:IANAMediaType; + rdfs:comment "application/mac-binhex40"; + dct:identifier "APPLICATION_MAC_BINHEX40". + + a ids:IANAMediaType; + rdfs:comment "application/macwriteii"; + dct:identifier "APPLICATION_MACWRITEII". + + a ids:IANAMediaType; + rdfs:comment "application/mads+xml"; + dct:identifier "APPLICATION_MADS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/marc"; + dct:identifier "APPLICATION_MARC". + + a ids:IANAMediaType; + rdfs:comment "application/marcxml+xml"; + dct:identifier "APPLICATION_MARCXML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/mathematica"; + dct:identifier "APPLICATION_MATHEMATICA". + + a ids:IANAMediaType; + rdfs:comment "application/mbms-associated-procedure-description+xml"; + dct:identifier "APPLICATION_MBMS_ASSOCIATED_PROCEDURE_DESCRIPTION_XML". + + a ids:IANAMediaType; + rdfs:comment "application/mbms-deregister+xml"; + dct:identifier "APPLICATION_MBMS_DEREGISTER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/mbms-envelope+xml"; + dct:identifier "APPLICATION_MBMS_ENVELOPE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/mbms-msk-response+xml"; + dct:identifier "APPLICATION_MBMS_MSK_RESPONSE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/mbms-msk+xml"; + dct:identifier "APPLICATION_MBMS_MSK_XML". + + a ids:IANAMediaType; + rdfs:comment "application/mbms-protection-description+xml"; + dct:identifier "APPLICATION_MBMS_PROTECTION_DESCRIPTION_XML". + + a ids:IANAMediaType; + rdfs:comment "application/mbms-reception-report+xml"; + dct:identifier "APPLICATION_MBMS_RECEPTION_REPORT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/mbms-register-response+xml"; + dct:identifier "APPLICATION_MBMS_REGISTER_RESPONSE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/mbms-register+xml"; + dct:identifier "APPLICATION_MBMS_REGISTER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/mbms-schedule+xml"; + dct:identifier "APPLICATION_MBMS_SCHEDULE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/mbms-user-service-description+xml"; + dct:identifier "APPLICATION_MBMS_USER_SERVICE_DESCRIPTION_XML". + + a ids:IANAMediaType; + rdfs:comment "application/mbox"; + dct:identifier "APPLICATION_MBOX". + + a ids:IANAMediaType; + rdfs:comment "application/media_control+xml"; + dct:identifier "APPLICATION_MEDIA_CONTROL_XML". + + a ids:IANAMediaType; + rdfs:comment "application/media-policy-dataset+xml"; + dct:identifier "APPLICATION_MEDIA_POLICY_DATASET_XML". + + a ids:IANAMediaType; + rdfs:comment "application/mediaservercontrol+xml"; + dct:identifier "APPLICATION_MEDIASERVERCONTROL_XML". + + a ids:IANAMediaType; + rdfs:comment "application/merge-patch+json"; + dct:identifier "APPLICATION_MERGE_PATCH_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/metalink4+xml"; + dct:identifier "APPLICATION_METALINK4_XML". + + a ids:IANAMediaType; + rdfs:comment "application/mets+xml"; + dct:identifier "APPLICATION_METS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/MF4"; + dct:identifier "APPLICATION_MF4". + + a ids:IANAMediaType; + rdfs:comment "application/mikey"; + dct:identifier "APPLICATION_MIKEY". + + a ids:IANAMediaType; + rdfs:comment "application/mods+xml"; + dct:identifier "APPLICATION_MODS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/moss-keys"; + dct:identifier "APPLICATION_MOSS_KEYS". + + a ids:IANAMediaType; + rdfs:comment "application/moss-signature"; + dct:identifier "APPLICATION_MOSS_SIGNATURE". + + a ids:IANAMediaType; + rdfs:comment "application/mosskey-data"; + dct:identifier "APPLICATION_MOSSKEY_DATA". + + a ids:IANAMediaType; + rdfs:comment "application/mosskey-request"; + dct:identifier "APPLICATION_MOSSKEY_REQUEST". + + a ids:IANAMediaType; + rdfs:comment "application/mp21"; + dct:identifier "APPLICATION_MP21". + + a ids:IANAMediaType; + rdfs:comment "application/mp4"; + dct:identifier "APPLICATION_MP4". + + a ids:IANAMediaType; + rdfs:comment "application/mpeg4-generic"; + dct:identifier "APPLICATION_MPEG4_GENERIC". + + a ids:IANAMediaType; + rdfs:comment "application/mpeg4-iod"; + dct:identifier "APPLICATION_MPEG4_IOD". + + a ids:IANAMediaType; + rdfs:comment "application/mpeg4-iod-xmt"; + dct:identifier "APPLICATION_MPEG4_IOD_XMT". + + a ids:IANAMediaType; + rdfs:comment "application/mrb-consumer+xml"; + dct:identifier "APPLICATION_MRB_CONSUMER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/mrb-publish+xml"; + dct:identifier "APPLICATION_MRB_PUBLISH_XML". + + a ids:IANAMediaType; + rdfs:comment "application/msc-ivr+xml"; + dct:identifier "APPLICATION_MSC_IVR_XML". + + a ids:IANAMediaType; + rdfs:comment "application/msc-mixer+xml"; + dct:identifier "APPLICATION_MSC_MIXER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/msword"; + dct:identifier "APPLICATION_MSWORD". + + a ids:IANAMediaType; + rdfs:comment "application/mud+json"; + dct:identifier "APPLICATION_MUD_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/mxf"; + dct:identifier "APPLICATION_MXF". + + a ids:IANAMediaType; + rdfs:comment "application/n-quads"; + dct:identifier "APPLICATION_N_QUADS". + + a ids:IANAMediaType; + rdfs:comment "application/n-triples"; + dct:identifier "APPLICATION_N_TRIPLES". + + a ids:IANAMediaType; + rdfs:comment "application/nasdata"; + dct:identifier "APPLICATION_NASDATA". + + a ids:IANAMediaType; + rdfs:comment "application/news-checkgroups"; + dct:identifier "APPLICATION_NEWS_CHECKGROUPS". + + a ids:IANAMediaType; + rdfs:comment "application/news-groupinfo"; + dct:identifier "APPLICATION_NEWS_GROUPINFO". + + a ids:IANAMediaType; + rdfs:comment "application/news-transmission"; + dct:identifier "APPLICATION_NEWS_TRANSMISSION". + + a ids:IANAMediaType; + rdfs:comment "application/nlsml+xml"; + dct:identifier "APPLICATION_NLSML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/nss"; + dct:identifier "APPLICATION_NSS". + + a ids:IANAMediaType; + rdfs:comment "application/ocsp-request"; + dct:identifier "APPLICATION_OCSP_REQUEST". + + a ids:IANAMediaType; + rdfs:comment "application/ocsp-response"; + dct:identifier "APPLICATION_OCSP_RESPONSE". + + a ids:IANAMediaType; + rdfs:comment "application/octet-stream"; + dct:identifier "APPLICATION_OCTET_STREAM". + + a ids:IANAMediaType; + rdfs:comment "application/ODA"; + dct:identifier "APPLICATION_ODA". + + a ids:IANAMediaType; + rdfs:comment "application/ODX"; + dct:identifier "APPLICATION_ODX". + + a ids:IANAMediaType; + rdfs:comment "application/oebps-package+xml"; + dct:identifier "APPLICATION_OEBPS_PACKAGE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/ogg"; + dct:identifier "APPLICATION_OGG". + + a ids:IANAMediaType; + rdfs:comment "application/oxps"; + dct:identifier "APPLICATION_OXPS". + + a ids:IANAMediaType; + rdfs:comment "application/p2p-overlay+xml"; + dct:identifier "APPLICATION_P2P_OVERLAY_XML". + + a ids:IANAMediaType; + rdfs:comment "application/patch-ops-error+xml"; + dct:identifier "APPLICATION_PATCH_OPS_ERROR_XML". + + a ids:IANAMediaType; + rdfs:comment "application/pdf"; + dct:identifier "APPLICATION_PDF". + + a ids:IANAMediaType; + rdfs:comment "application/PDX"; + dct:identifier "APPLICATION_PDX". + + a ids:IANAMediaType; + rdfs:comment "application/pgp-encrypted"; + dct:identifier "APPLICATION_PGP_ENCRYPTED". + + a ids:IANAMediaType; + rdfs:comment "application/pgp-signature"; + dct:identifier "APPLICATION_PGP_SIGNATURE". + + a ids:IANAMediaType; + rdfs:comment "application/pidf-diff+xml"; + dct:identifier "APPLICATION_PIDF_DIFF_XML". + + a ids:IANAMediaType; + rdfs:comment "application/pidf+xml"; + dct:identifier "APPLICATION_PIDF_XML". + + a ids:IANAMediaType; + rdfs:comment "application/pkcs10"; + dct:identifier "APPLICATION_PKCS10". + + a ids:IANAMediaType; + rdfs:comment "application/pkcs7-mime"; + dct:identifier "APPLICATION_PKCS7_MIME". + + a ids:IANAMediaType; + rdfs:comment "application/pkcs7-signature"; + dct:identifier "APPLICATION_PKCS7_SIGNATURE". + + a ids:IANAMediaType; + rdfs:comment "application/pkcs8"; + dct:identifier "APPLICATION_PKCS8". + + a ids:IANAMediaType; + rdfs:comment "application/pkcs12"; + dct:identifier "APPLICATION_PKCS12". + + a ids:IANAMediaType; + rdfs:comment "application/pkix-attr-cert"; + dct:identifier "APPLICATION_PKIX_ATTR_CERT". + + a ids:IANAMediaType; + rdfs:comment "application/pkix-cert"; + dct:identifier "APPLICATION_PKIX_CERT". + + a ids:IANAMediaType; + rdfs:comment "application/pkix-crl"; + dct:identifier "APPLICATION_PKIX_CRL". + + a ids:IANAMediaType; + rdfs:comment "application/pkix-pkipath"; + dct:identifier "APPLICATION_PKIX_PKIPATH". + + a ids:IANAMediaType; + rdfs:comment "application/pkixcmp"; + dct:identifier "APPLICATION_PKIXCMP". + + a ids:IANAMediaType; + rdfs:comment "application/pls+xml"; + dct:identifier "APPLICATION_PLS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/poc-settings+xml"; + dct:identifier "APPLICATION_POC_SETTINGS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/postscript"; + dct:identifier "APPLICATION_POSTSCRIPT". + + a ids:IANAMediaType; + rdfs:comment "application/ppsp-tracker+json"; + dct:identifier "APPLICATION_PPSP_TRACKER_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/problem+json"; + dct:identifier "APPLICATION_PROBLEM_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/problem+xml"; + dct:identifier "APPLICATION_PROBLEM_XML". + + a ids:IANAMediaType; + rdfs:comment "application/provenance+xml"; + dct:identifier "APPLICATION_PROVENANCE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/prs.alvestrand.titrax-sheet"; + dct:identifier "APPLICATION_PRS_ALVESTRAND_TITRAX_SHEET". + + a ids:IANAMediaType; + rdfs:comment "application/prs.cww"; + dct:identifier "APPLICATION_PRS_CWW". + + a ids:IANAMediaType; + rdfs:comment "application/prs.hpub+zip"; + dct:identifier "APPLICATION_PRS_HPUB_ZIP". + + a ids:IANAMediaType; + rdfs:comment "application/prs.nprend"; + dct:identifier "APPLICATION_PRS_NPREND". + + a ids:IANAMediaType; + rdfs:comment "application/prs.plucker"; + dct:identifier "APPLICATION_PRS_PLUCKER". + + a ids:IANAMediaType; + rdfs:comment "application/prs.rdf-xml-crypt"; + dct:identifier "APPLICATION_PRS_RDF_XML_CRYPT". + + a ids:IANAMediaType; + rdfs:comment "application/prs.xsf+xml"; + dct:identifier "APPLICATION_PRS_XSF_XML". + + a ids:IANAMediaType; + rdfs:comment "application/pskc+xml"; + dct:identifier "APPLICATION_PSKC_XML". + + a ids:IANAMediaType; + rdfs:comment "application/rdf+xml"; + dct:identifier "APPLICATION_RDF_XML". + + a ids:IANAMediaType; + rdfs:comment "application/QSIG"; + dct:identifier "APPLICATION_QSIG". + + a ids:IANAMediaType; + rdfs:comment "application/raptorfec"; + dct:identifier "APPLICATION_RAPTORFEC". + + a ids:IANAMediaType; + rdfs:comment "application/rdap+json"; + dct:identifier "APPLICATION_RDAP_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/reginfo+xml"; + dct:identifier "APPLICATION_REGINFO_XML". + + a ids:IANAMediaType; + rdfs:comment "application/relax-ng-compact-syntax"; + dct:identifier "APPLICATION_RELAX_NG_COMPACT_SYNTAX". + + a ids:IANAMediaType; + rdfs:comment "application/remote-printing"; + dct:identifier "APPLICATION_REMOTE_PRINTING". + + a ids:IANAMediaType; + rdfs:comment "application/reputon+json"; + dct:identifier "APPLICATION_REPUTON_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/resource-lists-diff+xml"; + dct:identifier "APPLICATION_RESOURCE_LISTS_DIFF_XML". + + a ids:IANAMediaType; + rdfs:comment "application/resource-lists+xml"; + dct:identifier "APPLICATION_RESOURCE_LISTS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/rfc+xml"; + dct:identifier "APPLICATION_RFC_XML". + + a ids:IANAMediaType; + rdfs:comment "application/riscos"; + dct:identifier "APPLICATION_RISCOS". + + a ids:IANAMediaType; + rdfs:comment "application/rlmi+xml"; + dct:identifier "APPLICATION_RLMI_XML". + + a ids:IANAMediaType; + rdfs:comment "application/rls-services+xml"; + dct:identifier "APPLICATION_RLS_SERVICES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/rpki-ghostbusters"; + dct:identifier "APPLICATION_RPKI_GHOSTBUSTERS". + + a ids:IANAMediaType; + rdfs:comment "application/rpki-manifest"; + dct:identifier "APPLICATION_RPKI_MANIFEST". + + a ids:IANAMediaType; + rdfs:comment "application/rpki-roa"; + dct:identifier "APPLICATION_RPKI_ROA". + + a ids:IANAMediaType; + rdfs:comment "application/rpki-updown"; + dct:identifier "APPLICATION_RPKI_UPDOWN". + + a ids:IANAMediaType; + rdfs:comment "application/rtf"; + dct:identifier "APPLICATION_RTF". + + a ids:IANAMediaType; + rdfs:comment "application/rtploopback"; + dct:identifier "APPLICATION_RTPLOOPBACK". + + a ids:IANAMediaType; + rdfs:comment "application/rtx"; + dct:identifier "APPLICATION_RTX". + + a ids:IANAMediaType; + rdfs:comment "application/samlassertion+xml"; + dct:identifier "APPLICATION_SAMLASSERTION_XML". + + a ids:IANAMediaType; + rdfs:comment "application/samlmetadata+xml"; + dct:identifier "APPLICATION_SAMLMETADATA_XML". + + a ids:IANAMediaType; + rdfs:comment "application/sbml+xml"; + dct:identifier "APPLICATION_SBML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/scaip+xml"; + dct:identifier "APPLICATION_SCAIP_XML". + + a ids:IANAMediaType; + rdfs:comment "application/scim+json"; + dct:identifier "APPLICATION_SCIM_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/scvp-cv-request"; + dct:identifier "APPLICATION_SCVP_CV_REQUEST". + + a ids:IANAMediaType; + rdfs:comment "application/scvp-cv-response"; + dct:identifier "APPLICATION_SCVP_CV_RESPONSE". + + a ids:IANAMediaType; + rdfs:comment "application/scvp-vp-request"; + dct:identifier "APPLICATION_SCVP_VP_REQUEST". + + a ids:IANAMediaType; + rdfs:comment "application/scvp-vp-response"; + dct:identifier "APPLICATION_SCVP_VP_RESPONSE". + + a ids:IANAMediaType; + rdfs:comment "application/sdp"; + dct:identifier "APPLICATION_SDP". + + a ids:IANAMediaType; + rdfs:comment "application/sep-exi"; + dct:identifier "APPLICATION_SEP_EXI". + + a ids:IANAMediaType; + rdfs:comment "application/sep+xml"; + dct:identifier "APPLICATION_SEP_XML". + + a ids:IANAMediaType; + rdfs:comment "application/session-info"; + dct:identifier "APPLICATION_SESSION_INFO". + + a ids:IANAMediaType; + rdfs:comment "application/set-payment"; + dct:identifier "APPLICATION_SET_PAYMENT". + + a ids:IANAMediaType; + rdfs:comment "application/set-payment-initiation"; + dct:identifier "APPLICATION_SET_PAYMENT_INITIATION". + + a ids:IANAMediaType; + rdfs:comment "application/set-registration"; + dct:identifier "APPLICATION_SET_REGISTRATION". + + a ids:IANAMediaType; + rdfs:comment "application/set-registration-initiation"; + dct:identifier "APPLICATION_SET_REGISTRATION_INITIATION". + + a ids:IANAMediaType; + rdfs:comment "application/SGML"; + dct:identifier "APPLICATION_SGML". + + a ids:IANAMediaType; + rdfs:comment "application/sgml-open-catalog"; + dct:identifier "APPLICATION_SGML_OPEN_CATALOG". + + a ids:IANAMediaType; + rdfs:comment "application/shf+xml"; + dct:identifier "APPLICATION_SHF_XML". + + a ids:IANAMediaType; + rdfs:comment "application/sieve"; + dct:identifier "APPLICATION_SIEVE". + + a ids:IANAMediaType; + rdfs:comment "application/simple-filter+xml"; + dct:identifier "APPLICATION_SIMPLE_FILTER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/simple-message-summary"; + dct:identifier "APPLICATION_SIMPLE_MESSAGE_SUMMARY". + + a ids:IANAMediaType; + rdfs:comment "application/simpleSymbolContainer"; + dct:identifier "APPLICATION_SIMPLESYMBOLCONTAINER". + + a ids:IANAMediaType; + rdfs:comment "application/slate"; + dct:identifier "APPLICATION_SLATE". + + a ids:IANAMediaType; + rdfs:comment "application/smil"; + dct:identifier "APPLICATION_SMIL". + + a ids:IANAMediaType; + rdfs:comment "application/smil+xml"; + dct:identifier "APPLICATION_SMIL_XML". + + a ids:IANAMediaType; + rdfs:comment "application/smpte336m"; + dct:identifier "APPLICATION_SMPTE336M". + + a ids:IANAMediaType; + rdfs:comment "application/soap+fastinfoset"; + dct:identifier "APPLICATION_SOAP_FASTINFOSET". + + a ids:IANAMediaType; + rdfs:comment "application/soap+xml"; + dct:identifier "APPLICATION_SOAP_XML". + + a ids:IANAMediaType; + rdfs:comment "application/spirits-event+xml"; + dct:identifier "APPLICATION_SPIRITS_EVENT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/sql"; + dct:identifier "APPLICATION_SQL". + + a ids:IANAMediaType; + rdfs:comment "application/srgs"; + dct:identifier "APPLICATION_SRGS". + + a ids:IANAMediaType; + rdfs:comment "application/srgs+xml"; + dct:identifier "APPLICATION_SRGS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/sru+xml"; + dct:identifier "APPLICATION_SRU_XML". + + a ids:IANAMediaType; + rdfs:comment "application/ssml+xml"; + dct:identifier "APPLICATION_SSML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/tamp-apex-update"; + dct:identifier "APPLICATION_TAMP_APEX_UPDATE". + + a ids:IANAMediaType; + rdfs:comment "application/tamp-apex-update-confirm"; + dct:identifier "APPLICATION_TAMP_APEX_UPDATE_CONFIRM". + + a ids:IANAMediaType; + rdfs:comment "application/tamp-community-update"; + dct:identifier "APPLICATION_TAMP_COMMUNITY_UPDATE". + + a ids:IANAMediaType; + rdfs:comment "application/tamp-community-update-confirm"; + dct:identifier "APPLICATION_TAMP_COMMUNITY_UPDATE_CONFIRM". + + a ids:IANAMediaType; + rdfs:comment "application/tamp-error"; + dct:identifier "APPLICATION_TAMP_ERROR". + + a ids:IANAMediaType; + rdfs:comment "application/tamp-sequence-adjust"; + dct:identifier "APPLICATION_TAMP_SEQUENCE_ADJUST". + + a ids:IANAMediaType; + rdfs:comment "application/tamp-sequence-adjust-confirm"; + dct:identifier "APPLICATION_TAMP_SEQUENCE_ADJUST_CONFIRM". + + a ids:IANAMediaType; + rdfs:comment "application/tamp-status-query"; + dct:identifier "APPLICATION_TAMP_STATUS_QUERY". + + a ids:IANAMediaType; + rdfs:comment "application/tamp-status-response"; + dct:identifier "APPLICATION_TAMP_STATUS_RESPONSE". + + a ids:IANAMediaType; + rdfs:comment "application/tamp-update"; + dct:identifier "APPLICATION_TAMP_UPDATE". + + a ids:IANAMediaType; + rdfs:comment "application/tamp-update-confirm"; + dct:identifier "APPLICATION_TAMP_UPDATE_CONFIRM". + + a ids:IANAMediaType; + rdfs:comment "application/tei+xml"; + dct:identifier "APPLICATION_TEI_XML". + + a ids:IANAMediaType; + rdfs:comment "application/thraud+xml"; + dct:identifier "APPLICATION_THRAUD_XML". + + a ids:IANAMediaType; + rdfs:comment "application/timestamp-query"; + dct:identifier "APPLICATION_TIMESTAMP_QUERY". + + a ids:IANAMediaType; + rdfs:comment "application/timestamp-reply"; + dct:identifier "APPLICATION_TIMESTAMP_REPLY". + + a ids:IANAMediaType; + rdfs:comment "application/timestamped-data"; + dct:identifier "APPLICATION_TIMESTAMPED_DATA". + + a ids:IANAMediaType; + rdfs:comment "application/trig"; + dct:identifier "APPLICATION_TRIG". + + a ids:IANAMediaType; + rdfs:comment "application/ttml+xml"; + dct:identifier "APPLICATION_TTML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/tve-trigger"; + dct:identifier "APPLICATION_TVE_TRIGGER". + + a ids:IANAMediaType; + rdfs:comment "application/ulpfec"; + dct:identifier "APPLICATION_ULPFEC". + + a ids:IANAMediaType; + rdfs:comment "application/urc-grpsheet+xml"; + dct:identifier "APPLICATION_URC_GRPSHEET_XML". + + a ids:IANAMediaType; + rdfs:comment "application/urc-ressheet+xml"; + dct:identifier "APPLICATION_URC_RESSHEET_XML". + + a ids:IANAMediaType; + rdfs:comment "application/urc-targetdesc+xml"; + dct:identifier "APPLICATION_URC_TARGETDESC_XML". + + a ids:IANAMediaType; + rdfs:comment "application/urc-uisocketdesc+xml"; + dct:identifier "APPLICATION_URC_UISOCKETDESC_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vcard+json"; + dct:identifier "APPLICATION_VCARD_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vcard+xml"; + dct:identifier "APPLICATION_VCARD_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vemmi"; + dct:identifier "APPLICATION_VEMMI". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp.access-transfer-events+xml"; + dct:identifier "APPLICATION_VND_3GPP_ACCESS_TRANSFER_EVENTS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp.bsf+xml"; + dct:identifier "APPLICATION_VND_3GPP_BSF_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp.mid-call+xml"; + dct:identifier "APPLICATION_VND_3GPP_MID_CALL_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp.pic-bw-large"; + dct:identifier "APPLICATION_VND_3GPP_PIC_BW_LARGE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp.pic-bw-small"; + dct:identifier "APPLICATION_VND_3GPP_PIC_BW_SMALL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp.pic-bw-var"; + dct:identifier "APPLICATION_VND_3GPP_PIC_BW_VAR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp-prose-pc3ch+xml"; + dct:identifier "APPLICATION_VND_3GPP_PROSE_PC3CH_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp-prose+xml"; + dct:identifier "APPLICATION_VND_3GPP_PROSE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp.sms"; + dct:identifier "APPLICATION_VND_3GPP_SMS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp.sms+xml"; + dct:identifier "APPLICATION_VND_3GPP_SMS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp.srvcc-ext+xml"; + dct:identifier "APPLICATION_VND_3GPP_SRVCC_EXT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp.SRVCC-info+xml"; + dct:identifier "APPLICATION_VND_3GPP_SRVCC_INFO_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp.state-and-event-info+xml"; + dct:identifier "APPLICATION_VND_3GPP_STATE_AND_EVENT_INFO_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp.ussd+xml"; + dct:identifier "APPLICATION_VND_3GPP_USSD_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp2.bcmcsinfo+xml"; + dct:identifier "APPLICATION_VND_3GPP2_BCMCSINFO_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp2.sms"; + dct:identifier "APPLICATION_VND_3GPP2_SMS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3gpp2.tcap"; + dct:identifier "APPLICATION_VND_3GPP2_TCAP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3lightssoftware.imagescal"; + dct:identifier "APPLICATION_VND_3LIGHTSSOFTWARE_IMAGESCAL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.3M.Post-it-Notes"; + dct:identifier "APPLICATION_VND_3M_POST_IT_NOTES". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.accpac.simply.aso"; + dct:identifier "APPLICATION_VND_ACCPAC_SIMPLY_ASO". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.accpac.simply.imp"; + dct:identifier "APPLICATION_VND_ACCPAC_SIMPLY_IMP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd-acucobol"; + dct:identifier "APPLICATION_VND_ACUCOBOL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.acucorp"; + dct:identifier "APPLICATION_VND_ACUCORP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.adobe.flash-movie"; + dct:identifier "APPLICATION_VND_ADOBE_FLASH_MOVIE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.adobe.formscentral.fcdt"; + dct:identifier "APPLICATION_VND_ADOBE_FORMSCENTRAL_FCDT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.adobe.fxp"; + dct:identifier "APPLICATION_VND_ADOBE_FXP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.adobe.partial-upload"; + dct:identifier "APPLICATION_VND_ADOBE_PARTIAL_UPLOAD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.adobe.xdp+xml"; + dct:identifier "APPLICATION_VND_ADOBE_XDP_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.adobe.xfdf"; + dct:identifier "APPLICATION_VND_ADOBE_XFDF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.aether.imp"; + dct:identifier "APPLICATION_VND_AETHER_IMP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ah-barcode"; + dct:identifier "APPLICATION_VND_AH_BARCODE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ahead.space"; + dct:identifier "APPLICATION_VND_AHEAD_SPACE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.airzip.filesecure.azf"; + dct:identifier "APPLICATION_VND_AIRZIP_FILESECURE_AZF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.airzip.filesecure.azs"; + dct:identifier "APPLICATION_VND_AIRZIP_FILESECURE_AZS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.amazon.mobi8-ebook"; + dct:identifier "APPLICATION_VND_AMAZON_MOBI8_EBOOK". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.americandynamics.acc"; + dct:identifier "APPLICATION_VND_AMERICANDYNAMICS_ACC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.amiga.ami"; + dct:identifier "APPLICATION_VND_AMIGA_AMI". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.amundsen.maze+xml"; + dct:identifier "APPLICATION_VND_AMUNDSEN_MAZE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.anki"; + dct:identifier "APPLICATION_VND_ANKI". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.anser-web-certificate-issue-initiation"; + dct:identifier "APPLICATION_VND_ANSER_WEB_CERTIFICATE_ISSUE_INITIATION". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.antix.game-component"; + dct:identifier "APPLICATION_VND_ANTIX_GAME_COMPONENT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.apache.thrift.binary"; + dct:identifier "APPLICATION_VND_APACHE_THRIFT_BINARY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.apache.thrift.compact"; + dct:identifier "APPLICATION_VND_APACHE_THRIFT_COMPACT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.apache.thrift.json"; + dct:identifier "APPLICATION_VND_APACHE_THRIFT_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.api+json"; + dct:identifier "APPLICATION_VND_API_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.apothekende.reservation+json"; + dct:identifier "APPLICATION_VND_APOTHEKENDE_RESERVATION_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.apple.mpegurl"; + dct:identifier "APPLICATION_VND_APPLE_MPEGURL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.apple.installer+xml"; + dct:identifier "APPLICATION_VND_APPLE_INSTALLER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.arastra.swi"; + dct:identifier "APPLICATION_VND_ARASTRA_SWI". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.aristanetworks.swi"; + dct:identifier "APPLICATION_VND_ARISTANETWORKS_SWI". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.artsquare"; + dct:identifier "APPLICATION_VND_ARTSQUARE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.astraea-software.iota"; + dct:identifier "APPLICATION_VND_ASTRAEA_SOFTWARE_IOTA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.audiograph"; + dct:identifier "APPLICATION_VND_AUDIOGRAPH". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.autopackage"; + dct:identifier "APPLICATION_VND_AUTOPACKAGE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.avistar+xml"; + dct:identifier "APPLICATION_VND_AVISTAR_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.balsamiq.bmml+xml"; + dct:identifier "APPLICATION_VND_BALSAMIQ_BMML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.balsamiq.bmpr"; + dct:identifier "APPLICATION_VND_BALSAMIQ_BMPR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.bekitzur-stech+json"; + dct:identifier "APPLICATION_VND_BEKITZUR_STECH_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.biopax.rdf+xml"; + dct:identifier "APPLICATION_VND_BIOPAX_RDF_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.blueice.multipass"; + dct:identifier "APPLICATION_VND_BLUEICE_MULTIPASS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.bluetooth.ep.oob"; + dct:identifier "APPLICATION_VND_BLUETOOTH_EP_OOB". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.bluetooth.le.oob"; + dct:identifier "APPLICATION_VND_BLUETOOTH_LE_OOB". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.bmi"; + dct:identifier "APPLICATION_VND_BMI". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.businessobjects"; + dct:identifier "APPLICATION_VND_BUSINESSOBJECTS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.cab-jscript"; + dct:identifier "APPLICATION_VND_CAB_JSCRIPT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.canon-cpdl"; + dct:identifier "APPLICATION_VND_CANON_CPDL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.canon-lips"; + dct:identifier "APPLICATION_VND_CANON_LIPS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.cendio.thinlinc.clientconf"; + dct:identifier "APPLICATION_VND_CENDIO_THINLINC_CLIENTCONF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.century-systems.tcp_stream"; + dct:identifier "APPLICATION_VND_CENTURY_SYSTEMS_TCP_STREAM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.chemdraw+xml"; + dct:identifier "APPLICATION_VND_CHEMDRAW_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.chess-pgn"; + dct:identifier "APPLICATION_VND_CHESS_PGN". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.chipnuts.karaoke-mmd"; + dct:identifier "APPLICATION_VND_CHIPNUTS_KARAOKE_MMD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.cinderella"; + dct:identifier "APPLICATION_VND_CINDERELLA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.cirpack.isdn-ext"; + dct:identifier "APPLICATION_VND_CIRPACK_ISDN_EXT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.citationstyles.style+xml"; + dct:identifier "APPLICATION_VND_CITATIONSTYLES_STYLE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.claymore"; + dct:identifier "APPLICATION_VND_CLAYMORE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.cloanto.rp9"; + dct:identifier "APPLICATION_VND_CLOANTO_RP9". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.clonk.c4group"; + dct:identifier "APPLICATION_VND_CLONK_C4GROUP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.cluetrust.cartomobile-config"; + dct:identifier "APPLICATION_VND_CLUETRUST_CARTOMOBILE_CONFIG". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.cluetrust.cartomobile-config-pkg"; + dct:identifier "APPLICATION_VND_CLUETRUST_CARTOMOBILE_CONFIG_PKG". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.coffeescript"; + dct:identifier "APPLICATION_VND_COFFEESCRIPT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.collection.doc+json"; + dct:identifier "APPLICATION_VND_COLLECTION_DOC_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.collection+json"; + dct:identifier "APPLICATION_VND_COLLECTION_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.collection.next+json"; + dct:identifier "APPLICATION_VND_COLLECTION_NEXT_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.comicbook+zip"; + dct:identifier "APPLICATION_VND_COMICBOOK_ZIP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.commerce-battelle"; + dct:identifier "APPLICATION_VND_COMMERCE_BATTELLE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.commonspace"; + dct:identifier "APPLICATION_VND_COMMONSPACE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.coreos.ignition+json"; + dct:identifier "APPLICATION_VND_COREOS_IGNITION_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.cosmocaller"; + dct:identifier "APPLICATION_VND_COSMOCALLER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.contact.cmsg"; + dct:identifier "APPLICATION_VND_CONTACT_CMSG". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.crick.clicker"; + dct:identifier "APPLICATION_VND_CRICK_CLICKER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.crick.clicker.keyboard"; + dct:identifier "APPLICATION_VND_CRICK_CLICKER_KEYBOARD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.crick.clicker.palette"; + dct:identifier "APPLICATION_VND_CRICK_CLICKER_PALETTE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.crick.clicker.template"; + dct:identifier "APPLICATION_VND_CRICK_CLICKER_TEMPLATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.crick.clicker.wordbank"; + dct:identifier "APPLICATION_VND_CRICK_CLICKER_WORDBANK". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.criticaltools.wbs+xml"; + dct:identifier "APPLICATION_VND_CRITICALTOOLS_WBS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ctc-posml"; + dct:identifier "APPLICATION_VND_CTC_POSML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ctct.ws+xml"; + dct:identifier "APPLICATION_VND_CTCT_WS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.cups-pdf"; + dct:identifier "APPLICATION_VND_CUPS_PDF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.cups-postscript"; + dct:identifier "APPLICATION_VND_CUPS_POSTSCRIPT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.cups-ppd"; + dct:identifier "APPLICATION_VND_CUPS_PPD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.cups-raster"; + dct:identifier "APPLICATION_VND_CUPS_RASTER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.cups-raw"; + dct:identifier "APPLICATION_VND_CUPS_RAW". + + a ids:IANAMediaType; + rdfs:comment "application/vnd-curl"; + dct:identifier "APPLICATION_VND_CURL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.cyan.dean.root+xml"; + dct:identifier "APPLICATION_VND_CYAN_DEAN_ROOT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.cybank"; + dct:identifier "APPLICATION_VND_CYBANK". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.d2l.coursepackage1p0+zip"; + dct:identifier "APPLICATION_VND_D2L_COURSEPACKAGE1P0_ZIP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd-dart"; + dct:identifier "APPLICATION_VND_DART". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.data-vision.rdz"; + dct:identifier "APPLICATION_VND_DATA_VISION_RDZ". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dataresource+json"; + dct:identifier "APPLICATION_VND_DATARESOURCE_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.debian.binary-package"; + dct:identifier "APPLICATION_VND_DEBIAN_BINARY_PACKAGE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dece.data"; + dct:identifier "APPLICATION_VND_DECE_DATA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dece.ttml+xml"; + dct:identifier "APPLICATION_VND_DECE_TTML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dece.unspecified"; + dct:identifier "APPLICATION_VND_DECE_UNSPECIFIED". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dece-zip"; + dct:identifier "APPLICATION_VND_DECE_ZIP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.denovo.fcselayout-link"; + dct:identifier "APPLICATION_VND_DENOVO_FCSELAYOUT_LINK". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.desmume-movie"; + dct:identifier "APPLICATION_VND_DESMUME_MOVIE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dir-bi.plate-dl-nosuffix"; + dct:identifier "APPLICATION_VND_DIR_BI_PLATE_DL_NOSUFFIX". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dm.delegation+xml"; + dct:identifier "APPLICATION_VND_DM_DELEGATION_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dna"; + dct:identifier "APPLICATION_VND_DNA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.document+json"; + dct:identifier "APPLICATION_VND_DOCUMENT_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dolby.mobile.1"; + dct:identifier "APPLICATION_VND_DOLBY_MOBILE_1". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dolby.mobile.2"; + dct:identifier "APPLICATION_VND_DOLBY_MOBILE_2". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.doremir.scorecloud-binary-document"; + dct:identifier "APPLICATION_VND_DOREMIR_SCORECLOUD_BINARY_DOCUMENT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dpgraph"; + dct:identifier "APPLICATION_VND_DPGRAPH". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dreamfactory"; + dct:identifier "APPLICATION_VND_DREAMFACTORY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.drive+json"; + dct:identifier "APPLICATION_VND_DRIVE_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dtg.local"; + dct:identifier "APPLICATION_VND_DTG_LOCAL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dtg.local.flash"; + dct:identifier "APPLICATION_VND_DTG_LOCAL_FLASH". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dtg.local-html"; + dct:identifier "APPLICATION_VND_DTG_LOCAL_HTML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.ait"; + dct:identifier "APPLICATION_VND_DVB_AIT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.dvbj"; + dct:identifier "APPLICATION_VND_DVB_DVBJ". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.esgcontainer"; + dct:identifier "APPLICATION_VND_DVB_ESGCONTAINER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.ipdcdftnotifaccess"; + dct:identifier "APPLICATION_VND_DVB_IPDCDFTNOTIFACCESS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.ipdcesgaccess"; + dct:identifier "APPLICATION_VND_DVB_IPDCESGACCESS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.ipdcesgaccess2"; + dct:identifier "APPLICATION_VND_DVB_IPDCESGACCESS2". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.ipdcesgpdd"; + dct:identifier "APPLICATION_VND_DVB_IPDCESGPDD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.ipdcroaming"; + dct:identifier "APPLICATION_VND_DVB_IPDCROAMING". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.iptv.alfec-base"; + dct:identifier "APPLICATION_VND_DVB_IPTV_ALFEC_BASE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.iptv.alfec-enhancement"; + dct:identifier "APPLICATION_VND_DVB_IPTV_ALFEC_ENHANCEMENT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.notif-aggregate-root+xml"; + dct:identifier "APPLICATION_VND_DVB_NOTIF_AGGREGATE_ROOT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.notif-container+xml"; + dct:identifier "APPLICATION_VND_DVB_NOTIF_CONTAINER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.notif-generic+xml"; + dct:identifier "APPLICATION_VND_DVB_NOTIF_GENERIC_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.notif-ia-msglist+xml"; + dct:identifier "APPLICATION_VND_DVB_NOTIF_IA_MSGLIST_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.notif-ia-registration-request+xml"; + dct:identifier "APPLICATION_VND_DVB_NOTIF_IA_REGISTRATION_REQUEST_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.notif-ia-registration-response+xml"; + dct:identifier "APPLICATION_VND_DVB_NOTIF_IA_REGISTRATION_RESPONSE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.notif-init+xml"; + dct:identifier "APPLICATION_VND_DVB_NOTIF_INIT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb.pfr"; + dct:identifier "APPLICATION_VND_DVB_PFR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dvb_service"; + dct:identifier "APPLICATION_VND_DVB_SERVICE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd-dxr"; + dct:identifier "APPLICATION_VND_DXR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dynageo"; + dct:identifier "APPLICATION_VND_DYNAGEO". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.dzr"; + dct:identifier "APPLICATION_VND_DZR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.easykaraoke.cdgdownload"; + dct:identifier "APPLICATION_VND_EASYKARAOKE_CDGDOWNLOAD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ecdis-update"; + dct:identifier "APPLICATION_VND_ECDIS_UPDATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ecowin.chart"; + dct:identifier "APPLICATION_VND_ECOWIN_CHART". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ecowin.filerequest"; + dct:identifier "APPLICATION_VND_ECOWIN_FILEREQUEST". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ecowin.fileupdate"; + dct:identifier "APPLICATION_VND_ECOWIN_FILEUPDATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ecowin.series"; + dct:identifier "APPLICATION_VND_ECOWIN_SERIES". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ecowin.seriesrequest"; + dct:identifier "APPLICATION_VND_ECOWIN_SERIESREQUEST". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ecowin.seriesupdate"; + dct:identifier "APPLICATION_VND_ECOWIN_SERIESUPDATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.efi-img"; + dct:identifier "APPLICATION_VND_EFI_IMG". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.efi-iso"; + dct:identifier "APPLICATION_VND_EFI_ISO". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.emclient.accessrequest+xml"; + dct:identifier "APPLICATION_VND_EMCLIENT_ACCESSREQUEST_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.enliven"; + dct:identifier "APPLICATION_VND_ENLIVEN". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.enphase.envoy"; + dct:identifier "APPLICATION_VND_ENPHASE_ENVOY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.eprints.data+xml"; + dct:identifier "APPLICATION_VND_EPRINTS_DATA_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.epson.esf"; + dct:identifier "APPLICATION_VND_EPSON_ESF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.epson.msf"; + dct:identifier "APPLICATION_VND_EPSON_MSF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.epson.quickanime"; + dct:identifier "APPLICATION_VND_EPSON_QUICKANIME". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.epson.salt"; + dct:identifier "APPLICATION_VND_EPSON_SALT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.epson.ssf"; + dct:identifier "APPLICATION_VND_EPSON_SSF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ericsson.quickcall"; + dct:identifier "APPLICATION_VND_ERICSSON_QUICKCALL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.espass-espass+zip"; + dct:identifier "APPLICATION_VND_ESPASS_ESPASS_ZIP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.eszigno3+xml"; + dct:identifier "APPLICATION_VND_ESZIGNO3_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.aoc+xml"; + dct:identifier "APPLICATION_VND_ETSI_AOC_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.asic-s+zip"; + dct:identifier "APPLICATION_VND_ETSI_ASIC_S_ZIP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.asic-e+zip"; + dct:identifier "APPLICATION_VND_ETSI_ASIC_E_ZIP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.cug+xml"; + dct:identifier "APPLICATION_VND_ETSI_CUG_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.iptvcommand+xml"; + dct:identifier "APPLICATION_VND_ETSI_IPTVCOMMAND_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.iptvdiscovery+xml"; + dct:identifier "APPLICATION_VND_ETSI_IPTVDISCOVERY_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.iptvprofile+xml"; + dct:identifier "APPLICATION_VND_ETSI_IPTVPROFILE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.iptvsad-bc+xml"; + dct:identifier "APPLICATION_VND_ETSI_IPTVSAD_BC_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.iptvsad-cod+xml"; + dct:identifier "APPLICATION_VND_ETSI_IPTVSAD_COD_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.iptvsad-npvr+xml"; + dct:identifier "APPLICATION_VND_ETSI_IPTVSAD_NPVR_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.iptvservice+xml"; + dct:identifier "APPLICATION_VND_ETSI_IPTVSERVICE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.iptvsync+xml"; + dct:identifier "APPLICATION_VND_ETSI_IPTVSYNC_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.iptvueprofile+xml"; + dct:identifier "APPLICATION_VND_ETSI_IPTVUEPROFILE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.mcid+xml"; + dct:identifier "APPLICATION_VND_ETSI_MCID_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.mheg5"; + dct:identifier "APPLICATION_VND_ETSI_MHEG5". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.overload-control-policy-dataset+xml"; + dct:identifier "APPLICATION_VND_ETSI_OVERLOAD_CONTROL_POLICY_DATASET_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.pstn+xml"; + dct:identifier "APPLICATION_VND_ETSI_PSTN_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.sci+xml"; + dct:identifier "APPLICATION_VND_ETSI_SCI_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.simservs+xml"; + dct:identifier "APPLICATION_VND_ETSI_SIMSERVS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.timestamp-token"; + dct:identifier "APPLICATION_VND_ETSI_TIMESTAMP_TOKEN". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.tsl+xml"; + dct:identifier "APPLICATION_VND_ETSI_TSL_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.etsi.tsl.der"; + dct:identifier "APPLICATION_VND_ETSI_TSL_DER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.eudora.data"; + dct:identifier "APPLICATION_VND_EUDORA_DATA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ezpix-album"; + dct:identifier "APPLICATION_VND_EZPIX_ALBUM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ezpix-package"; + dct:identifier "APPLICATION_VND_EZPIX_PACKAGE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.f-secure.mobile"; + dct:identifier "APPLICATION_VND_F_SECURE_MOBILE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fastcopy-disk-image"; + dct:identifier "APPLICATION_VND_FASTCOPY_DISK_IMAGE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd-fdf"; + dct:identifier "APPLICATION_VND_FDF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fdsn.mseed"; + dct:identifier "APPLICATION_VND_FDSN_MSEED". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fdsn.seed"; + dct:identifier "APPLICATION_VND_FDSN_SEED". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ffsns"; + dct:identifier "APPLICATION_VND_FFSNS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.filmit.zfc"; + dct:identifier "APPLICATION_VND_FILMIT_ZFC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fints"; + dct:identifier "APPLICATION_VND_FINTS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.firemonkeys.cloudcell"; + dct:identifier "APPLICATION_VND_FIREMONKEYS_CLOUDCELL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.FloGraphIt"; + dct:identifier "APPLICATION_VND_FLOGRAPHIT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fluxtime.clip"; + dct:identifier "APPLICATION_VND_FLUXTIME_CLIP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.font-fontforge-sfd"; + dct:identifier "APPLICATION_VND_FONT_FONTFORGE_SFD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.framemaker"; + dct:identifier "APPLICATION_VND_FRAMEMAKER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.frogans.fnc"; + dct:identifier "APPLICATION_VND_FROGANS_FNC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.frogans.ltf"; + dct:identifier "APPLICATION_VND_FROGANS_LTF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fsc.weblaunch"; + dct:identifier "APPLICATION_VND_FSC_WEBLAUNCH". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fujitsu.oasys"; + dct:identifier "APPLICATION_VND_FUJITSU_OASYS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fujitsu.oasys2"; + dct:identifier "APPLICATION_VND_FUJITSU_OASYS2". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fujitsu.oasys3"; + dct:identifier "APPLICATION_VND_FUJITSU_OASYS3". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fujitsu.oasysgp"; + dct:identifier "APPLICATION_VND_FUJITSU_OASYSGP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fujitsu.oasysprs"; + dct:identifier "APPLICATION_VND_FUJITSU_OASYSPRS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fujixerox.ART4"; + dct:identifier "APPLICATION_VND_FUJIXEROX_ART4". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fujixerox.ART-EX"; + dct:identifier "APPLICATION_VND_FUJIXEROX_ART_EX". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fujixerox.ddd"; + dct:identifier "APPLICATION_VND_FUJIXEROX_DDD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fujixerox.docuworks"; + dct:identifier "APPLICATION_VND_FUJIXEROX_DOCUWORKS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fujixerox.docuworks.binder"; + dct:identifier "APPLICATION_VND_FUJIXEROX_DOCUWORKS_BINDER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fujixerox.docuworks.container"; + dct:identifier "APPLICATION_VND_FUJIXEROX_DOCUWORKS_CONTAINER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fujixerox.HBPL"; + dct:identifier "APPLICATION_VND_FUJIXEROX_HBPL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fut-misnet"; + dct:identifier "APPLICATION_VND_FUT_MISNET". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.fuzzysheet"; + dct:identifier "APPLICATION_VND_FUZZYSHEET". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.genomatix.tuxedo"; + dct:identifier "APPLICATION_VND_GENOMATIX_TUXEDO". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.geo+json"; + dct:identifier "APPLICATION_VND_GEO_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.geocube+xml"; + dct:identifier "APPLICATION_VND_GEOCUBE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.geogebra.file"; + dct:identifier "APPLICATION_VND_GEOGEBRA_FILE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.geogebra.tool"; + dct:identifier "APPLICATION_VND_GEOGEBRA_TOOL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.geometry-explorer"; + dct:identifier "APPLICATION_VND_GEOMETRY_EXPLORER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.geonext"; + dct:identifier "APPLICATION_VND_GEONEXT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.geoplan"; + dct:identifier "APPLICATION_VND_GEOPLAN". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.geospace"; + dct:identifier "APPLICATION_VND_GEOSPACE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.gerber"; + dct:identifier "APPLICATION_VND_GERBER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.globalplatform.card-content-mgt"; + dct:identifier "APPLICATION_VND_GLOBALPLATFORM_CARD_CONTENT_MGT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.globalplatform.card-content-mgt-response"; + dct:identifier "APPLICATION_VND_GLOBALPLATFORM_CARD_CONTENT_MGT_RESPONSE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.gmx"; + dct:identifier "APPLICATION_VND_GMX". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.google-earth.kml+xml"; + dct:identifier "APPLICATION_VND_GOOGLE_EARTH_KML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.google-earth.kmz"; + dct:identifier "APPLICATION_VND_GOOGLE_EARTH_KMZ". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.gov.sk.e-form+xml"; + dct:identifier "APPLICATION_VND_GOV_SK_E_FORM_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.gov.sk.e-form+zip"; + dct:identifier "APPLICATION_VND_GOV_SK_E_FORM_ZIP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.gov.sk.xmldatacontainer+xml"; + dct:identifier "APPLICATION_VND_GOV_SK_XMLDATACONTAINER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.grafeq"; + dct:identifier "APPLICATION_VND_GRAFEQ". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.gridmp"; + dct:identifier "APPLICATION_VND_GRIDMP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.groove-account"; + dct:identifier "APPLICATION_VND_GROOVE_ACCOUNT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.groove-help"; + dct:identifier "APPLICATION_VND_GROOVE_HELP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.groove-identity-message"; + dct:identifier "APPLICATION_VND_GROOVE_IDENTITY_MESSAGE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.groove-injector"; + dct:identifier "APPLICATION_VND_GROOVE_INJECTOR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.groove-tool-message"; + dct:identifier "APPLICATION_VND_GROOVE_TOOL_MESSAGE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.groove-tool-template"; + dct:identifier "APPLICATION_VND_GROOVE_TOOL_TEMPLATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.groove-vcard"; + dct:identifier "APPLICATION_VND_GROOVE_VCARD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hal+json"; + dct:identifier "APPLICATION_VND_HAL_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hal+xml"; + dct:identifier "APPLICATION_VND_HAL_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.HandHeld-Entertainment+xml"; + dct:identifier "APPLICATION_VND_HANDHELD_ENTERTAINMENT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hbci"; + dct:identifier "APPLICATION_VND_HBCI". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hc+json"; + dct:identifier "APPLICATION_VND_HC_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hcl-bireports"; + dct:identifier "APPLICATION_VND_HCL_BIREPORTS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hdt"; + dct:identifier "APPLICATION_VND_HDT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.heroku+json"; + dct:identifier "APPLICATION_VND_HEROKU_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hhe.lesson-player"; + dct:identifier "APPLICATION_VND_HHE_LESSON_PLAYER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hp-HPGL"; + dct:identifier "APPLICATION_VND_HP_HPGL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hp-hpid"; + dct:identifier "APPLICATION_VND_HP_HPID". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hp-hps"; + dct:identifier "APPLICATION_VND_HP_HPS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hp-jlyt"; + dct:identifier "APPLICATION_VND_HP_JLYT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hp-PCL"; + dct:identifier "APPLICATION_VND_HP_PCL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hp-PCLXL"; + dct:identifier "APPLICATION_VND_HP_PCLXL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.httphone"; + dct:identifier "APPLICATION_VND_HTTPHONE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hydrostatix.sof-data"; + dct:identifier "APPLICATION_VND_HYDROSTATIX_SOF_DATA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hyperdrive+json"; + dct:identifier "APPLICATION_VND_HYPERDRIVE_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.hzn-3d-crossword"; + dct:identifier "APPLICATION_VND_HZN_3D_CROSSWORD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ibm.afplinedata"; + dct:identifier "APPLICATION_VND_IBM_AFPLINEDATA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ibm.electronic-media"; + dct:identifier "APPLICATION_VND_IBM_ELECTRONIC_MEDIA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ibm.MiniPay"; + dct:identifier "APPLICATION_VND_IBM_MINIPAY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ibm.modcap"; + dct:identifier "APPLICATION_VND_IBM_MODCAP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ibm.rights-management"; + dct:identifier "APPLICATION_VND_IBM_RIGHTS_MANAGEMENT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ibm.secure-container"; + dct:identifier "APPLICATION_VND_IBM_SECURE_CONTAINER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.iccprofile"; + dct:identifier "APPLICATION_VND_ICCPROFILE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ieee.1905"; + dct:identifier "APPLICATION_VND_IEEE_1905". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.igloader"; + dct:identifier "APPLICATION_VND_IGLOADER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.imagemeter.image+zip"; + dct:identifier "APPLICATION_VND_IMAGEMETER_IMAGE_ZIP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.immervision-ivp"; + dct:identifier "APPLICATION_VND_IMMERVISION_IVP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.immervision-ivu"; + dct:identifier "APPLICATION_VND_IMMERVISION_IVU". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ims.imsccv1p1"; + dct:identifier "APPLICATION_VND_IMS_IMSCCV1P1". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ims.imsccv1p2"; + dct:identifier "APPLICATION_VND_IMS_IMSCCV1P2". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ims.imsccv1p3"; + dct:identifier "APPLICATION_VND_IMS_IMSCCV1P3". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ims.lis.v2.result+json"; + dct:identifier "APPLICATION_VND_IMS_LIS_V2_RESULT_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ims.lti.v2.toolconsumerprofile+json"; + dct:identifier "APPLICATION_VND_IMS_LTI_V2_TOOLCONSUMERPROFILE_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ims.lti.v2.toolproxy.id+json"; + dct:identifier "APPLICATION_VND_IMS_LTI_V2_TOOLPROXY_ID_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ims.lti.v2.toolproxy+json"; + dct:identifier "APPLICATION_VND_IMS_LTI_V2_TOOLPROXY_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ims.lti.v2.toolsettings+json"; + dct:identifier "APPLICATION_VND_IMS_LTI_V2_TOOLSETTINGS_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ims.lti.v2.toolsettings.simple+json"; + dct:identifier "APPLICATION_VND_IMS_LTI_V2_TOOLSETTINGS_SIMPLE_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.informedcontrol.rms+xml"; + dct:identifier "APPLICATION_VND_INFORMEDCONTROL_RMS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.infotech.project"; + dct:identifier "APPLICATION_VND_INFOTECH_PROJECT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.infotech.project+xml"; + dct:identifier "APPLICATION_VND_INFOTECH_PROJECT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.informix-visionary"; + dct:identifier "APPLICATION_VND_INFORMIX_VISIONARY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.innopath.wamp.notification"; + dct:identifier "APPLICATION_VND_INNOPATH_WAMP_NOTIFICATION". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.insors.igm"; + dct:identifier "APPLICATION_VND_INSORS_IGM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.intercon.formnet"; + dct:identifier "APPLICATION_VND_INTERCON_FORMNET". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.intergeo"; + dct:identifier "APPLICATION_VND_INTERGEO". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.intertrust.digibox"; + dct:identifier "APPLICATION_VND_INTERTRUST_DIGIBOX". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.intertrust.nncp"; + dct:identifier "APPLICATION_VND_INTERTRUST_NNCP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.intu.qbo"; + dct:identifier "APPLICATION_VND_INTU_QBO". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.intu.qfx"; + dct:identifier "APPLICATION_VND_INTU_QFX". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.iptc.g2.catalogitem+xml"; + dct:identifier "APPLICATION_VND_IPTC_G2_CATALOGITEM_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.iptc.g2.conceptitem+xml"; + dct:identifier "APPLICATION_VND_IPTC_G2_CONCEPTITEM_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.iptc.g2.knowledgeitem+xml"; + dct:identifier "APPLICATION_VND_IPTC_G2_KNOWLEDGEITEM_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.iptc.g2.newsitem+xml"; + dct:identifier "APPLICATION_VND_IPTC_G2_NEWSITEM_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.iptc.g2.newsmessage+xml"; + dct:identifier "APPLICATION_VND_IPTC_G2_NEWSMESSAGE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.iptc.g2.packageitem+xml"; + dct:identifier "APPLICATION_VND_IPTC_G2_PACKAGEITEM_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.iptc.g2.planningitem+xml"; + dct:identifier "APPLICATION_VND_IPTC_G2_PLANNINGITEM_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ipunplugged.rcprofile"; + dct:identifier "APPLICATION_VND_IPUNPLUGGED_RCPROFILE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.irepository.package+xml"; + dct:identifier "APPLICATION_VND_IREPOSITORY_PACKAGE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.is-xpr"; + dct:identifier "APPLICATION_VND_IS_XPR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.isac.fcs"; + dct:identifier "APPLICATION_VND_ISAC_FCS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.jam"; + dct:identifier "APPLICATION_VND_JAM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.japannet-directory-service"; + dct:identifier "APPLICATION_VND_JAPANNET_DIRECTORY_SERVICE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.japannet-jpnstore-wakeup"; + dct:identifier "APPLICATION_VND_JAPANNET_JPNSTORE_WAKEUP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.japannet-payment-wakeup"; + dct:identifier "APPLICATION_VND_JAPANNET_PAYMENT_WAKEUP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.japannet-registration"; + dct:identifier "APPLICATION_VND_JAPANNET_REGISTRATION". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.japannet-registration-wakeup"; + dct:identifier "APPLICATION_VND_JAPANNET_REGISTRATION_WAKEUP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.japannet-setstore-wakeup"; + dct:identifier "APPLICATION_VND_JAPANNET_SETSTORE_WAKEUP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.japannet-verification"; + dct:identifier "APPLICATION_VND_JAPANNET_VERIFICATION". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.japannet-verification-wakeup"; + dct:identifier "APPLICATION_VND_JAPANNET_VERIFICATION_WAKEUP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.jcp.javame.midlet-rms"; + dct:identifier "APPLICATION_VND_JCP_JAVAME_MIDLET_RMS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.jisp"; + dct:identifier "APPLICATION_VND_JISP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.joost.joda-archive"; + dct:identifier "APPLICATION_VND_JOOST_JODA_ARCHIVE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.jsk.isdn-ngn"; + dct:identifier "APPLICATION_VND_JSK_ISDN_NGN". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.kahootz"; + dct:identifier "APPLICATION_VND_KAHOOTZ". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.kde.karbon"; + dct:identifier "APPLICATION_VND_KDE_KARBON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.kde.kchart"; + dct:identifier "APPLICATION_VND_KDE_KCHART". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.kde.kformula"; + dct:identifier "APPLICATION_VND_KDE_KFORMULA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.kde.kivio"; + dct:identifier "APPLICATION_VND_KDE_KIVIO". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.kde.kontour"; + dct:identifier "APPLICATION_VND_KDE_KONTOUR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.kde.kpresenter"; + dct:identifier "APPLICATION_VND_KDE_KPRESENTER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.kde.kspread"; + dct:identifier "APPLICATION_VND_KDE_KSPREAD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.kde.kword"; + dct:identifier "APPLICATION_VND_KDE_KWORD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.kenameaapp"; + dct:identifier "APPLICATION_VND_KENAMEAAPP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.kidspiration"; + dct:identifier "APPLICATION_VND_KIDSPIRATION". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.Kinar"; + dct:identifier "APPLICATION_VND_KINAR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.koan"; + dct:identifier "APPLICATION_VND_KOAN". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.kodak-descriptor"; + dct:identifier "APPLICATION_VND_KODAK_DESCRIPTOR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.las.las+json"; + dct:identifier "APPLICATION_VND_LAS_LAS_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.las.las+xml"; + dct:identifier "APPLICATION_VND_LAS_LAS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.liberty-request+xml"; + dct:identifier "APPLICATION_VND_LIBERTY_REQUEST_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.llamagraphics.life-balance.desktop"; + dct:identifier "APPLICATION_VND_LLAMAGRAPHICS_LIFE_BALANCE_DESKTOP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.llamagraphics.life-balance.exchange+xml"; + dct:identifier "APPLICATION_VND_LLAMAGRAPHICS_LIFE_BALANCE_EXCHANGE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.lotus-1-2-3"; + dct:identifier "APPLICATION_VND_LOTUS_1_2_3". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.lotus-approach"; + dct:identifier "APPLICATION_VND_LOTUS_APPROACH". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.lotus-freelance"; + dct:identifier "APPLICATION_VND_LOTUS_FREELANCE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.lotus-notes"; + dct:identifier "APPLICATION_VND_LOTUS_NOTES". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.lotus-organizer"; + dct:identifier "APPLICATION_VND_LOTUS_ORGANIZER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.lotus-screencam"; + dct:identifier "APPLICATION_VND_LOTUS_SCREENCAM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.lotus-wordpro"; + dct:identifier "APPLICATION_VND_LOTUS_WORDPRO". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.macports.portpkg"; + dct:identifier "APPLICATION_VND_MACPORTS_PORTPKG". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.macports.portpkg"; + dct:identifier "APPLICATION_VND_MACPORTS_PORTPKG". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.mapbox-vector-tile"; + dct:identifier "APPLICATION_VND_MAPBOX_VECTOR_TILE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.marlin.drm.actiontoken+xml"; + dct:identifier "APPLICATION_VND_MARLIN_DRM_ACTIONTOKEN_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.marlin.drm.conftoken+xml"; + dct:identifier "APPLICATION_VND_MARLIN_DRM_CONFTOKEN_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.marlin.drm.license+xml"; + dct:identifier "APPLICATION_VND_MARLIN_DRM_LICENSE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.marlin.drm.mdcf"; + dct:identifier "APPLICATION_VND_MARLIN_DRM_MDCF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.mason+json"; + dct:identifier "APPLICATION_VND_MASON_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.maxmind.maxmind-db"; + dct:identifier "APPLICATION_VND_MAXMIND_MAXMIND_DB". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.mcd"; + dct:identifier "APPLICATION_VND_MCD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.medcalcdata"; + dct:identifier "APPLICATION_VND_MEDCALCDATA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.mediastation.cdkey"; + dct:identifier "APPLICATION_VND_MEDIASTATION_CDKEY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.meridian-slingshot"; + dct:identifier "APPLICATION_VND_MERIDIAN_SLINGSHOT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.MFER"; + dct:identifier "APPLICATION_VND_MFER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.mfmp"; + dct:identifier "APPLICATION_VND_MFMP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.micro+json"; + dct:identifier "APPLICATION_VND_MICRO_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.micrografx.flo"; + dct:identifier "APPLICATION_VND_MICROGRAFX_FLO". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.micrografx-igx"; + dct:identifier "APPLICATION_VND_MICROGRAFX_IGX". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.microsoft.portable-executable"; + dct:identifier "APPLICATION_VND_MICROSOFT_PORTABLE_EXECUTABLE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.miele+json"; + dct:identifier "APPLICATION_VND_MIELE_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd-mif"; + dct:identifier "APPLICATION_VND_MIF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.minisoft-hp3000-save"; + dct:identifier "APPLICATION_VND_MINISOFT_HP3000_SAVE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.mitsubishi.misty-guard.trustweb"; + dct:identifier "APPLICATION_VND_MITSUBISHI_MISTY_GUARD_TRUSTWEB". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.Mobius.DAF"; + dct:identifier "APPLICATION_VND_MOBIUS_DAF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.Mobius.DIS"; + dct:identifier "APPLICATION_VND_MOBIUS_DIS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.Mobius.MBK"; + dct:identifier "APPLICATION_VND_MOBIUS_MBK". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.Mobius.MQY"; + dct:identifier "APPLICATION_VND_MOBIUS_MQY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.Mobius.MSL"; + dct:identifier "APPLICATION_VND_MOBIUS_MSL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.Mobius.PLC"; + dct:identifier "APPLICATION_VND_MOBIUS_PLC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.Mobius.TXF"; + dct:identifier "APPLICATION_VND_MOBIUS_TXF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.mophun.application"; + dct:identifier "APPLICATION_VND_MOPHUN_APPLICATION". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.mophun.certificate"; + dct:identifier "APPLICATION_VND_MOPHUN_CERTIFICATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.motorola.flexsuite"; + dct:identifier "APPLICATION_VND_MOTOROLA_FLEXSUITE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.motorola.flexsuite.adsi"; + dct:identifier "APPLICATION_VND_MOTOROLA_FLEXSUITE_ADSI". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.motorola.flexsuite.fis"; + dct:identifier "APPLICATION_VND_MOTOROLA_FLEXSUITE_FIS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.motorola.flexsuite.gotap"; + dct:identifier "APPLICATION_VND_MOTOROLA_FLEXSUITE_GOTAP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.motorola.flexsuite.kmr"; + dct:identifier "APPLICATION_VND_MOTOROLA_FLEXSUITE_KMR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.motorola.flexsuite.ttc"; + dct:identifier "APPLICATION_VND_MOTOROLA_FLEXSUITE_TTC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.motorola.flexsuite.wem"; + dct:identifier "APPLICATION_VND_MOTOROLA_FLEXSUITE_WEM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.motorola.iprm"; + dct:identifier "APPLICATION_VND_MOTOROLA_IPRM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.mozilla.xul+xml"; + dct:identifier "APPLICATION_VND_MOZILLA_XUL_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-artgalry"; + dct:identifier "APPLICATION_VND_MS_ARTGALRY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-asf"; + dct:identifier "APPLICATION_VND_MS_ASF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-cab-compressed"; + dct:identifier "APPLICATION_VND_MS_CAB_COMPRESSED". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-3mfdocument"; + dct:identifier "APPLICATION_VND_MS_3MFDOCUMENT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-excel"; + dct:identifier "APPLICATION_VND_MS_EXCEL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-excel.addin.macroEnabled.12"; + dct:identifier "APPLICATION_VND_MS_EXCEL_ADDIN_MACROENABLED_12". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-excel.sheet.binary.macroEnabled.12"; + dct:identifier "APPLICATION_VND_MS_EXCEL_SHEET_BINARY_MACROENABLED_12". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-excel.sheet.macroEnabled.12"; + dct:identifier "APPLICATION_VND_MS_EXCEL_SHEET_MACROENABLED_12". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-excel.template.macroEnabled.12"; + dct:identifier "APPLICATION_VND_MS_EXCEL_TEMPLATE_MACROENABLED_12". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-fontobject"; + dct:identifier "APPLICATION_VND_MS_FONTOBJECT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-htmlhelp"; + dct:identifier "APPLICATION_VND_MS_HTMLHELP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-ims"; + dct:identifier "APPLICATION_VND_MS_IMS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-lrm"; + dct:identifier "APPLICATION_VND_MS_LRM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-office.activeX+xml"; + dct:identifier "APPLICATION_VND_MS_OFFICE_ACTIVEX_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-officetheme"; + dct:identifier "APPLICATION_VND_MS_OFFICETHEME". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-playready.initiator+xml"; + dct:identifier "APPLICATION_VND_MS_PLAYREADY_INITIATOR_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-powerpoint"; + dct:identifier "APPLICATION_VND_MS_POWERPOINT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-powerpoint.addin.macroEnabled.12"; + dct:identifier "APPLICATION_VND_MS_POWERPOINT_ADDIN_MACROENABLED_12". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-powerpoint.presentation.macroEnabled.12"; + dct:identifier "APPLICATION_VND_MS_POWERPOINT_PRESENTATION_MACROENABLED_12". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-powerpoint.slide.macroEnabled.12"; + dct:identifier "APPLICATION_VND_MS_POWERPOINT_SLIDE_MACROENABLED_12". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-powerpoint.slideshow.macroEnabled.12"; + dct:identifier "APPLICATION_VND_MS_POWERPOINT_SLIDESHOW_MACROENABLED_12". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-powerpoint.template.macroEnabled.12"; + dct:identifier "APPLICATION_VND_MS_POWERPOINT_TEMPLATE_MACROENABLED_12". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-PrintDeviceCapabilities+xml"; + dct:identifier "APPLICATION_VND_MS_PRINTDEVICECAPABILITIES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-PrintSchemaTicket+xml"; + dct:identifier "APPLICATION_VND_MS_PRINTSCHEMATICKET_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-project"; + dct:identifier "APPLICATION_VND_MS_PROJECT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-tnef"; + dct:identifier "APPLICATION_VND_MS_TNEF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-windows.devicepairing"; + dct:identifier "APPLICATION_VND_MS_WINDOWS_DEVICEPAIRING". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-windows.nwprinting.oob"; + dct:identifier "APPLICATION_VND_MS_WINDOWS_NWPRINTING_OOB". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-windows.printerpairing"; + dct:identifier "APPLICATION_VND_MS_WINDOWS_PRINTERPAIRING". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-windows.wsd.oob"; + dct:identifier "APPLICATION_VND_MS_WINDOWS_WSD_OOB". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-wmdrm.lic-chlg-req"; + dct:identifier "APPLICATION_VND_MS_WMDRM_LIC_CHLG_REQ". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-wmdrm.lic-resp"; + dct:identifier "APPLICATION_VND_MS_WMDRM_LIC_RESP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-wmdrm.meter-chlg-req"; + dct:identifier "APPLICATION_VND_MS_WMDRM_METER_CHLG_REQ". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-wmdrm.meter-resp"; + dct:identifier "APPLICATION_VND_MS_WMDRM_METER_RESP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-word.document.macroEnabled.12"; + dct:identifier "APPLICATION_VND_MS_WORD_DOCUMENT_MACROENABLED_12". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-word.template.macroEnabled.12"; + dct:identifier "APPLICATION_VND_MS_WORD_TEMPLATE_MACROENABLED_12". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-works"; + dct:identifier "APPLICATION_VND_MS_WORKS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-wpl"; + dct:identifier "APPLICATION_VND_MS_WPL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ms-xpsdocument"; + dct:identifier "APPLICATION_VND_MS_XPSDOCUMENT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.msa-disk-image"; + dct:identifier "APPLICATION_VND_MSA_DISK_IMAGE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.mseq"; + dct:identifier "APPLICATION_VND_MSEQ". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.msign"; + dct:identifier "APPLICATION_VND_MSIGN". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.multiad.creator"; + dct:identifier "APPLICATION_VND_MULTIAD_CREATOR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.multiad.creator.cif"; + dct:identifier "APPLICATION_VND_MULTIAD_CREATOR_CIF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.musician"; + dct:identifier "APPLICATION_VND_MUSICIAN". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.music-niff"; + dct:identifier "APPLICATION_VND_MUSIC_NIFF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.muvee.style"; + dct:identifier "APPLICATION_VND_MUVEE_STYLE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.mynfc"; + dct:identifier "APPLICATION_VND_MYNFC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ncd.control"; + dct:identifier "APPLICATION_VND_NCD_CONTROL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ncd.reference"; + dct:identifier "APPLICATION_VND_NCD_REFERENCE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nearst.inv+json"; + dct:identifier "APPLICATION_VND_NEARST_INV_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nervana"; + dct:identifier "APPLICATION_VND_NERVANA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.netfpx"; + dct:identifier "APPLICATION_VND_NETFPX". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.neurolanguage.nlu"; + dct:identifier "APPLICATION_VND_NEUROLANGUAGE_NLU". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nintendo.snes.rom"; + dct:identifier "APPLICATION_VND_NINTENDO_SNES_ROM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nintendo.nitro.rom"; + dct:identifier "APPLICATION_VND_NINTENDO_NITRO_ROM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nitf"; + dct:identifier "APPLICATION_VND_NITF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.noblenet-directory"; + dct:identifier "APPLICATION_VND_NOBLENET_DIRECTORY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.noblenet-sealer"; + dct:identifier "APPLICATION_VND_NOBLENET_SEALER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.noblenet-web"; + dct:identifier "APPLICATION_VND_NOBLENET_WEB". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nokia.catalogs"; + dct:identifier "APPLICATION_VND_NOKIA_CATALOGS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nokia.conml+wbxml"; + dct:identifier "APPLICATION_VND_NOKIA_CONML_WBXML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nokia.conml+xml"; + dct:identifier "APPLICATION_VND_NOKIA_CONML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nokia.iptv.config+xml"; + dct:identifier "APPLICATION_VND_NOKIA_IPTV_CONFIG_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nokia.iSDS-radio-presets"; + dct:identifier "APPLICATION_VND_NOKIA_ISDS_RADIO_PRESETS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nokia.landmark+wbxml"; + dct:identifier "APPLICATION_VND_NOKIA_LANDMARK_WBXML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nokia.landmark+xml"; + dct:identifier "APPLICATION_VND_NOKIA_LANDMARK_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nokia.landmarkcollection+xml"; + dct:identifier "APPLICATION_VND_NOKIA_LANDMARKCOLLECTION_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nokia.ncd"; + dct:identifier "APPLICATION_VND_NOKIA_NCD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nokia.n-gage.ac+xml"; + dct:identifier "APPLICATION_VND_NOKIA_N_GAGE_AC_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nokia.n-gage.data"; + dct:identifier "APPLICATION_VND_NOKIA_N_GAGE_DATA". + + a ids:IANAMediaType; + rdfs:comment "no replacement given"; + dct:identifier "NO_REPLACEMENT_GIVEN". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nokia.pcd+wbxml"; + dct:identifier "APPLICATION_VND_NOKIA_PCD_WBXML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nokia.pcd+xml"; + dct:identifier "APPLICATION_VND_NOKIA_PCD_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nokia.radio-preset"; + dct:identifier "APPLICATION_VND_NOKIA_RADIO_PRESET". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.nokia.radio-presets"; + dct:identifier "APPLICATION_VND_NOKIA_RADIO_PRESETS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.novadigm.EDM"; + dct:identifier "APPLICATION_VND_NOVADIGM_EDM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.novadigm.EDX"; + dct:identifier "APPLICATION_VND_NOVADIGM_EDX". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.novadigm.EXT"; + dct:identifier "APPLICATION_VND_NOVADIGM_EXT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ntt-local.content-share"; + dct:identifier "APPLICATION_VND_NTT_LOCAL_CONTENT_SHARE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ntt-local.file-transfer"; + dct:identifier "APPLICATION_VND_NTT_LOCAL_FILE_TRANSFER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ntt-local.ogw_remote-access"; + dct:identifier "APPLICATION_VND_NTT_LOCAL_OGW_REMOTE_ACCESS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ntt-local.sip-ta_remote"; + dct:identifier "APPLICATION_VND_NTT_LOCAL_SIP_TA_REMOTE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ntt-local.sip-ta_tcp_stream"; + dct:identifier "APPLICATION_VND_NTT_LOCAL_SIP_TA_TCP_STREAM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.chart"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_CHART". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.chart-template"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_CHART_TEMPLATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.database"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_DATABASE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.formula"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_FORMULA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.formula-template"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_FORMULA_TEMPLATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.graphics"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_GRAPHICS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.graphics-template"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_GRAPHICS_TEMPLATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.image"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_IMAGE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.image-template"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_IMAGE_TEMPLATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.presentation"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_PRESENTATION". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.presentation-template"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_PRESENTATION_TEMPLATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.spreadsheet"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_SPREADSHEET". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.spreadsheet-template"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_SPREADSHEET_TEMPLATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.text"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_TEXT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.text-master"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_TEXT_MASTER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.text-template"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_TEXT_TEMPLATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oasis.opendocument.text-web"; + dct:identifier "APPLICATION_VND_OASIS_OPENDOCUMENT_TEXT_WEB". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.obn"; + dct:identifier "APPLICATION_VND_OBN". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ocf+cbor"; + dct:identifier "APPLICATION_VND_OCF_CBOR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oftn.l10n+json"; + dct:identifier "APPLICATION_VND_OFTN_L10N_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oipf.contentaccessdownload+xml"; + dct:identifier "APPLICATION_VND_OIPF_CONTENTACCESSDOWNLOAD_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oipf.contentaccessstreaming+xml"; + dct:identifier "APPLICATION_VND_OIPF_CONTENTACCESSSTREAMING_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oipf.cspg-hexbinary"; + dct:identifier "APPLICATION_VND_OIPF_CSPG_HEXBINARY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oipf.dae.svg+xml"; + dct:identifier "APPLICATION_VND_OIPF_DAE_SVG_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oipf.dae.xhtml+xml"; + dct:identifier "APPLICATION_VND_OIPF_DAE_XHTML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oipf.mippvcontrolmessage+xml"; + dct:identifier "APPLICATION_VND_OIPF_MIPPVCONTROLMESSAGE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oipf.pae.gem"; + dct:identifier "APPLICATION_VND_OIPF_PAE_GEM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oipf.spdiscovery+xml"; + dct:identifier "APPLICATION_VND_OIPF_SPDISCOVERY_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oipf.spdlist+xml"; + dct:identifier "APPLICATION_VND_OIPF_SPDLIST_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oipf.ueprofile+xml"; + dct:identifier "APPLICATION_VND_OIPF_UEPROFILE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oipf.userprofile+xml"; + dct:identifier "APPLICATION_VND_OIPF_USERPROFILE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.olpc-sugar"; + dct:identifier "APPLICATION_VND_OLPC_SUGAR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.bcast.associated-procedure-parameter+xml"; + dct:identifier "APPLICATION_VND_OMA_BCAST_ASSOCIATED_PROCEDURE_PARAMETER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.bcast.drm-trigger+xml"; + dct:identifier "APPLICATION_VND_OMA_BCAST_DRM_TRIGGER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.bcast.imd+xml"; + dct:identifier "APPLICATION_VND_OMA_BCAST_IMD_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.bcast.ltkm"; + dct:identifier "APPLICATION_VND_OMA_BCAST_LTKM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.bcast.notification+xml"; + dct:identifier "APPLICATION_VND_OMA_BCAST_NOTIFICATION_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.bcast.provisioningtrigger"; + dct:identifier "APPLICATION_VND_OMA_BCAST_PROVISIONINGTRIGGER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.bcast.sgboot"; + dct:identifier "APPLICATION_VND_OMA_BCAST_SGBOOT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.bcast.sgdd+xml"; + dct:identifier "APPLICATION_VND_OMA_BCAST_SGDD_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.bcast.sgdu"; + dct:identifier "APPLICATION_VND_OMA_BCAST_SGDU". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.bcast.simple-symbol-container"; + dct:identifier "APPLICATION_VND_OMA_BCAST_SIMPLE_SYMBOL_CONTAINER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.bcast.smartcard-trigger+xml"; + dct:identifier "APPLICATION_VND_OMA_BCAST_SMARTCARD_TRIGGER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.bcast.sprov+xml"; + dct:identifier "APPLICATION_VND_OMA_BCAST_SPROV_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.bcast.stkm"; + dct:identifier "APPLICATION_VND_OMA_BCAST_STKM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.cab-address-book+xml"; + dct:identifier "APPLICATION_VND_OMA_CAB_ADDRESS_BOOK_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.cab-feature-handler+xml"; + dct:identifier "APPLICATION_VND_OMA_CAB_FEATURE_HANDLER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.cab-pcc+xml"; + dct:identifier "APPLICATION_VND_OMA_CAB_PCC_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.cab-subs-invite+xml"; + dct:identifier "APPLICATION_VND_OMA_CAB_SUBS_INVITE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.cab-user-prefs+xml"; + dct:identifier "APPLICATION_VND_OMA_CAB_USER_PREFS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.dcd"; + dct:identifier "APPLICATION_VND_OMA_DCD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.dcdc"; + dct:identifier "APPLICATION_VND_OMA_DCDC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.dd2+xml"; + dct:identifier "APPLICATION_VND_OMA_DD2_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.drm.risd+xml"; + dct:identifier "APPLICATION_VND_OMA_DRM_RISD_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.group-usage-list+xml"; + dct:identifier "APPLICATION_VND_OMA_GROUP_USAGE_LIST_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.lwm2m+json"; + dct:identifier "APPLICATION_VND_OMA_LWM2M_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.lwm2m+tlv"; + dct:identifier "APPLICATION_VND_OMA_LWM2M_TLV". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.pal+xml"; + dct:identifier "APPLICATION_VND_OMA_PAL_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.poc.detailed-progress-report+xml"; + dct:identifier "APPLICATION_VND_OMA_POC_DETAILED_PROGRESS_REPORT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.poc.final-report+xml"; + dct:identifier "APPLICATION_VND_OMA_POC_FINAL_REPORT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.poc.groups+xml"; + dct:identifier "APPLICATION_VND_OMA_POC_GROUPS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.poc.invocation-descriptor+xml"; + dct:identifier "APPLICATION_VND_OMA_POC_INVOCATION_DESCRIPTOR_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.poc.optimized-progress-report+xml"; + dct:identifier "APPLICATION_VND_OMA_POC_OPTIMIZED_PROGRESS_REPORT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.push"; + dct:identifier "APPLICATION_VND_OMA_PUSH". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.scidm.messages+xml"; + dct:identifier "APPLICATION_VND_OMA_SCIDM_MESSAGES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma.xcap-directory+xml"; + dct:identifier "APPLICATION_VND_OMA_XCAP_DIRECTORY_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.omads-email+xml"; + dct:identifier "APPLICATION_VND_OMADS_EMAIL_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.omads-file+xml"; + dct:identifier "APPLICATION_VND_OMADS_FILE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.omads-folder+xml"; + dct:identifier "APPLICATION_VND_OMADS_FOLDER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.omaloc-supl-init"; + dct:identifier "APPLICATION_VND_OMALOC_SUPL_INIT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma-scws-config"; + dct:identifier "APPLICATION_VND_OMA_SCWS_CONFIG". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma-scws-http-request"; + dct:identifier "APPLICATION_VND_OMA_SCWS_HTTP_REQUEST". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oma-scws-http-response"; + dct:identifier "APPLICATION_VND_OMA_SCWS_HTTP_RESPONSE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.onepager"; + dct:identifier "APPLICATION_VND_ONEPAGER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openblox.game-binary"; + dct:identifier "APPLICATION_VND_OPENBLOX_GAME_BINARY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openblox.game+xml"; + dct:identifier "APPLICATION_VND_OPENBLOX_GAME_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openeye.oeb"; + dct:identifier "APPLICATION_VND_OPENEYE_OEB". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openstreetmap.data+xml"; + dct:identifier "APPLICATION_VND_OPENSTREETMAP_DATA_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.custom-properties+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_CUSTOM_PROPERTIES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.customXmlProperties+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_CUSTOMXMLPROPERTIES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.drawing+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_DRAWING_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.drawingml.chart+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_DRAWINGML_CHART_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_DRAWINGML_CHARTSHAPES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_DRAWINGML_DIAGRAMCOLORS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_DRAWINGML_DIAGRAMDATA_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_DRAWINGML_DIAGRAMLAYOUT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_DRAWINGML_DIAGRAMSTYLE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.extended-properties+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_EXTENDED_PROPERTIES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_COMMENTAUTHORS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.comments+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_COMMENTS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_HANDOUTMASTER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_NOTESMASTER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_NOTESSLIDE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.presentation"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_PRESENTATION". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_PRESENTATION_MAIN_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.presProps+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_PRESPROPS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.slide"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_SLIDE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.slide+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_SLIDE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_SLIDELAYOUT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_SLIDEMASTER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.slideshow"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_SLIDESHOW". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_SLIDESHOW_MAIN_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_SLIDEUPDATEINFO_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_TABLESTYLES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.tags+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_TAGS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml-template"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_TEMPLATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.template.main+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_TEMPLATE_MAIN_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_VIEWPROPS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_CALCCHAIN_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_CHARTSHEET_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_COMMENTS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_CONNECTIONS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_DIALOGSHEET_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_EXTERNALLINK_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_PIVOTCACHEDEFINITION_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_PIVOTCACHERECORDS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_PIVOTTABLE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_QUERYTABLE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_REVISIONHEADERS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_REVISIONLOG_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_SHAREDSTRINGS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_SHEET". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_SHEET_MAIN_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_SHEETMETADATA_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_STYLES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_TABLE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_TABLESINGLECELLS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml-template"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_TEMPLATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_TEMPLATE_MAIN_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_USERNAMES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_VOLATILEDEPENDENCIES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_WORKSHEET_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.theme+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_THEME_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.themeOverride+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_THEMEOVERRIDE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.vmlDrawing"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_VMLDRAWING". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_COMMENTS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_DOCUMENT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_DOCUMENT_GLOSSARY_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_DOCUMENT_MAIN_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_ENDNOTES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_FONTTABLE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_FOOTER_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_FOOTNOTES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_NUMBERING_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_SETTINGS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_STYLES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.wordprocessingml-template"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_TEMPLATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_TEMPLATE_MAIN_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_WEBSETTINGS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-package.core-properties+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_PACKAGE_CORE_PROPERTIES_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_PACKAGE_DIGITAL_SIGNATURE_XMLSIGNATURE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.openxmlformats-package.relationships+xml"; + dct:identifier "APPLICATION_VND_OPENXMLFORMATS_PACKAGE_RELATIONSHIPS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oracle.resource+json"; + dct:identifier "APPLICATION_VND_ORACLE_RESOURCE_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.orange.indata"; + dct:identifier "APPLICATION_VND_ORANGE_INDATA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.osa.netdeploy"; + dct:identifier "APPLICATION_VND_OSA_NETDEPLOY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.osgeo.mapguide.package"; + dct:identifier "APPLICATION_VND_OSGEO_MAPGUIDE_PACKAGE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.osgi.bundle"; + dct:identifier "APPLICATION_VND_OSGI_BUNDLE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.osgi.dp"; + dct:identifier "APPLICATION_VND_OSGI_DP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.osgi.subsystem"; + dct:identifier "APPLICATION_VND_OSGI_SUBSYSTEM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.otps.ct-kip+xml"; + dct:identifier "APPLICATION_VND_OTPS_CT_KIP_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.oxli.countgraph"; + dct:identifier "APPLICATION_VND_OXLI_COUNTGRAPH". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.pagerduty+json"; + dct:identifier "APPLICATION_VND_PAGERDUTY_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.palm"; + dct:identifier "APPLICATION_VND_PALM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.panoply"; + dct:identifier "APPLICATION_VND_PANOPLY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.paos+xml"; + dct:identifier "APPLICATION_VND_PAOS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.pawaafile"; + dct:identifier "APPLICATION_VND_PAWAAFILE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.pcos"; + dct:identifier "APPLICATION_VND_PCOS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.pg.format"; + dct:identifier "APPLICATION_VND_PG_FORMAT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.pg.osasli"; + dct:identifier "APPLICATION_VND_PG_OSASLI". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.piaccess.application-licence"; + dct:identifier "APPLICATION_VND_PIACCESS_APPLICATION_LICENCE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.picsel"; + dct:identifier "APPLICATION_VND_PICSEL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.pmi.widget"; + dct:identifier "APPLICATION_VND_PMI_WIDGET". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.poc.group-advertisement+xml"; + dct:identifier "APPLICATION_VND_POC_GROUP_ADVERTISEMENT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.pocketlearn"; + dct:identifier "APPLICATION_VND_POCKETLEARN". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.powerbuilder6"; + dct:identifier "APPLICATION_VND_POWERBUILDER6". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.powerbuilder6-s"; + dct:identifier "APPLICATION_VND_POWERBUILDER6_S". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.powerbuilder7"; + dct:identifier "APPLICATION_VND_POWERBUILDER7". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.powerbuilder75"; + dct:identifier "APPLICATION_VND_POWERBUILDER75". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.powerbuilder75-s"; + dct:identifier "APPLICATION_VND_POWERBUILDER75_S". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.powerbuilder7-s"; + dct:identifier "APPLICATION_VND_POWERBUILDER7_S". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.preminet"; + dct:identifier "APPLICATION_VND_PREMINET". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.previewsystems.box"; + dct:identifier "APPLICATION_VND_PREVIEWSYSTEMS_BOX". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.proteus.magazine"; + dct:identifier "APPLICATION_VND_PROTEUS_MAGAZINE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.publishare-delta-tree"; + dct:identifier "APPLICATION_VND_PUBLISHARE_DELTA_TREE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.pvi.ptid1"; + dct:identifier "APPLICATION_VND_PVI_PTID1". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.pwg-multiplexed"; + dct:identifier "APPLICATION_VND_PWG_MULTIPLEXED". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.pwg-xhtml-print+xml"; + dct:identifier "APPLICATION_VND_PWG_XHTML_PRINT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.qualcomm.brew-app-res"; + dct:identifier "APPLICATION_VND_QUALCOMM_BREW_APP_RES". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.quarantainenet"; + dct:identifier "APPLICATION_VND_QUARANTAINENET". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.Quark.QuarkXPress"; + dct:identifier "APPLICATION_VND_QUARK_QUARKXPRESS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.quobject-quoxdocument"; + dct:identifier "APPLICATION_VND_QUOBJECT_QUOXDOCUMENT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.radisys.moml+xml"; + dct:identifier "APPLICATION_VND_RADISYS_MOML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.radisys.msml-audit-conf+xml"; + dct:identifier "APPLICATION_VND_RADISYS_MSML_AUDIT_CONF_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.radisys.msml-audit-conn+xml"; + dct:identifier "APPLICATION_VND_RADISYS_MSML_AUDIT_CONN_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.radisys.msml-audit-dialog+xml"; + dct:identifier "APPLICATION_VND_RADISYS_MSML_AUDIT_DIALOG_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.radisys.msml-audit-stream+xml"; + dct:identifier "APPLICATION_VND_RADISYS_MSML_AUDIT_STREAM_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.radisys.msml-audit+xml"; + dct:identifier "APPLICATION_VND_RADISYS_MSML_AUDIT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.radisys.msml-conf+xml"; + dct:identifier "APPLICATION_VND_RADISYS_MSML_CONF_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.radisys.msml-dialog-base+xml"; + dct:identifier "APPLICATION_VND_RADISYS_MSML_DIALOG_BASE_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.radisys.msml-dialog-fax-detect+xml"; + dct:identifier "APPLICATION_VND_RADISYS_MSML_DIALOG_FAX_DETECT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.radisys.msml-dialog-fax-sendrecv+xml"; + dct:identifier "APPLICATION_VND_RADISYS_MSML_DIALOG_FAX_SENDRECV_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.radisys.msml-dialog-group+xml"; + dct:identifier "APPLICATION_VND_RADISYS_MSML_DIALOG_GROUP_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.radisys.msml-dialog-speech+xml"; + dct:identifier "APPLICATION_VND_RADISYS_MSML_DIALOG_SPEECH_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.radisys.msml-dialog-transform+xml"; + dct:identifier "APPLICATION_VND_RADISYS_MSML_DIALOG_TRANSFORM_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.radisys.msml-dialog+xml"; + dct:identifier "APPLICATION_VND_RADISYS_MSML_DIALOG_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.radisys.msml+xml"; + dct:identifier "APPLICATION_VND_RADISYS_MSML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.rainstor.data"; + dct:identifier "APPLICATION_VND_RAINSTOR_DATA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.rapid"; + dct:identifier "APPLICATION_VND_RAPID". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.rar"; + dct:identifier "APPLICATION_VND_RAR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.realvnc.bed"; + dct:identifier "APPLICATION_VND_REALVNC_BED". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.recordare.musicxml"; + dct:identifier "APPLICATION_VND_RECORDARE_MUSICXML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.recordare.musicxml+xml"; + dct:identifier "APPLICATION_VND_RECORDARE_MUSICXML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.renlearn.rlprint"; + dct:identifier "APPLICATION_VND_RENLEARN_RLPRINT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.rig.cryptonote"; + dct:identifier "APPLICATION_VND_RIG_CRYPTONOTE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.route66.link66+xml"; + dct:identifier "APPLICATION_VND_ROUTE66_LINK66_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.rs-274x"; + dct:identifier "APPLICATION_VND_RS_274X". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ruckus.download"; + dct:identifier "APPLICATION_VND_RUCKUS_DOWNLOAD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.s3sms"; + dct:identifier "APPLICATION_VND_S3SMS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sailingtracker.track"; + dct:identifier "APPLICATION_VND_SAILINGTRACKER_TRACK". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sbm.cid"; + dct:identifier "APPLICATION_VND_SBM_CID". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sbm.mid2"; + dct:identifier "APPLICATION_VND_SBM_MID2". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.scribus"; + dct:identifier "APPLICATION_VND_SCRIBUS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sealed.3df"; + dct:identifier "APPLICATION_VND_SEALED_3DF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sealed.csf"; + dct:identifier "APPLICATION_VND_SEALED_CSF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sealed-doc"; + dct:identifier "APPLICATION_VND_SEALED_DOC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sealed-eml"; + dct:identifier "APPLICATION_VND_SEALED_EML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sealed-mht"; + dct:identifier "APPLICATION_VND_SEALED_MHT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sealed.net"; + dct:identifier "APPLICATION_VND_SEALED_NET". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sealed-ppt"; + dct:identifier "APPLICATION_VND_SEALED_PPT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sealed-tiff"; + dct:identifier "APPLICATION_VND_SEALED_TIFF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sealed-xls"; + dct:identifier "APPLICATION_VND_SEALED_XLS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sealedmedia.softseal-html"; + dct:identifier "APPLICATION_VND_SEALEDMEDIA_SOFTSEAL_HTML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sealedmedia.softseal-pdf"; + dct:identifier "APPLICATION_VND_SEALEDMEDIA_SOFTSEAL_PDF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.seemail"; + dct:identifier "APPLICATION_VND_SEEMAIL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd-sema"; + dct:identifier "APPLICATION_VND_SEMA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.semd"; + dct:identifier "APPLICATION_VND_SEMD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.semf"; + dct:identifier "APPLICATION_VND_SEMF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.shana.informed.formdata"; + dct:identifier "APPLICATION_VND_SHANA_INFORMED_FORMDATA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.shana.informed.formtemplate"; + dct:identifier "APPLICATION_VND_SHANA_INFORMED_FORMTEMPLATE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.shana.informed.interchange"; + dct:identifier "APPLICATION_VND_SHANA_INFORMED_INTERCHANGE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.shana.informed.package"; + dct:identifier "APPLICATION_VND_SHANA_INFORMED_PACKAGE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.SimTech-MindMapper"; + dct:identifier "APPLICATION_VND_SIMTECH_MINDMAPPER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.siren+json"; + dct:identifier "APPLICATION_VND_SIREN_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.smaf"; + dct:identifier "APPLICATION_VND_SMAF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.smart.notebook"; + dct:identifier "APPLICATION_VND_SMART_NOTEBOOK". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.smart.teacher"; + dct:identifier "APPLICATION_VND_SMART_TEACHER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.software602.filler.form+xml"; + dct:identifier "APPLICATION_VND_SOFTWARE602_FILLER_FORM_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.software602.filler.form-xml-zip"; + dct:identifier "APPLICATION_VND_SOFTWARE602_FILLER_FORM_XML_ZIP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.solent.sdkm+xml"; + dct:identifier "APPLICATION_VND_SOLENT_SDKM_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.spotfire.dxp"; + dct:identifier "APPLICATION_VND_SPOTFIRE_DXP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.spotfire.sfs"; + dct:identifier "APPLICATION_VND_SPOTFIRE_SFS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sss-cod"; + dct:identifier "APPLICATION_VND_SSS_COD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sss-dtf"; + dct:identifier "APPLICATION_VND_SSS_DTF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sss-ntf"; + dct:identifier "APPLICATION_VND_SSS_NTF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.stepmania.package"; + dct:identifier "APPLICATION_VND_STEPMANIA_PACKAGE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.stepmania.stepchart"; + dct:identifier "APPLICATION_VND_STEPMANIA_STEPCHART". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.street-stream"; + dct:identifier "APPLICATION_VND_STREET_STREAM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sun.wadl+xml"; + dct:identifier "APPLICATION_VND_SUN_WADL_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.sus-calendar"; + dct:identifier "APPLICATION_VND_SUS_CALENDAR". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.svd"; + dct:identifier "APPLICATION_VND_SVD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.swiftview-ics"; + dct:identifier "APPLICATION_VND_SWIFTVIEW_ICS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.syncml.dm.notification"; + dct:identifier "APPLICATION_VND_SYNCML_DM_NOTIFICATION". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.syncml.dmddf+xml"; + dct:identifier "APPLICATION_VND_SYNCML_DMDDF_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.syncml.dmtnds+wbxml"; + dct:identifier "APPLICATION_VND_SYNCML_DMTNDS_WBXML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.syncml.dmtnds+xml"; + dct:identifier "APPLICATION_VND_SYNCML_DMTNDS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.syncml.dmddf+wbxml"; + dct:identifier "APPLICATION_VND_SYNCML_DMDDF_WBXML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.syncml.dm+wbxml"; + dct:identifier "APPLICATION_VND_SYNCML_DM_WBXML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.syncml.dm+xml"; + dct:identifier "APPLICATION_VND_SYNCML_DM_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.syncml.ds.notification"; + dct:identifier "APPLICATION_VND_SYNCML_DS_NOTIFICATION". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.syncml+xml"; + dct:identifier "APPLICATION_VND_SYNCML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.tableschema+json"; + dct:identifier "APPLICATION_VND_TABLESCHEMA_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.tao.intent-module-archive"; + dct:identifier "APPLICATION_VND_TAO_INTENT_MODULE_ARCHIVE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.tcpdump.pcap"; + dct:identifier "APPLICATION_VND_TCPDUMP_PCAP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.tml"; + dct:identifier "APPLICATION_VND_TML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.tmd.mediaflex.api+xml"; + dct:identifier "APPLICATION_VND_TMD_MEDIAFLEX_API_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.tmobile-livetv"; + dct:identifier "APPLICATION_VND_TMOBILE_LIVETV". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.tri.onesource"; + dct:identifier "APPLICATION_VND_TRI_ONESOURCE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.trid.tpt"; + dct:identifier "APPLICATION_VND_TRID_TPT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.triscape.mxs"; + dct:identifier "APPLICATION_VND_TRISCAPE_MXS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.trueapp"; + dct:identifier "APPLICATION_VND_TRUEAPP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.truedoc"; + dct:identifier "APPLICATION_VND_TRUEDOC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ubisoft.webplayer"; + dct:identifier "APPLICATION_VND_UBISOFT_WEBPLAYER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.ufdl"; + dct:identifier "APPLICATION_VND_UFDL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uiq.theme"; + dct:identifier "APPLICATION_VND_UIQ_THEME". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.umajin"; + dct:identifier "APPLICATION_VND_UMAJIN". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.unity"; + dct:identifier "APPLICATION_VND_UNITY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uoml+xml"; + dct:identifier "APPLICATION_VND_UOML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uplanet.alert"; + dct:identifier "APPLICATION_VND_UPLANET_ALERT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uplanet.alert-wbxml"; + dct:identifier "APPLICATION_VND_UPLANET_ALERT_WBXML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uplanet.bearer-choice"; + dct:identifier "APPLICATION_VND_UPLANET_BEARER_CHOICE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uplanet.bearer-choice-wbxml"; + dct:identifier "APPLICATION_VND_UPLANET_BEARER_CHOICE_WBXML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uplanet.cacheop"; + dct:identifier "APPLICATION_VND_UPLANET_CACHEOP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uplanet.cacheop-wbxml"; + dct:identifier "APPLICATION_VND_UPLANET_CACHEOP_WBXML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uplanet.channel"; + dct:identifier "APPLICATION_VND_UPLANET_CHANNEL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uplanet.channel-wbxml"; + dct:identifier "APPLICATION_VND_UPLANET_CHANNEL_WBXML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uplanet.list"; + dct:identifier "APPLICATION_VND_UPLANET_LIST". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uplanet.listcmd"; + dct:identifier "APPLICATION_VND_UPLANET_LISTCMD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uplanet.listcmd-wbxml"; + dct:identifier "APPLICATION_VND_UPLANET_LISTCMD_WBXML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uplanet.list-wbxml"; + dct:identifier "APPLICATION_VND_UPLANET_LIST_WBXML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uri-map"; + dct:identifier "APPLICATION_VND_URI_MAP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.uplanet.signal"; + dct:identifier "APPLICATION_VND_UPLANET_SIGNAL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.valve.source.material"; + dct:identifier "APPLICATION_VND_VALVE_SOURCE_MATERIAL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.vcx"; + dct:identifier "APPLICATION_VND_VCX". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.vd-study"; + dct:identifier "APPLICATION_VND_VD_STUDY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.vectorworks"; + dct:identifier "APPLICATION_VND_VECTORWORKS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.vel+json"; + dct:identifier "APPLICATION_VND_VEL_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.verimatrix.vcas"; + dct:identifier "APPLICATION_VND_VERIMATRIX_VCAS". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.vidsoft.vidconference"; + dct:identifier "APPLICATION_VND_VIDSOFT_VIDCONFERENCE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.visio"; + dct:identifier "APPLICATION_VND_VISIO". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.visionary"; + dct:identifier "APPLICATION_VND_VISIONARY". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.vividence.scriptfile"; + dct:identifier "APPLICATION_VND_VIVIDENCE_SCRIPTFILE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.vsf"; + dct:identifier "APPLICATION_VND_VSF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wap.sic"; + dct:identifier "APPLICATION_VND_WAP_SIC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wap-slc"; + dct:identifier "APPLICATION_VND_WAP_SLC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wap-wbxml"; + dct:identifier "APPLICATION_VND_WAP_WBXML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd-wap-wmlc"; + dct:identifier "APPLICATION_VND_WAP_WMLC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wap.wmlscriptc"; + dct:identifier "APPLICATION_VND_WAP_WMLSCRIPTC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.webturbo"; + dct:identifier "APPLICATION_VND_WEBTURBO". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wfa.p2p"; + dct:identifier "APPLICATION_VND_WFA_P2P". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wfa.wsc"; + dct:identifier "APPLICATION_VND_WFA_WSC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.windows.devicepairing"; + dct:identifier "APPLICATION_VND_WINDOWS_DEVICEPAIRING". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wmc"; + dct:identifier "APPLICATION_VND_WMC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wmf.bootstrap"; + dct:identifier "APPLICATION_VND_WMF_BOOTSTRAP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wolfram.mathematica"; + dct:identifier "APPLICATION_VND_WOLFRAM_MATHEMATICA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wolfram.mathematica.package"; + dct:identifier "APPLICATION_VND_WOLFRAM_MATHEMATICA_PACKAGE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wolfram.player"; + dct:identifier "APPLICATION_VND_WOLFRAM_PLAYER". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wordperfect"; + dct:identifier "APPLICATION_VND_WORDPERFECT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wqd"; + dct:identifier "APPLICATION_VND_WQD". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wrq-hp3000-labelled"; + dct:identifier "APPLICATION_VND_WRQ_HP3000_LABELLED". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wt.stf"; + dct:identifier "APPLICATION_VND_WT_STF". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wv.csp+xml"; + dct:identifier "APPLICATION_VND_WV_CSP_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wv.csp+wbxml"; + dct:identifier "APPLICATION_VND_WV_CSP_WBXML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.wv.ssp+xml"; + dct:identifier "APPLICATION_VND_WV_SSP_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.xacml+json"; + dct:identifier "APPLICATION_VND_XACML_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.xara"; + dct:identifier "APPLICATION_VND_XARA". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.xfdl"; + dct:identifier "APPLICATION_VND_XFDL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.xfdl.webform"; + dct:identifier "APPLICATION_VND_XFDL_WEBFORM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.xmi+xml"; + dct:identifier "APPLICATION_VND_XMI_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.xmpie.cpkg"; + dct:identifier "APPLICATION_VND_XMPIE_CPKG". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.xmpie.dpkg"; + dct:identifier "APPLICATION_VND_XMPIE_DPKG". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.xmpie.plan"; + dct:identifier "APPLICATION_VND_XMPIE_PLAN". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.xmpie.ppkg"; + dct:identifier "APPLICATION_VND_XMPIE_PPKG". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.xmpie.xlim"; + dct:identifier "APPLICATION_VND_XMPIE_XLIM". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.yamaha.hv-dic"; + dct:identifier "APPLICATION_VND_YAMAHA_HV_DIC". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.yamaha.hv-script"; + dct:identifier "APPLICATION_VND_YAMAHA_HV_SCRIPT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.yamaha.hv-voice"; + dct:identifier "APPLICATION_VND_YAMAHA_HV_VOICE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.yamaha.openscoreformat.osfpvg+xml"; + dct:identifier "APPLICATION_VND_YAMAHA_OPENSCOREFORMAT_OSFPVG_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.yamaha.openscoreformat"; + dct:identifier "APPLICATION_VND_YAMAHA_OPENSCOREFORMAT". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.yamaha.remote-setup"; + dct:identifier "APPLICATION_VND_YAMAHA_REMOTE_SETUP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.yamaha.smaf-audio"; + dct:identifier "APPLICATION_VND_YAMAHA_SMAF_AUDIO". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.yamaha.smaf-phrase"; + dct:identifier "APPLICATION_VND_YAMAHA_SMAF_PHRASE". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.yamaha.through-ngn"; + dct:identifier "APPLICATION_VND_YAMAHA_THROUGH_NGN". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.yamaha.tunnel-udpencap"; + dct:identifier "APPLICATION_VND_YAMAHA_TUNNEL_UDPENCAP". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.yaoweme"; + dct:identifier "APPLICATION_VND_YAOWEME". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.yellowriver-custom-menu"; + dct:identifier "APPLICATION_VND_YELLOWRIVER_CUSTOM_MENU". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.zul"; + dct:identifier "APPLICATION_VND_ZUL". + + a ids:IANAMediaType; + rdfs:comment "application/vnd.zzazz.deck+xml"; + dct:identifier "APPLICATION_VND_ZZAZZ_DECK_XML". + + a ids:IANAMediaType; + rdfs:comment "application/voicexml+xml"; + dct:identifier "APPLICATION_VOICEXML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/vq-rtcpxr"; + dct:identifier "APPLICATION_VQ_RTCPXR". + + a ids:IANAMediaType; + rdfs:comment "application/watcherinfo+xml"; + dct:identifier "APPLICATION_WATCHERINFO_XML". + + a ids:IANAMediaType; + rdfs:comment "application/whoispp-query"; + dct:identifier "APPLICATION_WHOISPP_QUERY". + + a ids:IANAMediaType; + rdfs:comment "application/whoispp-response"; + dct:identifier "APPLICATION_WHOISPP_RESPONSE". + + a ids:IANAMediaType; + rdfs:comment "application/widget"; + dct:identifier "APPLICATION_WIDGET". + + a ids:IANAMediaType; + rdfs:comment "application/wita"; + dct:identifier "APPLICATION_WITA". + + a ids:IANAMediaType; + rdfs:comment "application/wordperfect5.1"; + dct:identifier "APPLICATION_WORDPERFECT5_1". + + a ids:IANAMediaType; + rdfs:comment "application/wsdl+xml"; + dct:identifier "APPLICATION_WSDL_XML". + + a ids:IANAMediaType; + rdfs:comment "application/wspolicy+xml"; + dct:identifier "APPLICATION_WSPOLICY_XML". + + a ids:IANAMediaType; + rdfs:comment "application/x-www-form-urlencoded"; + dct:identifier "APPLICATION_X_WWW_FORM_URLENCODED". + + a ids:IANAMediaType; + rdfs:comment "application/x400-bp"; + dct:identifier "APPLICATION_X400_BP". + + a ids:IANAMediaType; + rdfs:comment "application/xacml+xml"; + dct:identifier "APPLICATION_XACML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/xcap-att+xml"; + dct:identifier "APPLICATION_XCAP_ATT_XML". + + a ids:IANAMediaType; + rdfs:comment "application/xcap-caps+xml"; + dct:identifier "APPLICATION_XCAP_CAPS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/xcap-diff+xml"; + dct:identifier "APPLICATION_XCAP_DIFF_XML". + + a ids:IANAMediaType; + rdfs:comment "application/xcap-el+xml"; + dct:identifier "APPLICATION_XCAP_EL_XML". + + a ids:IANAMediaType; + rdfs:comment "application/xcap-error+xml"; + dct:identifier "APPLICATION_XCAP_ERROR_XML". + + a ids:IANAMediaType; + rdfs:comment "application/xcap-ns+xml"; + dct:identifier "APPLICATION_XCAP_NS_XML". + + a ids:IANAMediaType; + rdfs:comment "application/xcon-conference-info-diff+xml"; + dct:identifier "APPLICATION_XCON_CONFERENCE_INFO_DIFF_XML". + + a ids:IANAMediaType; + rdfs:comment "application/xcon-conference-info+xml"; + dct:identifier "APPLICATION_XCON_CONFERENCE_INFO_XML". + + a ids:IANAMediaType; + rdfs:comment "application/xenc+xml"; + dct:identifier "APPLICATION_XENC_XML". + + a ids:IANAMediaType; + rdfs:comment "application/xhtml+xml"; + dct:identifier "APPLICATION_XHTML_XML". + + a ids:IANAMediaType; + rdfs:comment "application/xml"; + dct:identifier "APPLICATION_XML". + + a ids:IANAMediaType; + rdfs:comment "application/xml-dtd"; + dct:identifier "APPLICATION_XML_DTD". + + a ids:IANAMediaType; + rdfs:comment "application/xml-external-parsed-entity"; + dct:identifier "APPLICATION_XML_EXTERNAL_PARSED_ENTITY". + + a ids:IANAMediaType; + rdfs:comment "application/xml-patch+xml"; + dct:identifier "APPLICATION_XML_PATCH_XML". + + a ids:IANAMediaType; + rdfs:comment "application/xmpp+xml"; + dct:identifier "APPLICATION_XMPP_XML". + + a ids:IANAMediaType; + rdfs:comment "application/xop+xml"; + dct:identifier "APPLICATION_XOP_XML". + + a ids:IANAMediaType; + rdfs:comment "application/xv+xml"; + dct:identifier "APPLICATION_XV_XML". + + a ids:IANAMediaType; + rdfs:comment "application/yang"; + dct:identifier "APPLICATION_YANG". + + a ids:IANAMediaType; + rdfs:comment "application/yang-data+json"; + dct:identifier "APPLICATION_YANG_DATA_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/yang-data+xml"; + dct:identifier "APPLICATION_YANG_DATA_XML". + + a ids:IANAMediaType; + rdfs:comment "application/yang-patch+json"; + dct:identifier "APPLICATION_YANG_PATCH_JSON". + + a ids:IANAMediaType; + rdfs:comment "application/yang-patch+xml"; + dct:identifier "APPLICATION_YANG_PATCH_XML". + + a ids:IANAMediaType; + rdfs:comment "application/yin+xml"; + dct:identifier "APPLICATION_YIN_XML". + + a ids:IANAMediaType; + rdfs:comment "application/zip"; + dct:identifier "APPLICATION_ZIP". + + a ids:IANAMediaType; + rdfs:comment "application/zlib"; + dct:identifier "APPLICATION_ZLIB". + + diff --git a/rdf/ISIC.ttl b/rdf/ISIC.ttl new file mode 100644 index 00000000..3708a2f0 --- /dev/null +++ b/rdf/ISIC.ttl @@ -0,0 +1,3080 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . + +@prefix ids: . +@prefix ids_isic: . + +# Classes +# ------- + +ids:ISICIndustry a owl:Class; + rdfs:label "ISICIndustry"@en ; + rdfs:comment "The class of economic activities as listed in the International Standard Industrial Classification (ISIC).". + +# Instances +# --------- + + a ids:ISICIndustry; + rdfs:comment "AAgriculture forestry and fishing"; + dct:identifier "AAGRICULTURE_FORESTRY_AND_FISHING". + + a ids:ISICIndustry; + rdfs:comment "Crop and animal production hunting and related service activities"; + dct:identifier "CROP_AND_ANIMAL_PRODUCTION_HUNTING_AND_RELATED_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Growing of non-perennial crops"; + dct:identifier "GROWING_OF_NON_PERENNIAL_CROPS". + + a ids:ISICIndustry; + rdfs:comment "Growing of cereals except rice leguminous crops and oil seeds"; + dct:identifier "GROWING_OF_CEREALS_EXCEPT_RICE_LEGUMINOUS_CROPS_AND_OIL_SEEDS". + + a ids:ISICIndustry; + rdfs:comment "Growing of rice"; + dct:identifier "GROWING_OF_RICE". + + a ids:ISICIndustry; + rdfs:comment "Growing of vegetables and melons roots and tubers"; + dct:identifier "GROWING_OF_VEGETABLES_AND_MELONS_ROOTS_AND_TUBERS". + + a ids:ISICIndustry; + rdfs:comment "Growing of sugar cane"; + dct:identifier "GROWING_OF_SUGAR_CANE". + + a ids:ISICIndustry; + rdfs:comment "Growing of tobacco"; + dct:identifier "GROWING_OF_TOBACCO". + + a ids:ISICIndustry; + rdfs:comment "Growing of fibre crops"; + dct:identifier "GROWING_OF_FIBRE_CROPS". + + a ids:ISICIndustry; + rdfs:comment "Growing of other non-perennial crops"; + dct:identifier "GROWING_OF_OTHER_NON_PERENNIAL_CROPS". + + a ids:ISICIndustry; + rdfs:comment "Growing of perennial crops"; + dct:identifier "GROWING_OF_PERENNIAL_CROPS". + + a ids:ISICIndustry; + rdfs:comment "Growing of grapes"; + dct:identifier "GROWING_OF_GRAPES". + + a ids:ISICIndustry; + rdfs:comment "Growing of tropical and subtropical fruits"; + dct:identifier "GROWING_OF_TROPICAL_AND_SUBTROPICAL_FRUITS". + + a ids:ISICIndustry; + rdfs:comment "Growing of citrus fruits"; + dct:identifier "GROWING_OF_CITRUS_FRUITS". + + a ids:ISICIndustry; + rdfs:comment "Growing of pome fruits and stone fruits"; + dct:identifier "GROWING_OF_POME_FRUITS_AND_STONE_FRUITS". + + a ids:ISICIndustry; + rdfs:comment "Growing of other tree and bush fruits and nuts"; + dct:identifier "GROWING_OF_OTHER_TREE_AND_BUSH_FRUITS_AND_NUTS". + + a ids:ISICIndustry; + rdfs:comment "Growing of oleaginous fruits"; + dct:identifier "GROWING_OF_OLEAGINOUS_FRUITS". + + a ids:ISICIndustry; + rdfs:comment "Growing of beverage crops"; + dct:identifier "GROWING_OF_BEVERAGE_CROPS". + + a ids:ISICIndustry; + rdfs:comment "Growing of spices aromatic drug and pharmaceutical crops"; + dct:identifier "GROWING_OF_SPICES_AROMATIC_DRUG_AND_PHARMACEUTICAL_CROPS". + + a ids:ISICIndustry; + rdfs:comment "Growing of other perennial crops"; + dct:identifier "GROWING_OF_OTHER_PERENNIAL_CROPS". + + a ids:ISICIndustry; + rdfs:comment "Plant propagation"; + dct:identifier "PLANT_PROPAGATION". + + a ids:ISICIndustry; + rdfs:comment "Plant propagation"; + dct:identifier "PLANT_PROPAGATION". + + a ids:ISICIndustry; + rdfs:comment "Animal production"; + dct:identifier "ANIMAL_PRODUCTION". + + a ids:ISICIndustry; + rdfs:comment "Raising of cattle and buffaloes"; + dct:identifier "RAISING_OF_CATTLE_AND_BUFFALOES". + + a ids:ISICIndustry; + rdfs:comment "Raising of horses and other equines"; + dct:identifier "RAISING_OF_HORSES_AND_OTHER_EQUINES". + + a ids:ISICIndustry; + rdfs:comment "Raising of camels and camelids"; + dct:identifier "RAISING_OF_CAMELS_AND_CAMELIDS". + + a ids:ISICIndustry; + rdfs:comment "Raising of sheep and goats"; + dct:identifier "RAISING_OF_SHEEP_AND_GOATS". + + a ids:ISICIndustry; + rdfs:comment "Raising of swinepigs"; + dct:identifier "RAISING_OF_SWINEPIGS". + + a ids:ISICIndustry; + rdfs:comment "Raising of poultry"; + dct:identifier "RAISING_OF_POULTRY". + + a ids:ISICIndustry; + rdfs:comment "Raising of other animals"; + dct:identifier "RAISING_OF_OTHER_ANIMALS". + + a ids:ISICIndustry; + rdfs:comment "Mixed farming"; + dct:identifier "MIXED_FARMING". + + a ids:ISICIndustry; + rdfs:comment "Mixed farming"; + dct:identifier "MIXED_FARMING". + + a ids:ISICIndustry; + rdfs:comment "Support activities to agriculture and post-harvest crop activities"; + dct:identifier "SUPPORT_ACTIVITIES_TO_AGRICULTURE_AND_POST_HARVEST_CROP_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Support activities for crop production"; + dct:identifier "SUPPORT_ACTIVITIES_FOR_CROP_PRODUCTION". + + a ids:ISICIndustry; + rdfs:comment "Support activities for animal production"; + dct:identifier "SUPPORT_ACTIVITIES_FOR_ANIMAL_PRODUCTION". + + a ids:ISICIndustry; + rdfs:comment "Post-harvest crop activities"; + dct:identifier "POST_HARVEST_CROP_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Seed processing for propagation"; + dct:identifier "SEED_PROCESSING_FOR_PROPAGATION". + + a ids:ISICIndustry; + rdfs:comment "Hunting trapping and related service activities"; + dct:identifier "HUNTING_TRAPPING_AND_RELATED_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Hunting trapping and related service activities"; + dct:identifier "HUNTING_TRAPPING_AND_RELATED_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Forestry and logging"; + dct:identifier "FORESTRY_AND_LOGGING". + + a ids:ISICIndustry; + rdfs:comment "Silviculture and other forestry activities"; + dct:identifier "SILVICULTURE_AND_OTHER_FORESTRY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Silviculture and other forestry activities"; + dct:identifier "SILVICULTURE_AND_OTHER_FORESTRY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Logging"; + dct:identifier "LOGGING". + + a ids:ISICIndustry; + rdfs:comment "Logging"; + dct:identifier "LOGGING". + + a ids:ISICIndustry; + rdfs:comment "Gathering of non-wood forest products"; + dct:identifier "GATHERING_OF_NON_WOOD_FOREST_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Gathering of non-wood forest products"; + dct:identifier "GATHERING_OF_NON_WOOD_FOREST_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Support services to forestry"; + dct:identifier "SUPPORT_SERVICES_TO_FORESTRY". + + a ids:ISICIndustry; + rdfs:comment "Support services to forestry"; + dct:identifier "SUPPORT_SERVICES_TO_FORESTRY". + + a ids:ISICIndustry; + rdfs:comment "Fishing and aquaculture"; + dct:identifier "FISHING_AND_AQUACULTURE". + + a ids:ISICIndustry; + rdfs:comment "Fishing"; + dct:identifier "FISHING". + + a ids:ISICIndustry; + rdfs:comment "Marine fishing"; + dct:identifier "MARINE_FISHING". + + a ids:ISICIndustry; + rdfs:comment "Freshwater fishing"; + dct:identifier "FRESHWATER_FISHING". + + a ids:ISICIndustry; + rdfs:comment "Aquaculture"; + dct:identifier "AQUACULTURE". + + a ids:ISICIndustry; + rdfs:comment "Marine aquaculture"; + dct:identifier "MARINE_AQUACULTURE". + + a ids:ISICIndustry; + rdfs:comment "Freshwater aquaculture"; + dct:identifier "FRESHWATER_AQUACULTURE". + + a ids:ISICIndustry; + rdfs:comment "BMining and quarrying"; + dct:identifier "BMINING_AND_QUARRYING". + + a ids:ISICIndustry; + rdfs:comment "Mining of coal and lignite"; + dct:identifier "MINING_OF_COAL_AND_LIGNITE". + + a ids:ISICIndustry; + rdfs:comment "Mining of hard coal"; + dct:identifier "MINING_OF_HARD_COAL". + + a ids:ISICIndustry; + rdfs:comment "Mining of hard coal"; + dct:identifier "MINING_OF_HARD_COAL". + + a ids:ISICIndustry; + rdfs:comment "Mining of lignite"; + dct:identifier "MINING_OF_LIGNITE". + + a ids:ISICIndustry; + rdfs:comment "Mining of lignite"; + dct:identifier "MINING_OF_LIGNITE". + + a ids:ISICIndustry; + rdfs:comment "Extraction of crude petroleum and natural gas"; + dct:identifier "EXTRACTION_OF_CRUDE_PETROLEUM_AND_NATURAL_GAS". + + a ids:ISICIndustry; + rdfs:comment "Extraction of crude petroleum"; + dct:identifier "EXTRACTION_OF_CRUDE_PETROLEUM". + + a ids:ISICIndustry; + rdfs:comment "Extraction of crude petroleum"; + dct:identifier "EXTRACTION_OF_CRUDE_PETROLEUM". + + a ids:ISICIndustry; + rdfs:comment "Extraction of natural gas"; + dct:identifier "EXTRACTION_OF_NATURAL_GAS". + + a ids:ISICIndustry; + rdfs:comment "Extraction of natural gas"; + dct:identifier "EXTRACTION_OF_NATURAL_GAS". + + a ids:ISICIndustry; + rdfs:comment "Mining of metal ores"; + dct:identifier "MINING_OF_METAL_ORES". + + a ids:ISICIndustry; + rdfs:comment "Mining of iron ores"; + dct:identifier "MINING_OF_IRON_ORES". + + a ids:ISICIndustry; + rdfs:comment "Mining of iron ores"; + dct:identifier "MINING_OF_IRON_ORES". + + a ids:ISICIndustry; + rdfs:comment "Mining of non-ferrous metal ores"; + dct:identifier "MINING_OF_NON_FERROUS_METAL_ORES". + + a ids:ISICIndustry; + rdfs:comment "Mining of uranium and thorium ores"; + dct:identifier "MINING_OF_URANIUM_AND_THORIUM_ORES". + + a ids:ISICIndustry; + rdfs:comment "Mining of other non-ferrous metal ores"; + dct:identifier "MINING_OF_OTHER_NON_FERROUS_METAL_ORES". + + a ids:ISICIndustry; + rdfs:comment "Other mining and quarrying"; + dct:identifier "OTHER_MINING_AND_QUARRYING". + + a ids:ISICIndustry; + rdfs:comment "Quarrying of stone sand and clay"; + dct:identifier "QUARRYING_OF_STONE_SAND_AND_CLAY". + + a ids:ISICIndustry; + rdfs:comment "Quarrying of stone sand and clay"; + dct:identifier "QUARRYING_OF_STONE_SAND_AND_CLAY". + + a ids:ISICIndustry; + rdfs:comment "Mining and quarrying nec"; + dct:identifier "MINING_AND_QUARRYING_NEC". + + a ids:ISICIndustry; + rdfs:comment "Mining of chemical and fertilizer minerals"; + dct:identifier "MINING_OF_CHEMICAL_AND_FERTILIZER_MINERALS". + + a ids:ISICIndustry; + rdfs:comment "Extraction of peat"; + dct:identifier "EXTRACTION_OF_PEAT". + + a ids:ISICIndustry; + rdfs:comment "Extraction of salt"; + dct:identifier "EXTRACTION_OF_SALT". + + a ids:ISICIndustry; + rdfs:comment "Other mining and quarrying nec"; + dct:identifier "OTHER_MINING_AND_QUARRYING_NEC". + + a ids:ISICIndustry; + rdfs:comment "Mining support service activities"; + dct:identifier "MINING_SUPPORT_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Support activities for petroleum and natural gas extraction"; + dct:identifier "SUPPORT_ACTIVITIES_FOR_PETROLEUM_AND_NATURAL_GAS_EXTRACTION". + + a ids:ISICIndustry; + rdfs:comment "Support activities for petroleum and natural gas extraction"; + dct:identifier "SUPPORT_ACTIVITIES_FOR_PETROLEUM_AND_NATURAL_GAS_EXTRACTION". + + a ids:ISICIndustry; + rdfs:comment "Support activities for other mining and quarrying"; + dct:identifier "SUPPORT_ACTIVITIES_FOR_OTHER_MINING_AND_QUARRYING". + + a ids:ISICIndustry; + rdfs:comment "Support activities for other mining and quarrying"; + dct:identifier "SUPPORT_ACTIVITIES_FOR_OTHER_MINING_AND_QUARRYING". + + a ids:ISICIndustry; + rdfs:comment "CManufacturing"; + dct:identifier "CMANUFACTURING". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of food products"; + dct:identifier "MANUFACTURE_OF_FOOD_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Processing and preserving of meat"; + dct:identifier "PROCESSING_AND_PRESERVING_OF_MEAT". + + a ids:ISICIndustry; + rdfs:comment "Processing and preserving of meat"; + dct:identifier "PROCESSING_AND_PRESERVING_OF_MEAT". + + a ids:ISICIndustry; + rdfs:comment "Processing and preserving of fish crustaceans and molluscs"; + dct:identifier "PROCESSING_AND_PRESERVING_OF_FISH_CRUSTACEANS_AND_MOLLUSCS". + + a ids:ISICIndustry; + rdfs:comment "Processing and preserving of fish crustaceans and molluscs"; + dct:identifier "PROCESSING_AND_PRESERVING_OF_FISH_CRUSTACEANS_AND_MOLLUSCS". + + a ids:ISICIndustry; + rdfs:comment "Processing and preserving of fruit and vegetables"; + dct:identifier "PROCESSING_AND_PRESERVING_OF_FRUIT_AND_VEGETABLES". + + a ids:ISICIndustry; + rdfs:comment "Processing and preserving of fruit and vegetables"; + dct:identifier "PROCESSING_AND_PRESERVING_OF_FRUIT_AND_VEGETABLES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of vegetable and animal oils and fats"; + dct:identifier "MANUFACTURE_OF_VEGETABLE_AND_ANIMAL_OILS_AND_FATS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of vegetable and animal oils and fats"; + dct:identifier "MANUFACTURE_OF_VEGETABLE_AND_ANIMAL_OILS_AND_FATS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of dairy products"; + dct:identifier "MANUFACTURE_OF_DAIRY_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of dairy products"; + dct:identifier "MANUFACTURE_OF_DAIRY_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of grain mill products starches and starch products"; + dct:identifier "MANUFACTURE_OF_GRAIN_MILL_PRODUCTS_STARCHES_AND_STARCH_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of grain mill products"; + dct:identifier "MANUFACTURE_OF_GRAIN_MILL_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of starches and starch products"; + dct:identifier "MANUFACTURE_OF_STARCHES_AND_STARCH_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other food products"; + dct:identifier "MANUFACTURE_OF_OTHER_FOOD_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of bakery products"; + dct:identifier "MANUFACTURE_OF_BAKERY_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of sugar"; + dct:identifier "MANUFACTURE_OF_SUGAR". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of cocoa chocolate and sugar confectionery"; + dct:identifier "MANUFACTURE_OF_COCOA_CHOCOLATE_AND_SUGAR_CONFECTIONERY". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of macaroni noodles couscous and similar farinaceous products"; + dct:identifier "MANUFACTURE_OF_MACARONI_NOODLES_COUSCOUS_AND_SIMILAR_FARINACEOUS_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of prepared meals and dishes"; + dct:identifier "MANUFACTURE_OF_PREPARED_MEALS_AND_DISHES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other food products nec"; + dct:identifier "MANUFACTURE_OF_OTHER_FOOD_PRODUCTS_NEC". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of prepared animal feeds"; + dct:identifier "MANUFACTURE_OF_PREPARED_ANIMAL_FEEDS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of prepared animal feeds"; + dct:identifier "MANUFACTURE_OF_PREPARED_ANIMAL_FEEDS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of beverages"; + dct:identifier "MANUFACTURE_OF_BEVERAGES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of beverages"; + dct:identifier "MANUFACTURE_OF_BEVERAGES". + + a ids:ISICIndustry; + rdfs:comment "Distilling rectifying and blending of spirits"; + dct:identifier "DISTILLING_RECTIFYING_AND_BLENDING_OF_SPIRITS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of wines"; + dct:identifier "MANUFACTURE_OF_WINES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of malt liquors and malt"; + dct:identifier "MANUFACTURE_OF_MALT_LIQUORS_AND_MALT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of soft drinks production of mineral waters and other bottled waters"; + dct:identifier "MANUFACTURE_OF_SOFT_DRINKS_PRODUCTION_OF_MINERAL_WATERS_AND_OTHER_BOTTLED_WATERS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of tobacco products"; + dct:identifier "MANUFACTURE_OF_TOBACCO_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of tobacco products"; + dct:identifier "MANUFACTURE_OF_TOBACCO_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of tobacco products"; + dct:identifier "MANUFACTURE_OF_TOBACCO_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of textiles"; + dct:identifier "MANUFACTURE_OF_TEXTILES". + + a ids:ISICIndustry; + rdfs:comment "Spinning weaving and finishing of textiles"; + dct:identifier "SPINNING_WEAVING_AND_FINISHING_OF_TEXTILES". + + a ids:ISICIndustry; + rdfs:comment "Preparation and spinning of textile fibres"; + dct:identifier "PREPARATION_AND_SPINNING_OF_TEXTILE_FIBRES". + + a ids:ISICIndustry; + rdfs:comment "Weaving of textiles"; + dct:identifier "WEAVING_OF_TEXTILES". + + a ids:ISICIndustry; + rdfs:comment "Finishing of textiles"; + dct:identifier "FINISHING_OF_TEXTILES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other textiles"; + dct:identifier "MANUFACTURE_OF_OTHER_TEXTILES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of knitted and crocheted fabrics"; + dct:identifier "MANUFACTURE_OF_KNITTED_AND_CROCHETED_FABRICS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of made-up textile articles except apparel"; + dct:identifier "MANUFACTURE_OF_MADE_UP_TEXTILE_ARTICLES_EXCEPT_APPAREL". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of carpets and rugs"; + dct:identifier "MANUFACTURE_OF_CARPETS_AND_RUGS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of cordage rope twine and netting"; + dct:identifier "MANUFACTURE_OF_CORDAGE_ROPE_TWINE_AND_NETTING". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other textiles nec"; + dct:identifier "MANUFACTURE_OF_OTHER_TEXTILES_NEC". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of wearing apparel"; + dct:identifier "MANUFACTURE_OF_WEARING_APPAREL". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of wearing apparel except fur apparel"; + dct:identifier "MANUFACTURE_OF_WEARING_APPAREL_EXCEPT_FUR_APPAREL". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of wearing apparel except fur apparel"; + dct:identifier "MANUFACTURE_OF_WEARING_APPAREL_EXCEPT_FUR_APPAREL". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of articles of fur"; + dct:identifier "MANUFACTURE_OF_ARTICLES_OF_FUR". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of articles of fur"; + dct:identifier "MANUFACTURE_OF_ARTICLES_OF_FUR". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of knitted and crocheted apparel"; + dct:identifier "MANUFACTURE_OF_KNITTED_AND_CROCHETED_APPAREL". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of knitted and crocheted apparel"; + dct:identifier "MANUFACTURE_OF_KNITTED_AND_CROCHETED_APPAREL". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of leather and related products"; + dct:identifier "MANUFACTURE_OF_LEATHER_AND_RELATED_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Tanning and dressing of leather manufacture of luggage handbags saddlery and harness dressing and dyeing of fur"; + dct:identifier "TANNING_AND_DRESSING_OF_LEATHER_MANUFACTURE_OF_LUGGAGE_HANDBAGS_SADDLERY_AND_HARNESS_DRESSING_AND_DYEING_OF_FUR". + + a ids:ISICIndustry; + rdfs:comment "Tanning and dressing of leather dressing and dyeing of fur"; + dct:identifier "TANNING_AND_DRESSING_OF_LEATHER_DRESSING_AND_DYEING_OF_FUR". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of luggage handbags and the like saddlery and harness"; + dct:identifier "MANUFACTURE_OF_LUGGAGE_HANDBAGS_AND_THE_LIKE_SADDLERY_AND_HARNESS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of footwear"; + dct:identifier "MANUFACTURE_OF_FOOTWEAR". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of footwear"; + dct:identifier "MANUFACTURE_OF_FOOTWEAR". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of wood and of products of wood and cork except furniture manufacture of articles of straw and plaiting materials"; + dct:identifier "MANUFACTURE_OF_WOOD_AND_OF_PRODUCTS_OF_WOOD_AND_CORK_EXCEPT_FURNITURE_MANUFACTURE_OF_ARTICLES_OF_STRAW_AND_PLAITING_MATERIALS". + + a ids:ISICIndustry; + rdfs:comment "Sawmilling and planing of wood"; + dct:identifier "SAWMILLING_AND_PLANING_OF_WOOD". + + a ids:ISICIndustry; + rdfs:comment "Sawmilling and planing of wood"; + dct:identifier "SAWMILLING_AND_PLANING_OF_WOOD". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of products of wood cork straw and plaiting materials"; + dct:identifier "MANUFACTURE_OF_PRODUCTS_OF_WOOD_CORK_STRAW_AND_PLAITING_MATERIALS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of veneer sheets and wood-based panels"; + dct:identifier "MANUFACTURE_OF_VENEER_SHEETS_AND_WOOD_BASED_PANELS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of builders carpentry and joinery"; + dct:identifier "MANUFACTURE_OF_BUILDERS_CARPENTRY_AND_JOINERY". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of wooden containers"; + dct:identifier "MANUFACTURE_OF_WOODEN_CONTAINERS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other products of wood manufacture of articles of cork straw and plaiting materials"; + dct:identifier "MANUFACTURE_OF_OTHER_PRODUCTS_OF_WOOD_MANUFACTURE_OF_ARTICLES_OF_CORK_STRAW_AND_PLAITING_MATERIALS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of paper and paper products"; + dct:identifier "MANUFACTURE_OF_PAPER_AND_PAPER_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of paper and paper products"; + dct:identifier "MANUFACTURE_OF_PAPER_AND_PAPER_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of pulp paper and paperboard"; + dct:identifier "MANUFACTURE_OF_PULP_PAPER_AND_PAPERBOARD". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of corrugated paper and paperboard and of containers of paper and paperboard"; + dct:identifier "MANUFACTURE_OF_CORRUGATED_PAPER_AND_PAPERBOARD_AND_OF_CONTAINERS_OF_PAPER_AND_PAPERBOARD". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other articles of paper and paperboard"; + dct:identifier "MANUFACTURE_OF_OTHER_ARTICLES_OF_PAPER_AND_PAPERBOARD". + + a ids:ISICIndustry; + rdfs:comment "Printing and reproduction of recorded media"; + dct:identifier "PRINTING_AND_REPRODUCTION_OF_RECORDED_MEDIA". + + a ids:ISICIndustry; + rdfs:comment "Printing and service activities related to printing"; + dct:identifier "PRINTING_AND_SERVICE_ACTIVITIES_RELATED_TO_PRINTING". + + a ids:ISICIndustry; + rdfs:comment "Printing"; + dct:identifier "PRINTING". + + a ids:ISICIndustry; + rdfs:comment "Service activities related to printing"; + dct:identifier "SERVICE_ACTIVITIES_RELATED_TO_PRINTING". + + a ids:ISICIndustry; + rdfs:comment "Reproduction of recorded media"; + dct:identifier "REPRODUCTION_OF_RECORDED_MEDIA". + + a ids:ISICIndustry; + rdfs:comment "Reproduction of recorded media"; + dct:identifier "REPRODUCTION_OF_RECORDED_MEDIA". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of coke and refined petroleum products"; + dct:identifier "MANUFACTURE_OF_COKE_AND_REFINED_PETROLEUM_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of coke oven products"; + dct:identifier "MANUFACTURE_OF_COKE_OVEN_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of coke oven products"; + dct:identifier "MANUFACTURE_OF_COKE_OVEN_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of refined petroleum products"; + dct:identifier "MANUFACTURE_OF_REFINED_PETROLEUM_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of refined petroleum products"; + dct:identifier "MANUFACTURE_OF_REFINED_PETROLEUM_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of chemicals and chemical products"; + dct:identifier "MANUFACTURE_OF_CHEMICALS_AND_CHEMICAL_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of basic chemicals fertilizers and nitrogen compounds plastics and synthetic rubber in primary forms"; + dct:identifier "MANUFACTURE_OF_BASIC_CHEMICALS_FERTILIZERS_AND_NITROGEN_COMPOUNDS_PLASTICS_AND_SYNTHETIC_RUBBER_IN_PRIMARY_FORMS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of basic chemicals"; + dct:identifier "MANUFACTURE_OF_BASIC_CHEMICALS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of fertilizers and nitrogen compounds"; + dct:identifier "MANUFACTURE_OF_FERTILIZERS_AND_NITROGEN_COMPOUNDS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of plastics and synthetic rubber in primary forms"; + dct:identifier "MANUFACTURE_OF_PLASTICS_AND_SYNTHETIC_RUBBER_IN_PRIMARY_FORMS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other chemical products"; + dct:identifier "MANUFACTURE_OF_OTHER_CHEMICAL_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of pesticides and other agrochemical products"; + dct:identifier "MANUFACTURE_OF_PESTICIDES_AND_OTHER_AGROCHEMICAL_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of paints varnishes and similar coatings printing ink and mastics"; + dct:identifier "MANUFACTURE_OF_PAINTS_VARNISHES_AND_SIMILAR_COATINGS_PRINTING_INK_AND_MASTICS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of soap and detergents cleaning and polishing preparations perfumes and toilet preparations"; + dct:identifier "MANUFACTURE_OF_SOAP_AND_DETERGENTS_CLEANING_AND_POLISHING_PREPARATIONS_PERFUMES_AND_TOILET_PREPARATIONS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other chemical products nec"; + dct:identifier "MANUFACTURE_OF_OTHER_CHEMICAL_PRODUCTS_NEC". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of man-made fibres"; + dct:identifier "MANUFACTURE_OF_MAN_MADE_FIBRES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of man-made fibres"; + dct:identifier "MANUFACTURE_OF_MAN_MADE_FIBRES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of basic pharmaceutical products and pharmaceutical preparations"; + dct:identifier "MANUFACTURE_OF_BASIC_PHARMACEUTICAL_PRODUCTS_AND_PHARMACEUTICAL_PREPARATIONS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of pharmaceuticals medicinal chemical and botanical products"; + dct:identifier "MANUFACTURE_OF_PHARMACEUTICALS_MEDICINAL_CHEMICAL_AND_BOTANICAL_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of pharmaceuticals medicinal chemical and botanical products"; + dct:identifier "MANUFACTURE_OF_PHARMACEUTICALS_MEDICINAL_CHEMICAL_AND_BOTANICAL_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of rubber and plastics products"; + dct:identifier "MANUFACTURE_OF_RUBBER_AND_PLASTICS_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of rubber products"; + dct:identifier "MANUFACTURE_OF_RUBBER_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of rubber tyres and tubes retreading and rebuilding of rubber tyres"; + dct:identifier "MANUFACTURE_OF_RUBBER_TYRES_AND_TUBES_RETREADING_AND_REBUILDING_OF_RUBBER_TYRES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other rubber products"; + dct:identifier "MANUFACTURE_OF_OTHER_RUBBER_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of plastics products"; + dct:identifier "MANUFACTURE_OF_PLASTICS_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of plastics products"; + dct:identifier "MANUFACTURE_OF_PLASTICS_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other non-metallic mineral products"; + dct:identifier "MANUFACTURE_OF_OTHER_NON_METALLIC_MINERAL_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of glass and glass products"; + dct:identifier "MANUFACTURE_OF_GLASS_AND_GLASS_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of glass and glass products"; + dct:identifier "MANUFACTURE_OF_GLASS_AND_GLASS_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of non-metallic mineral products nec"; + dct:identifier "MANUFACTURE_OF_NON_METALLIC_MINERAL_PRODUCTS_NEC". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of refractory products"; + dct:identifier "MANUFACTURE_OF_REFRACTORY_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of clay building materials"; + dct:identifier "MANUFACTURE_OF_CLAY_BUILDING_MATERIALS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other porcelain and ceramic products"; + dct:identifier "MANUFACTURE_OF_OTHER_PORCELAIN_AND_CERAMIC_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of cement lime and plaster"; + dct:identifier "MANUFACTURE_OF_CEMENT_LIME_AND_PLASTER". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of articles of concrete cement and plaster"; + dct:identifier "MANUFACTURE_OF_ARTICLES_OF_CONCRETE_CEMENT_AND_PLASTER". + + a ids:ISICIndustry; + rdfs:comment "Cutting shaping and finishing of stone"; + dct:identifier "CUTTING_SHAPING_AND_FINISHING_OF_STONE". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other non-metallic mineral products nec"; + dct:identifier "MANUFACTURE_OF_OTHER_NON_METALLIC_MINERAL_PRODUCTS_NEC". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of basic metals"; + dct:identifier "MANUFACTURE_OF_BASIC_METALS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of basic iron and steel"; + dct:identifier "MANUFACTURE_OF_BASIC_IRON_AND_STEEL". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of basic iron and steel"; + dct:identifier "MANUFACTURE_OF_BASIC_IRON_AND_STEEL". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of basic precious and other non-ferrous metals"; + dct:identifier "MANUFACTURE_OF_BASIC_PRECIOUS_AND_OTHER_NON_FERROUS_METALS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of basic precious and other non-ferrous metals"; + dct:identifier "MANUFACTURE_OF_BASIC_PRECIOUS_AND_OTHER_NON_FERROUS_METALS". + + a ids:ISICIndustry; + rdfs:comment "Casting of metals"; + dct:identifier "CASTING_OF_METALS". + + a ids:ISICIndustry; + rdfs:comment "Casting of iron and steel"; + dct:identifier "CASTING_OF_IRON_AND_STEEL". + + a ids:ISICIndustry; + rdfs:comment "Casting of non-ferrous metals"; + dct:identifier "CASTING_OF_NON_FERROUS_METALS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of fabricated metal products except machinery and equipment"; + dct:identifier "MANUFACTURE_OF_FABRICATED_METAL_PRODUCTS_EXCEPT_MACHINERY_AND_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of structural metal products tanks reservoirs and steam generators"; + dct:identifier "MANUFACTURE_OF_STRUCTURAL_METAL_PRODUCTS_TANKS_RESERVOIRS_AND_STEAM_GENERATORS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of structural metal products"; + dct:identifier "MANUFACTURE_OF_STRUCTURAL_METAL_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of tanks reservoirs and containers of metal"; + dct:identifier "MANUFACTURE_OF_TANKS_RESERVOIRS_AND_CONTAINERS_OF_METAL". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of steam generators except central heating hot water boilers"; + dct:identifier "MANUFACTURE_OF_STEAM_GENERATORS_EXCEPT_CENTRAL_HEATING_HOT_WATER_BOILERS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of weapons and ammunition"; + dct:identifier "MANUFACTURE_OF_WEAPONS_AND_AMMUNITION". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of weapons and ammunition"; + dct:identifier "MANUFACTURE_OF_WEAPONS_AND_AMMUNITION". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other fabricated metal products metalworking service activities"; + dct:identifier "MANUFACTURE_OF_OTHER_FABRICATED_METAL_PRODUCTS_METALWORKING_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Forging pressing stamping and roll-forming of metal powder metallurgy"; + dct:identifier "FORGING_PRESSING_STAMPING_AND_ROLL_FORMING_OF_METAL_POWDER_METALLURGY". + + a ids:ISICIndustry; + rdfs:comment "Treatment and coating of metals machining"; + dct:identifier "TREATMENT_AND_COATING_OF_METALS_MACHINING". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of cutlery hand tools and general hardware"; + dct:identifier "MANUFACTURE_OF_CUTLERY_HAND_TOOLS_AND_GENERAL_HARDWARE". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other fabricated metal products nec"; + dct:identifier "MANUFACTURE_OF_OTHER_FABRICATED_METAL_PRODUCTS_NEC". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of computer electronic and optical products"; + dct:identifier "MANUFACTURE_OF_COMPUTER_ELECTRONIC_AND_OPTICAL_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of electronic components and boards"; + dct:identifier "MANUFACTURE_OF_ELECTRONIC_COMPONENTS_AND_BOARDS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of electronic components and boards"; + dct:identifier "MANUFACTURE_OF_ELECTRONIC_COMPONENTS_AND_BOARDS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of computers and peripheral equipment"; + dct:identifier "MANUFACTURE_OF_COMPUTERS_AND_PERIPHERAL_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of computers and peripheral equipment"; + dct:identifier "MANUFACTURE_OF_COMPUTERS_AND_PERIPHERAL_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of communication equipment"; + dct:identifier "MANUFACTURE_OF_COMMUNICATION_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of communication equipment"; + dct:identifier "MANUFACTURE_OF_COMMUNICATION_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of consumer electronics"; + dct:identifier "MANUFACTURE_OF_CONSUMER_ELECTRONICS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of consumer electronics"; + dct:identifier "MANUFACTURE_OF_CONSUMER_ELECTRONICS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of measuring testing navigating and control equipment watches and clocks"; + dct:identifier "MANUFACTURE_OF_MEASURING_TESTING_NAVIGATING_AND_CONTROL_EQUIPMENT_WATCHES_AND_CLOCKS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of measuring testing navigating and control equipment"; + dct:identifier "MANUFACTURE_OF_MEASURING_TESTING_NAVIGATING_AND_CONTROL_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of watches and clocks"; + dct:identifier "MANUFACTURE_OF_WATCHES_AND_CLOCKS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of irradiation electromedical and electrotherapeutic equipment"; + dct:identifier "MANUFACTURE_OF_IRRADIATION_ELECTROMEDICAL_AND_ELECTROTHERAPEUTIC_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of irradiation electromedical and electrotherapeutic equipment"; + dct:identifier "MANUFACTURE_OF_IRRADIATION_ELECTROMEDICAL_AND_ELECTROTHERAPEUTIC_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of optical instruments and photographic equipment"; + dct:identifier "MANUFACTURE_OF_OPTICAL_INSTRUMENTS_AND_PHOTOGRAPHIC_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of optical instruments and photographic equipment"; + dct:identifier "MANUFACTURE_OF_OPTICAL_INSTRUMENTS_AND_PHOTOGRAPHIC_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of magnetic and optical media"; + dct:identifier "MANUFACTURE_OF_MAGNETIC_AND_OPTICAL_MEDIA". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of magnetic and optical media"; + dct:identifier "MANUFACTURE_OF_MAGNETIC_AND_OPTICAL_MEDIA". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of electrical equipment"; + dct:identifier "MANUFACTURE_OF_ELECTRICAL_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of electric motors generators transformers and electricity distribution and control apparatus"; + dct:identifier "MANUFACTURE_OF_ELECTRIC_MOTORS_GENERATORS_TRANSFORMERS_AND_ELECTRICITY_DISTRIBUTION_AND_CONTROL_APPARATUS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of electric motors generators transformers and electricity distribution and control apparatus"; + dct:identifier "MANUFACTURE_OF_ELECTRIC_MOTORS_GENERATORS_TRANSFORMERS_AND_ELECTRICITY_DISTRIBUTION_AND_CONTROL_APPARATUS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of batteries and accumulators"; + dct:identifier "MANUFACTURE_OF_BATTERIES_AND_ACCUMULATORS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of batteries and accumulators"; + dct:identifier "MANUFACTURE_OF_BATTERIES_AND_ACCUMULATORS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of wiring and wiring devices"; + dct:identifier "MANUFACTURE_OF_WIRING_AND_WIRING_DEVICES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of fibre optic cables"; + dct:identifier "MANUFACTURE_OF_FIBRE_OPTIC_CABLES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other electronic and electric wires and cables"; + dct:identifier "MANUFACTURE_OF_OTHER_ELECTRONIC_AND_ELECTRIC_WIRES_AND_CABLES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of wiring devices"; + dct:identifier "MANUFACTURE_OF_WIRING_DEVICES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of electric lighting equipment"; + dct:identifier "MANUFACTURE_OF_ELECTRIC_LIGHTING_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of electric lighting equipment"; + dct:identifier "MANUFACTURE_OF_ELECTRIC_LIGHTING_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of domestic appliances"; + dct:identifier "MANUFACTURE_OF_DOMESTIC_APPLIANCES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of domestic appliances"; + dct:identifier "MANUFACTURE_OF_DOMESTIC_APPLIANCES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other electrical equipment"; + dct:identifier "MANUFACTURE_OF_OTHER_ELECTRICAL_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other electrical equipment"; + dct:identifier "MANUFACTURE_OF_OTHER_ELECTRICAL_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of machinery and equipment nec"; + dct:identifier "MANUFACTURE_OF_MACHINERY_AND_EQUIPMENT_NEC". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of general-purpose machinery"; + dct:identifier "MANUFACTURE_OF_GENERAL_PURPOSE_MACHINERY". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of engines and turbines except aircraft vehicle and cycle engines"; + dct:identifier "MANUFACTURE_OF_ENGINES_AND_TURBINES_EXCEPT_AIRCRAFT_VEHICLE_AND_CYCLE_ENGINES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of fluid power equipment"; + dct:identifier "MANUFACTURE_OF_FLUID_POWER_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other pumps compressors taps and valves"; + dct:identifier "MANUFACTURE_OF_OTHER_PUMPS_COMPRESSORS_TAPS_AND_VALVES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of bearings gears gearing and driving elements"; + dct:identifier "MANUFACTURE_OF_BEARINGS_GEARS_GEARING_AND_DRIVING_ELEMENTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of ovens furnaces and furnace burners"; + dct:identifier "MANUFACTURE_OF_OVENS_FURNACES_AND_FURNACE_BURNERS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of lifting and handling equipment"; + dct:identifier "MANUFACTURE_OF_LIFTING_AND_HANDLING_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of office machinery and equipment except computers and peripheral equipment"; + dct:identifier "MANUFACTURE_OF_OFFICE_MACHINERY_AND_EQUIPMENT_EXCEPT_COMPUTERS_AND_PERIPHERAL_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of power-driven hand tools"; + dct:identifier "MANUFACTURE_OF_POWER_DRIVEN_HAND_TOOLS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other general-purpose machinery"; + dct:identifier "MANUFACTURE_OF_OTHER_GENERAL_PURPOSE_MACHINERY". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of special-purpose machinery"; + dct:identifier "MANUFACTURE_OF_SPECIAL_PURPOSE_MACHINERY". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of agricultural and forestry machinery"; + dct:identifier "MANUFACTURE_OF_AGRICULTURAL_AND_FORESTRY_MACHINERY". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of metal-forming machinery and machine tools"; + dct:identifier "MANUFACTURE_OF_METAL_FORMING_MACHINERY_AND_MACHINE_TOOLS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of machinery for metallurgy"; + dct:identifier "MANUFACTURE_OF_MACHINERY_FOR_METALLURGY". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of machinery for mining quarrying and construction"; + dct:identifier "MANUFACTURE_OF_MACHINERY_FOR_MINING_QUARRYING_AND_CONSTRUCTION". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of machinery for food beverage and tobacco processing"; + dct:identifier "MANUFACTURE_OF_MACHINERY_FOR_FOOD_BEVERAGE_AND_TOBACCO_PROCESSING". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of machinery for textile apparel and leather production"; + dct:identifier "MANUFACTURE_OF_MACHINERY_FOR_TEXTILE_APPAREL_AND_LEATHER_PRODUCTION". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other special-purpose machinery"; + dct:identifier "MANUFACTURE_OF_OTHER_SPECIAL_PURPOSE_MACHINERY". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of motor vehicles trailers and semi-trailers"; + dct:identifier "MANUFACTURE_OF_MOTOR_VEHICLES_TRAILERS_AND_SEMI_TRAILERS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of motor vehicles"; + dct:identifier "MANUFACTURE_OF_MOTOR_VEHICLES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of motor vehicles"; + dct:identifier "MANUFACTURE_OF_MOTOR_VEHICLES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of bodies coachwork for motor vehicles manufacture of trailers and semi-trailers"; + dct:identifier "MANUFACTURE_OF_BODIES_COACHWORK_FOR_MOTOR_VEHICLES_MANUFACTURE_OF_TRAILERS_AND_SEMI_TRAILERS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of bodies coachwork for motor vehicles manufacture of trailers and semi-trailers"; + dct:identifier "MANUFACTURE_OF_BODIES_COACHWORK_FOR_MOTOR_VEHICLES_MANUFACTURE_OF_TRAILERS_AND_SEMI_TRAILERS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of parts and accessories for motor vehicles"; + dct:identifier "MANUFACTURE_OF_PARTS_AND_ACCESSORIES_FOR_MOTOR_VEHICLES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of parts and accessories for motor vehicles"; + dct:identifier "MANUFACTURE_OF_PARTS_AND_ACCESSORIES_FOR_MOTOR_VEHICLES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other transport equipment"; + dct:identifier "MANUFACTURE_OF_OTHER_TRANSPORT_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Building of ships and boats"; + dct:identifier "BUILDING_OF_SHIPS_AND_BOATS". + + a ids:ISICIndustry; + rdfs:comment "Building of ships and floating structures"; + dct:identifier "BUILDING_OF_SHIPS_AND_FLOATING_STRUCTURES". + + a ids:ISICIndustry; + rdfs:comment "Building of pleasure and sporting boats"; + dct:identifier "BUILDING_OF_PLEASURE_AND_SPORTING_BOATS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of railway locomotives and rolling stock"; + dct:identifier "MANUFACTURE_OF_RAILWAY_LOCOMOTIVES_AND_ROLLING_STOCK". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of railway locomotives and rolling stock"; + dct:identifier "MANUFACTURE_OF_RAILWAY_LOCOMOTIVES_AND_ROLLING_STOCK". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of air and spacecraft and related machinery"; + dct:identifier "MANUFACTURE_OF_AIR_AND_SPACECRAFT_AND_RELATED_MACHINERY". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of air and spacecraft and related machinery"; + dct:identifier "MANUFACTURE_OF_AIR_AND_SPACECRAFT_AND_RELATED_MACHINERY". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of military fighting vehicles"; + dct:identifier "MANUFACTURE_OF_MILITARY_FIGHTING_VEHICLES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of military fighting vehicles"; + dct:identifier "MANUFACTURE_OF_MILITARY_FIGHTING_VEHICLES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of transport equipment nec"; + dct:identifier "MANUFACTURE_OF_TRANSPORT_EQUIPMENT_NEC". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of motorcycles"; + dct:identifier "MANUFACTURE_OF_MOTORCYCLES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of bicycles and invalid carriages"; + dct:identifier "MANUFACTURE_OF_BICYCLES_AND_INVALID_CARRIAGES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of other transport equipment nec"; + dct:identifier "MANUFACTURE_OF_OTHER_TRANSPORT_EQUIPMENT_NEC". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of furniture"; + dct:identifier "MANUFACTURE_OF_FURNITURE". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of furniture"; + dct:identifier "MANUFACTURE_OF_FURNITURE". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of furniture"; + dct:identifier "MANUFACTURE_OF_FURNITURE". + + a ids:ISICIndustry; + rdfs:comment "Other manufacturing"; + dct:identifier "OTHER_MANUFACTURING". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of jewellery bijouterie and related articles"; + dct:identifier "MANUFACTURE_OF_JEWELLERY_BIJOUTERIE_AND_RELATED_ARTICLES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of jewellery and related articles"; + dct:identifier "MANUFACTURE_OF_JEWELLERY_AND_RELATED_ARTICLES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of imitation jewellery and related articles"; + dct:identifier "MANUFACTURE_OF_IMITATION_JEWELLERY_AND_RELATED_ARTICLES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of musical instruments"; + dct:identifier "MANUFACTURE_OF_MUSICAL_INSTRUMENTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of musical instruments"; + dct:identifier "MANUFACTURE_OF_MUSICAL_INSTRUMENTS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of sports goods"; + dct:identifier "MANUFACTURE_OF_SPORTS_GOODS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of sports goods"; + dct:identifier "MANUFACTURE_OF_SPORTS_GOODS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of games and toys"; + dct:identifier "MANUFACTURE_OF_GAMES_AND_TOYS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of games and toys"; + dct:identifier "MANUFACTURE_OF_GAMES_AND_TOYS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of medical and dental instruments and supplies"; + dct:identifier "MANUFACTURE_OF_MEDICAL_AND_DENTAL_INSTRUMENTS_AND_SUPPLIES". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of medical and dental instruments and supplies"; + dct:identifier "MANUFACTURE_OF_MEDICAL_AND_DENTAL_INSTRUMENTS_AND_SUPPLIES". + + a ids:ISICIndustry; + rdfs:comment "Other manufacturing nec"; + dct:identifier "OTHER_MANUFACTURING_NEC". + + a ids:ISICIndustry; + rdfs:comment "Other manufacturing nec"; + dct:identifier "OTHER_MANUFACTURING_NEC". + + a ids:ISICIndustry; + rdfs:comment "Repair and installation of machinery and equipment"; + dct:identifier "REPAIR_AND_INSTALLATION_OF_MACHINERY_AND_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Repair of fabricated metal products machinery and equipment"; + dct:identifier "REPAIR_OF_FABRICATED_METAL_PRODUCTS_MACHINERY_AND_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Repair of fabricated metal products"; + dct:identifier "REPAIR_OF_FABRICATED_METAL_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Repair of machinery"; + dct:identifier "REPAIR_OF_MACHINERY". + + a ids:ISICIndustry; + rdfs:comment "Repair of electronic and optical equipment"; + dct:identifier "REPAIR_OF_ELECTRONIC_AND_OPTICAL_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Repair of electrical equipment"; + dct:identifier "REPAIR_OF_ELECTRICAL_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Repair of transport equipment except motor vehicles"; + dct:identifier "REPAIR_OF_TRANSPORT_EQUIPMENT_EXCEPT_MOTOR_VEHICLES". + + a ids:ISICIndustry; + rdfs:comment "Repair of other equipment"; + dct:identifier "REPAIR_OF_OTHER_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Installation of industrial machinery and equipment"; + dct:identifier "INSTALLATION_OF_INDUSTRIAL_MACHINERY_AND_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Installation of industrial machinery and equipment"; + dct:identifier "INSTALLATION_OF_INDUSTRIAL_MACHINERY_AND_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "DElectricity gas steam and air conditioning supply"; + dct:identifier "DELECTRICITY_GAS_STEAM_AND_AIR_CONDITIONING_SUPPLY". + + a ids:ISICIndustry; + rdfs:comment "Electricity gas steam and air conditioning supply"; + dct:identifier "ELECTRICITY_GAS_STEAM_AND_AIR_CONDITIONING_SUPPLY". + + a ids:ISICIndustry; + rdfs:comment "Electric power generation transmission and distribution"; + dct:identifier "ELECTRIC_POWER_GENERATION_TRANSMISSION_AND_DISTRIBUTION". + + a ids:ISICIndustry; + rdfs:comment "Electric power generation transmission and distribution"; + dct:identifier "ELECTRIC_POWER_GENERATION_TRANSMISSION_AND_DISTRIBUTION". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of gas distribution of gaseous fuels through mains"; + dct:identifier "MANUFACTURE_OF_GAS_DISTRIBUTION_OF_GASEOUS_FUELS_THROUGH_MAINS". + + a ids:ISICIndustry; + rdfs:comment "Manufacture of gas distribution of gaseous fuels through mains"; + dct:identifier "MANUFACTURE_OF_GAS_DISTRIBUTION_OF_GASEOUS_FUELS_THROUGH_MAINS". + + a ids:ISICIndustry; + rdfs:comment "Steam and air conditioning supply"; + dct:identifier "STEAM_AND_AIR_CONDITIONING_SUPPLY". + + a ids:ISICIndustry; + rdfs:comment "Steam and air conditioning supply"; + dct:identifier "STEAM_AND_AIR_CONDITIONING_SUPPLY". + + a ids:ISICIndustry; + rdfs:comment "EWater supply sewerage waste management and remediation activities"; + dct:identifier "EWATER_SUPPLY_SEWERAGE_WASTE_MANAGEMENT_AND_REMEDIATION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Water collection treatment and supply"; + dct:identifier "WATER_COLLECTION_TREATMENT_AND_SUPPLY". + + a ids:ISICIndustry; + rdfs:comment "Water collection treatment and supply"; + dct:identifier "WATER_COLLECTION_TREATMENT_AND_SUPPLY". + + a ids:ISICIndustry; + rdfs:comment "Water collection treatment and supply"; + dct:identifier "WATER_COLLECTION_TREATMENT_AND_SUPPLY". + + a ids:ISICIndustry; + rdfs:comment "Sewerage"; + dct:identifier "SEWERAGE". + + a ids:ISICIndustry; + rdfs:comment "Sewerage"; + dct:identifier "SEWERAGE". + + a ids:ISICIndustry; + rdfs:comment "Sewerage"; + dct:identifier "SEWERAGE". + + a ids:ISICIndustry; + rdfs:comment "Waste collection treatment and disposal activities materials recovery"; + dct:identifier "WASTE_COLLECTION_TREATMENT_AND_DISPOSAL_ACTIVITIES_MATERIALS_RECOVERY". + + a ids:ISICIndustry; + rdfs:comment "Waste collection"; + dct:identifier "WASTE_COLLECTION". + + a ids:ISICIndustry; + rdfs:comment "Collection of non-hazardous waste"; + dct:identifier "COLLECTION_OF_NON_HAZARDOUS_WASTE". + + a ids:ISICIndustry; + rdfs:comment "Collection of hazardous waste"; + dct:identifier "COLLECTION_OF_HAZARDOUS_WASTE". + + a ids:ISICIndustry; + rdfs:comment "Waste treatment and disposal"; + dct:identifier "WASTE_TREATMENT_AND_DISPOSAL". + + a ids:ISICIndustry; + rdfs:comment "Treatment and disposal of non-hazardous waste"; + dct:identifier "TREATMENT_AND_DISPOSAL_OF_NON_HAZARDOUS_WASTE". + + a ids:ISICIndustry; + rdfs:comment "Treatment and disposal of hazardous waste"; + dct:identifier "TREATMENT_AND_DISPOSAL_OF_HAZARDOUS_WASTE". + + a ids:ISICIndustry; + rdfs:comment "Materials recovery"; + dct:identifier "MATERIALS_RECOVERY". + + a ids:ISICIndustry; + rdfs:comment "Materials recovery"; + dct:identifier "MATERIALS_RECOVERY". + + a ids:ISICIndustry; + rdfs:comment "Remediation activities and other waste management services"; + dct:identifier "REMEDIATION_ACTIVITIES_AND_OTHER_WASTE_MANAGEMENT_SERVICES". + + a ids:ISICIndustry; + rdfs:comment "Remediation activities and other waste management services"; + dct:identifier "REMEDIATION_ACTIVITIES_AND_OTHER_WASTE_MANAGEMENT_SERVICES". + + a ids:ISICIndustry; + rdfs:comment "Remediation activities and other waste management services"; + dct:identifier "REMEDIATION_ACTIVITIES_AND_OTHER_WASTE_MANAGEMENT_SERVICES". + + a ids:ISICIndustry; + rdfs:comment "FConstruction"; + dct:identifier "FCONSTRUCTION". + + a ids:ISICIndustry; + rdfs:comment "Construction of buildings"; + dct:identifier "CONSTRUCTION_OF_BUILDINGS". + + a ids:ISICIndustry; + rdfs:comment "Construction of buildings"; + dct:identifier "CONSTRUCTION_OF_BUILDINGS". + + a ids:ISICIndustry; + rdfs:comment "Construction of buildings"; + dct:identifier "CONSTRUCTION_OF_BUILDINGS". + + a ids:ISICIndustry; + rdfs:comment "Civil engineering"; + dct:identifier "CIVIL_ENGINEERING". + + a ids:ISICIndustry; + rdfs:comment "Construction of roads and railways"; + dct:identifier "CONSTRUCTION_OF_ROADS_AND_RAILWAYS". + + a ids:ISICIndustry; + rdfs:comment "Construction of roads and railways"; + dct:identifier "CONSTRUCTION_OF_ROADS_AND_RAILWAYS". + + a ids:ISICIndustry; + rdfs:comment "Construction of utility projects"; + dct:identifier "CONSTRUCTION_OF_UTILITY_PROJECTS". + + a ids:ISICIndustry; + rdfs:comment "Construction of utility projects"; + dct:identifier "CONSTRUCTION_OF_UTILITY_PROJECTS". + + a ids:ISICIndustry; + rdfs:comment "Construction of other civil engineering projects"; + dct:identifier "CONSTRUCTION_OF_OTHER_CIVIL_ENGINEERING_PROJECTS". + + a ids:ISICIndustry; + rdfs:comment "Construction of other civil engineering projects"; + dct:identifier "CONSTRUCTION_OF_OTHER_CIVIL_ENGINEERING_PROJECTS". + + a ids:ISICIndustry; + rdfs:comment "Specialized construction activities"; + dct:identifier "SPECIALIZED_CONSTRUCTION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Demolition and site preparation"; + dct:identifier "DEMOLITION_AND_SITE_PREPARATION". + + a ids:ISICIndustry; + rdfs:comment "Demolition"; + dct:identifier "DEMOLITION". + + a ids:ISICIndustry; + rdfs:comment "Site preparation"; + dct:identifier "SITE_PREPARATION". + + a ids:ISICIndustry; + rdfs:comment "Electrical plumbing and other construction installation activities"; + dct:identifier "ELECTRICAL_PLUMBING_AND_OTHER_CONSTRUCTION_INSTALLATION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Electrical installation"; + dct:identifier "ELECTRICAL_INSTALLATION". + + a ids:ISICIndustry; + rdfs:comment "Plumbing heat and air-conditioning installation"; + dct:identifier "PLUMBING_HEAT_AND_AIR_CONDITIONING_INSTALLATION". + + a ids:ISICIndustry; + rdfs:comment "Other construction installation"; + dct:identifier "OTHER_CONSTRUCTION_INSTALLATION". + + a ids:ISICIndustry; + rdfs:comment "Building completion and finishing"; + dct:identifier "BUILDING_COMPLETION_AND_FINISHING". + + a ids:ISICIndustry; + rdfs:comment "Building completion and finishing"; + dct:identifier "BUILDING_COMPLETION_AND_FINISHING". + + a ids:ISICIndustry; + rdfs:comment "Other specialized construction activities"; + dct:identifier "OTHER_SPECIALIZED_CONSTRUCTION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other specialized construction activities"; + dct:identifier "OTHER_SPECIALIZED_CONSTRUCTION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "GWholesale and retail trade repair of motor vehicles and motorcycles"; + dct:identifier "GWHOLESALE_AND_RETAIL_TRADE_REPAIR_OF_MOTOR_VEHICLES_AND_MOTORCYCLES". + + a ids:ISICIndustry; + rdfs:comment "Wholesale and retail trade and repair of motor vehicles and motorcycles"; + dct:identifier "WHOLESALE_AND_RETAIL_TRADE_AND_REPAIR_OF_MOTOR_VEHICLES_AND_MOTORCYCLES". + + a ids:ISICIndustry; + rdfs:comment "Sale of motor vehicles"; + dct:identifier "SALE_OF_MOTOR_VEHICLES". + + a ids:ISICIndustry; + rdfs:comment "Sale of motor vehicles"; + dct:identifier "SALE_OF_MOTOR_VEHICLES". + + a ids:ISICIndustry; + rdfs:comment "Maintenance and repair of motor vehicles"; + dct:identifier "MAINTENANCE_AND_REPAIR_OF_MOTOR_VEHICLES". + + a ids:ISICIndustry; + rdfs:comment "Maintenance and repair of motor vehicles"; + dct:identifier "MAINTENANCE_AND_REPAIR_OF_MOTOR_VEHICLES". + + a ids:ISICIndustry; + rdfs:comment "Sale of motor vehicle parts and accessories"; + dct:identifier "SALE_OF_MOTOR_VEHICLE_PARTS_AND_ACCESSORIES". + + a ids:ISICIndustry; + rdfs:comment "Sale of motor vehicle parts and accessories"; + dct:identifier "SALE_OF_MOTOR_VEHICLE_PARTS_AND_ACCESSORIES". + + a ids:ISICIndustry; + rdfs:comment "Sale maintenance and repair of motorcycles and related parts and accessories"; + dct:identifier "SALE_MAINTENANCE_AND_REPAIR_OF_MOTORCYCLES_AND_RELATED_PARTS_AND_ACCESSORIES". + + a ids:ISICIndustry; + rdfs:comment "Sale maintenance and repair of motorcycles and related parts and accessories"; + dct:identifier "SALE_MAINTENANCE_AND_REPAIR_OF_MOTORCYCLES_AND_RELATED_PARTS_AND_ACCESSORIES". + + a ids:ISICIndustry; + rdfs:comment "Wholesale trade except of motor vehicles and motorcycles"; + dct:identifier "WHOLESALE_TRADE_EXCEPT_OF_MOTOR_VEHICLES_AND_MOTORCYCLES". + + a ids:ISICIndustry; + rdfs:comment "Wholesale on a fee or contract basis"; + dct:identifier "WHOLESALE_ON_A_FEE_OR_CONTRACT_BASIS". + + a ids:ISICIndustry; + rdfs:comment "Wholesale on a fee or contract basis"; + dct:identifier "WHOLESALE_ON_A_FEE_OR_CONTRACT_BASIS". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of agricultural raw materials and live animals"; + dct:identifier "WHOLESALE_OF_AGRICULTURAL_RAW_MATERIALS_AND_LIVE_ANIMALS". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of agricultural raw materials and live animals"; + dct:identifier "WHOLESALE_OF_AGRICULTURAL_RAW_MATERIALS_AND_LIVE_ANIMALS". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of food beverages and tobacco"; + dct:identifier "WHOLESALE_OF_FOOD_BEVERAGES_AND_TOBACCO". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of food beverages and tobacco"; + dct:identifier "WHOLESALE_OF_FOOD_BEVERAGES_AND_TOBACCO". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of household goods"; + dct:identifier "WHOLESALE_OF_HOUSEHOLD_GOODS". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of textiles clothing and footwear"; + dct:identifier "WHOLESALE_OF_TEXTILES_CLOTHING_AND_FOOTWEAR". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of other household goods"; + dct:identifier "WHOLESALE_OF_OTHER_HOUSEHOLD_GOODS". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of machinery equipment and supplies"; + dct:identifier "WHOLESALE_OF_MACHINERY_EQUIPMENT_AND_SUPPLIES". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of computers computer peripheral equipment and software"; + dct:identifier "WHOLESALE_OF_COMPUTERS_COMPUTER_PERIPHERAL_EQUIPMENT_AND_SOFTWARE". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of electronic and telecommunications equipment and parts"; + dct:identifier "WHOLESALE_OF_ELECTRONIC_AND_TELECOMMUNICATIONS_EQUIPMENT_AND_PARTS". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of agricultural machinery equipment and supplies"; + dct:identifier "WHOLESALE_OF_AGRICULTURAL_MACHINERY_EQUIPMENT_AND_SUPPLIES". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of other machinery and equipment"; + dct:identifier "WHOLESALE_OF_OTHER_MACHINERY_AND_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Other specialized wholesale"; + dct:identifier "OTHER_SPECIALIZED_WHOLESALE". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of solid liquid and gaseous fuels and related products"; + dct:identifier "WHOLESALE_OF_SOLID_LIQUID_AND_GASEOUS_FUELS_AND_RELATED_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of metals and metal ores"; + dct:identifier "WHOLESALE_OF_METALS_AND_METAL_ORES". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of construction materials hardware plumbing and heating equipment and supplies"; + dct:identifier "WHOLESALE_OF_CONSTRUCTION_MATERIALS_HARDWARE_PLUMBING_AND_HEATING_EQUIPMENT_AND_SUPPLIES". + + a ids:ISICIndustry; + rdfs:comment "Wholesale of waste and scrap and other products nec"; + dct:identifier "WHOLESALE_OF_WASTE_AND_SCRAP_AND_OTHER_PRODUCTS_NEC". + + a ids:ISICIndustry; + rdfs:comment "Non-specialized wholesale trade"; + dct:identifier "NON_SPECIALIZED_WHOLESALE_TRADE". + + a ids:ISICIndustry; + rdfs:comment "Non-specialized wholesale trade"; + dct:identifier "NON_SPECIALIZED_WHOLESALE_TRADE". + + a ids:ISICIndustry; + rdfs:comment "Retail trade except of motor vehicles and motorcycles"; + dct:identifier "RETAIL_TRADE_EXCEPT_OF_MOTOR_VEHICLES_AND_MOTORCYCLES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale in non-specialized stores"; + dct:identifier "RETAIL_SALE_IN_NON_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale in non-specialized stores with food beverages or tobacco predominating"; + dct:identifier "RETAIL_SALE_IN_NON_SPECIALIZED_STORES_WITH_FOOD_BEVERAGES_OR_TOBACCO_PREDOMINATING". + + a ids:ISICIndustry; + rdfs:comment "Other retail sale in non-specialized stores"; + dct:identifier "OTHER_RETAIL_SALE_IN_NON_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of food beverages and tobacco in specialized stores"; + dct:identifier "RETAIL_SALE_OF_FOOD_BEVERAGES_AND_TOBACCO_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of food in specialized stores"; + dct:identifier "RETAIL_SALE_OF_FOOD_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of beverages in specialized stores"; + dct:identifier "RETAIL_SALE_OF_BEVERAGES_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of tobacco products in specialized stores"; + dct:identifier "RETAIL_SALE_OF_TOBACCO_PRODUCTS_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of automotive fuel in specialized stores"; + dct:identifier "RETAIL_SALE_OF_AUTOMOTIVE_FUEL_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of automotive fuel in specialized stores"; + dct:identifier "RETAIL_SALE_OF_AUTOMOTIVE_FUEL_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of information and communications equipment in specialized stores"; + dct:identifier "RETAIL_SALE_OF_INFORMATION_AND_COMMUNICATIONS_EQUIPMENT_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of computers peripheral units software and telecommunications equipment in specialized stores"; + dct:identifier "RETAIL_SALE_OF_COMPUTERS_PERIPHERAL_UNITS_SOFTWARE_AND_TELECOMMUNICATIONS_EQUIPMENT_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of audio and video equipment in specialized stores"; + dct:identifier "RETAIL_SALE_OF_AUDIO_AND_VIDEO_EQUIPMENT_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of other household equipment in specialized stores"; + dct:identifier "RETAIL_SALE_OF_OTHER_HOUSEHOLD_EQUIPMENT_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of textiles in specialized stores"; + dct:identifier "RETAIL_SALE_OF_TEXTILES_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of hardware paints and glass in specialized stores"; + dct:identifier "RETAIL_SALE_OF_HARDWARE_PAINTS_AND_GLASS_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of carpets rugs wall and floor coverings in specialized stores"; + dct:identifier "RETAIL_SALE_OF_CARPETS_RUGS_WALL_AND_FLOOR_COVERINGS_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of electrical household appliances furniture lighting equipment and other household articles in specialized stores"; + dct:identifier "RETAIL_SALE_OF_ELECTRICAL_HOUSEHOLD_APPLIANCES_FURNITURE_LIGHTING_EQUIPMENT_AND_OTHER_HOUSEHOLD_ARTICLES_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of cultural and recreation goods in specialized stores"; + dct:identifier "RETAIL_SALE_OF_CULTURAL_AND_RECREATION_GOODS_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of books newspapers and stationary in specialized stores"; + dct:identifier "RETAIL_SALE_OF_BOOKS_NEWSPAPERS_AND_STATIONARY_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of music and video recordings in specialized stores"; + dct:identifier "RETAIL_SALE_OF_MUSIC_AND_VIDEO_RECORDINGS_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of sporting equipment in specialized stores"; + dct:identifier "RETAIL_SALE_OF_SPORTING_EQUIPMENT_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of games and toys in specialized stores"; + dct:identifier "RETAIL_SALE_OF_GAMES_AND_TOYS_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of other goods in specialized stores"; + dct:identifier "RETAIL_SALE_OF_OTHER_GOODS_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of clothing footwear and leather articles in specialized stores"; + dct:identifier "RETAIL_SALE_OF_CLOTHING_FOOTWEAR_AND_LEATHER_ARTICLES_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of pharmaceutical and medical goods cosmetic and toilet articles in specialized stores"; + dct:identifier "RETAIL_SALE_OF_PHARMACEUTICAL_AND_MEDICAL_GOODS_COSMETIC_AND_TOILET_ARTICLES_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Other retail sale of new goods in specialized stores"; + dct:identifier "OTHER_RETAIL_SALE_OF_NEW_GOODS_IN_SPECIALIZED_STORES". + + a ids:ISICIndustry; + rdfs:comment "Retail sale of second-hand goods"; + dct:identifier "RETAIL_SALE_OF_SECOND_HAND_GOODS". + + a ids:ISICIndustry; + rdfs:comment "Retail sale via stalls and markets"; + dct:identifier "RETAIL_SALE_VIA_STALLS_AND_MARKETS". + + a ids:ISICIndustry; + rdfs:comment "Retail sale via stalls and markets of food beverages and tobacco products"; + dct:identifier "RETAIL_SALE_VIA_STALLS_AND_MARKETS_OF_FOOD_BEVERAGES_AND_TOBACCO_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Retail sale via stalls and markets of textiles clothing and footwear"; + dct:identifier "RETAIL_SALE_VIA_STALLS_AND_MARKETS_OF_TEXTILES_CLOTHING_AND_FOOTWEAR". + + a ids:ISICIndustry; + rdfs:comment "Retail sale via stalls and markets of other goods"; + dct:identifier "RETAIL_SALE_VIA_STALLS_AND_MARKETS_OF_OTHER_GOODS". + + a ids:ISICIndustry; + rdfs:comment "Retail trade not in stores stalls or markets"; + dct:identifier "RETAIL_TRADE_NOT_IN_STORES_STALLS_OR_MARKETS". + + a ids:ISICIndustry; + rdfs:comment "Retail sale via mail order houses or via Internet"; + dct:identifier "RETAIL_SALE_VIA_MAIL_ORDER_HOUSES_OR_VIA_INTERNET". + + a ids:ISICIndustry; + rdfs:comment "Other retail sale not in stores stalls or markets"; + dct:identifier "OTHER_RETAIL_SALE_NOT_IN_STORES_STALLS_OR_MARKETS". + + a ids:ISICIndustry; + rdfs:comment "HTransportation and storage"; + dct:identifier "HTRANSPORTATION_AND_STORAGE". + + a ids:ISICIndustry; + rdfs:comment "Land transport and transport via pipelines"; + dct:identifier "LAND_TRANSPORT_AND_TRANSPORT_VIA_PIPELINES". + + a ids:ISICIndustry; + rdfs:comment "Transport via railways"; + dct:identifier "TRANSPORT_VIA_RAILWAYS". + + a ids:ISICIndustry; + rdfs:comment "Passenger rail transport interurban"; + dct:identifier "PASSENGER_RAIL_TRANSPORT_INTERURBAN". + + a ids:ISICIndustry; + rdfs:comment "Freight rail transport"; + dct:identifier "FREIGHT_RAIL_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Other land transport"; + dct:identifier "OTHER_LAND_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Urban and suburban passenger land transport"; + dct:identifier "URBAN_AND_SUBURBAN_PASSENGER_LAND_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Other passenger land transport"; + dct:identifier "OTHER_PASSENGER_LAND_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Freight transport by road"; + dct:identifier "FREIGHT_TRANSPORT_BY_ROAD". + + a ids:ISICIndustry; + rdfs:comment "Transport via pipeline"; + dct:identifier "TRANSPORT_VIA_PIPELINE". + + a ids:ISICIndustry; + rdfs:comment "Transport via pipeline"; + dct:identifier "TRANSPORT_VIA_PIPELINE". + + a ids:ISICIndustry; + rdfs:comment "Water transport"; + dct:identifier "WATER_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Sea and coastal water transport"; + dct:identifier "SEA_AND_COASTAL_WATER_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Sea and coastal passenger water transport"; + dct:identifier "SEA_AND_COASTAL_PASSENGER_WATER_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Sea and coastal freight water transport"; + dct:identifier "SEA_AND_COASTAL_FREIGHT_WATER_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Inland water transport"; + dct:identifier "INLAND_WATER_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Inland passenger water transport"; + dct:identifier "INLAND_PASSENGER_WATER_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Inland freight water transport"; + dct:identifier "INLAND_FREIGHT_WATER_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Air transport"; + dct:identifier "AIR_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Passenger air transport"; + dct:identifier "PASSENGER_AIR_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Passenger air transport"; + dct:identifier "PASSENGER_AIR_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Freight air transport"; + dct:identifier "FREIGHT_AIR_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Freight air transport"; + dct:identifier "FREIGHT_AIR_TRANSPORT". + + a ids:ISICIndustry; + rdfs:comment "Warehousing and support activities for transportation"; + dct:identifier "WAREHOUSING_AND_SUPPORT_ACTIVITIES_FOR_TRANSPORTATION". + + a ids:ISICIndustry; + rdfs:comment "Warehousing and storage"; + dct:identifier "WAREHOUSING_AND_STORAGE". + + a ids:ISICIndustry; + rdfs:comment "Warehousing and storage"; + dct:identifier "WAREHOUSING_AND_STORAGE". + + a ids:ISICIndustry; + rdfs:comment "Support activities for transportation"; + dct:identifier "SUPPORT_ACTIVITIES_FOR_TRANSPORTATION". + + a ids:ISICIndustry; + rdfs:comment "Service activities incidental to land transportation"; + dct:identifier "SERVICE_ACTIVITIES_INCIDENTAL_TO_LAND_TRANSPORTATION". + + a ids:ISICIndustry; + rdfs:comment "Service activities incidental to water transportation"; + dct:identifier "SERVICE_ACTIVITIES_INCIDENTAL_TO_WATER_TRANSPORTATION". + + a ids:ISICIndustry; + rdfs:comment "Service activities incidental to air transportation"; + dct:identifier "SERVICE_ACTIVITIES_INCIDENTAL_TO_AIR_TRANSPORTATION". + + a ids:ISICIndustry; + rdfs:comment "Cargo handling"; + dct:identifier "CARGO_HANDLING". + + a ids:ISICIndustry; + rdfs:comment "Other transportation support activities"; + dct:identifier "OTHER_TRANSPORTATION_SUPPORT_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Postal and courier activities"; + dct:identifier "POSTAL_AND_COURIER_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Postal activities"; + dct:identifier "POSTAL_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Postal activities"; + dct:identifier "POSTAL_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Courier activities"; + dct:identifier "COURIER_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Courier activities"; + dct:identifier "COURIER_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "IAccommodation and food service activities"; + dct:identifier "IACCOMMODATION_AND_FOOD_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Accommodation"; + dct:identifier "ACCOMMODATION". + + a ids:ISICIndustry; + rdfs:comment "Short term accommodation activities"; + dct:identifier "SHORT_TERM_ACCOMMODATION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Short term accommodation activities"; + dct:identifier "SHORT_TERM_ACCOMMODATION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Camping grounds recreational vehicle parks and trailer parks"; + dct:identifier "CAMPING_GROUNDS_RECREATIONAL_VEHICLE_PARKS_AND_TRAILER_PARKS". + + a ids:ISICIndustry; + rdfs:comment "Camping grounds recreational vehicle parks and trailer parks"; + dct:identifier "CAMPING_GROUNDS_RECREATIONAL_VEHICLE_PARKS_AND_TRAILER_PARKS". + + a ids:ISICIndustry; + rdfs:comment "Other accommodation"; + dct:identifier "OTHER_ACCOMMODATION". + + a ids:ISICIndustry; + rdfs:comment "Other accommodation"; + dct:identifier "OTHER_ACCOMMODATION". + + a ids:ISICIndustry; + rdfs:comment "Food and beverage service activities"; + dct:identifier "FOOD_AND_BEVERAGE_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Restaurants and mobile food service activities"; + dct:identifier "RESTAURANTS_AND_MOBILE_FOOD_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Restaurants and mobile food service activities"; + dct:identifier "RESTAURANTS_AND_MOBILE_FOOD_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Event catering and other food service activities"; + dct:identifier "EVENT_CATERING_AND_OTHER_FOOD_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Event catering"; + dct:identifier "EVENT_CATERING". + + a ids:ISICIndustry; + rdfs:comment "Other food service activities"; + dct:identifier "OTHER_FOOD_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Beverage serving activities"; + dct:identifier "BEVERAGE_SERVING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Beverage serving activities"; + dct:identifier "BEVERAGE_SERVING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "JInformation and communication"; + dct:identifier "JINFORMATION_AND_COMMUNICATION". + + a ids:ISICIndustry; + rdfs:comment "Publishing activities"; + dct:identifier "PUBLISHING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Publishing of books periodicals and other publishing activities"; + dct:identifier "PUBLISHING_OF_BOOKS_PERIODICALS_AND_OTHER_PUBLISHING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Book publishing"; + dct:identifier "BOOK_PUBLISHING". + + a ids:ISICIndustry; + rdfs:comment "Publishing of directories and mailing lists"; + dct:identifier "PUBLISHING_OF_DIRECTORIES_AND_MAILING_LISTS". + + a ids:ISICIndustry; + rdfs:comment "Publishing of newspapers journals and periodicals"; + dct:identifier "PUBLISHING_OF_NEWSPAPERS_JOURNALS_AND_PERIODICALS". + + a ids:ISICIndustry; + rdfs:comment "Other publishing activities"; + dct:identifier "OTHER_PUBLISHING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Software publishing"; + dct:identifier "SOFTWARE_PUBLISHING". + + a ids:ISICIndustry; + rdfs:comment "Software publishing"; + dct:identifier "SOFTWARE_PUBLISHING". + + a ids:ISICIndustry; + rdfs:comment "Motion picture video and television programme production sound recording and music publishing activities"; + dct:identifier "MOTION_PICTURE_VIDEO_AND_TELEVISION_PROGRAMME_PRODUCTION_SOUND_RECORDING_AND_MUSIC_PUBLISHING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Motion picture video and television programme activities"; + dct:identifier "MOTION_PICTURE_VIDEO_AND_TELEVISION_PROGRAMME_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Motion picture video and television programme production activities"; + dct:identifier "MOTION_PICTURE_VIDEO_AND_TELEVISION_PROGRAMME_PRODUCTION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Motion picture video and television programme post-production activities"; + dct:identifier "MOTION_PICTURE_VIDEO_AND_TELEVISION_PROGRAMME_POST_PRODUCTION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Motion picture video and television programme distribution activities"; + dct:identifier "MOTION_PICTURE_VIDEO_AND_TELEVISION_PROGRAMME_DISTRIBUTION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Motion picture projection activities"; + dct:identifier "MOTION_PICTURE_PROJECTION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Sound recording and music publishing activities"; + dct:identifier "SOUND_RECORDING_AND_MUSIC_PUBLISHING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Sound recording and music publishing activities"; + dct:identifier "SOUND_RECORDING_AND_MUSIC_PUBLISHING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Programming and broadcasting activities"; + dct:identifier "PROGRAMMING_AND_BROADCASTING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Radio broadcasting"; + dct:identifier "RADIO_BROADCASTING". + + a ids:ISICIndustry; + rdfs:comment "Radio broadcasting"; + dct:identifier "RADIO_BROADCASTING". + + a ids:ISICIndustry; + rdfs:comment "Television programming and broadcasting activities"; + dct:identifier "TELEVISION_PROGRAMMING_AND_BROADCASTING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Television programming and broadcasting activities"; + dct:identifier "TELEVISION_PROGRAMMING_AND_BROADCASTING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Telecommunications"; + dct:identifier "TELECOMMUNICATIONS". + + a ids:ISICIndustry; + rdfs:comment "Wired telecommunications activities"; + dct:identifier "WIRED_TELECOMMUNICATIONS_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Wired telecommunications activities"; + dct:identifier "WIRED_TELECOMMUNICATIONS_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Wireless telecommunications activities"; + dct:identifier "WIRELESS_TELECOMMUNICATIONS_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Wireless telecommunications activities"; + dct:identifier "WIRELESS_TELECOMMUNICATIONS_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Satellite telecommunications activities"; + dct:identifier "SATELLITE_TELECOMMUNICATIONS_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Satellite telecommunications activities"; + dct:identifier "SATELLITE_TELECOMMUNICATIONS_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other telecommunications activities"; + dct:identifier "OTHER_TELECOMMUNICATIONS_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other telecommunications activities"; + dct:identifier "OTHER_TELECOMMUNICATIONS_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Computer programming consultancy and related activities"; + dct:identifier "COMPUTER_PROGRAMMING_CONSULTANCY_AND_RELATED_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Computer programming consultancy and related activities"; + dct:identifier "COMPUTER_PROGRAMMING_CONSULTANCY_AND_RELATED_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Computer programming activities"; + dct:identifier "COMPUTER_PROGRAMMING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Computer consultancy and computer facilities management activities"; + dct:identifier "COMPUTER_CONSULTANCY_AND_COMPUTER_FACILITIES_MANAGEMENT_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other information technology and computer service activities"; + dct:identifier "OTHER_INFORMATION_TECHNOLOGY_AND_COMPUTER_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Information service activities"; + dct:identifier "INFORMATION_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Data processing hosting and related activities web portals"; + dct:identifier "DATA_PROCESSING_HOSTING_AND_RELATED_ACTIVITIES_WEB_PORTALS". + + a ids:ISICIndustry; + rdfs:comment "Data processing hosting and related activities"; + dct:identifier "DATA_PROCESSING_HOSTING_AND_RELATED_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Web portals"; + dct:identifier "WEB_PORTALS". + + a ids:ISICIndustry; + rdfs:comment "Other information service activities"; + dct:identifier "OTHER_INFORMATION_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "News agency activities"; + dct:identifier "NEWS_AGENCY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other information service activities nec"; + dct:identifier "OTHER_INFORMATION_SERVICE_ACTIVITIES_NEC". + + a ids:ISICIndustry; + rdfs:comment "KFinancial and insurance activities"; + dct:identifier "KFINANCIAL_AND_INSURANCE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Financial service activities except insurance and pension funding"; + dct:identifier "FINANCIAL_SERVICE_ACTIVITIES_EXCEPT_INSURANCE_AND_PENSION_FUNDING". + + a ids:ISICIndustry; + rdfs:comment "Monetary intermediation"; + dct:identifier "MONETARY_INTERMEDIATION". + + a ids:ISICIndustry; + rdfs:comment "Central banking"; + dct:identifier "CENTRAL_BANKING". + + a ids:ISICIndustry; + rdfs:comment "Other monetary intermediation"; + dct:identifier "OTHER_MONETARY_INTERMEDIATION". + + a ids:ISICIndustry; + rdfs:comment "Activities of holding companies"; + dct:identifier "ACTIVITIES_OF_HOLDING_COMPANIES". + + a ids:ISICIndustry; + rdfs:comment "Activities of holding companies"; + dct:identifier "ACTIVITIES_OF_HOLDING_COMPANIES". + + a ids:ISICIndustry; + rdfs:comment "Trusts funds and similar financial entities"; + dct:identifier "TRUSTS_FUNDS_AND_SIMILAR_FINANCIAL_ENTITIES". + + a ids:ISICIndustry; + rdfs:comment "Trusts funds and similar financial entities"; + dct:identifier "TRUSTS_FUNDS_AND_SIMILAR_FINANCIAL_ENTITIES". + + a ids:ISICIndustry; + rdfs:comment "Other financial service activities except insurance and pension funding activities"; + dct:identifier "OTHER_FINANCIAL_SERVICE_ACTIVITIES_EXCEPT_INSURANCE_AND_PENSION_FUNDING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Financial leasing"; + dct:identifier "FINANCIAL_LEASING". + + a ids:ISICIndustry; + rdfs:comment "Other credit granting"; + dct:identifier "OTHER_CREDIT_GRANTING". + + a ids:ISICIndustry; + rdfs:comment "Other financial service activities except insurance and pension funding activities nec"; + dct:identifier "OTHER_FINANCIAL_SERVICE_ACTIVITIES_EXCEPT_INSURANCE_AND_PENSION_FUNDING_ACTIVITIES_NEC". + + a ids:ISICIndustry; + rdfs:comment "Insurance reinsurance and pension funding except compulsory social security"; + dct:identifier "INSURANCE_REINSURANCE_AND_PENSION_FUNDING_EXCEPT_COMPULSORY_SOCIAL_SECURITY". + + a ids:ISICIndustry; + rdfs:comment "Insurance"; + dct:identifier "INSURANCE". + + a ids:ISICIndustry; + rdfs:comment "Life insurance"; + dct:identifier "LIFE_INSURANCE". + + a ids:ISICIndustry; + rdfs:comment "Non-life insurance"; + dct:identifier "NON_LIFE_INSURANCE". + + a ids:ISICIndustry; + rdfs:comment "Reinsurance"; + dct:identifier "REINSURANCE". + + a ids:ISICIndustry; + rdfs:comment "Reinsurance"; + dct:identifier "REINSURANCE". + + a ids:ISICIndustry; + rdfs:comment "Pension funding"; + dct:identifier "PENSION_FUNDING". + + a ids:ISICIndustry; + rdfs:comment "Pension funding"; + dct:identifier "PENSION_FUNDING". + + a ids:ISICIndustry; + rdfs:comment "Activities auxiliary to financial service and insurance activities"; + dct:identifier "ACTIVITIES_AUXILIARY_TO_FINANCIAL_SERVICE_AND_INSURANCE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Activities auxiliary to financial service activities except insurance and pension funding"; + dct:identifier "ACTIVITIES_AUXILIARY_TO_FINANCIAL_SERVICE_ACTIVITIES_EXCEPT_INSURANCE_AND_PENSION_FUNDING". + + a ids:ISICIndustry; + rdfs:comment "Administration of financial markets"; + dct:identifier "ADMINISTRATION_OF_FINANCIAL_MARKETS". + + a ids:ISICIndustry; + rdfs:comment "Security and commodity contracts brokerage"; + dct:identifier "SECURITY_AND_COMMODITY_CONTRACTS_BROKERAGE". + + a ids:ISICIndustry; + rdfs:comment "Other activities auxiliary to financial service activities"; + dct:identifier "OTHER_ACTIVITIES_AUXILIARY_TO_FINANCIAL_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Activities auxiliary to insurance and pension funding"; + dct:identifier "ACTIVITIES_AUXILIARY_TO_INSURANCE_AND_PENSION_FUNDING". + + a ids:ISICIndustry; + rdfs:comment "Risk and damage evaluation"; + dct:identifier "RISK_AND_DAMAGE_EVALUATION". + + a ids:ISICIndustry; + rdfs:comment "Activities of insurance agents and brokers"; + dct:identifier "ACTIVITIES_OF_INSURANCE_AGENTS_AND_BROKERS". + + a ids:ISICIndustry; + rdfs:comment "Other activities auxiliary to insurance and pension funding"; + dct:identifier "OTHER_ACTIVITIES_AUXILIARY_TO_INSURANCE_AND_PENSION_FUNDING". + + a ids:ISICIndustry; + rdfs:comment "Fund management activities"; + dct:identifier "FUND_MANAGEMENT_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Fund management activities"; + dct:identifier "FUND_MANAGEMENT_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "LReal estate activities"; + dct:identifier "LREAL_ESTATE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Real estate activities"; + dct:identifier "REAL_ESTATE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Real estate activities with own or leased property"; + dct:identifier "REAL_ESTATE_ACTIVITIES_WITH_OWN_OR_LEASED_PROPERTY". + + a ids:ISICIndustry; + rdfs:comment "Real estate activities with own or leased property"; + dct:identifier "REAL_ESTATE_ACTIVITIES_WITH_OWN_OR_LEASED_PROPERTY". + + a ids:ISICIndustry; + rdfs:comment "Real estate activities on a fee or contract basis"; + dct:identifier "REAL_ESTATE_ACTIVITIES_ON_A_FEE_OR_CONTRACT_BASIS". + + a ids:ISICIndustry; + rdfs:comment "Real estate activities on a fee or contract basis"; + dct:identifier "REAL_ESTATE_ACTIVITIES_ON_A_FEE_OR_CONTRACT_BASIS". + + a ids:ISICIndustry; + rdfs:comment "MProfessional scientific and technical activities"; + dct:identifier "MPROFESSIONAL_SCIENTIFIC_AND_TECHNICAL_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Legal and accounting activities"; + dct:identifier "LEGAL_AND_ACCOUNTING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Legal activities"; + dct:identifier "LEGAL_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Legal activities"; + dct:identifier "LEGAL_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Accounting bookkeeping and auditing activities tax consultancy"; + dct:identifier "ACCOUNTING_BOOKKEEPING_AND_AUDITING_ACTIVITIES_TAX_CONSULTANCY". + + a ids:ISICIndustry; + rdfs:comment "Accounting bookkeeping and auditing activities tax consultancy"; + dct:identifier "ACCOUNTING_BOOKKEEPING_AND_AUDITING_ACTIVITIES_TAX_CONSULTANCY". + + a ids:ISICIndustry; + rdfs:comment "Activities of head offices management consultancy activities"; + dct:identifier "ACTIVITIES_OF_HEAD_OFFICES_MANAGEMENT_CONSULTANCY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Activities of head offices"; + dct:identifier "ACTIVITIES_OF_HEAD_OFFICES". + + a ids:ISICIndustry; + rdfs:comment "Activities of head offices"; + dct:identifier "ACTIVITIES_OF_HEAD_OFFICES". + + a ids:ISICIndustry; + rdfs:comment "Management consultancy activities"; + dct:identifier "MANAGEMENT_CONSULTANCY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Management consultancy activities"; + dct:identifier "MANAGEMENT_CONSULTANCY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Architectural and engineering activities technical testing and analysis"; + dct:identifier "ARCHITECTURAL_AND_ENGINEERING_ACTIVITIES_TECHNICAL_TESTING_AND_ANALYSIS". + + a ids:ISICIndustry; + rdfs:comment "Architectural and engineering activities and related technical consultancy"; + dct:identifier "ARCHITECTURAL_AND_ENGINEERING_ACTIVITIES_AND_RELATED_TECHNICAL_CONSULTANCY". + + a ids:ISICIndustry; + rdfs:comment "Architectural and engineering activities and related technical consultancy"; + dct:identifier "ARCHITECTURAL_AND_ENGINEERING_ACTIVITIES_AND_RELATED_TECHNICAL_CONSULTANCY". + + a ids:ISICIndustry; + rdfs:comment "Technical testing and analysis"; + dct:identifier "TECHNICAL_TESTING_AND_ANALYSIS". + + a ids:ISICIndustry; + rdfs:comment "Technical testing and analysis"; + dct:identifier "TECHNICAL_TESTING_AND_ANALYSIS". + + a ids:ISICIndustry; + rdfs:comment "Scientific research and development"; + dct:identifier "SCIENTIFIC_RESEARCH_AND_DEVELOPMENT". + + a ids:ISICIndustry; + rdfs:comment "Research and experimental development on natural sciences and engineering"; + dct:identifier "RESEARCH_AND_EXPERIMENTAL_DEVELOPMENT_ON_NATURAL_SCIENCES_AND_ENGINEERING". + + a ids:ISICIndustry; + rdfs:comment "Research and experimental development on natural sciences and engineering"; + dct:identifier "RESEARCH_AND_EXPERIMENTAL_DEVELOPMENT_ON_NATURAL_SCIENCES_AND_ENGINEERING". + + a ids:ISICIndustry; + rdfs:comment "Research and experimental development on social sciences and humanities"; + dct:identifier "RESEARCH_AND_EXPERIMENTAL_DEVELOPMENT_ON_SOCIAL_SCIENCES_AND_HUMANITIES". + + a ids:ISICIndustry; + rdfs:comment "Research and experimental development on social sciences and humanities"; + dct:identifier "RESEARCH_AND_EXPERIMENTAL_DEVELOPMENT_ON_SOCIAL_SCIENCES_AND_HUMANITIES". + + a ids:ISICIndustry; + rdfs:comment "Advertising and market research"; + dct:identifier "ADVERTISING_AND_MARKET_RESEARCH". + + a ids:ISICIndustry; + rdfs:comment "Advertising"; + dct:identifier "ADVERTISING". + + a ids:ISICIndustry; + rdfs:comment "Advertising"; + dct:identifier "ADVERTISING". + + a ids:ISICIndustry; + rdfs:comment "Market research and public opinion polling"; + dct:identifier "MARKET_RESEARCH_AND_PUBLIC_OPINION_POLLING". + + a ids:ISICIndustry; + rdfs:comment "Market research and public opinion polling"; + dct:identifier "MARKET_RESEARCH_AND_PUBLIC_OPINION_POLLING". + + a ids:ISICIndustry; + rdfs:comment "Other professional scientific and technical activities"; + dct:identifier "OTHER_PROFESSIONAL_SCIENTIFIC_AND_TECHNICAL_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Specialized design activities"; + dct:identifier "SPECIALIZED_DESIGN_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Specialized design activities"; + dct:identifier "SPECIALIZED_DESIGN_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Photographic activities"; + dct:identifier "PHOTOGRAPHIC_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Photographic activities"; + dct:identifier "PHOTOGRAPHIC_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other professional scientific and technical activities nec"; + dct:identifier "OTHER_PROFESSIONAL_SCIENTIFIC_AND_TECHNICAL_ACTIVITIES_NEC". + + a ids:ISICIndustry; + rdfs:comment "Other professional scientific and technical activities nec"; + dct:identifier "OTHER_PROFESSIONAL_SCIENTIFIC_AND_TECHNICAL_ACTIVITIES_NEC". + + a ids:ISICIndustry; + rdfs:comment "Veterinary activities"; + dct:identifier "VETERINARY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Veterinary activities"; + dct:identifier "VETERINARY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Veterinary activities"; + dct:identifier "VETERINARY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "NAdministrative and support service activities"; + dct:identifier "NADMINISTRATIVE_AND_SUPPORT_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Rental and leasing activities"; + dct:identifier "RENTAL_AND_LEASING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Renting and leasing of motor vehicles"; + dct:identifier "RENTING_AND_LEASING_OF_MOTOR_VEHICLES". + + a ids:ISICIndustry; + rdfs:comment "Renting and leasing of motor vehicles"; + dct:identifier "RENTING_AND_LEASING_OF_MOTOR_VEHICLES". + + a ids:ISICIndustry; + rdfs:comment "Renting and leasing of personal and household goods"; + dct:identifier "RENTING_AND_LEASING_OF_PERSONAL_AND_HOUSEHOLD_GOODS". + + a ids:ISICIndustry; + rdfs:comment "Renting and leasing of recreational and sports goods"; + dct:identifier "RENTING_AND_LEASING_OF_RECREATIONAL_AND_SPORTS_GOODS". + + a ids:ISICIndustry; + rdfs:comment "Renting of video tapes and disks"; + dct:identifier "RENTING_OF_VIDEO_TAPES_AND_DISKS". + + a ids:ISICIndustry; + rdfs:comment "Renting and leasing of other personal and household goods"; + dct:identifier "RENTING_AND_LEASING_OF_OTHER_PERSONAL_AND_HOUSEHOLD_GOODS". + + a ids:ISICIndustry; + rdfs:comment "Renting and leasing of other machinery equipment and tangible goods"; + dct:identifier "RENTING_AND_LEASING_OF_OTHER_MACHINERY_EQUIPMENT_AND_TANGIBLE_GOODS". + + a ids:ISICIndustry; + rdfs:comment "Renting and leasing of other machinery equipment and tangible goods"; + dct:identifier "RENTING_AND_LEASING_OF_OTHER_MACHINERY_EQUIPMENT_AND_TANGIBLE_GOODS". + + a ids:ISICIndustry; + rdfs:comment "Leasing of intellectual property and similar products except copyrighted works"; + dct:identifier "LEASING_OF_INTELLECTUAL_PROPERTY_AND_SIMILAR_PRODUCTS_EXCEPT_COPYRIGHTED_WORKS". + + a ids:ISICIndustry; + rdfs:comment "Leasing of intellectual property and similar products except copyrighted works"; + dct:identifier "LEASING_OF_INTELLECTUAL_PROPERTY_AND_SIMILAR_PRODUCTS_EXCEPT_COPYRIGHTED_WORKS". + + a ids:ISICIndustry; + rdfs:comment "Employment activities"; + dct:identifier "EMPLOYMENT_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Activities of employment placement agencies"; + dct:identifier "ACTIVITIES_OF_EMPLOYMENT_PLACEMENT_AGENCIES". + + a ids:ISICIndustry; + rdfs:comment "Activities of employment placement agencies"; + dct:identifier "ACTIVITIES_OF_EMPLOYMENT_PLACEMENT_AGENCIES". + + a ids:ISICIndustry; + rdfs:comment "Temporary employment agency activities"; + dct:identifier "TEMPORARY_EMPLOYMENT_AGENCY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Temporary employment agency activities"; + dct:identifier "TEMPORARY_EMPLOYMENT_AGENCY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other human resources provision"; + dct:identifier "OTHER_HUMAN_RESOURCES_PROVISION". + + a ids:ISICIndustry; + rdfs:comment "Other human resources provision"; + dct:identifier "OTHER_HUMAN_RESOURCES_PROVISION". + + a ids:ISICIndustry; + rdfs:comment "Travel agency tour operator reservation service and related activities"; + dct:identifier "TRAVEL_AGENCY_TOUR_OPERATOR_RESERVATION_SERVICE_AND_RELATED_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Travel agency and tour operator activities"; + dct:identifier "TRAVEL_AGENCY_AND_TOUR_OPERATOR_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Travel agency activities"; + dct:identifier "TRAVEL_AGENCY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Tour operator activities"; + dct:identifier "TOUR_OPERATOR_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other reservation service and related activities"; + dct:identifier "OTHER_RESERVATION_SERVICE_AND_RELATED_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other reservation service and related activities"; + dct:identifier "OTHER_RESERVATION_SERVICE_AND_RELATED_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Security and investigation activities"; + dct:identifier "SECURITY_AND_INVESTIGATION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Private security activities"; + dct:identifier "PRIVATE_SECURITY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Private security activities"; + dct:identifier "PRIVATE_SECURITY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Security systems service activities"; + dct:identifier "SECURITY_SYSTEMS_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Security systems service activities"; + dct:identifier "SECURITY_SYSTEMS_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Investigation activities"; + dct:identifier "INVESTIGATION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Investigation activities"; + dct:identifier "INVESTIGATION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Services to buildings and landscape activities"; + dct:identifier "SERVICES_TO_BUILDINGS_AND_LANDSCAPE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Combined facilities support activities"; + dct:identifier "COMBINED_FACILITIES_SUPPORT_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Combined facilities support activities"; + dct:identifier "COMBINED_FACILITIES_SUPPORT_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Cleaning activities"; + dct:identifier "CLEANING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "General cleaning of buildings"; + dct:identifier "GENERAL_CLEANING_OF_BUILDINGS". + + a ids:ISICIndustry; + rdfs:comment "Other building and industrial cleaning activities"; + dct:identifier "OTHER_BUILDING_AND_INDUSTRIAL_CLEANING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Landscape care and maintenance service activities"; + dct:identifier "LANDSCAPE_CARE_AND_MAINTENANCE_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Landscape care and maintenance service activities"; + dct:identifier "LANDSCAPE_CARE_AND_MAINTENANCE_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Office administrative office support and other business support activities"; + dct:identifier "OFFICE_ADMINISTRATIVE_OFFICE_SUPPORT_AND_OTHER_BUSINESS_SUPPORT_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Office administrative and support activities"; + dct:identifier "OFFICE_ADMINISTRATIVE_AND_SUPPORT_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Combined office administrative service activities"; + dct:identifier "COMBINED_OFFICE_ADMINISTRATIVE_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Photocopying document preparation and other specialized office support activities"; + dct:identifier "PHOTOCOPYING_DOCUMENT_PREPARATION_AND_OTHER_SPECIALIZED_OFFICE_SUPPORT_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Activities of call centres"; + dct:identifier "ACTIVITIES_OF_CALL_CENTRES". + + a ids:ISICIndustry; + rdfs:comment "Activities of call centres"; + dct:identifier "ACTIVITIES_OF_CALL_CENTRES". + + a ids:ISICIndustry; + rdfs:comment "Organization of conventions and trade shows"; + dct:identifier "ORGANIZATION_OF_CONVENTIONS_AND_TRADE_SHOWS". + + a ids:ISICIndustry; + rdfs:comment "Organization of conventions and trade shows"; + dct:identifier "ORGANIZATION_OF_CONVENTIONS_AND_TRADE_SHOWS". + + a ids:ISICIndustry; + rdfs:comment "Business support service activities nec"; + dct:identifier "BUSINESS_SUPPORT_SERVICE_ACTIVITIES_NEC". + + a ids:ISICIndustry; + rdfs:comment "Activities of collection agencies and credit bureaus"; + dct:identifier "ACTIVITIES_OF_COLLECTION_AGENCIES_AND_CREDIT_BUREAUS". + + a ids:ISICIndustry; + rdfs:comment "Packaging activities"; + dct:identifier "PACKAGING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other business support service activities nec"; + dct:identifier "OTHER_BUSINESS_SUPPORT_SERVICE_ACTIVITIES_NEC". + + a ids:ISICIndustry; + rdfs:comment "OPublic administration and defence compulsory social security"; + dct:identifier "OPUBLIC_ADMINISTRATION_AND_DEFENCE_COMPULSORY_SOCIAL_SECURITY". + + a ids:ISICIndustry; + rdfs:comment "Public administration and defence compulsory social security"; + dct:identifier "PUBLIC_ADMINISTRATION_AND_DEFENCE_COMPULSORY_SOCIAL_SECURITY". + + a ids:ISICIndustry; + rdfs:comment "Administration of the State and the economic and social policy of the community"; + dct:identifier "ADMINISTRATION_OF_THE_STATE_AND_THE_ECONOMIC_AND_SOCIAL_POLICY_OF_THE_COMMUNITY". + + a ids:ISICIndustry; + rdfs:comment "General public administration activities"; + dct:identifier "GENERAL_PUBLIC_ADMINISTRATION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Regulation of the activities of providing health care education cultural services and other social services excluding social security"; + dct:identifier "REGULATION_OF_THE_ACTIVITIES_OF_PROVIDING_HEALTH_CARE_EDUCATION_CULTURAL_SERVICES_AND_OTHER_SOCIAL_SERVICES_EXCLUDING_SOCIAL_SECURITY". + + a ids:ISICIndustry; + rdfs:comment "Regulation of and contribution to more efficient operation of businesses"; + dct:identifier "REGULATION_OF_AND_CONTRIBUTION_TO_MORE_EFFICIENT_OPERATION_OF_BUSINESSES". + + a ids:ISICIndustry; + rdfs:comment "Provision of services to the community as a whole"; + dct:identifier "PROVISION_OF_SERVICES_TO_THE_COMMUNITY_AS_A_WHOLE". + + a ids:ISICIndustry; + rdfs:comment "Foreign affairs"; + dct:identifier "FOREIGN_AFFAIRS". + + a ids:ISICIndustry; + rdfs:comment "Defence activities"; + dct:identifier "DEFENCE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Public order and safety activities"; + dct:identifier "PUBLIC_ORDER_AND_SAFETY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Compulsory social security activities"; + dct:identifier "COMPULSORY_SOCIAL_SECURITY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Compulsory social security activities"; + dct:identifier "COMPULSORY_SOCIAL_SECURITY_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "PEducation"; + dct:identifier "PEDUCATION". + + a ids:ISICIndustry; + rdfs:comment "Education"; + dct:identifier "EDUCATION". + + a ids:ISICIndustry; + rdfs:comment "Pre-primary and primary education"; + dct:identifier "PRE_PRIMARY_AND_PRIMARY_EDUCATION". + + a ids:ISICIndustry; + rdfs:comment "Pre-primary and primary education"; + dct:identifier "PRE_PRIMARY_AND_PRIMARY_EDUCATION". + + a ids:ISICIndustry; + rdfs:comment "Secondary education"; + dct:identifier "SECONDARY_EDUCATION". + + a ids:ISICIndustry; + rdfs:comment "General secondary education"; + dct:identifier "GENERAL_SECONDARY_EDUCATION". + + a ids:ISICIndustry; + rdfs:comment "Technical and vocational secondary education"; + dct:identifier "TECHNICAL_AND_VOCATIONAL_SECONDARY_EDUCATION". + + a ids:ISICIndustry; + rdfs:comment "Higher education"; + dct:identifier "HIGHER_EDUCATION". + + a ids:ISICIndustry; + rdfs:comment "Higher education"; + dct:identifier "HIGHER_EDUCATION". + + a ids:ISICIndustry; + rdfs:comment "Other education"; + dct:identifier "OTHER_EDUCATION". + + a ids:ISICIndustry; + rdfs:comment "Sports and recreation education"; + dct:identifier "SPORTS_AND_RECREATION_EDUCATION". + + a ids:ISICIndustry; + rdfs:comment "Cultural education"; + dct:identifier "CULTURAL_EDUCATION". + + a ids:ISICIndustry; + rdfs:comment "Other education nec"; + dct:identifier "OTHER_EDUCATION_NEC". + + a ids:ISICIndustry; + rdfs:comment "Educational support activities"; + dct:identifier "EDUCATIONAL_SUPPORT_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Educational support activities"; + dct:identifier "EDUCATIONAL_SUPPORT_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "QHuman health and social work activities"; + dct:identifier "QHUMAN_HEALTH_AND_SOCIAL_WORK_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Human health activities"; + dct:identifier "HUMAN_HEALTH_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Hospital activities"; + dct:identifier "HOSPITAL_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Hospital activities"; + dct:identifier "HOSPITAL_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Medical and dental practice activities"; + dct:identifier "MEDICAL_AND_DENTAL_PRACTICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Medical and dental practice activities"; + dct:identifier "MEDICAL_AND_DENTAL_PRACTICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other human health activities"; + dct:identifier "OTHER_HUMAN_HEALTH_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other human health activities"; + dct:identifier "OTHER_HUMAN_HEALTH_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Residential care activities"; + dct:identifier "RESIDENTIAL_CARE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Residential nursing care facilities"; + dct:identifier "RESIDENTIAL_NURSING_CARE_FACILITIES". + + a ids:ISICIndustry; + rdfs:comment "Residential nursing care facilities"; + dct:identifier "RESIDENTIAL_NURSING_CARE_FACILITIES". + + a ids:ISICIndustry; + rdfs:comment "Residential care activities for mental retardation mental health and substance abuse"; + dct:identifier "RESIDENTIAL_CARE_ACTIVITIES_FOR_MENTAL_RETARDATION_MENTAL_HEALTH_AND_SUBSTANCE_ABUSE". + + a ids:ISICIndustry; + rdfs:comment "Residential care activities for mental retardation mental health and substance abuse"; + dct:identifier "RESIDENTIAL_CARE_ACTIVITIES_FOR_MENTAL_RETARDATION_MENTAL_HEALTH_AND_SUBSTANCE_ABUSE". + + a ids:ISICIndustry; + rdfs:comment "Residential care activities for the elderly and disabled"; + dct:identifier "RESIDENTIAL_CARE_ACTIVITIES_FOR_THE_ELDERLY_AND_DISABLED". + + a ids:ISICIndustry; + rdfs:comment "Residential care activities for the elderly and disabled"; + dct:identifier "RESIDENTIAL_CARE_ACTIVITIES_FOR_THE_ELDERLY_AND_DISABLED". + + a ids:ISICIndustry; + rdfs:comment "Other residential care activities"; + dct:identifier "OTHER_RESIDENTIAL_CARE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other residential care activities"; + dct:identifier "OTHER_RESIDENTIAL_CARE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Social work activities without accommodation"; + dct:identifier "SOCIAL_WORK_ACTIVITIES_WITHOUT_ACCOMMODATION". + + a ids:ISICIndustry; + rdfs:comment "Social work activities without accommodation for the elderly and disabled"; + dct:identifier "SOCIAL_WORK_ACTIVITIES_WITHOUT_ACCOMMODATION_FOR_THE_ELDERLY_AND_DISABLED". + + a ids:ISICIndustry; + rdfs:comment "Social work activities without accommodation for the elderly and disabled"; + dct:identifier "SOCIAL_WORK_ACTIVITIES_WITHOUT_ACCOMMODATION_FOR_THE_ELDERLY_AND_DISABLED". + + a ids:ISICIndustry; + rdfs:comment "Other social work activities without accommodation"; + dct:identifier "OTHER_SOCIAL_WORK_ACTIVITIES_WITHOUT_ACCOMMODATION". + + a ids:ISICIndustry; + rdfs:comment "Other social work activities without accommodation"; + dct:identifier "OTHER_SOCIAL_WORK_ACTIVITIES_WITHOUT_ACCOMMODATION". + + a ids:ISICIndustry; + rdfs:comment "RArts entertainment and recreation"; + dct:identifier "RARTS_ENTERTAINMENT_AND_RECREATION". + + a ids:ISICIndustry; + rdfs:comment "Creative arts and entertainment activities"; + dct:identifier "CREATIVE_ARTS_AND_ENTERTAINMENT_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Creative arts and entertainment activities"; + dct:identifier "CREATIVE_ARTS_AND_ENTERTAINMENT_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Creative arts and entertainment activities"; + dct:identifier "CREATIVE_ARTS_AND_ENTERTAINMENT_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Libraries archives museums and other cultural activities"; + dct:identifier "LIBRARIES_ARCHIVES_MUSEUMS_AND_OTHER_CULTURAL_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Libraries archives museums and other cultural activities"; + dct:identifier "LIBRARIES_ARCHIVES_MUSEUMS_AND_OTHER_CULTURAL_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Library and archives activities"; + dct:identifier "LIBRARY_AND_ARCHIVES_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Museums activities and operation of historical sites and buildings"; + dct:identifier "MUSEUMS_ACTIVITIES_AND_OPERATION_OF_HISTORICAL_SITES_AND_BUILDINGS". + + a ids:ISICIndustry; + rdfs:comment "Botanical and zoological gardens and nature reserves activities"; + dct:identifier "BOTANICAL_AND_ZOOLOGICAL_GARDENS_AND_NATURE_RESERVES_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Gambling and betting activities"; + dct:identifier "GAMBLING_AND_BETTING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Gambling and betting activities"; + dct:identifier "GAMBLING_AND_BETTING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Gambling and betting activities"; + dct:identifier "GAMBLING_AND_BETTING_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Sports activities and amusement and recreation activities"; + dct:identifier "SPORTS_ACTIVITIES_AND_AMUSEMENT_AND_RECREATION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Sports activities"; + dct:identifier "SPORTS_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Operation of sports facilities"; + dct:identifier "OPERATION_OF_SPORTS_FACILITIES". + + a ids:ISICIndustry; + rdfs:comment "Activities of sports clubs"; + dct:identifier "ACTIVITIES_OF_SPORTS_CLUBS". + + a ids:ISICIndustry; + rdfs:comment "Other sports activities"; + dct:identifier "OTHER_SPORTS_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other amusement and recreation activities"; + dct:identifier "OTHER_AMUSEMENT_AND_RECREATION_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Activities of amusement parks and theme parks"; + dct:identifier "ACTIVITIES_OF_AMUSEMENT_PARKS_AND_THEME_PARKS". + + a ids:ISICIndustry; + rdfs:comment "Other amusement and recreation activities nec"; + dct:identifier "OTHER_AMUSEMENT_AND_RECREATION_ACTIVITIES_NEC". + + a ids:ISICIndustry; + rdfs:comment "SOther service activities"; + dct:identifier "SOTHER_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Activities of membership organizations"; + dct:identifier "ACTIVITIES_OF_MEMBERSHIP_ORGANIZATIONS". + + a ids:ISICIndustry; + rdfs:comment "Activities of business employers and professional membership organizations"; + dct:identifier "ACTIVITIES_OF_BUSINESS_EMPLOYERS_AND_PROFESSIONAL_MEMBERSHIP_ORGANIZATIONS". + + a ids:ISICIndustry; + rdfs:comment "Activities of business and employers membership organizations"; + dct:identifier "ACTIVITIES_OF_BUSINESS_AND_EMPLOYERS_MEMBERSHIP_ORGANIZATIONS". + + a ids:ISICIndustry; + rdfs:comment "Activities of professional membership organizations"; + dct:identifier "ACTIVITIES_OF_PROFESSIONAL_MEMBERSHIP_ORGANIZATIONS". + + a ids:ISICIndustry; + rdfs:comment "Activities of trade unions"; + dct:identifier "ACTIVITIES_OF_TRADE_UNIONS". + + a ids:ISICIndustry; + rdfs:comment "Activities of trade unions"; + dct:identifier "ACTIVITIES_OF_TRADE_UNIONS". + + a ids:ISICIndustry; + rdfs:comment "Activities of other membership organizations"; + dct:identifier "ACTIVITIES_OF_OTHER_MEMBERSHIP_ORGANIZATIONS". + + a ids:ISICIndustry; + rdfs:comment "Activities of religious organizations"; + dct:identifier "ACTIVITIES_OF_RELIGIOUS_ORGANIZATIONS". + + a ids:ISICIndustry; + rdfs:comment "Activities of political organizations"; + dct:identifier "ACTIVITIES_OF_POLITICAL_ORGANIZATIONS". + + a ids:ISICIndustry; + rdfs:comment "Activities of other membership organizations nec"; + dct:identifier "ACTIVITIES_OF_OTHER_MEMBERSHIP_ORGANIZATIONS_NEC". + + a ids:ISICIndustry; + rdfs:comment "Repair of computers and personal and household goods"; + dct:identifier "REPAIR_OF_COMPUTERS_AND_PERSONAL_AND_HOUSEHOLD_GOODS". + + a ids:ISICIndustry; + rdfs:comment "Repair of computers and communication equipment"; + dct:identifier "REPAIR_OF_COMPUTERS_AND_COMMUNICATION_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Repair of computers and peripheral equipment"; + dct:identifier "REPAIR_OF_COMPUTERS_AND_PERIPHERAL_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Repair of communication equipment"; + dct:identifier "REPAIR_OF_COMMUNICATION_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Repair of personal and household goods"; + dct:identifier "REPAIR_OF_PERSONAL_AND_HOUSEHOLD_GOODS". + + a ids:ISICIndustry; + rdfs:comment "Repair of consumer electronics"; + dct:identifier "REPAIR_OF_CONSUMER_ELECTRONICS". + + a ids:ISICIndustry; + rdfs:comment "Repair of household appliances and home and garden equipment"; + dct:identifier "REPAIR_OF_HOUSEHOLD_APPLIANCES_AND_HOME_AND_GARDEN_EQUIPMENT". + + a ids:ISICIndustry; + rdfs:comment "Repair of footwear and leather goods"; + dct:identifier "REPAIR_OF_FOOTWEAR_AND_LEATHER_GOODS". + + a ids:ISICIndustry; + rdfs:comment "Repair of furniture and home furnishings"; + dct:identifier "REPAIR_OF_FURNITURE_AND_HOME_FURNISHINGS". + + a ids:ISICIndustry; + rdfs:comment "Repair of other personal and household goods"; + dct:identifier "REPAIR_OF_OTHER_PERSONAL_AND_HOUSEHOLD_GOODS". + + a ids:ISICIndustry; + rdfs:comment "Other personal service activities"; + dct:identifier "OTHER_PERSONAL_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other personal service activities"; + dct:identifier "OTHER_PERSONAL_SERVICE_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Washing and dry- cleaning of textile and fur products"; + dct:identifier "WASHING_AND_DRY__CLEANING_OF_TEXTILE_AND_FUR_PRODUCTS". + + a ids:ISICIndustry; + rdfs:comment "Hairdressing and other beauty treatment"; + dct:identifier "HAIRDRESSING_AND_OTHER_BEAUTY_TREATMENT". + + a ids:ISICIndustry; + rdfs:comment "Funeral and related activities"; + dct:identifier "FUNERAL_AND_RELATED_ACTIVITIES". + + a ids:ISICIndustry; + rdfs:comment "Other personal service activities nec"; + dct:identifier "OTHER_PERSONAL_SERVICE_ACTIVITIES_NEC". + + a ids:ISICIndustry; + rdfs:comment "TActivities of households as employers undifferentiated goods- and services-producing activities of households for own use"; + dct:identifier "TACTIVITIES_OF_HOUSEHOLDS_AS_EMPLOYERS_UNDIFFERENTIATED_GOODS__AND_SERVICES_PRODUCING_ACTIVITIES_OF_HOUSEHOLDS_FOR_OWN_USE". + + a ids:ISICIndustry; + rdfs:comment "Activities of households as employers of domestic personnel"; + dct:identifier "ACTIVITIES_OF_HOUSEHOLDS_AS_EMPLOYERS_OF_DOMESTIC_PERSONNEL". + + a ids:ISICIndustry; + rdfs:comment "Activities of households as employers of domestic personnel"; + dct:identifier "ACTIVITIES_OF_HOUSEHOLDS_AS_EMPLOYERS_OF_DOMESTIC_PERSONNEL". + + a ids:ISICIndustry; + rdfs:comment "Activities of households as employers of domestic personnel"; + dct:identifier "ACTIVITIES_OF_HOUSEHOLDS_AS_EMPLOYERS_OF_DOMESTIC_PERSONNEL". + + a ids:ISICIndustry; + rdfs:comment "Undifferentiated goods- and services-producing activities of private households for own use"; + dct:identifier "UNDIFFERENTIATED_GOODS__AND_SERVICES_PRODUCING_ACTIVITIES_OF_PRIVATE_HOUSEHOLDS_FOR_OWN_USE". + + a ids:ISICIndustry; + rdfs:comment "Undifferentiated goods-producing activities of private households for own use"; + dct:identifier "UNDIFFERENTIATED_GOODS_PRODUCING_ACTIVITIES_OF_PRIVATE_HOUSEHOLDS_FOR_OWN_USE". + + a ids:ISICIndustry; + rdfs:comment "Undifferentiated goods-producing activities of private households for own use"; + dct:identifier "UNDIFFERENTIATED_GOODS_PRODUCING_ACTIVITIES_OF_PRIVATE_HOUSEHOLDS_FOR_OWN_USE". + + a ids:ISICIndustry; + rdfs:comment "Undifferentiated service-producing activities of private households for own use"; + dct:identifier "UNDIFFERENTIATED_SERVICE_PRODUCING_ACTIVITIES_OF_PRIVATE_HOUSEHOLDS_FOR_OWN_USE". + + a ids:ISICIndustry; + rdfs:comment "Undifferentiated service-producing activities of private households for own use"; + dct:identifier "UNDIFFERENTIATED_SERVICE_PRODUCING_ACTIVITIES_OF_PRIVATE_HOUSEHOLDS_FOR_OWN_USE". + + a ids:ISICIndustry; + rdfs:comment "UActivities of extraterritorial organizations and bodies"; + dct:identifier "UACTIVITIES_OF_EXTRATERRITORIAL_ORGANIZATIONS_AND_BODIES". + + a ids:ISICIndustry; + rdfs:comment "Activities of extraterritorial organizations and bodies"; + dct:identifier "ACTIVITIES_OF_EXTRATERRITORIAL_ORGANIZATIONS_AND_BODIES". + + a ids:ISICIndustry; + rdfs:comment "Activities of extraterritorial organizations and bodies"; + dct:identifier "ACTIVITIES_OF_EXTRATERRITORIAL_ORGANIZATIONS_AND_BODIES". + + a ids:ISICIndustry; + rdfs:comment "Activities of extraterritorial organizations and bodies"; + dct:identifier "ACTIVITIES_OF_EXTRATERRITORIAL_ORGANIZATIONS_AND_BODIES". \ No newline at end of file diff --git a/rdf/Language.ttl b/rdf/Language.ttl new file mode 100644 index 00000000..18e7d077 --- /dev/null +++ b/rdf/Language.ttl @@ -0,0 +1,416 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . + +@prefix ids: . +@prefix ids_lang: . + +# Classes +# ------- + +ids:Language a owl:Class; + rdfs:label "Language"@en ; + rdfs:comment "The class of languages potentially being used by DataAssets within the Industrial Data Space.". + +# Instances +# --------- + + a ids:Language; + rdfs:comment "Akan"; + dct:identifier "AKAN". + + a ids:Language; + rdfs:comment "Amharic"; + dct:identifier "AMHARIC". + + a ids:Language; + rdfs:comment "Arabic"; + dct:identifier "ARABIC". + + a ids:Language; + rdfs:comment "Assamese"; + dct:identifier "ASSAMESE". + + a ids:Language; + rdfs:comment "Awadhi"; + dct:identifier "AWADHI". + + a ids:Language; + rdfs:comment "Azerbaijani"; + dct:identifier "AZERBAIJANI". + + a ids:Language; + rdfs:comment "Balochi"; + dct:identifier "BALOCHI". + + a ids:Language; + rdfs:comment "Belarusian"; + dct:identifier "BELARUSIAN". + + a ids:Language; + rdfs:comment "Bengali Bangla"; + dct:identifier "BENGALI_BANGLA". + + a ids:Language; + rdfs:comment "Bhojpuri"; + dct:identifier "BHOJPURI". + + a ids:Language; + rdfs:comment "Burmese"; + dct:identifier "BURMESE". + + a ids:Language; + rdfs:comment "Cebuano Visayan"; + dct:identifier "CEBUANO_VISAYAN". + + a ids:Language; + rdfs:comment "Chewa"; + dct:identifier "CHEWA". + + a ids:Language; + rdfs:comment "Chhattisgarhi"; + dct:identifier "CHHATTISGARHI". + + a ids:Language; + rdfs:comment "Chittagonian"; + dct:identifier "CHITTAGONIAN". + + a ids:Language; + rdfs:comment "Czech"; + dct:identifier "CZECH". + + a ids:Language; + rdfs:comment "Deccan"; + dct:identifier "DECCAN". + + a ids:Language; + rdfs:comment "Dhundhari"; + dct:identifier "DHUNDHARI". + + a ids:Language; + rdfs:comment "Dutch"; + dct:identifier "DUTCH". + + a ids:Language; + rdfs:comment "Eastern Min inc Fuzhounese"; + dct:identifier "EASTERN_MIN_INC_FUZHOUNESE". + + a ids:Language; + rdfs:comment "English"; + dct:identifier "ENGLISH". + + a ids:Language; + rdfs:comment "French"; + dct:identifier "FRENCH". + + a ids:Language; + rdfs:comment "Fula"; + dct:identifier "FULA". + + a ids:Language; + rdfs:comment "Gan Chinese"; + dct:identifier "GAN_CHINESE". + + a ids:Language; + rdfs:comment "German"; + dct:identifier "GERMAN". + + a ids:Language; + rdfs:comment "Greek"; + dct:identifier "GREEK". + + a ids:Language; + rdfs:comment "Gujarati"; + dct:identifier "GUJARATI". + + a ids:Language; + rdfs:comment "Haitian Creole"; + dct:identifier "HAITIAN_CREOLE". + + a ids:Language; + rdfs:comment "Hakka"; + dct:identifier "HAKKA". + + a ids:Language; + rdfs:comment "Haryanvi"; + dct:identifier "HARYANVI". + + a ids:Language; + rdfs:comment "Hausa"; + dct:identifier "HAUSA". + + a ids:Language; + rdfs:comment "HiligaynonIlonggo Visayan"; + dct:identifier "HILIGAYNONILONGGO_VISAYAN". + + a ids:Language; + rdfs:comment "HindiNote"; + dct:identifier "HINDINOTE". + + a ids:Language; + rdfs:comment "Hmong"; + dct:identifier "HMONG". + + a ids:Language; + rdfs:comment "Hungarian"; + dct:identifier "HUNGARIAN". + + a ids:Language; + rdfs:comment "Igbo"; + dct:identifier "IGBO". + + a ids:Language; + rdfs:comment "Ilocano"; + dct:identifier "ILOCANO". + + a ids:Language; + rdfs:comment "Italian"; + dct:identifier "ITALIAN". + + a ids:Language; + rdfs:comment "Japanese"; + dct:identifier "JAPANESE". + + a ids:Language; + rdfs:comment "Javanese"; + dct:identifier "JAVANESE". + + a ids:Language; + rdfs:comment "Jin"; + dct:identifier "JIN". + + a ids:Language; + rdfs:comment "Kannada"; + dct:identifier "KANNADA". + + a ids:Language; + rdfs:comment "Kazakh"; + dct:identifier "KAZAKH". + + a ids:Language; + rdfs:comment "Khmer"; + dct:identifier "KHMER". + + a ids:Language; + rdfs:comment "Kinyarwanda"; + dct:identifier "KINYARWANDA". + + a ids:Language; + rdfs:comment "Kirundi"; + dct:identifier "KIRUNDI". + + a ids:Language; + rdfs:comment "Konkani"; + dct:identifier "KONKANI". + + a ids:Language; + rdfs:comment "Korean"; + dct:identifier "KOREAN". + + a ids:Language; + rdfs:comment "Kurdish"; + dct:identifier "KURDISH". + + a ids:Language; + rdfs:comment "Madurese"; + dct:identifier "MADURESE". + + a ids:Language; + rdfs:comment "Magahi"; + dct:identifier "MAGAHI". + + a ids:Language; + rdfs:comment "Maithili"; + dct:identifier "MAITHILI". + + a ids:Language; + rdfs:comment "Malagasy"; + dct:identifier "MALAGASY". + + a ids:Language; + rdfs:comment "Malay inc Malaysian and Indonesian"; + dct:identifier "MALAY_INC_MALAYSIAN_AND_INDONESIAN". + + a ids:Language; + rdfs:comment "Malayalam"; + dct:identifier "MALAYALAM". + + a ids:Language; + rdfs:comment "Mandarin entire branch"; + dct:identifier "MANDARIN_ENTIRE_BRANCH". + + a ids:Language; + rdfs:comment "Marathi"; + dct:identifier "MARATHI". + + a ids:Language; + rdfs:comment "Marwari"; + dct:identifier "MARWARI". + + a ids:Language; + rdfs:comment "Mossi"; + dct:identifier "MOSSI". + + a ids:Language; + rdfs:comment "Nepali"; + dct:identifier "NEPALI". + + a ids:Language; + rdfs:comment "Northern Min"; + dct:identifier "NORTHERN_MIN". + + a ids:Language; + rdfs:comment "Odia Oriya"; + dct:identifier "ODIA_ORIYA". + + a ids:Language; + rdfs:comment "Oromo"; + dct:identifier "OROMO". + + a ids:Language; + rdfs:comment "Pashto"; + dct:identifier "PASHTO". + + a ids:Language; + rdfs:comment "Persian"; + dct:identifier "PERSIAN". + + a ids:Language; + rdfs:comment "Polish"; + dct:identifier "POLISH". + + a ids:Language; + rdfs:comment "Portuguese"; + dct:identifier "PORTUGUESE". + + a ids:Language; + rdfs:comment "Punjabi"; + dct:identifier "PUNJABI". + + a ids:Language; + rdfs:comment "Quechua"; + dct:identifier "QUECHUA". + + a ids:Language; + rdfs:comment "Romanian"; + dct:identifier "ROMANIAN". + + a ids:Language; + rdfs:comment "Russian"; + dct:identifier "RUSSIAN". + + a ids:Language; + rdfs:comment "Saraiki"; + dct:identifier "SARAIKI". + + a ids:Language; + rdfs:comment "Serbo-Croatian"; + dct:identifier "SERBO_CROATIAN". + + a ids:Language; + rdfs:comment "Shona"; + dct:identifier "SHONA". + + a ids:Language; + rdfs:comment "Sindhi"; + dct:identifier "SINDHI". + + a ids:Language; + rdfs:comment "Sinhalese"; + dct:identifier "SINHALESE". + + a ids:Language; + rdfs:comment "Somali"; + dct:identifier "SOMALI". + + a ids:Language; + rdfs:comment "Southern Min incl Hokkien and Teochew"; + dct:identifier "SOUTHERN_MIN_INCL_HOKKIEN_AND_TEOCHEW". + + a ids:Language; + rdfs:comment "Spanish"; + dct:identifier "SPANISH". + + a ids:Language; + rdfs:comment "Sundanese"; + dct:identifier "SUNDANESE". + + a ids:Language; + rdfs:comment "Swedish"; + dct:identifier "SWEDISH". + + a ids:Language; + rdfs:comment "Sylheti"; + dct:identifier "SYLHETI". + + a ids:Language; + rdfs:comment "Tagalog"; + dct:identifier "TAGALOG". + + a ids:Language; + rdfs:comment "Tamil"; + dct:identifier "TAMIL". + + a ids:Language; + rdfs:comment "Telugu"; + dct:identifier "TELUGU". + + a ids:Language; + rdfs:comment "Thai"; + dct:identifier "THAI". + + a ids:Language; + rdfs:comment "Turkish"; + dct:identifier "TURKISH". + + a ids:Language; + rdfs:comment "Turkmen"; + dct:identifier "TURKMEN". + + a ids:Language; + rdfs:comment "Ukrainian"; + dct:identifier "UKRAINIAN". + + a ids:Language; + rdfs:comment "Urdu"; + dct:identifier "URDU". + + a ids:Language; + rdfs:comment "Uyghur"; + dct:identifier "UYGHUR". + + a ids:Language; + rdfs:comment "Uzbek"; + dct:identifier "UZBEK". + + a ids:Language; + rdfs:comment "Vietnamese"; + dct:identifier "VIETNAMESE". + + a ids:Language; + rdfs:comment "Wu inc Shanghainese"; + dct:identifier "WU_INC_SHANGHAINESE". + + a ids:Language; + rdfs:comment "Xhosa"; + dct:identifier "XHOSA". + + a ids:Language; + rdfs:comment "Xiang Hunnanese"; + dct:identifier "XIANG_HUNNANESE". + + a ids:Language; + rdfs:comment "Yoruba"; + dct:identifier "YORUBA". + + a ids:Language; + rdfs:comment "Yue incl Cantonese"; + dct:identifier "YUE_INCL_CANTONESE". + + a ids:Language; + rdfs:comment "Zhuang"; + dct:identifier "ZHUANG". + + a ids:Language; + rdfs:comment "Zulu"; + dct:identifier "ZULU". \ No newline at end of file diff --git a/rdf/License.ttl b/rdf/License.ttl new file mode 100644 index 00000000..050a29fa --- /dev/null +++ b/rdf/License.ttl @@ -0,0 +1,28 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . +@prefix xsd: . + +@prefix ids: . +@prefix ids_lc: . +@prefix valid: . + +# Classes +# ------- + +ids:LicenseDocument rdfs:subClassOf dct:LicenseDocument; + a owl:Class; + rdfs:label "LicenseDocument"@en ; + rdfs:comment "The class of license documents to be attached to DataAssets.". + +# Instances +# --------- + +#todo: add more common licenses + +ids_lc:license_cc_by_nc_nd_2_0 a ids:LicenseDocument; + rdfs:seeAlso ; + rdfs:comment "Attribution-NonCommercial-NoDerivs 2.0 Generic (CC BY-NC-ND 2.0)"; + dct:identifier "CC_BY_NC_ND_2_0". + + diff --git a/rdf/ParameterDataType.ttl b/rdf/ParameterDataType.ttl new file mode 100644 index 00000000..9deb2e15 --- /dev/null +++ b/rdf/ParameterDataType.ttl @@ -0,0 +1,75 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . +@prefix xsd: . + +@prefix ids: . +@prefix ids_dt: . +@prefix valid: . + + +# Classes +# ------- + +ids:ParameterDataType a owl:Class; + rdfs:label "ParameterDataType"@en ; + rdfs:comment "The class of datatypes for usage by Operation Parameters.". + +# Instances +# --------- + +ids_dt:dateTime a ids:ParameterDataType; + rdfs:seeAlso ; + dct:identifier "XSD_DATETIME". + +ids_dt:string a ids:ParameterDataType; + rdfs:seeAlso ; + dct:identifier "XSD_STRING". + +ids_dt:bigint a ids:ParameterDataType; + rdfs:seeAlso ; + dct:identifier "XSD_INTEGER". + +ids_dt:integer a ids:ParameterDataType; + rdfs:seeAlso ; + dct:identifier "XSD_INT". + +ids_dt:long a ids:ParameterDataType; + rdfs:seeAlso ; + dct:identifier "XSD_LONG". + +ids_dt:short a ids:ParameterDataType; + rdfs:seeAlso ; + dct:identifier "XSD_SHORT". + +ids_dt:float a ids:ParameterDataType; + rdfs:seeAlso ; + dct:identifier "XSD_FLOAT". + +ids_dt:double a ids:ParameterDataType; + rdfs:seeAlso ; + dct:identifier "XSD_DOUBLE". + +ids_dt:boolean a ids:ParameterDataType; + rdfs:seeAlso ; + dct:identifier "XSD_BOOLEAN". + +ids_dt:byte a ids:ParameterDataType; + rdfs:seeAlso ; + dct:identifier "XSD_BYTE". + +ids_dt:base64Binary a ids:ParameterDataType; + rdfs:seeAlso ; + dct:identifier "XSD_BASE64BINARY". + +ids_dt:time a ids:ParameterDataType; + rdfs:seeAlso ; + dct:identifier "XSD_TIME". + +ids_dt:date a ids:ParameterDataType; + rdfs:seeAlso ; + dct:identifier "XSD_DATE". + +ids_dt:anyURI a ids:ParameterDataType; + rdfs:seeAlso ; + dct:identifier "XSD_ANY_URI". \ No newline at end of file diff --git a/rdf/Participant.ttl b/rdf/Participant.ttl new file mode 100644 index 00000000..cd372bf1 --- /dev/null +++ b/rdf/Participant.ttl @@ -0,0 +1,154 @@ +@prefix owl: . +@prefix rdfs: . +@prefix foaf: . +@prefix org: . +@prefix xsd: . +@prefix odrl: . + +@prefix ids: . +@prefix idoc: . +@prefix valid: . + +# Classes +# ------- + +ids:Participant rdfs:subClassOf ids:EntityWithLifecycle; + a owl:Class; + rdfs:subClassOf org:Organization; + rdfs:subClassOf odrl:Party; + rdfs:label "Participant"@en; + rdfs:comment "An organization being part of the Industrial Data Space."@en; + ids:validation [ + owl:onProperty ids:memberPerson; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:memberParticipant; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:corporateEmailAddress; + valid:relationType "@OneToMany"; + ]. + +ids:Person rdfs:subClassOf foaf:Person; + a owl:Class; + rdfs:label "Person"@en; + rdfs:comment "The class of persons (people)"@en; + ids:validation [ + owl:onProperty ids:phoneNumber; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:emailAddress; + valid:relationType "@OneToMany"; + ]. + +ids:Site a owl:Class; + rdfs:subclassOf org:Site; + rdfs:label "Site"@en; + rdfs:comment "An office or other premise at which the organization is located"@en. + +# Properties for describing a Participant +# --------------------------------------- + +ids:primarySite rdfs:subPropertyOf org:hasPrimarySite; + a owl:ObjectProperty; + rdfs:label "primarySite"@en; + rdfs:domain ids:Participant; + rdfs:range ids:Site; + rdfs:comment "Indicates a primary site for the Organization, this is the default means by which an Organization can be contacted and is not necessarily the formal headquarters."@en. + +ids:corporateEmailAddress rdfs:subPropertyOf foaf:mbox; + a owl:DatatypeProperty; + idoc:labelPluralForm "corporateEmailAddresses"@en; + rdfs:label "corporateEmailAddress"@en; + rdfs:domain ids:Participant; + rdfs:range xsd:string; + rdfs:comment "Email address for contacting the participant on a general level."@en. + +ids:corporateHomepage rdfs:subPropertyOf foaf:homepage; + a owl:DatatypeProperty; + rdfs:label "corporateHomepage"@en; + rdfs:domain ids:Participant; + rdfs:range xsd:anyURI; + rdfs:comment "General official homepage of the participant."@en. + +ids:memberParticipant rdfs:subPropertyOf org:hasMember; + a owl:ObjectProperty; + rdfs:domain ids:Participant; + rdfs:range ids:Participant; + idoc:labelPluralForm "memberParticipants"@en; + rdfs:label "memberParticipant"@en; + rdfs:comment "Indicates that a participant has a member which is again a participant. This is useful for defining hierarchical relations in a participant's organization as well as identifying groups of participants to capture, e.g., members of a collaboration."@en. + +ids:coversIndustry a owl:ObjectProperty; + rdfs:label "coversIndustry"@en; + rdfs:domain ids:Participant; + rdfs:range ids:ISICIndustry; + rdfs:comment "Industry branch covered by the Participant."@en. + +# Properties for describing a Person +# ---------------------------------- + +ids:memberPerson rdfs:subPropertyOf org:hasMember; + a owl:ObjectProperty; + rdfs:domain ids:Participant; + rdfs:range ids:Person; + idoc:labelPluralForm "memberPersons"@en; + rdfs:label "memberPerson"@en; + rdfs:comment "Indicates membership of a person to an organization."@en. + +ids:familyName rdfs:subPropertyOf foaf:familyName; + a owl:DatatypeProperty; + rdfs:domain ids:Person; + rdfs:range xsd:string; + rdfs:label "familyName"@en; + rdfs:comment "Family name of a Person."@en. + +ids:givenName rdfs:subPropertyOf foaf:givenName; + a owl:DatatypeProperty; + rdfs:domain ids:Person; + rdfs:range xsd:string; + rdfs:label "givenName"@en; + rdfs:comment "Given name of a Person."@en. + +ids:gender rdfs:subPropertyOf foaf:gender; + a owl:ObjectProperty; + rdfs:domain ids:Person; + rdfs:range ids:Gender; + rdfs:label "gender"@en; + rdfs:comment "Indicates the gender of a person."@en. + +ids:phoneNumber rdfs:subPropertyOf foaf:phone; + a owl:DatatypeProperty; + rdfs:domain ids:Person; + rdfs:range xsd:string; + idoc:labelPluralForm "phoneNumbers"@en; + rdfs:label "phoneNumber"@en; + rdfs:comment "Phone number of a person."@en. + +ids:emailAddress rdfs:subPropertyOf foaf:mbox; + a owl:DatatypeProperty; + rdfs:domain ids:Person; + rdfs:range xsd:string; + idoc:labelPluralForm "emailAddresses"@en; + rdfs:label "emailAddress"@en; + rdfs:comment "Email contact of a person."@en. + +ids:homepage rdfs:subPropertyOf foaf:homepage; + a owl:DatatypeProperty; + rdfs:domain ids:Person; + rdfs:range xsd:string; + rdfs:label "homepage"@en; + rdfs:comment "Website providing additional information about a person."@en. + +# Properties for describing a Site +# -------------------------------- + +ids:siteAddress rdfs:subPropertyOf org:siteAddress; + a owl:ObjectProperty; + rdfs:domain ids:Site; + rdfs:range xsd:string; + rdfs:label "siteAddress"@en; + rdfs:comment "Indicates an address for the site."@en. \ No newline at end of file diff --git a/rdf/ProtocolBinding.ttl b/rdf/ProtocolBinding.ttl new file mode 100644 index 00000000..c2198bb0 --- /dev/null +++ b/rdf/ProtocolBinding.ttl @@ -0,0 +1,125 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . +@prefix dcat: . +@prefix rdf: . +@prefix xsd: . + +@prefix ids: . +@prefix valid: . +@prefix idoc: . +@prefix trns: . + +# Classes +# ------- + +ids:ProtocolBinding a owl:Class; + rdfs:label "ProtocolBinding"@en ; + rdfs:comment "Describes how a DataEndpoint can be invoked by using a certain protocol."@en; + ids:validation [ + owl:onProperty ids:operationBinding; + valid:relationType "@OneToMany"; + ]. + +ids:OperationBinding a owl:Class ; + rdfs:label "OperationBinding"@en ; + rdfs:comment "Binding of a specific operation of an endpoint."@en ; + ids:validation [ + owl:onProperty ids:parameterBinding; + valid:relationType "@OneToMany"; + ]. + +ids:OperationHttpBinding rdfs:subClassOf ids:OperationBinding; + a owl:Class ; + rdfs:label "OperationHttpBinding"@en ; + rdfs:comment "Binding of a specific operation of an endpoint to the HTTP protocol."@en . + +ids:ParameterBinding a owl:Class ; + rdfs:label "ParameterBinding"@en ; + rdfs:comment "Description of a specific parameter of an endpoint."@en . + +ids:BindingApproach a owl:Class ; + trns:isAbstract true; + rdfs:label "BindingApproach"@en ; + rdfs:comment "Class of approaches how to bind parameters to an operation invocation."@en . + +ids:UriTemplateBindingApproach rdfs:subClassOf ids:BindingApproach; + a owl:Class ; + rdfs:label "UriTemplateBindingApproach"@en ; + rdfs:comment "Binding approach using a 1:1 mapping between the parameter's name and a key in the operation's URI template."@en . + +ids:HttpHeaderBindingApproach rdfs:subClassOf ids:BindingApproach; + a owl:Class ; + rdfs:label "HttpHeaderBindingApproach"@en ; + rdfs:comment "Binding approach using a 1:1 mapping between the parameters name and a HTTP header template."@en . + +ids:HttpResponseBodyBindingApproach rdfs:subClassOf ids:BindingApproach; + a owl:Class ; + rdfs:label "HttpResponseBodyBindingApproach"@en ; + rdfs:comment "Binding approach using a 1:1 mapping between the parameters name and a HTTP body template."@en . + +# Properties +# ---------- + +ids:operationBinding + a owl:ObjectProperty ; + rdfs:label "operationBinding"@en ; + idoc:labelPluralForm "operationBindings"@en; + rdfs:domain ids:ProtocolBinding ; + rdfs:range ids:OperationBinding ; + rdfs:comment "Defines the available operations of an endpoint."@en . + +ids:boundOperation + a owl:ObjectProperty ; + rdfs:label "boundOperation"@en ; + rdfs:domain ids:OperationBinding ; + rdfs:range ids:Operation ; + rdfs:comment "The operation which is bound to the protocol."@en . + +ids:httpMethod + a owl:ObjectProperty ; + rdfs:label "httpMethod"@en ; + rdfs:domain ids:OperationHttpBinding ; + rdfs:range ids:HttpMethod; + rdfs:comment "Defines the method of an operation."@en . + +ids:uriTemplate + a owl:DatatypeProperty; + rdfs:label "uriTemplate"@en; + rdfs:domain ids:OperationBinding; + rdfs:range xsd:string; + rdfs:comment "URL template for invoking the operation including all its possible parameters. Structured string literal containing distinguished placeholders to be replaced by runtime arguments, see for example URI Templates (RFC 6570)." . + +ids:parameterBinding + a owl:ObjectProperty ; + rdfs:label "parameterBinding"@en ; + idoc:labelPluralForm "parameterBindings"@en; + rdfs:domain ids:OperationBinding ; + rdfs:range ids:ParameterBinding ; + rdfs:comment "Links parameters of an Operation to their corresponding bindings for that Operation."@en . + +ids:boundParameter + a owl:ObjectProperty ; + rdfs:label "boundParameter"@en ; + rdfs:domain ids:ParameterBinding ; + rdfs:range ids:Parameter ; + rdfs:comment "Specified the parameter that is described by the ParameterBinding."@en . + +ids:bindingApproach + a owl:ObjectProperty ; + rdfs:label "bindingApproach"@en ; + rdfs:domain ids:ParameterBinding ; + rdfs:range ids:BindingApproach ; + rdfs:comment "Specifies the approached used to bind the Operation Parameter."@en . + +ids:httpHeaderLine a owl:DatatypeProperty; + rdfs:label "httpHeaderLine"@en ; + rdfs:domain ids:HttpHeaderBindingApproach ; + rdfs:range xsd:string ; + rdfs:comment "A HTTP header line in the form key : value(s); may contains a placeholder which maps to the parameter's label."@en . + +ids:httpBodyContent a owl:DatatypeProperty; + rdfs:label "httpBodyContent"@en ; + rdfs:domain ids:HttpResponseBodyBindingApproach ; + rdfs:range xsd:string ; + rdfs:comment "HTTP body that may contains a placeholder which maps to the parameter's label."@en . \ No newline at end of file diff --git a/rdf/Provenance.ttl b/rdf/Provenance.ttl new file mode 100644 index 00000000..a06cede2 --- /dev/null +++ b/rdf/Provenance.ttl @@ -0,0 +1,113 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . +@prefix prov: . +@prefix xsd: . +@prefix rdf: . + +@prefix ids: . +@prefix valid: . +@prefix trns: . +@prefix idoc: . + +# Classes +# ------- + +ids:Activity rdfs:subClassOf prov:Activity; + a owl:Class; + trns:isAbstract true; + rdfs:label "Activity"@en ; + rdfs:comment "Something that occurs over a period of time and acts upon or with entities."@en; + ids:validation [ + owl:onProperty ids:startedBy; + valid:constraint "@NotNull"; + ]; + ids:validation [ + owl:onProperty ids:startedAt; + valid:constraint "@NotNull"; + ]; + ids:validation [ + owl:onProperty ids:activityDescription; + valid:relationType "@OneToMany"; + ]. + +ids:CreationActivity rdfs:subClassOf ids:Activity; + a owl:Class; + rdfs:label "CreationActivity"@en ; + rdfs:comment "Activity with the goal to generate or produce an entity."@en. + +ids:RemovalActivity rdfs:subClassOf ids:Activity; + a owl:Class; + rdfs:label "RemovalActivity"@en ; + rdfs:comment "Activity with the goal to decommission an entity so that it can never be used anymore."@en. + +ids:ProvisioningActivity rdfs:subClassOf ids:Activity; + a owl:Class; + rdfs:label "ProvisioningActivity"@en ; + rdfs:comment "Activity with the goal to bring an entity into an operational state."@en. + +ids:ShutdownActivity rdfs:subClassOf ids:Activity; + a owl:Class; + rdfs:label "ShutdownActivity"@en ; + rdfs:comment "Activity with the goal to make an entity unoperational, while retaining it and make it operational again at a later point in time."@en. + +ids:PublicationActivity rdfs:subClassOf ids:Activity; + a owl:Class; + rdfs:label "PublicationActivity"@en ; + rdfs:comment "Activity with the goal to make available an entity for public or restricted access."@en. + +ids:WithdrawActivity rdfs:subClassOf ids:Activity; + a owl:Class; + rdfs:label "WithdrawActivity"@en ; + rdfs:comment "Activity with the goal to withdraw public or restrict availability of an entity."@en. + +ids:SuspensionActivity rdfs:subClassOf ids:Activity; + a owl:Class; + rdfs:label "SuspensionActivity"@en ; + rdfs:comment "Activity with the goal to temporarily suspend operation of an entity."@en. + +ids:ResumptionActivity rdfs:subClassOf ids:Activity; + a owl:Class; + rdfs:label "ResumptionActivity"@en ; + rdfs:comment "Activity with the goal to resume operation of a temporarily suspended entity."@en. + +# Properties +# ---------- + +ids:activityDescription rdfs:subPropertyOf dct:description; + a owl:DatatypeProperty; + rdfs:domain ids:Activity; + rdfs:range rdf:PlainLiteral; + rdfs:label "activityDescription"@en; + idoc:labelPluralForm "activityDescriptions"@en; + rdfs:comment "Freetext description of what has been performed by the Activity."@en. + +ids:startedBy rdfs:subPropertyOf prov:wasStartedBy; + a owl:ObjectProperty; + rdfs:domain ids:Activity; + rdfs:range ids:Participant; + trns:refByURI true; + rdfs:label "startedBy"@en; + rdfs:comment "The participant who started the Activity."@en. + +ids:startedAt rdfs:subPropertyOf prov:wasStartedBy; + a owl:DatatypeProperty; + rdfs:domain ids:Activity; + rdfs:range xsd:dateTime; + rdfs:label "startedAt"@en; + rdfs:comment "The point in time when the Activity was started."@en. + +ids:endedBy rdfs:subPropertyOf prov:wasEndedBy; + a owl:ObjectProperty; + rdfs:domain ids:Activity; + rdfs:range ids:Participant; + trns:refByURI true; + rdfs:label "endedBy"@en; + rdfs:comment "The participant who ended the Activity."@en. + +ids:endedAt rdfs:subPropertyOf prov:wasEndedBy; + a owl:DatatypeProperty; + rdfs:domain ids:Activity; + rdfs:range xsd:dateTime; + rdfs:label "endedAt"@en; + rdfs:comment "The point in time when the Activity was ended."@en. \ No newline at end of file diff --git a/rdf/Rule.ttl b/rdf/Rule.ttl new file mode 100644 index 00000000..473eb896 --- /dev/null +++ b/rdf/Rule.ttl @@ -0,0 +1,168 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . +@prefix xsd: . +@prefix odrl: . +@prefix rdf: . + +@prefix ids: . +@prefix valid: . +@prefix idoc: . +@prefix trns: . + +# Classes +# ------- + +ids:Rule rdfs:subClassOf odrl:Rule; + a owl:Class; + trns:isAbstract true; + rdfs:label "Rule"@en; + rdfs:comment "Superclass of Permissions, Prohibitions and Duties."@en; + ids:validation [ + owl:onProperty ids:ruleDescription; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:constraint; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:assigner; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:assignee; + valid:relationType "@OneToMany"; + ]. + +ids:Permission rdfs:subClassOf ids:Rule; + rdfs:subClassOf odrl:Permission; + a owl:Class; + rdfs:label "Permission"@en; + rdfs:comment "The class of Permissions as defined in the ODRL ontology."@en; + ids:validation [ + owl:onProperty ids:duty; + valid:relationType "@OneToMany"; + ]. + +ids:Prohibition rdfs:subClassOf ids:Rule; + rdfs:subClassOf odrl:Prohibition; + a owl:Class; + rdfs:label "Prohibition"@en; + rdfs:comment "The class of Prohibitions as defined in the ODRL ontology."@en. + +ids:Duty rdfs:subClassOf ids:Rule; + rdfs:subClassOf odrl:Duty; + a owl:Class; + rdfs:label "Duty"@en; + rdfs:comment "The class of Duties as defined in the ODRL ontology."@en. + +ids:Constraint rdfs:subClassOf odrl:Constraint; + a owl:Class; + rdfs:label "Constraint"@en; + rdfs:comment "The class of Constraints that restrict a Rule."@en. + +# Properties +# ---------- + +ids:action rdfs:subPropertyOf odrl:action; + a owl:ObjectProperty; + rdfs:label "action"@en; + rdfs:domain ids:Rule; + rdfs:range ids:Action; + rdfs:comment "The operation relating to the asset for which permission is being granted."@en. + +ids:assignee rdfs:subPropertyOf odrl:assignee; + a owl:ObjectProperty; + rdfs:domain ids:Rule; + rdfs:range ids:Participant; + trns:refByURI true; + rdfs:label "assignee"@en; + idoc:labelPluralForm "assignees"@en; + rdfs:comment "The recipient of the policy statement."@en. + +ids:useAssigneeComplement a owl:DatatypeProperty; + rdfs:label "useAssigneeComplement"@en; + rdfs:domain ids:Rule; + rdfs:range xsd:boolean; + rdfs:comment "When set to true, Assignees are all Participants that are not explicitly provided."@en. + +ids:assigner rdfs:subPropertyOf odrl:assigner; + a owl:ObjectProperty; + rdfs:domain ids:Rule; + rdfs:range ids:Participant; + trns:refByURI true; + rdfs:label "assigner"@en; + idoc:labelPluralForm "assigners"@en; + rdfs:comment "The issuer of the policy statement."@en. + +ids:target rdfs:subPropertyOf odrl:target; + a owl:ObjectProperty; + rdfs:domain ids:Rule; + rdfs:range ids:Operation; + trns:refByURI true; + rdfs:label "target"@en; + rdfs:comment "The operation which is the subject of the policy statement."@en. + +ids:duty rdfs:subPropertyOf odrl:duty; + a owl:ObjectProperty; + rdfs:label "duty"@en; + idoc:labelPluralForm "duties"@en; + rdfs:domain ids:Permission; + rdfs:range ids:Duty; + rdfs:comment "The Duties imposed by a Permission."@en. + +ids:ruleDescription rdfs:subPropertyOf dct:description; + a owl:DatatypeProperty; + idoc:labelPluralForm "ruleDescriptions"@en; + rdfs:label "ruleDescription"@en; + rdfs:domain ids:Rule; + rdfs:range rdf:PlainLiteral; + rdfs:comment "Freetext description of the Rule.". + +ids:constraint rdfs:subPropertyOf odrl:constraint; + a owl:ObjectProperty; + rdfs:label "constraint"@en; + rdfs:domain ids:Rule; + rdfs:range ids:Constraint; + rdfs:comment "The constraint to be used for a specific rule."@en. + +ids:payAmount rdfs:subPropertyOf odrl:payAmount; + a owl:DatatypeProperty; + rdfs:label "payAmount"@en; + rdfs:domain ids:Constraint; + rdfs:range xsd:float; + rdfs:comment "Monetary amount to pay.". + +ids:temporal rdfs:subPropertyOf odrl:rightOperand; + a owl:ObjectProperty; + rdfs:label "temporal"@en; + rdfs:domain ids:Constraint; + rdfs:range ids:TemporalEntity; + rdfs:comment "Temporal entity to describe a Constraint. Alternatively, the dateTime property can be used.". + +ids:dateTime rdfs:subPropertyOf odrl:dateTime; + a owl:DatatypeProperty; + rdfs:label "dateTime"@en; + rdfs:domain ids:Constraint; + rdfs:range xsd:string; + rdfs:comment "Temporal entity to describe a Constraint. Alternatively, the temporal property can be used.". + +ids:binaryOperator rdfs:subPropertyOf odrl:rightOperand; + a owl:ObjectProperty; + rdfs:label "operator"@en; + rdfs:domain ids:Constraint; + rdfs:range ids:BinaryOperator; + rdfs:comment "The binary operator applied to a constraint and its operand.". + +ids:unit rdfs:subPropertyOf odrl:unit; + a owl:ObjectProperty; + rdfs:label "unit"@en; + rdfs:domain ids:Constraint; + rdfs:range ids:Unit; + rdfs:comment "The unit of measurement used for the constraint value.". + + + + + diff --git a/rdf/SecurityProfile.ttl b/rdf/SecurityProfile.ttl new file mode 100644 index 00000000..49701d84 --- /dev/null +++ b/rdf/SecurityProfile.ttl @@ -0,0 +1,279 @@ +@prefix owl: . +@prefix rdfs: . +@prefix xsd: . +@prefix dct: . + +@prefix ids: . +@prefix valid: . +@prefix trns: . + +# Classes +# ------- + +ids:SecurityProfile a owl:Class; + rdfs:label "SecurityProfile"@en ; + rdfs:comment "The class of SecurityProfiles supported by a Connector."@en. + +ids:PredefinedSecurityProfile a owl:Class; + rdfs:label "PredefinedSecurityProfile"@en ; + rdfs:comment "The class of predefined SecurityProfiles."@en. + +ids:IntegrityProtectionAndVerificationSupport a owl:Class; + rdfs:label "IntegrityProtectionAndVerification"@en ; + rdfs:comment "The class of support levels for integrity protection and verification.". + +ids:AuthenticationSupport a owl:Class; + rdfs:label "AuthenticationSupport"@en ; + rdfs:comment "The class of support levels for authentication.". + +ids:ServiceIsolationSupport a owl:Class; + rdfs:label "ServiceIsolationSupport"@en ; + rdfs:comment "The class of service isolation support.". + +ids:IntegrityProtectionScope a owl:Class; + rdfs:label "IntegrityProtectionScope"@en ; + rdfs:comment "The class of integrity protection scopes.". + +ids:AppExecutionResources a owl:Class; + rdfs:label "AppExecutionResources"@en ; + rdfs:comment "The class of app execution resources.". + +ids:DataUsageControlSupport a owl:Class; + rdfs:label "DataUsageControlSupport"@en ; + rdfs:comment "The class of support levels for data usage control.". + +ids:AuditLogging a owl:Class; + rdfs:label "AuditLogging"@en ; + rdfs:comment "The class of audit logging strategies.". + +ids:LocalDataConfidentiality a owl:Class; + rdfs:label "idsLocalDataConfidentiality"@en ; + rdfs:comment "The class of support levels for local data confidentiality.". + +# Properties +# ---------- + +ids:basedOn a owl:ObjectProperty; + rdfs:domain ids:SecurityProfile; + rdfs:range ids:PredefinedSecurityProfile; + rdfs:label "basedOn"@en; + rdfs:comment "A predefined security profile this one is based on."@en. + +ids:integrityProtectionAndVerificationSupport a owl:ObjectProperty; + rdfs:domain ids:SecurityProfile; + rdfs:range ids:IntegrityProtectionAndVerificationSupport; + rdfs:label "integrityProtectionAndVerification"@en; + rdfs:comment "The level of integrity protection and verification."@en. + +ids:authenticationSupport a owl:ObjectProperty; + rdfs:domain ids:SecurityProfile; + rdfs:range ids:AuthenticationSupport; + rdfs:label "authenticationSupport"@en; + rdfs:comment "The level of authentication support."@en. + +ids:serviceIsolationSupport a owl:ObjectProperty; + rdfs:domain ids:SecurityProfile; + rdfs:range ids:ServiceIsolationSupport; + rdfs:label "serviceIsolationSupport"@en; + rdfs:comment "The level of service isolation support."@en. + +ids:integrityProtectionScope a owl:ObjectProperty; + rdfs:domain ids:SecurityProfile; + rdfs:range ids:IntegrityProtectionScope; + rdfs:label "integrityProtectionScope"@en; + rdfs:comment "The scope of integrity protection."@en. + +ids:appExecutionResources a owl:ObjectProperty; + rdfs:domain ids:SecurityProfile; + rdfs:range ids:AppExecutionResources; + rdfs:label "appExecutionResources"@en; + rdfs:comment "The resources for app execution."@en. + +ids:dataUsageControlSupport a owl:ObjectProperty; + rdfs:domain ids:SecurityProfile; + rdfs:range ids:DataUsageControlSupport; + rdfs:label "dataUsageControlSupport"@en; + rdfs:comment "The support for data usage control."@en. + +ids:auditLogging a owl:ObjectProperty; + rdfs:domain ids:SecurityProfile; + rdfs:range ids:AuditLogging; + rdfs:label "auditLogging"@en; + rdfs:comment "The type of audit logging."@en. + +ids:localDataConfidentiality a owl:ObjectProperty; + rdfs:domain ids:SecurityProfile; + rdfs:range ids:LocalDataConfidentiality; + rdfs:label "localDataConfidentiality"@en; + rdfs:comment "The support for local data confidentiality."@en. + +# Individuals +# ----------- + +ids:Level0SecurityProfile a ids:PredefinedSecurityProfile; + rdfs:comment "Level 0 Security Profile"; + dct:identifier "LEVEL_0"; + ids:integrityProtectionAndVerificationSupport ids:No_Integrity_Protection; + ids:authenticationSupport ids:No_Authentication; + ids:serviceIsolationSupport ids:No_Service_Isolation; + ids:integrityProtectionScope ids:No_Integrity_Protection; + ids:appExecutionResources ids:No_App_Execution; + ids:dataUsageControlSupport ids:No_Usage_Control; + ids:auditLogging ids:No_Audit_Logging; + ids:localDataConfidentiality ids:No_Confidentiality. + +ids:Level1SecurityProfile a ids:PredefinedSecurityProfile; + rdfs:comment "Level 1 Security Profile"; + dct:identifier "LEVEL_1"; + ids:integrityProtectionAndVerificationSupport ids:Local_Integrity_Protection; + ids:authenticationSupport ids:Server_Side_Only; + ids:serviceIsolationSupport ids:Process_Group_Isolation; + ids:integrityProtectionScope ids:Kernel_and_Core_Container; + ids:appExecutionResources ids:Local_Enforcement; + ids:dataUsageControlSupport ids:Usage_Control_Policy_Enforcement; + ids:auditLogging ids:Local_Logging_Capabilities_And_Integrity_Protection; + ids:localDataConfidentiality ids:Secure_Data_Erasure. + +ids:Level2SecurityProfile a ids:PredefinedSecurityProfile; + rdfs:comment "Level 2 Security Profile"; + dct:identifier "LEVEL_2"; + ids:integrityProtectionAndVerificationSupport ids:Remote_Integrity_Verification; + ids:authenticationSupport ids:Mutual; + ids:serviceIsolationSupport ids:Least_Privilege_Based_Isolation; + ids:integrityProtectionScope ids:Kernel_and_Core_Container_and_Application_Containers; + ids:appExecutionResources ids:Remote_Verification; + ids:dataUsageControlSupport ids:Remote_Policy_Compliance_Verification; + ids:auditLogging ids:Remote_Audit_Log_Tracing; + ids:localDataConfidentiality ids:No_Confidentiality. + +ids:BaseConnectorSecurityProfile a ids:PredefinedSecurityProfile; + rdfs:comment "Base Connector Security Profile"; + dct:identifier "BASE_CONNECTOR"; + ids:integrityProtectionAndVerificationSupport ids:No_Integrity_Protection; + ids:authenticationSupport ids:Mutual; + ids:serviceIsolationSupport ids:Process_Group_Isolation; + ids:integrityProtectionScope ids:Unknown_Integrity_Protection_Scope; + ids:appExecutionResources ids:No_App_Execution; + ids:dataUsageControlSupport ids:No_Usage_Control; + ids:auditLogging ids:Local_Logging_Capabilities_And_Integrity_Protection; + ids:localDataConfidentiality ids:No_Confidentiality. + +# Integrity Protection and Verification +# ------------------------------------- + +ids:Local_Integrity_Protection a ids:IntegrityProtectionAndVerificationSupport; + rdfs:comment "Local Integrity Protection"; + dct:identifier "LOCAL_INTEGRITY_PROTECTION". + +ids:Remote_Integrity_Verification a ids:IntegrityProtectionAndVerificationSupport; + rdfs:comment "Remote Integrity Verification"; + dct:identifier "REMOTE_INTEGRITY_VERIFICATION". + +ids:No_Integrity_Protection a ids:IntegrityProtectionAndVerificationSupport; + rdfs:comment "No Integrity Protection Or Verification"; + dct:identifier "NONE". + +# Authentication +# -------------- + +ids:Server_Side_Only a ids:AuthenticationSupport; + rdfs:comment "Server Side Only Authentication"; + dct:identifier "SERVER_SIDE_ONLY". + +ids:Mutual a ids:AuthenticationSupport; + rdfs:comment "Mutual authentication (both sides present id token / certificate)"; + dct:identifier "MUTUAL". + +ids:No_Authentication a ids:AuthenticationSupport; + rdfs:comment "No authentication"; + dct:identifier "NONE". + +# Service Isolation +# ----------------- + +ids:Process_Group_Isolation a ids:ServiceIsolationSupport; + rdfs:comment "Process group Isolation"; + dct:identifier "PROCESS_GROUP_ISOLATION". + +ids:Least_Privilege_Based_Isolation a ids:ServiceIsolationSupport; + rdfs:comment "Least privilege based Isolation"; + dct:identifier "LEAST_PRIVILEGE_BASED_ISOLATION". + +ids:No_Service_Isolation a ids:ServiceIsolationSupport; + rdfs:comment "No Service Isolation"; + dct:identifier "NONE". + +# Integrity Protection / Verification Scope +# ----------------------------------------- + +ids:Kernel_and_Core_Container a ids:IntegrityProtectionScope; + rdfs:comment "Kernel and Core Container"; + dct:identifier "KERNEL_AND_CORE_CONTAINER". + +ids:Kernel_and_Core_Container_and_Application_Containers a ids:IntegrityProtectionScope; + rdfs:comment "Kernel and Core Container and Application Containers"; + dct:identifier "KERNEL_AND_CORE_CONTAINER_AND_APP_CONTAINERS". + +ids:Unknown_Integrity_Protection_Scope a ids:IntegrityProtectionScope; + rdfs:comment "Unknown Integrity Protection Scope"; + dct:identifier "NONE". + +# App Execution Resources +# ----------------------- + +ids:Local_Enforcement a ids:AppExecutionResources; + rdfs:comment "Local enforcement"; + dct:identifier "LOCAL_ENFORCEMENT". + +ids:Remote_Verification a ids:AppExecutionResources; + rdfs:comment "Remote verification"; + dct:identifier "REMOTE_VERIFICATION". + +ids:No_App_Execution a ids:AppExecutionResources; + rdfs:comment "No app execution"; + dct:identifier "NONE". + +# Data Usage Control +# ------------------ + +ids:Usage_Control_Policy_Enforcement a ids:DataUsageControlSupport; + rdfs:comment "Usage control policy enforcement"; + dct:identifier "USAGE_CONTROL_POLICY_ENFORCEMENT". + +ids:Remote_Policy_Compliance_Verification a ids:DataUsageControlSupport; + rdfs:comment "Remote policy compliance verification"; + dct:identifier "REMOTE_POLICY_COMPLIANCE_VERIFICATION". + +ids:No_Usage_Control a ids:DataUsageControlSupport; + rdfs:comment "No_Usage_Control"; + dct:identifier "NONE". + +# Audit Logging +# ------------- + +ids:Local_Logging_Capabilities_And_Integrity_Protection a ids:AuditLogging; + rdfs:comment "Local logging capabilities and integrity protection"; + dct:identifier "LOCAL_LOGGING_AND_INTEGRITY_PROTECTION". + +ids:Remote_Audit_Log_Tracing a ids:AuditLogging; + rdfs:comment "Remote audit log tracing"; + dct:identifier "REMOTE_AUDIT_LOG_TRACING". + +ids:No_Audit_Logging a ids:AuditLogging; + rdfs:comment "No Audit Logging"; + dct:identifier "NONE". + +# Local Data Confidentiality +# -------------------------- + +ids:Secure_Data_Erasure a ids:LocalDataConfidentiality; + rdfs:comment "Secure data erasure"; + dct:identifier "SECURE_DATA_ERASURE". + +ids:Local_Full_Data_Encryption a ids:LocalDataConfidentiality; + rdfs:comment "Local full data encryption"; + dct:identifier "LOCAL_FULL_DATA_ENCRYPTION". + +ids:No_Confidentiality a ids:LocalDataConfidentiality; + rdfs:comment "No Confidentiality"; + dct:identifier "NONE". \ No newline at end of file diff --git a/rdf/Service.ttl b/rdf/Service.ttl new file mode 100644 index 00000000..feaa0bdb --- /dev/null +++ b/rdf/Service.ttl @@ -0,0 +1,276 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . +@prefix dcat: . +@prefix rdf: . +@prefix xsd: . + +@prefix ids: . +@prefix valid: . +@prefix idoc: . +@prefix trns: . + +# Classes +# ------- + +ids:DataEndpoint rdfs:subClassOf ids:EntityWithLifecycle; + a owl:Class; + rdfs:label "DataEndpoint"@en ; + rdfs:comment "Data Endpoint that may be invoked to retrieve (via service calls, subscription, etc) or push data."@en; + ids:validation [ + owl:onProperty ids:providedBy; + valid:constraint "@NotNull"; + ]; + ids:validation [ + owl:onProperty ids:usagePolicy; + valid:relationType "@OneToMany"; + ]. + +ids:DataService a owl:Class; + rdfs:label "DataService"@en ; + rdfs:comment "A certain view or interaction ability on the data provided by a DataEndpoint."@en; + ids:validation [ + owl:onProperty ids:operation; + valid:relationType "@OneToMany"; + ]. + +ids:Operation a owl:Class; + trns:isAbstract true; + rdfs:label "Operation"@en ; + rdfs:comment "An operation to be performed on a DataService, like the retrieval of a filtered subset of the data."@en; + ids:validation [ + owl:onProperty ids:opLabel; + valid:constraint "@NotNull"; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:input; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:output; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:opDescription; + valid:relationType "@OneToMany"; + ]. + +ids:ReadOperation rdfs:subClassOf ids:Operation; + a owl:Class; + rdfs:label "ReadOperation"@en ; + rdfs:comment "An operation to access a DataService in a read-only way."@en. + +ids:Parameter a owl:Class; + rdfs:label "Parameter"@en ; + rdfs:comment "Specifies how an Operation should be performed."@en; + ids:validation [ + owl:onProperty ids:paramLabel; + valid:relationType "@OneToMany"; + ]; + ids:validation [ + owl:onProperty ids:paramDescription; + valid:relationType "@OneToMany"; + ]. + +ids:InputParameter rdfs:subClassOf ids:Parameter; + a owl:Class; + rdfs:label "InputParameter"@en ; + rdfs:comment "Input Parameter to control an Operation."@en. + +ids:OutputParameter rdfs:subClassOf ids:Parameter; + a owl:Class; + rdfs:label "OutputParameter"@en ; + rdfs:comment "Result of an Operation."@en. + +ids:Fault rdfs:subClassOf ids:OutputParameter; + a owl:Class; + rdfs:label "Fault"@en ; + rdfs:comment "Result on Operation failure."@en. + +ids:Representation a owl:Class; + rdfs:label "Representation"@en ; + rdfs:comment "Describes how a Parameter's value is represented."@en. + +# Properties for describing a DataEndpoint +# ---------------------------------------- + +ids:offers a owl:ObjectProperty; + rdfs:domain ids:DataEndpoint; + rdfs:range ids:DataService; + rdfs:label "offers"@en; + rdfs:comment "A DataService that is offered by the DataEndpoint."@en. + +ids:protocolBinding a owl:ObjectProperty; + rdfs:domain ids:DataEndpoint; + rdfs:range ids:ProtocolBinding; + rdfs:label "protocolBinding"@en; + rdfs:comment "ProtocolBinding to be used for creating access requests to a DataEndpoint using a specific protocol."@en. + +ids:providedBy a owl:ObjectProperty; + rdfs:domain ids:DataEndpoint; + rdfs:range ids:Connector; + trns:refByURI true; + rdfs:label "providedBy"@en; + rdfs:comment "The Connector that provides this DataEndpoint."@en. + +# Properties for describing a DataService +# --------------------------------------- + +ids:operation a owl:ObjectProperty; + rdfs:domain ids:DataService; + rdfs:range ids:Operation; + rdfs:label "operation"@en; + idoc:labelPluralForm "operations"@en; + rdfs:comment "An Operation that can be performed on a DataService."@en. + +ids:usagePolicy a owl:ObjectProperty; + rdfs:domain ids:DataEndpoint; + rdfs:range ids:ServiceContract; + rdfs:label "usagePolicy"@en; + idoc:labelPluralForm "usagePolicies"@en; + rdfs:comment "The ServiceContracts describing usage policies for the DataEndpoint's offerings."@en. + +ids:publishes a owl:ObjectProperty; + rdfs:label "publishes"@en; + rdfs:domain ids:DataService; + rdfs:range ids:DataAsset; + rdfs:comment "Data Asset published by the Data Service."@en. + + +# Properties for describing an Operation +# -------------------------------------- + +ids:input a owl:ObjectProperty; + rdfs:domain ids:Operation; + rdfs:range ids:InputParameter; + rdfs:label "input"@en; + idoc:labelPluralForm "inputs"@en; + rdfs:comment "Parameterizes the input of an Operation."@en. + +ids:output a owl:ObjectProperty; + rdfs:domain ids:Operation; + rdfs:range ids:OutputParameter; + rdfs:label "output"@en; + idoc:labelPluralForm "outputs"@en; + rdfs:comment "Holds the result of an Operation."@en. + +ids:fault a owl:ObjectProperty; + rdfs:domain ids:Operation; + rdfs:range ids:Fault; + rdfs:label "fault"@en; + idoc:labelPluralForm "faults"@en; + rdfs:comment "Holds information when an Operation has failed."@en. + +ids:opLabel rdfs:subPropertyOf rdfs:label; + a owl:DatatypeProperty; + rdfs:domain ids:Operation; + rdfs:range rdf:PlainLiteral; + idoc:labelPluralForm "opLabels"@en; + rdfs:label "opLabel"@en; + rdfs:comment "Freetext label of the Operation as it should be shown in public indexes."@en. + +ids:opDescription rdfs:subPropertyOf dct:description; + a owl:DatatypeProperty; + rdfs:domain ids:Operation; + rdfs:range rdf:PlainLiteral; + idoc:labelPluralForm "opDescriptions"@en; + rdfs:label "opDescription"@en; + rdfs:comment "Freetext description of the Operation as it should be shown in public indexes."@en. + +ids:opFunctionality a owl:DatatypeProperty; + rdfs:domain ids:Operation; + rdfs:range xsd:anyURI; + rdfs:label "opFunctionality"@en; + rdfs:comment "Links to a description of the functionality the Operation provides, preferably expressed as Linked Data."@en. + +ids:opImplementation a owl:DatatypeProperty; + rdfs:domain ids:Operation; + rdfs:range xsd:anyURI; + rdfs:label "opImplementation"@en; + rdfs:comment "Links to a description about how the operation is implemented. The description should provide information about, e.g., used algorithms, expected preconditions, or assumptions."@en. + +# Properties for describing a Parameter +# ------------------------------------- + +ids:paramLabel rdfs:subPropertyOf rdfs:label; + a owl:DatatypeProperty; + rdfs:domain ids:Parameter; + rdfs:range rdf:PlainLiteral; + rdfs:label "paramLabel"@en; + idoc:labelPluralForm "paramLabels"@en; + rdfs:comment "Freetext label of the Parameter as it should be shown in public indexes."@en. + +ids:paramName rdfs:subPropertyOf dct:identifier; + a owl:DatatypeProperty; + rdfs:domain ids:Parameter; + rdfs:range xsd:string; + rdfs:label "paramName"@en; + rdfs:comment "Name of the Parameter as it must be used in service requests."@en. + +ids:paramDescription rdfs:subPropertyOf dct:description; + a owl:DatatypeProperty; + rdfs:domain ids:Parameter; + rdfs:range rdf:PlainLiteral; + rdfs:label "paramDescription"@en; + idoc:labelPluralForm "paramDescriptions"@en; + rdfs:comment "Freetext description of the Parameter as it should be shown in public indexes."@en. + +ids:semanticType a owl:DatatypeProperty; + rdfs:domain ids:Parameter; + rdfs:range xsd:anyURI; + rdfs:label "semanticType"@en; + rdfs:comment "Links to a description of the Parameter's semantics, preferably expressed as Linked Data."@en. + +ids:representation a owl:ObjectProperty; + rdfs:domain ids:Parameter; + rdfs:range ids:Representation; + rdfs:label "representation"@en; + rdfs:comment "The Representation of the Parameter's value."@en. + +# Properties for describing a Representation +# ------------------------------------------ + +ids:dataType a owl:ObjectProperty; + rdfs:domain ids:Representation; + rdfs:range ids:ParameterDataType; + rdfs:label "dataType"@en; + rdfs:comment "Indicates the datatype of the Parameter."@en. + +ids:format rdfs:subPropertyOf dct:format; + a owl:DatatypeProperty; + rdfs:domain ids:Representation; + rdfs:range xsd:string; + rdfs:label "format"@en; + rdfs:comment "The file format of the Representation. ids:mediaType SHOULD be used if the type of the distribution is defined by IANA."@en. + +ids:mediaType rdfs:subPropertyOf dcat:mediaType; + a owl:ObjectProperty; + rdfs:domain ids:Representation; + rdfs:range ids:IANAMediaType; + rdfs:label "mediaType"@en; + rdfs:comment "The media type of the Representation, as defined by IANA."@en. + +ids:conformsToStandard a owl:DatatypeProperty; + rdfs:domain ids:Representation; + rdfs:range xsd:anyURI; + rdfs:label "conformsToStandard"@en; + rdfs:comment "The standard the Representation conforms to."@en. + +ids:conformsToStructure a owl:DatatypeProperty; + rdfs:domain ids:Representation; + rdfs:range xsd:anyURI; + rdfs:label "conformsToStructure"@en; + rdfs:comment "Links to a document that contains additional information like class and type descriptions or integrity constraints describing the Representation's structure."@en. + +ids:transformationRule a owl:DatatypeProperty; + rdfs:domain ids:Representation; + rdfs:range xsd:anyURI; + rdfs:label "transformationRule"@en; + rdfs:comment "Links to a document that contains rules or algorithms to transform the Representation into another syntactic format."@en. + +ids:volume a owl:DatatypeProperty; + rdfs:label "volume"@en; + rdfs:domain ids:Representation; + rdfs:range xsd:long; + rdfs:comment "The total uncompressed size of a Representation in MB."@en. \ No newline at end of file diff --git a/rdf/Spatial.ttl b/rdf/Spatial.ttl new file mode 100644 index 00000000..8a98fe58 --- /dev/null +++ b/rdf/Spatial.ttl @@ -0,0 +1,95 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . +@prefix xsd: . +@prefix locn: . +@prefix gn: . +@prefix wgs84: . + +@prefix ids: . +@prefix valid: . +@prefix idoc: . +@prefix trns: . + +# Classes +# ------- + +ids:SpatialEntity rdfs:subClassOf wgs84:SpatialThing; + a owl:Class; + trns:isAbstract true; + rdfs:label "SpatialEntity"@en ; + rdfs:comment "Anything with spatial extent, i.e. size, shape, or position, e.g., places and unique positions."@en. + +ids:Location rdfs:subClassOf ids:SpatialEntity; + rdfs:subClassOf dct:Location; + a owl:Class; + trns:isAbstract true; + rdfs:label "Location"@en ; + rdfs:comment "Class of all locations on Earth."@en. + +ids:GeoPoint rdfs:subClassOf ids:Location; + a owl:Class; + rdfs:label "GeoPoint"@en ; + rdfs:comment "A location identified by geo coordinates."@en; + ids:validation [ + owl:onProperty ids:latitude; + valid:constraint "@NotNull"; + ]; + ids:validation [ + owl:onProperty ids:longitude; + valid:constraint "@NotNull"; + ]. + +ids:GeoFeature rdfs:subClassOf ids:Location; + a owl:Class; + rdfs:label "GeoFeature"@en ; + rdfs:comment "A location identified by a geonames identifier."@en; + ids:validation [ + owl:onProperty ids:geoFeatureId; + valid:constraint "@NotNull"; + ]. + +ids:Geometry rdfs:subClassOf locn:Geometry; + rdfs:subClassOf ids:Location; + a owl:Class; + trns:isAbstract true; + rdfs:label "Geometry"@en ; + rdfs:comment "Geometrical shape indicating a spatial area of interest."@en. + +ids:BoundingPolygon rdfs:subClassOf ids:Geometry; + a owl:Class; + rdfs:label "BoundingPolygon"@en; + rdfs:comment "Defines an area of interest as a set of connected points."@en; + ids:validation [ + owl:onProperty ids:geoPoint; + valid:relationType "@OneToMany"; + valid:constraint "@NotEmpty"; + ]. + +# Properties for describing spatial entitites +# ------------------------------------------- + +ids:latitude rdfs:subPropertyOf wgs84:lat; + rdfs:domain ids:GeoPoint; + rdfs:range xsd:float; + rdfs:label "latitude"@en; + rdfs:comment "Latitude of a GeoPoint (decimal degrees)."@en. + +ids:longitude rdfs:subPropertyOf wgs84:long; + rdfs:domain ids:GeoPoint; + rdfs:range xsd:float; + rdfs:label "longitude"@en; + rdfs:comment "Longitude of a GeoPoint (decimal degrees)."@en. + +ids:geoFeatureId rdfs:subPropertyOf gn:geonamesID; + rdfs:domain ids:GeoFeature; + rdfs:range xsd:string; + rdfs:label "geoFeatureId"@en; + rdfs:comment "Geonames identifier."@en. + +ids:geoPoint a owl:ObjectProperty; + rdfs:domain ids:BoundingPolygon; + rdfs:range ids:GeoPoint; + rdfs:label "geoPoint"@en; + idoc:labelPluralForm "geoPoints"@en; + rdfs:comment "Refers to a GeoPoint that is member of a BoundingPolygon."@en. \ No newline at end of file diff --git a/rdf/Temporal.ttl b/rdf/Temporal.ttl new file mode 100644 index 00000000..5203b881 --- /dev/null +++ b/rdf/Temporal.ttl @@ -0,0 +1,56 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . +@prefix time: . +@prefix xsd: . + +@prefix ids: . +@prefix valid: . + +# Classes +# ------- + +ids:TemporalEntity rdfs:subClassOf time:TemporalEntity; + a owl:Class; + rdfs:label "TemporalEntity"@en ; + rdfs:comment "A temporal interval or instant."@en. + +ids:Instant rdfs:subClassOf ids:TemporalEntity; + rdfs:subClassOf time:Instant; + a owl:Class; + rdfs:label "Instant"@en ; + rdfs:comment "A temporal entity with zero extent or duration."@en; + ids:validation [ + owl:onProperty ids:inXSDDateTime; + valid:constraint "@NotNull"; + ]. + +ids:Interval rdfs:subClassOf ids:TemporalEntity; + rdfs:subClassOf time:Interval; + a owl:Class; + rdfs:label "Interval"@en ; + rdfs:comment "A temporal entity with non-zero extent or duration, i.e. for which the value of the beginning and end are different."@en. + +# Properties for describing temporal entities +# ------------------------------------------- + +ids:inXSDDateTime rdfs:subPropertyOf time:inXSDDateTime; + a owl:DatatypeProperty; + rdfs:domain ids:Instant; + rdfs:range xsd:dateTime; + rdfs:label "inXSDDateTime"@en; + rdfs:comment "Position of an Instant."@en. + +ids:beginning rdfs:subPropertyOf time:hasBeginning; + a owl:ObjectProperty; + rdfs:domain ids:Interval; + rdfs:range ids:Instant; + rdfs:label "beginning"@en; + rdfs:comment "Beginning of an Interval."@en. + +ids:end rdfs:subPropertyOf time:hasEnd; + a owl:ObjectProperty; + rdfs:domain ids:Interval; + rdfs:range ids:Instant; + rdfs:label "end"@en; + rdfs:comment "End of an Interval."@en. \ No newline at end of file diff --git a/rdf/Unit.ttl b/rdf/Unit.ttl new file mode 100644 index 00000000..9bc4f8cd --- /dev/null +++ b/rdf/Unit.ttl @@ -0,0 +1,29 @@ +@prefix owl: . +@prefix rdfs: . +@prefix dct: . + +@prefix ids: . +@prefix ids_unit: . + +# Classes +# ------- + +ids:Unit a owl:Class; + rdfs:label "Unit"@en ; + rdfs:comment "The class of units.". + +# Instances +# --------- + +ids_unit:euro a ids:Unit; + rdfs:comment "Euro"; + dct:identifier "EUR". + +ids_unit:usd a ids:Unit; + rdfs:comment "US Dollar"; + dct:identifier "USD". + +ids_unit:kb a ids:Unit; + rdfs:comment "Kilobyte"; + dct:identifier "KB". + From 3aa10a91b7093a842bbfea6e6962eb79c322dc9e Mon Sep 17 00:00:00 2001 From: christianmader Date: Tue, 26 Sep 2017 16:19:28 +0200 Subject: [PATCH 003/300] adapted license file to hold official apache v2 license text --- LICENSE | 209 +++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 199 insertions(+), 10 deletions(-) diff --git a/LICENSE b/LICENSE index c0753785..7a4a3ea2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,13 +1,202 @@ -Copyright (c) 2017. Industrial Data Space Association -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ - http://www.apache.org/licenses/LICENSE-2.0 + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. \ No newline at end of file + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file From 2cbc2e388c0f480ca2e3a10024915092b7b54609 Mon Sep 17 00:00:00 2001 From: christianmader Date: Wed, 27 Sep 2017 08:30:33 +0200 Subject: [PATCH 004/300] renamed code directory; future ontologies for modules and code generation will end up at the same hierarchy level than the infomodel directory --- {rdf => infomodel}/Action.ttl | 0 {rdf => infomodel}/Base.ttl | 0 {rdf => infomodel}/BinaryOperator.ttl | 0 {rdf => infomodel}/Broker.ttl | 0 {rdf => infomodel}/BrokerCommunication.ttl | 0 {rdf => infomodel}/Connector.ttl | 0 {rdf => infomodel}/Contract.ttl | 0 {rdf => infomodel}/DataAsset.ttl | 0 {rdf => infomodel}/DataTransfer.ttl | 0 {rdf => infomodel}/Gender.ttl | 0 {rdf => infomodel}/HashFunction.ttl | 0 {rdf => infomodel}/HttpMethod.ttl | 0 {rdf => infomodel}/IANAMediaType.ttl | 0 {rdf => infomodel}/ISIC.ttl | 0 {rdf => infomodel}/Language.ttl | 0 {rdf => infomodel}/License.ttl | 0 {rdf => infomodel}/ParameterDataType.ttl | 0 {rdf => infomodel}/Participant.ttl | 0 {rdf => infomodel}/ProtocolBinding.ttl | 0 {rdf => infomodel}/Provenance.ttl | 0 {rdf => infomodel}/Rule.ttl | 0 {rdf => infomodel}/SecurityProfile.ttl | 0 {rdf => infomodel}/Service.ttl | 0 {rdf => infomodel}/Spatial.ttl | 0 {rdf => infomodel}/Temporal.ttl | 0 {rdf => infomodel}/Unit.ttl | 0 26 files changed, 0 insertions(+), 0 deletions(-) rename {rdf => infomodel}/Action.ttl (100%) rename {rdf => infomodel}/Base.ttl (100%) rename {rdf => infomodel}/BinaryOperator.ttl (100%) rename {rdf => infomodel}/Broker.ttl (100%) rename {rdf => infomodel}/BrokerCommunication.ttl (100%) rename {rdf => infomodel}/Connector.ttl (100%) rename {rdf => infomodel}/Contract.ttl (100%) rename {rdf => infomodel}/DataAsset.ttl (100%) rename {rdf => infomodel}/DataTransfer.ttl (100%) rename {rdf => infomodel}/Gender.ttl (100%) rename {rdf => infomodel}/HashFunction.ttl (100%) rename {rdf => infomodel}/HttpMethod.ttl (100%) rename {rdf => infomodel}/IANAMediaType.ttl (100%) rename {rdf => infomodel}/ISIC.ttl (100%) rename {rdf => infomodel}/Language.ttl (100%) rename {rdf => infomodel}/License.ttl (100%) rename {rdf => infomodel}/ParameterDataType.ttl (100%) rename {rdf => infomodel}/Participant.ttl (100%) rename {rdf => infomodel}/ProtocolBinding.ttl (100%) rename {rdf => infomodel}/Provenance.ttl (100%) rename {rdf => infomodel}/Rule.ttl (100%) rename {rdf => infomodel}/SecurityProfile.ttl (100%) rename {rdf => infomodel}/Service.ttl (100%) rename {rdf => infomodel}/Spatial.ttl (100%) rename {rdf => infomodel}/Temporal.ttl (100%) rename {rdf => infomodel}/Unit.ttl (100%) diff --git a/rdf/Action.ttl b/infomodel/Action.ttl similarity index 100% rename from rdf/Action.ttl rename to infomodel/Action.ttl diff --git a/rdf/Base.ttl b/infomodel/Base.ttl similarity index 100% rename from rdf/Base.ttl rename to infomodel/Base.ttl diff --git a/rdf/BinaryOperator.ttl b/infomodel/BinaryOperator.ttl similarity index 100% rename from rdf/BinaryOperator.ttl rename to infomodel/BinaryOperator.ttl diff --git a/rdf/Broker.ttl b/infomodel/Broker.ttl similarity index 100% rename from rdf/Broker.ttl rename to infomodel/Broker.ttl diff --git a/rdf/BrokerCommunication.ttl b/infomodel/BrokerCommunication.ttl similarity index 100% rename from rdf/BrokerCommunication.ttl rename to infomodel/BrokerCommunication.ttl diff --git a/rdf/Connector.ttl b/infomodel/Connector.ttl similarity index 100% rename from rdf/Connector.ttl rename to infomodel/Connector.ttl diff --git a/rdf/Contract.ttl b/infomodel/Contract.ttl similarity index 100% rename from rdf/Contract.ttl rename to infomodel/Contract.ttl diff --git a/rdf/DataAsset.ttl b/infomodel/DataAsset.ttl similarity index 100% rename from rdf/DataAsset.ttl rename to infomodel/DataAsset.ttl diff --git a/rdf/DataTransfer.ttl b/infomodel/DataTransfer.ttl similarity index 100% rename from rdf/DataTransfer.ttl rename to infomodel/DataTransfer.ttl diff --git a/rdf/Gender.ttl b/infomodel/Gender.ttl similarity index 100% rename from rdf/Gender.ttl rename to infomodel/Gender.ttl diff --git a/rdf/HashFunction.ttl b/infomodel/HashFunction.ttl similarity index 100% rename from rdf/HashFunction.ttl rename to infomodel/HashFunction.ttl diff --git a/rdf/HttpMethod.ttl b/infomodel/HttpMethod.ttl similarity index 100% rename from rdf/HttpMethod.ttl rename to infomodel/HttpMethod.ttl diff --git a/rdf/IANAMediaType.ttl b/infomodel/IANAMediaType.ttl similarity index 100% rename from rdf/IANAMediaType.ttl rename to infomodel/IANAMediaType.ttl diff --git a/rdf/ISIC.ttl b/infomodel/ISIC.ttl similarity index 100% rename from rdf/ISIC.ttl rename to infomodel/ISIC.ttl diff --git a/rdf/Language.ttl b/infomodel/Language.ttl similarity index 100% rename from rdf/Language.ttl rename to infomodel/Language.ttl diff --git a/rdf/License.ttl b/infomodel/License.ttl similarity index 100% rename from rdf/License.ttl rename to infomodel/License.ttl diff --git a/rdf/ParameterDataType.ttl b/infomodel/ParameterDataType.ttl similarity index 100% rename from rdf/ParameterDataType.ttl rename to infomodel/ParameterDataType.ttl diff --git a/rdf/Participant.ttl b/infomodel/Participant.ttl similarity index 100% rename from rdf/Participant.ttl rename to infomodel/Participant.ttl diff --git a/rdf/ProtocolBinding.ttl b/infomodel/ProtocolBinding.ttl similarity index 100% rename from rdf/ProtocolBinding.ttl rename to infomodel/ProtocolBinding.ttl diff --git a/rdf/Provenance.ttl b/infomodel/Provenance.ttl similarity index 100% rename from rdf/Provenance.ttl rename to infomodel/Provenance.ttl diff --git a/rdf/Rule.ttl b/infomodel/Rule.ttl similarity index 100% rename from rdf/Rule.ttl rename to infomodel/Rule.ttl diff --git a/rdf/SecurityProfile.ttl b/infomodel/SecurityProfile.ttl similarity index 100% rename from rdf/SecurityProfile.ttl rename to infomodel/SecurityProfile.ttl diff --git a/rdf/Service.ttl b/infomodel/Service.ttl similarity index 100% rename from rdf/Service.ttl rename to infomodel/Service.ttl diff --git a/rdf/Spatial.ttl b/infomodel/Spatial.ttl similarity index 100% rename from rdf/Spatial.ttl rename to infomodel/Spatial.ttl diff --git a/rdf/Temporal.ttl b/infomodel/Temporal.ttl similarity index 100% rename from rdf/Temporal.ttl rename to infomodel/Temporal.ttl diff --git a/rdf/Unit.ttl b/infomodel/Unit.ttl similarity index 100% rename from rdf/Unit.ttl rename to infomodel/Unit.ttl From 3c48723f55b5ea662307c98f93e03583826e89d4 Mon Sep 17 00:00:00 2001 From: Sebastian Tramp Date: Thu, 28 Sep 2017 23:22:29 +0200 Subject: [PATCH 005/300] add first version of the contribution guide --- docs/CONTRIBUTING.md | 148 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 148 insertions(+) create mode 100644 docs/CONTRIBUTING.md diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md new file mode 100644 index 00000000..10d528f0 --- /dev/null +++ b/docs/CONTRIBUTING.md @@ -0,0 +1,148 @@ +# How to contribute + +This file documents the decisions we made for our processes and quality. + +## Changelog + +We document changes in the CHANGELOG.md on root level which is formatted and +maintained according to the rules documented on http://keepachangelog.com. + +## Commits + +### Requirements + +Good commits serve at least these important purposes: + +- To speed up the reviewing process +- To help us write a good release note +- To help the future maintainers and developers to find out why a particular change was made to the code or why a specific feature was added +- generate changelog automatically + +### Meta Data + +Please create commits with valid meta data only. This means, you have to configure your name and mail address like this: + +``` +git config --global user.name "$name" +git config --global user.email "$email" +``` + +### Structure + +The format of the commit message should be: + +``` + + + + +