{
clear();
- ofRegistrant(registrantId);
+ ofRegistrantId(registrantId);
return searchSync();
}
{
clear();
- ofRegistrant(registrantId);
+ ofRegistrantId(registrantId);
ofType(type);
return searchSync();
}
}
}
-void SearchAgent::ofRegistrant(QString regId)
+void SearchAgent::ofRegistrantId(QString regId)
{
mEntity->add(PROPERTY__ISREGISTEREDBY, new Obj(regId));
}
mEntity->add(PROPERTY__ID, condition);
}
+void SearchAgent::ofServiceId(QString servceId)
+{
+ mEntity->add(PROPERTY__ISSERVEDON, new Obj(servceId));
+}
+
void SearchAgent::ofIds(QStringList searchStrings)
{
for (int i = 0; i < searchStrings.length(); i++) {
}
}
+
+void SearchAgent::ofTopic(QString searchString, bool exactMatch)
+{
+ if (exactMatch) {
+ mEntity->add(PROPERTY__TOPIC, searchString);
+ } else {
+ Condition* condition = new Condition();
+ condition->addRegex("(?i)" + searchString);
+ mEntity->add(PROPERTY__TOPIC, condition);
+ }
+}
+
+void SearchAgent::ofTheme(QString searchString, bool exactMatch)
+{
+ if (exactMatch) {
+ mEntity->add(PROPERTY__TOPIC, searchString);
+ } else {
+ Condition* condition = new Condition();
+ condition->addRegex("(?i)" + searchString);
+ mEntity->add(PROPERTY__TOPIC, condition);
+ }
+}
+
+void SearchAgent::ofLocality(QString searchString, bool exactMatch)
+{
+ if (exactMatch) {
+ mEntity->add(PROPERTY__LOCALITY, searchString);
+ } else {
+ Condition* condition = new Condition();
+ condition->addRegex("(?i)" + searchString);
+ mEntity->add(PROPERTY__LOCALITY, condition);
+ }
+}
+
+void SearchAgent::ofCountry(QString searchString, bool exactMatch)
+{
+ if (exactMatch) {
+ mEntity->add(PROPERTY__COUNTRY_NAME, searchString);
+ } else {
+ Condition* condition = new Condition();
+ condition->addRegex("(?i)" + searchString);
+ mEntity->add(PROPERTY__COUNTRY_NAME, condition);
+ }
+}
+
void SearchAgent::minutesOldData(int minutes)
{
mEntity->add(PROPERTY__FRESHNESS, new Variant(new Duration(0, 0, 0, 0, minutes, 0)));
void clear();
void clear(QString entityUri);
- void ofRegistrant(QString regId);
- void ofName(QString searchString, bool exactMatch = false);
- void ofType(QString type);
void ofId(QString searchString);
void ofIds(QStringList searchStrings);
+ void ofServiceId(QString searchString);
+ void ofRegistrantId(QString registrantId);
+ void ofName(QString searchString, bool exactMatch = false);
+ void ofType(QString type);
void ofDescription(QString searchString);
void ofOutputCategory(QString category);
void ofInputCategory(QString category);
+ void ofTopic(QString searchString, bool exactMatch = false);
+ void ofTheme(QString searchString, bool exactMatch = false);
+ void ofLocality(QString searchString, bool exactMatch = false);
+ void ofCountry(QString searchString, bool exactMatch = false);
+
void anyOfNames(QStringList searchStrings);
void anyOfTypes(QStringList types);
void minutesOldData(int minutes);
-echo " *** Combining vocabularies into smartapi.ttl *** "
+echo " *** Combining vocabularies into smartapi_merged-1.0.ttl *** "
-cat src/1.0/smartapi-1.0_base.ttl src/1.0/CommonStructureOntology-1.0.ttl src/1.0/DataOntology-1.0.ttl src/1.0/EntityOntology-1.0.ttl src/1.0/IndividualsOntology-1.0.ttl src/1.0/NetworkingOntology-1.0.ttl src/1.0/QuantityUnitOntology-1.0.ttl > smartapi-1.0.ttl
+cat src/1.0/AbstractEntityOntology-1.0.ttl src/1.0/CommonStructureOntology-1.0.ttl src/1.0/DataOntology-1.0.ttl src/1.0/EntityOntology-1.0.ttl src/1.0/EnvironmentOntology-1.1.ttl src/1.0/IndividualsOntology-1.0.ttl src/1.0/NetworkingOntology-1.0.ttl src/1.0/PhysicalEntityOntology-1.1.ttl src/1.0/SecurityOntology-1.0.ttl src/1.0/TradingOntology-1.0.ttl src/1.0/QuantityUnitOntology-1.0.ttl > smartapi_merged-1.0.ttl
echo " *** Done *** "
# See the License for the specific language governing permissions and
# limitations under the License.
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
-@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
-@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
-@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
-@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
+@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
+@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
+@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
+@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . #Semantic web vocabulary status ontology
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
-@prefix saref: <https://w3id.org/saref#>. #SAREF smart building appliances ontology
-@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
+@prefix saref: <https://w3id.org/saref#>. #SAREF smart building appliances ontology
+@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
-@prefix smartapi: <http://www.smart-api.io/ontology/1.0/>.
-@base <http://www.smart-api.io/ontology/1.0/>.
+@prefix smartapi: <http://smart-api.io/ontology/1.0/smartapi#>.
+@base <http://smart-api.io/ontology/1.0/>.
# smartapi entities that represent abstract objects
dc:contributor [a foaf:Person ; foaf:name "Pyry Lehtimäki" ] ;
dc:contributor [a foaf:Person ; foaf:name "Jani Hursti" ] ;
vann:preferredNamespacePrefix "smartapi" ;
- vann:preferredNamespaceUri <http://www.smart-api.io/ontology/1.0/> ;
- owl:versionIRI <http://www.smart-api.io/ontology/1.0/AbstractEntityOntology/1.0> ;
+ vann:preferredNamespaceUri <http://smart-api.io/ontology/1.0/smartapi#> ;
+ owl:versionIRI <http://smart-api.io/ontology/1.0/AbstractEntityOntology> ;
owl:versionInfo "v1.0" .
# See the License for the specific language governing permissions and
# limitations under the License.
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
-@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
-@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
-@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
-@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
+@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
+@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
+@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
+@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . #Semantic web vocabulary status ontology
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>.
@prefix gr: <http://purl.org/goodrelations/v1#> .
-@prefix smartapi: <https://www.smart-api.io/ontology/1.0/>.
-@base <https://www.smart-api.io/ontology/1.0/>.
+@prefix smartapi: <http://smart-api.io/ontology/1.0/smartapi#>.
+@base <http://smart-api.io/ontology/1.0/>.
#all standard smartapi quantities and units
dc:contributor [a foaf:Person ; foaf:name "Pyry Lehtimäki" ] ;
dc:contributor [a foaf:Person ; foaf:name "Jani Hursti" ] ;
vann:preferredNamespacePrefix "smartapi" ;
- vann:preferredNamespaceUri <http://www.smart-api.io/ontology/1.0/> ;
- owl:versionIRI <http://www.smart-api.io/ontology/1.0/CommonStructureOntology/1.0> ;
+ vann:preferredNamespaceUri <http://smart-api.io/ontology/1.0/smartapi#> ;
+ owl:versionIRI <http://smart-api.io/ontology/1.0/CommonStructureOntology> ;
owl:versionInfo "v1.0" .
# object
rdfs:range xsd:string ;
vs:term_status "testing" .
-smartapi:topic a owl:DatatypeProperty ;
- rdfs:label "Topic"@en ;
- rdfs:comment "An MQTT topic."@en ;
- rdfs:isDefinedBy smartapi:CommonStructureOntology ;
- rdfs:range xsd:string ;
- vs:term_status "testing" .
-
# ability, availability, controllability, validity
smartapi:Ability a owl:Class ;
# See the License for the specific language governing permissions and
# limitations under the License.
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
-@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
-@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
-@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
-@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
+@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
+@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
+@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
+@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . #Semantic web vocabulary status ontology
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix gr: <http://purl.org/goodrelations/v1#> .
-@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
+@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
-@prefix smartapi: <http://www.smart-api.io/ontology/1.0/>.
-@base <http://www.smart-api.io/ontology/1.0/>.
+@prefix smartapi: <http://smart-api.io/ontology/1.0/smartapi#>.
+@base <http://smart-api.io/ontology/1.0/>.
#all standard smartapi quantities and units
dc:contributor [a foaf:Person ; foaf:name "Pyry Lehtimäki" ] ;
dc:contributor [a foaf:Person ; foaf:name "Jani Hursti" ] ;
vann:preferredNamespacePrefix "smartapi" ;
- vann:preferredNamespaceUri <http://www.smart-api.io/ontology/1.0> ;
- owl:versionIRI <http://www.smart-api.io/ontology/DataOntology/1.0> ;
+ vann:preferredNamespaceUri <http://smart-api.io/ontology/1.0/smartapi#> ;
+ owl:versionIRI <http://smart-api.io/ontology/DataOntology> ;
owl:versionInfo "v1.0" .
# value object
rdfs:subPropertyOf smartapi:value ;
rdfs:domain smartapi:ValueObject .
+# classification by theme and topic
+
+smartapi:topic a owl:DatatypeProperty ;
+ rdfs:label "Topic"@en ;
+ rdfs:comment "A topic for the data that is being processed. May also be used as a technical classifier (e.g. in MQTT protocol)"@en ;
+ rdfs:isDefinedBy smartapi:DataOntology ;
+ rdfs:range xsd:string ;
+ vs:term_status "testing" .
+
+smartapi:theme a owl:DatatypeProperty ;
+ rdfs:label "Theme"@en ;
+ rdfs:comment "The theme of the data that is being processed."@en ;
+ rdfs:isDefinedBy smartapi:DataOntology ;
+ rdfs:range xsd:string ;
+ vs:term_status "testing" .
+
+
# temporal concepts
smartapi:TemporalEntity a owl:Class ;
rdfs:isDefinedBy smartapi:DataOntology ;
vs:term_status "testing" .
+
# capacity
smartapi:Capacity a owl:Class ;
rdfs:range rdf:XMLLiteral ;
rdfs:isDefinedBy smartapi:DataOntology .
+
# valueobject subclass properties
smartapi:price a owl:ObjectProperty ;
rdfs:subPropertyOf smartapi:valueObject ;
rdfs:isDefinedBy smartapi:DataOntology .
+
# hasChanged and checksum
smartapi:checksum a owl:DatatypeProperty ;
rdfs:domain smartapi:Evaluation ;
rdfs:range smartapi:Distribution .
+
# category object property (values are in the individuals ontology)
smartapi:category a owl:ObjectProperty ;
rdfs:range smartapi:Category;
vs:term_status "testing".
+
# output values
smartapi:outputValues a owl:ObjectProperty ;
rdfs:range smartapi:ValueObject;
vs:term_status "testing".
+
# restriction
smartapi:Restriction a owl:Class ;
rdfs:range owl:Restriction ;
vs:term_status "testing".
+
# optional
smartapi:optional a owl:DatatypeProperty ;
rdfs:isDefinedBy smartapi:DataOntology ;
vs:term_status "testing" .
+
# calculation methods
smartapi:calculationMethod a owl:ObjectProperty ;
rdfs:isDefinedBy smartapi:DataOntology ;
vs:term_status "testing" .
+
# default
smartapi:Default a owl:Class ;
rdfs:isDefinedBy smartapi:DataOntology ;
vs:term_status "testing".
+
# misc data properties
smartapi:energyConsumption a owl:ObjectProperty ;
vs:term_status "testing" ;
rdfs:isDefinedBy smartapi:DataOntology.
+
# one dimensional length
smartapi:length a owl:DatatypeProperty ;
# See the License for the specific language governing permissions and
# limitations under the License.
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
-@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
-@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
-@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
-@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
+@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
+@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
+@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
+@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . #Semantic web vocabulary status ontology
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
-@prefix saref: <https://w3id.org/saref#>. #SAREF smart building appliances ontology
-@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
+@prefix saref: <https://w3id.org/saref#>. #SAREF smart building appliances ontology
+@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
-@prefix smartapi: <http://www.smart-api.io/ontology/1.0/>.
-@base <http://www.smart-api.io/ontology/1.0/>.
+@prefix smartapi: <http://smart-api.io/ontology/1.0/smartapi#>.
+@base <http://smart-api.io/ontology/1.0/>.
#all standard smartapi entities
dc:contributor [a foaf:Person ; foaf:name "Pyry Lehtimäki" ] ;
dc:contributor [a foaf:Person ; foaf:name "Jani Hursti" ] ;
vann:preferredNamespacePrefix "smartapi" ;
- vann:preferredNamespaceUri <http://www.smart-api.io/ontology/1.0/> ;
- owl:versionIRI <http://www.smart-api.io/ontology/1.0/EntityOntology/1.0> ;
+ vann:preferredNamespaceUri <http://smart-api.io/ontology/1.0/smartapi#> ;
+ owl:versionIRI <http://smart-api.io/ontology/1.0/EntityOntology> ;
owl:versionInfo "v1.0" .
# entity
rdfs:range smartapi:Entity ;
rdfs:isDefinedBy smartapi:EntityOntology .
+smartapi:isInfluencedBy rdf:type owl:ObjectProperty ;
+ rdfs:label "Is influenced by"@en ;
+ rdfs:comment "Indicate this resource is influenced by the target resource."@en ;
+ rdfs:range smartapi:Entity ;
+ rdfs:domain smartapi:Entity ;
+ rdfs:isDefinedBy smartapi:EntityOntology .
+
smartapi:isComposedBy rdf:type owl:ObjectProperty ;
rdfs:label "Is composed by"@en ;
rdfs:comment "This resource is composed by the target resource."@en ;
rdfs:domain smartapi:Entity ;
rdfs:isDefinedBy smartapi:EntityOntology .
-smartapi:isInfluencedBy rdf:type owl:ObjectProperty ;
- rdfs:label "Is influenced by"@en ;
- rdfs:comment "Indicate this resource is influenced by the target resource."@en ;
- rdfs:range smartapi:Entity ;
- rdfs:domain smartapi:Entity ;
- rdfs:isDefinedBy smartapi:EntityOntology .
-
smartapi:isControlledBy a owl:ObjectProperty;
rdfs:label "Is controlled by"@en ;
rdfs:comment "Indicates what resource controls what resource."@en ;
- rdfs:isDefinedBy smartapi:CommonStructureOntology ;
+ rdfs:isDefinedBy smartapi:EntityOntology ;
rdfs:range smartapi:Entity ;
rdfs:domain smartapi:Entity ;
vs:term_status "testing" .
+smartapi:controls a owl:ObjectProperty;
+ rdfs:label "Controls"@en ;
+ rdfs:comment "Indicates what resource is controlling what resource."@en ;
+ rdfs:isDefinedBy smartapi:EntityOntology ;
+ rdfs:range smartapi:Entity ;
+ rdfs:domain smartapi:Entity ;
+ vs:term_status "testing" .
+
smartapi:isManagedBy a owl:ObjectProperty;
rdfs:label "Is managed by"@en ;
rdfs:comment "Indicates what resource manages what resource."@en ;
- rdfs:isDefinedBy smartapi:CommonStructureOntology ;
+ rdfs:isDefinedBy smartapi:EntityOntology ;
rdfs:range smartapi:Entity ;
rdfs:domain smartapi:Entity ;
vs:term_status "testing" .
smartapi:manages a owl:ObjectProperty;
rdfs:label "Manages"@en ;
rdfs:comment "Indicates what resource is managing what resource."@en ;
- rdfs:isDefinedBy smartapi:CommonStructureOntology ;
+ rdfs:isDefinedBy smartapi:EntityOntology ;
rdfs:range smartapi:Entity ;
rdfs:domain smartapi:Entity ;
vs:term_status "testing" .
+smartapi:isServedBy a owl:ObjectProperty;
+ rdfs:label "Is managed by"@en ;
+ rdfs:comment "Indicates a resource such as a dataset is served by another entity."@en ;
+ rdfs:isDefinedBy smartapi:CommonStructOntology ;
+ rdfs:range smartapi:Entity ;
+ rdfs:domain smartapi:Entity ;
+ vs:term_status "testing" .
+
+smartapi:serves a owl:ObjectProperty;
+ rdfs:label "Serves"@en ;
+ rdfs:comment "Indicates what resource is serving what resource, for example a given service serves a dataset."@en ;
+ rdfs:isDefinedBy smartapi:EntityOntology ;
+ rdfs:range smartapi:Entity ;
+ rdfs:domain smartapi:Entity ;
+ vs:term_status "testing" .
+
smartapi:hasPart a owl:ObjectProperty, owl:TransitiveProperty;
rdfs:label "Has part"@en ;
rdfs:comment "Indicate this resource has part of other resource."@en ;
# See the License for the specific language governing permissions and
# limitations under the License.
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
-@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
-@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
-@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
-@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
+@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
+@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
+@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
+@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . #Semantic web vocabulary status ontology
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
-@prefix saref: <https://w3id.org/saref#>. #SAREF smart building appliances ontology
-@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
+@prefix saref: <https://w3id.org/saref#>. #SAREF smart building appliances ontology
+@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
-@prefix smartapi: <http://www.smart-api.io/ontology/1.0/>.
-@base <http://www.smart-api.io/ontology/1.0/>.
+@prefix smartapi: <http://smart-api.io/ontology/1.0/smartapi#>.
+@base <http://smart-api.io/ontology/1.0/>.
# smartapi entities related to physcal environment
dc:contributor [a foaf:Person ; foaf:name "Pyry Lehtimäki" ] ;
dc:contributor [a foaf:Person ; foaf:name "Jani Hursti" ] ;
vann:preferredNamespacePrefix "smartapi" ;
- vann:preferredNamespaceUri <http://www.smart-api.io/ontology/1.0/> ;
- owl:versionIRI <http://www.smart-api.io/ontology/1.0/EnvironmentOntology/1.0> ;
+ vann:preferredNamespaceUri <http://smart-api.io/ontology/1.0/smartapi#> ;
+ owl:versionIRI <http://smart-api.io/ontology/1.0/EnvironmentOntology> ;
owl:versionInfo "v1.0" .
# See the License for the specific language governing permissions and
# limitations under the License.
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
-@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
-@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
-@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
-@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
+@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
+@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
+@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
+@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . #Semantic web vocabulary status ontology
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix gr: <http://purl.org/goodrelations/v1#> .
-@prefix smartapi: <http://www.smart-api.io/ontology/1.0/>.
-@base <http://www.smart-api.io/ontology/1.0/>.
+@prefix smartapi: <http://smart-api.io/ontology/1.0/smartapi#>.
+@base <http://smart-api.io/ontology/1.0/>.
#all standard smartapi quantities and units
dc:contributor [a foaf:Person ; foaf:name "Hannu Järvinen" ] ;
dc:contributor [a foaf:Person ; foaf:name "Pyry Lehtimäki" ] ;
vann:preferredNamespacePrefix "smartapi" ;
- vann:preferredNamespaceUri <http://www.smart-api.io/ontology/1.0/> ;
- owl:versionIRI <http://www.smart-api.io/ontology/1.0/IndividualsOntology/1.0> ;
+ vann:preferredNamespaceUri <http://smart-api.io/ontology/1.0/smartapi#> ;
+ owl:versionIRI <http://smart-api.io/ontology/1.0/IndividualsOntology> ;
owl:versionInfo "v1.0" .
# See the License for the specific language governing permissions and
# limitations under the License.
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
-@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
-@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
-@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
-@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
-@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . #Semantic web vocabulary status ontology
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
+@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
+@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
+@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
+@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
+@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . #Semantic web vocabulary status ontology
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
-@prefix smartapi: <http://www.smart-api.io/ontology/1.0/>.
-@base <http://www.smart-api.io/ontology/1.0/>.
+@prefix smartapi: <http://smart-api.io/ontology/1.0/smartapi#>.
+@base <http://smart-api.io/ontology/1.0/>.
# standard smartapi definitions needed for network communication
dc:modified "2016-10-06"^^xsd:date ;
dc:creator [a foaf:Person ; foaf:name "Hannu Järvinen" ] ;
dc:creator [a foaf:Person ; foaf:name "Jani Hursti" ] ;
- dc:contributor <http://www.vtt.fi/JarmoKalaoja> ;
- dc:contributor <http://www.maxime-lefrancois.info/me#> ;
- dc:contributor <http://zimmer.aprilfoolsreview.com/antoine#me> ;
dc:contributor [a foaf:Person ; foaf:name "Erkki Siira" ] ;
dc:contributor [a foaf:Person ; foaf:name "Takoua Ghariani" ] ;
dc:contributor [a foaf:Person ; foaf:name "Marc Girod-Genet" ] ;
dc:contributor [a foaf:Person ; foaf:name "Pyry Lehtimäki" ] ;
vann:preferredNamespacePrefix "smartapi" ;
- vann:preferredNamespaceUri <http://www.smart-api.io/ontology/1.0/> ;
- owl:versionIRI <http://www.smart-api.io/ontology/1.0/NetworkingOntology/1.0> ;
+ vann:preferredNamespaceUri <http://smart-api.io/ontology/1.0/smartapi#> ;
+ owl:versionIRI <http://smart-api.io/ontology/1.0/NetworkingOntology> ;
owl:versionInfo "v1.0" .
# message
# See the License for the specific language governing permissions and
# limitations under the License.
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
-@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
-@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
-@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
-@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
+@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
+@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
+@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
+@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . #Semantic web vocabulary status ontology
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
-@prefix saref: <https://w3id.org/saref#>. #SAREF smart building appliances ontology
-@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
+@prefix saref: <https://w3id.org/saref#>. #SAREF smart building appliances ontology
+@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
-@prefix smartapi: <http://www.smart-api.io/ontology/1.0/>.
-@base <http://www.smart-api.io/ontology/1.0/>.
+@prefix smartapi: <http://smart-api.io/ontology/1.0/smartapi#>.
+@base <http://smart-api.io/ontology/1.0/>.
# smartapi entities that represent physical objects
dc:contributor [a foaf:Person ; foaf:name "Pyry Lehtimäki" ] ;
dc:contributor [a foaf:Person ; foaf:name "Jani Hursti" ] ;
vann:preferredNamespacePrefix "smartapi" ;
- vann:preferredNamespaceUri <http://www.smart-api.io/ontology/1.0/> ;
- owl:versionIRI <http://www.smart-api.io/ontology/1.0/PhysicalEntityOntology/1.0> ;
+ vann:preferredNamespaceUri <http://smart-api.io/ontology/1.0/smartapi#> ;
+ owl:versionIRI <http://smart-api.io/ontology/1.0/PhysicalEntityOntology> ;
owl:versionInfo "v1.0" .
# See the License for the specific language governing permissions and
# limitations under the License.
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
-@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
-@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
-@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
-@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
-@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . #Semantic web vocabulary status ontology
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
+@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
+@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
+@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
+@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
+@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . #Semantic web vocabulary status ontology
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
-@prefix saref: <https://w3id.org/saref#>. #SAREF smart building appliances ontology
-@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
+@prefix saref: <https://w3id.org/saref#>. #SAREF smart building appliances ontology
+@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
@prefix qudt-quantity: <http://data.nasa.gov/qudt/owl/quantity#> . #QUDT quantities
-@prefix qudt-unit: <http://data.nasa.gov/qudt/owl/unit#> . #QUDT units
+@prefix qudt-unit: <http://data.nasa.gov/qudt/owl/unit#> . #QUDT units
-@prefix smartapi: <http://www.smart-api.io/ontology/1.0/>.
-@base <http://www.smart-api.io/ontology/1.0/>.
+@prefix smartapi: <http://smart-api.io/ontology/1.0/smartapi#>.
+@base <http://smart-api.io/ontology/1.0/>.
#Core roles and activities (for devices and systems), this is related to actor module and could specialize it but now here defined as new vocabulary
smartapi:QuantityUnitOntology a owl:Ontology , voaf:Ontology ;
dc:contributor [a foaf:Person ; foaf:name "Pyry Lehtimäki" ] ;
dc:contributor [a foaf:Person ; foaf:name "Jani Hursti" ] ;
vann:preferredNamespacePrefix "smartapi" ;
- vann:preferredNamespaceUri <http://www.smart-api.io/ontology/1.0/> ;
- owl:versionIRI <http://www.smart-api.io/ontology/1.0/QuantityUnitOntology/1.0> ;
+ vann:preferredNamespaceUri <http://smart-api.io/ontology/1.0/smartapi#> ;
+ owl:versionIRI <http://smart-api.io/ontology/1.0/QuantityUnitOntology> ;
owl:versionInfo "v1.0" .
# See the License for the specific language governing permissions and
# limitations under the License.
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
-@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
-@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
-@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
-@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
+@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
+@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
+@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
+@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . #Semantic web vocabulary status ontology
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix gr: <http://purl.org/goodrelations/v1#> .
-@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
+@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
-@prefix smartapi: <http://www.smart-api.io/ontology/1.0/>.
-@base <http://www.smart-api.io/ontology/1.0/>.
+@prefix smartapi: <http://smart-api.io/ontology/1.0/smartapi#>.
+@base <http://smart-api.io/ontology/1.0/>.
#smartapi classes related to network security
dc:contributor [a foaf:Person ; foaf:name "Pyry Lehtimäki" ] ;
dc:contributor [a foaf:Person ; foaf:name "Jani Hursti" ] ;
vann:preferredNamespacePrefix "smartapi" ;
- vann:preferredNamespaceUri <http://www.smart-api.io/ontology/1.0> ;
- owl:versionIRI <http://www.smart-api.io/ontology/SecurityOntology/1.0> ;
+ vann:preferredNamespaceUri <http://smart-api.io/ontology/1.0/smartapi#> ;
+ owl:versionIRI <http://smart-api.io/ontology/1.0/SecurityOntology> ;
owl:versionInfo "v1.0" .
# security
# See the License for the specific language governing permissions and
# limitations under the License.
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
-@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
-@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
-@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
-@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
+@prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
+@prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
+@prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
+@prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . #Semantic web vocabulary status ontology
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix gr: <http://purl.org/goodrelations/v1#> .
-@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
+@prefix qudt: <http://data.nasa.gov/qudt/owl/qudt#> . #QUDT
-@prefix smartapi: <http://www.smart-api.io/ontology/1.0/>.
-@base <http://www.smart-api.io/ontology/1.0/>.
+@prefix smartapi: <http://smart-api.io/ontology/1.0/smartapi#>.
+@base <http://smart-api.io/ontology/1.0/>.
#smartapi classes related to trading and pricing
smartapi:TrandingOntology a owl:Ontology , voaf:Ontology ;
- dc:title "SmartAPI-DataOntology ontology"@en ;
- dc:description "The Smart API data Ontology."@en ;
+ dc:title "SmartAPI-TradingOntology ontology"@en ;
+ dc:description "The Smart API trading Ontology."@en ;
dc:issued "2016-01-26"^^xsd:date ;
dc:modified "2016-10-06"^^xsd:date ;
- dc:creator <http://www.vtt.fi/JarmoKalaoja> ;
- dc:creator <http://www.maxime-lefrancois.info/me#> ;
- dc:contributor <http://zimmer.aprilfoolsreview.com/antoine#me> ;
- dc:contributor [a foaf:Person ; foaf:name "Erkki Siira" ] ;
- dc:contributor [a foaf:Person ; foaf:name "Takoua Ghariani" ] ;
- dc:contributor [a foaf:Person ; foaf:name "Marc Girod-Genet" ] ;
dc:contributor [a foaf:Person ; foaf:name "Hannu Järvinen" ] ;
- dc:contributor [a foaf:Person ; foaf:name "Pyry Lehtimäki" ] ;
dc:contributor [a foaf:Person ; foaf:name "Jani Hursti" ] ;
vann:preferredNamespacePrefix "smartapi" ;
- vann:preferredNamespaceUri <http://www.smart-api.io/ontology/1.0/> ;
- owl:versionIRI <http://www.smart-api.io/ontology/TradingOntology/1.0> ;
+ vann:preferredNamespaceUri <http://smart-api.io/ontology/1.0/smartapi#> ;
+ owl:versionIRI <http://smart-api.io/ontology/1.0/TradingOntology> ;
owl:versionInfo "v1.0" .
# boolean flags
-
+
smartapi:isCurrentlyFrozen a owl:ObjectProperty ;
rdfs:label "Is currently frozen"@en ;
rdfs:range xsd:boolean ;
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
-@prefix smartapi: <http://www.smart-api.io/ontology/1.0/>.
+@prefix smartapi: <http://smart-api.io/ontology/1.0/>.
-<http://www.smart-api.io/ontology/1.0/> rdf:type voaf:Ontology , owl:Ontology ;
+<http://smart-api.io/ontology/1.0/> rdf:type voaf:Ontology , owl:Ontology ;
dc:title "Smart API Ontology"@en ;
dc:description "The Smart API ontology, that glues together all of the Smart API vocabularies"@en ;
dc:creator <http://maxime-lefrancois.info/me#> ;
dc:contributor [a foaf:Person ; foaf:name "Jani Hursti" ] ;
dc:contributor [a foaf:Person ; foaf:name "Hannu Järvinen" ] ;
dc:contributor [a foaf:Person ; foaf:name "Pyry Lehtimäki" ] ;
- dc:issued "2016-05-25"^^xsd:date ;
+ dc:contributor [a foaf:Person ; foaf:name "Jani Hursti" ] ;
+ dc:issued "2019-01-01"^^xsd:date ;
vann:preferredNamespacePrefix "smartapi" ;
- vann:preferredNamespaceUri <https://www.smart-api.io/ontology/1.0/> ;
- owl:versionIRI <https://www.smart-api.io/ontology/1.0> ;
+ vann:preferredNamespaceUri <http://smart-api.io/ontology/1.0/> ;
+ owl:versionIRI <http://smart-api.io/ontology/1.0> ;
owl:versionInfo "v1.0" ;
owl:imports <http://data.qudt.org/qudt/owl/1.0.0/qudt.owl> ;
owl:imports <http://data.qudt.org/qudt/owl/1.0.0/quantity.owl> ;
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
-@prefix smartapi: <http://www.smart-api.io/ontology/1.0/>.
+@prefix smartapi: <http://smart-api.io/ontology/1.0/>.
-<http://www.smart-api.io/ontology/1.0/> rdf:type voaf:Ontology , owl:Ontology ;
+<http://smart-api.io/ontology/1.0/> rdf:type voaf:Ontology , owl:Ontology ;
dc:title "Smart API Ontology"@en ;
dc:description "The Smart API ontology, that glues together all of the Smart API vocabularies"@en ;
- dc:creator <http://maxime-lefrancois.info/me#> ;
- dc:contributor <http://www.vtt.fi/JarmoKalaoja> ;
- dc:contributor <http://zimmer.aprilfoolsreview.com/antoine#me> ;
- dc:contributor [a foaf:Person ; foaf:name "Erkki Siira" ] ;
- dc:contributor [a foaf:Person ; foaf:name "Takoua Ghariani" ] ;
- dc:contributor [a foaf:Person ; foaf:name "Marc Girod-Genet" ] ;
dc:contributor [a foaf:Person ; foaf:name "Jani Hursti" ] ;
- dc:contributor [a foaf:Person ; foaf:name "Hannu Järvinen" ] ;
- dc:contributor [a foaf:Person ; foaf:name "Pyry Lehtimäki" ] ;
- dc:issued "2016-05-25"^^xsd:date ;
+ dc:issued "2019-01-01"^^xsd:date ;
vann:preferredNamespacePrefix "smartapi" ;
- vann:preferredNamespaceUri <https://www.smart-api.io/ontology/1.0/> ;
- owl:versionIRI <https://www.smart-api.io/ontology/1.0> ;
+ vann:preferredNamespaceUri <http://smart-api.io/ontology/1.0/> ;
+ owl:versionIRI <http://smart-api.io/ontology/1.0> ;
owl:versionInfo "v1.0" ;
owl:imports smartapi:AbstractEntityOntology-1.0.ttl ;
owl:imports smartapi:CommonStructureOntology-1.0.ttl ;