diff options
Diffstat (limited to 'Monitoring/src/main/python/monitoringmodel/monitoring_parameters.owl')
-rw-r--r-- | Monitoring/src/main/python/monitoringmodel/monitoring_parameters.owl | 126 |
1 files changed, 126 insertions, 0 deletions
diff --git a/Monitoring/src/main/python/monitoringmodel/monitoring_parameters.owl b/Monitoring/src/main/python/monitoringmodel/monitoring_parameters.owl new file mode 100644 index 0000000..e197ee5 --- /dev/null +++ b/Monitoring/src/main/python/monitoringmodel/monitoring_parameters.owl @@ -0,0 +1,126 @@ +<?xml version="1.0"?> + + +<!DOCTYPE Ontology [ + <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > + <!ENTITY xml "http://www.w3.org/XML/1998/namespace" > + <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" > + <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" > +]> + + +<Ontology xmlns="http://www.w3.org/2002/07/owl#" + xml:base="http://fp7-novi.eu/monitoring_parameter.owl" + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" + xmlns:xsd="http://www.w3.org/2001/XMLSchema#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:xml="http://www.w3.org/XML/1998/namespace" + ontologyIRI="http://fp7-novi.eu/monitoring_parameter.owl"> + <Prefix name="" IRI="http://www.w3.org/2002/07/owl#"/> + <Prefix name="im" IRI="http://fp7-novi.eu/im.owl#"/> + <Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/> + <Prefix name="rdf" IRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/> + <Prefix name="xsd" IRI="http://www.w3.org/2001/XMLSchema#"/> + <Prefix name="rdfs" IRI="http://www.w3.org/2000/01/rdf-schema#"/> + <Prefix name="monitoring_parameter" IRI="http://fp7-novi.eu/monitoring_parameter.owl#"/> + <Import>http://fp7-novi.eu/unit.owl</Import> + <Annotation> + <AnnotationProperty abbreviatedIRI="rdfs:comment"/> + <Literal datatypeIRI="&xsd;string">Part of the NOVI Information Model (IM). Defines and classifies concepts that are necessary to describe monitoring services, their parametrization and the representation of the results.</Literal> + </Annotation> + <Annotation> + <AnnotationProperty IRI="#author"/> + <Literal datatypeIRI="&xsd;string">Mátray, Péter (matray@complex.elte.hu)</Literal> + </Annotation> + <Annotation> + <AnnotationProperty IRI="#author"/> + <Literal datatypeIRI="&xsd;string">Stéger, József (steger@complex.elte.hu)</Literal> + </Annotation> + <Declaration> + <Class IRI="#ParamValueType"/> + </Declaration> + <Declaration> + <Class IRI="#Parameter"/> + </Declaration> + <Declaration> + <ObjectProperty IRI="#hasParameter"/> + </Declaration> + <Declaration> + <ObjectProperty IRI="#hasType"/> + </Declaration> + <Declaration> + <DataProperty IRI="#paramName"/> + </Declaration> + <Declaration> + <NamedIndividual IRI="#Bool"/> + </Declaration> + <Declaration> + <NamedIndividual IRI="#Float"/> + </Declaration> + <Declaration> + <NamedIndividual IRI="#Integer"/> + </Declaration> + <Declaration> + <NamedIndividual IRI="#String"/> + </Declaration> + <Declaration> + <AnnotationProperty IRI="#author"/> + </Declaration> + <SubClassOf> + <Class IRI="#Parameter"/> + <ObjectExactCardinality cardinality="1"> + <ObjectProperty IRI="#hasType"/> + <Class IRI="#ParamValueType"/> + </ObjectExactCardinality> + </SubClassOf> + <SubClassOf> + <Class IRI="#Parameter"/> + <DataExactCardinality cardinality="1"> + <DataProperty IRI="#paramName"/> + </DataExactCardinality> + </SubClassOf> + <ClassAssertion> + <Class IRI="#ParamValueType"/> + <NamedIndividual IRI="#Bool"/> + </ClassAssertion> + <ClassAssertion> + <Class IRI="#ParamValueType"/> + <NamedIndividual IRI="#Float"/> + </ClassAssertion> + <ClassAssertion> + <Class IRI="#ParamValueType"/> + <NamedIndividual IRI="#Integer"/> + </ClassAssertion> + <ClassAssertion> + <Class IRI="#ParamValueType"/> + <NamedIndividual IRI="#String"/> + </ClassAssertion> + <FunctionalObjectProperty> + <ObjectProperty IRI="#hasType"/> + </FunctionalObjectProperty> + <ObjectPropertyDomain> + <ObjectProperty IRI="#hasType"/> + <Class IRI="#Parameter"/> + </ObjectPropertyDomain> + <ObjectPropertyRange> + <ObjectProperty IRI="#hasParameter"/> + <Class IRI="#Parameter"/> + </ObjectPropertyRange> + <ObjectPropertyRange> + <ObjectProperty IRI="#hasType"/> + <Class IRI="#ParamValueType"/> + </ObjectPropertyRange> + <DataPropertyDomain> + <DataProperty IRI="#paramName"/> + <Class IRI="#Parameter"/> + </DataPropertyDomain> + <DataPropertyRange> + <DataProperty IRI="#paramName"/> + <Datatype abbreviatedIRI="xsd:string"/> + </DataPropertyRange> +</Ontology> + + + +<!-- Generated by the OWL API (version 3.3.1957) http://owlapi.sourceforge.net --> + |