Created
May 12, 2014 14:00
-
-
Save AlexanderWillner/f8a4884653d15b735b5e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@prefix : <http://testbeds.eu/ontology#> . | |
@prefix dc: <http://purl.org/dc/elements/1.1/> . | |
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> . | |
@prefix nml: <http://schemas.ogf.org/nml/base/2013/02#> . | |
@prefix omn: <http://open-multinet.info/ontology#> . | |
@prefix owl: <http://www.w3.org/2002/07/owl#> . | |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
@prefix xml: <http://www.w3.org/XML/1998/namespace> . | |
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
@prefix foaf: <http://xmlns.com/foaf/0.1/> . | |
@prefix novi: <http://fp7-novi.eu/im.owl#> . | |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
@base <http://testbeds.eu/ontology> . | |
<http://testbeds.eu/ontology> rdf:type owl:Ontology ; | |
rdfs:seeAlso "http://testbeds.eu"^^xsd:anyURI ; | |
dc:creator "Alexander Willner <[email protected]>" ; | |
owl:versionInfo "0.1" ; | |
dc:date "2014-05-12" ; | |
dc:rights "Creative Commons Attribution Licence"@en ; | |
dc:title "FanTaaStic Advertisement Ontology Example"@en ; | |
rdfs:comment "FanTaaStic Advertisement Ontology."@en ; | |
dc:description "Initial example."@en . | |
################################################################# | |
# | |
# Annotation properties | |
# | |
################################################################# | |
### http://open-multinet.info/ontology#certificate | |
omn:certificate rdf:type owl:AnnotationProperty . | |
### http://open-multinet.info/ontology#partOfGroup | |
omn:partOfGroup rdf:type owl:AnnotationProperty . | |
### http://www.w3.org/2003/01/geo/wgs84_pos#lat | |
geo:lat rdf:type owl:AnnotationProperty . | |
### http://www.w3.org/2003/01/geo/wgs84_pos#long | |
geo:long rdf:type owl:AnnotationProperty . | |
### http://xmlns.com/foaf/0.1/based_near | |
foaf:based_near rdf:type owl:AnnotationProperty . | |
### http://xmlns.com/foaf/0.1/depiction | |
foaf:depiction rdf:type owl:AnnotationProperty . | |
### http://xmlns.com/foaf/0.1/homepage | |
foaf:homepage rdf:type owl:AnnotationProperty . | |
### http://xmlns.com/foaf/0.1/mbox | |
foaf:mbox rdf:type owl:AnnotationProperty . | |
################################################################# | |
# | |
# Data properties | |
# | |
################################################################# | |
### http://testbeds.eu/ontology#amount | |
:amount rdf:type owl:DatatypeProperty ; | |
rdfs:comment "Amount of available service chunks in hours"@en ; | |
rdfs:domain nml:Service ; | |
rdfs:range xsd:decimal . | |
################################################################# | |
# | |
# Classes | |
# | |
################################################################# | |
### http://open-multinet.info/ontology#Testbed | |
omn:Testbed rdf:type owl:Class . | |
### http://schemas.ogf.org/nml/base/2013/02#Service | |
nml:Service rdf:type owl:Class . | |
### http://testbeds.eu/ontology#BusinessPlanConsultation | |
:BusinessPlanConsultation rdf:type owl:Class ; | |
rdfs:label "Business Plan Consultation"@en ; | |
rdfs:subClassOf :ConsultingServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#ConsultingServices | |
:ConsultingServices rdf:type owl:Class ; | |
rdfs:subClassOf nml:Service . | |
### http://testbeds.eu/ontology#FeasibilityAnalysis | |
:FeasibilityAnalysis rdf:type owl:Class ; | |
rdfs:label "Business Plan Consultation"@en ; | |
rdfs:subClassOf :ConsultingServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#FunctionalTesting | |
:FunctionalTesting rdf:type owl:Class ; | |
rdfs:label "Functional Testing"@en ; | |
rdfs:subClassOf :TestSupportServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#IMSTestbed | |
:IMSTestbed rdf:type owl:Class ; | |
rdfs:subClassOf omn:Testbed ; | |
rdfs:comment "IMS + IMS Enabler and IMS Clients fixed, mobile."@en . | |
### http://testbeds.eu/ontology#PerformanceTestConsulting | |
:PerformanceTestConsulting rdf:type owl:Class ; | |
rdfs:label "Performance Test Consulting"@en ; | |
rdfs:subClassOf :ConsultingServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#PerformanceTesting | |
:PerformanceTesting rdf:type owl:Class ; | |
rdfs:label "Performance Testing"@en ; | |
rdfs:subClassOf :TestSupportServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#StructuralCodeAssessment | |
:StructuralCodeAssessment rdf:type owl:Class ; | |
rdfs:label "Structural Code Assessment"@en ; | |
rdfs:subClassOf :ConsultingServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#StructuralCodeEvaluation | |
:StructuralCodeEvaluation rdf:type owl:Class ; | |
rdfs:label "Structural Code Evaluation"@en ; | |
rdfs:subClassOf :TestSupportServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#TestAutomation | |
:TestAutomation rdf:type owl:Class ; | |
rdfs:label "Test Automation"@en ; | |
rdfs:subClassOf :TestSupportServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#TestAutomationConsulting | |
:TestAutomationConsulting rdf:type owl:Class ; | |
rdfs:label "Test Automation Consulting"@en ; | |
rdfs:subClassOf :ConsultingServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#TestDataManagement | |
:TestDataManagement rdf:type owl:Class ; | |
rdfs:label "Test Data Management"@en ; | |
rdfs:subClassOf :TestSupportServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#TestEnvironmentManagement | |
:TestEnvironmentManagement rdf:type owl:Class ; | |
rdfs:label "Test Environment Management = Test Setup Support"@en ; | |
rdfs:subClassOf :TestSupportServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#TestProcessConsulting | |
:TestProcessConsulting rdf:type owl:Class ; | |
rdfs:label "Test Process Consulting"@en ; | |
rdfs:subClassOf :ConsultingServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#TestResultsAnalysis | |
:TestResultsAnalysis rdf:type owl:Class ; | |
rdfs:label "Test Results Analysis"@en ; | |
rdfs:subClassOf :TestSupportServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#TestStrategyDefinition | |
:TestStrategyDefinition rdf:type owl:Class ; | |
rdfs:label "Test Strategy Definition"@en ; | |
rdfs:subClassOf :ConsultingServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#TestSupportServices | |
:TestSupportServices rdf:type owl:Class ; | |
rdfs:subClassOf nml:Service . | |
### http://testbeds.eu/ontology#ToolProductEvaluationAdministrationAndManagement | |
:ToolProductEvaluationAdministrationAndManagement rdf:type owl:Class ; | |
rdfs:label "Tool Product Evaluation Administration And Management"@en ; | |
rdfs:subClassOf :ConsultingServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#TransitionToManagedServices | |
:TransitionToManagedServices rdf:type owl:Class ; | |
rdfs:label "Transition To Managed Services"@en ; | |
rdfs:subClassOf :ConsultingServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#UsabilityAndAccessibilityTesting | |
:UsabilityAndAccessibilityTesting rdf:type owl:Class ; | |
rdfs:label "Usability and Accessibility testing"@en ; | |
rdfs:subClassOf :TestSupportServices ; | |
rdfs:comment "Description of this service."@en . | |
### http://testbeds.eu/ontology#WirelessMobileBroadbandTestbed | |
:WirelessMobileBroadbandTestbed rdf:type owl:Class ; | |
rdfs:subClassOf omn:Testbed ; | |
rdfs:comment "EPC-based 2G, 3G, LTE and Clients."@en . | |
### http://www.w3.org/2003/01/geo/wgs84_pos#Point | |
geo:Point rdf:type owl:Class . | |
################################################################# | |
# | |
# Individuals | |
# | |
################################################################# | |
### http://testbeds.eu/ontology#FeasibilityAnalysis1 | |
:FeasibilityAnalysis1 rdf:type :FeasibilityAnalysis , | |
owl:NamedIndividual ; | |
rdfs:label "Feasibility Analysis"@en ; | |
:amount 40 ; | |
:needs :IMSTestbed ; | |
omn:partOfGroup :FusecoPlayground . | |
### http://testbeds.eu/ontology#FusecoPlayground | |
:FusecoPlayground rdf:type omn:Testbed , | |
:IMSTestbed, | |
owl:NamedIndividual ; | |
rdfs:label "FUSECO Playground"@en ; | |
omn:certificate "https://fuseco.fokus.fraunhofer.de/api/fed4fire/v1/certificates/download/ca.fiteagle-testbeds.eu"^^xsd:anyURI ; | |
rdfs:comment "The Future Seamless Communication (FUSECO) Playground - located in Berlin - is a pioneering reference testbed, integrating various state of the art wireless broadband networks into a 3GPP Evolved Packet Core (EPC) prototype platform, allowing the rapid validation of new networking paradigms, and prototyping of innovative Future Internet and smart city applications."@en ; | |
foaf:homepage <http://fuseco-playground.org> ; | |
rdfs:isDefinedBy <http://www.fuseco-playground.org> ; | |
foaf:based_near :location ; | |
foaf:depiction <http://www.fokus.fraunhofer.de/en/fokus_testbeds/fuseco_playground/_logos/FUSECO_Playground_Logo.jpg> ; | |
foaf:mbox <mailto:[email protected]> . | |
### http://testbeds.eu/ontology#location | |
:location rdf:type owl:NamedIndividual , | |
geo:Point ; | |
rdfs:label "Fraunhofer FOKUS"@en ; | |
geo:long "13.3172764" ; | |
geo:lat "52.5258083" . | |
### Generated by the OWL API (version 3.4.2) http://owlapi.sourceforge.net | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment