forked from GAIA-X4PLC-AAD/ontology-management-base
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.owl.ttl
More file actions
21 lines (18 loc) · 976 Bytes
/
example.owl.ttl
File metadata and controls
21 lines (18 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@base <https://w3id.org/gaia-x4plcaad/ontologies/example/v1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix gx: <https://w3id.org/gaia-x/development#> .
<https://w3id.org/gaia-x4plcaad/ontologies/example/v1> rdf:type owl:Ontology ;
<http://purl.org/dc/terms/contributor> "Max Mustermann" ;
rdfs:label "An example Ontology for demonstration purposes."@en ;
owl:versionIRI <https://w3id.org/gaia-x4plcaad/ontologies/example/v1> ;
owl:versionInfo "v0.5" .
<ExampleServiceOffering> rdf:type owl:Class ;
rdfs:subClassOf gx:VirtualResource ;
rdfs:label "Example Service Offering"@en ;
rdfs:comment "Describes an example Service Offering."@en .
<belongsTo> rdf:type owl:ObjectProperty ;
rdfs:domain <ExampleServiceOffering> ;
rdfs:range <ExampleServiceOffering> .