This repository was archived by the owner on Feb 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathgeneral.owl.ttl
More file actions
92 lines (74 loc) · 3.68 KB
/
Copy pathgeneral.owl.ttl
File metadata and controls
92 lines (74 loc) · 3.68 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
@prefix general: <https://w3id.org/gaia-x4plcaad/ontologies/general/v3/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix gx: <https://w3id.org/gaia-x/development#> .
@prefix gax-core: <https://w3id.org/gaia-x/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
<https://w3id.org/gaia-x4plcaad/ontologies/general/v3> a owl:Ontology ;
rdfs:label "Ontology definition for general (DEPRECATED)"@en ;
rdfs:comment "DEPRECATED: This ontology is superseded by the envited-x wrapper architecture (envited-x/v3). Domain ontologies should import envited-x/v3 instead and use the ResourceDescription/DomainSpecification pattern. Kept for backward compatibility with older domain versions."@en ;
owl:deprecated true ;
dcterms:creator "The GAIA-X 4 PLC AAD Project Team"@en ;
dcterms:contributor [
a foaf:Person ;
foaf:name "Carlo van Driesten" ;
org:memberOf <https://www.bmwgroup.com/> ;
] , [
a foaf:Person ;
foaf:name "Mirco Nierenz" ;
org:memberOf <https://triangraphics.de/> ;
] ;
# Permanent identifier for the ontology (not version-specific)
dcterms:identifier <https://w3id.org/gaia-x4plcaad/ontologies/general> ;
# GitHub repository where the ontology is maintained
dcterms:source <https://github.com/GAIA-X4PLC-AAD/ontology-management-base> ;
# Specific GitHub release used for publishing this version
prov:wasDerivedFrom <https://github.com/GAIA-X4PLC-AAD/ontology-management-base/releases/tag/v0.1.0> ;
# Versioning
owl:versionIRI <https://w3id.org/gaia-x4plcaad/ontologies/general/v3> ;
owl:versionInfo "v3" ;
# Reference to SHACL validation rules
dcterms:conformsTo <https://w3id.org/gaia-x4plcaad/ontologies/general/v3/shapes> ;
# Additional references
rdfs:seeAlso <https://github.com/GAIA-X4PLC-AAD/ontology-management-base/blob/main/README.md> .
# Classes
general:General a owl:Class ;
rdfs:label "Class definition for General"@en ;
rdfs:comment "General properties common for all simulation assets."@en .
general:Description a owl:Class ;
rdfs:label "Class definition for Description"@en ;
rdfs:comment "General text based description of the simulation asset."@en .
general:Data a owl:Class ;
rdfs:label "Class definition for Data"@en ;
rdfs:comment "General data properties of the simulation asset."@en .
# Properties
general:data a owl:ObjectProperty ;
rdfs:label "data"@en ;
rdfs:comment "Reference to the data properties object."@en ;
rdfs:domain general:General ;
rdfs:range general:Data .
general:name a owl:DatatypeProperty ;
rdfs:label "name"@en ;
rdfs:comment "A human readable name of the entity."@en ;
rdfs:domain general:Description ;
rdfs:range xsd:string .
# Note: general:description is used both as a link to the Description class
# and as a string property inside that class.
general:description a rdf:Property ;
rdfs:label "description"@en ;
rdfs:comment "General description property (used for both object linkage and text content)."@en .
general:size a owl:DatatypeProperty ;
rdfs:label "size"@en ;
rdfs:comment "Size of the data file(s) in MB."@en ;
rdfs:domain general:Data ;
rdfs:range xsd:float .
general:recordingTime a owl:DatatypeProperty ;
rdfs:label "recording time"@en ;
rdfs:comment "Time of data acquisition."@en ;
rdfs:domain general:Data ;
rdfs:range xsd:dateTime .