-
Notifications
You must be signed in to change notification settings - Fork 1
/
kpi.ttl
37 lines (29 loc) · 1.28 KB
/
kpi.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@prefix : <http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/kpi#> .
@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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/kpi> .
<http://raw.githubusercontent.com/Guilvareux/ontologies/main/intent/kpi> rdf:type owl:Ontology ;
owl:imports <http://www.w3.org/1999/02/22-rdf-syntax-ns#> , <http://www.w3.org/2000/01/rdf-schema#> , <http://www.w3.org/2002/07/owl> .
:kpiValue a owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty .
:latency a owl:DatatypeProperty ;
rdfs:subPropertyOf :kpiValue ;
rdfs:range xsd:string .
:throughput a owl:DatatypeProperty ;
rdfs:subPropertyOf :kpiValue ;
rdfs:range xsd:decimal .
:bandwidth a owl:DatatypeProperty ;
rdfs:subPropertyOf :kpiValue ;
rdfs:range xsd:string .
:availability a owl:DatatypeProperty ;
rdfs:subPropertyOf :kpiValue ;
rdfs:range xsd:string .
:uptime a owl:DatatypeProperty ;
rdfs:subPropertyOf :kpiValue ;
rdfs:range xsd:string .
:kpiTerm a owl:DatatypeProperty ;
rdfs:subPropertyOf :kpiValue ;
rdfs:range xsd:string .