-
Notifications
You must be signed in to change notification settings - Fork 0
/
isoprops.ttl
1736 lines (1724 loc) · 67 KB
/
isoprops.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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# baseURI: https://w3id.org/isoprops
# imports: https://w3id.org/dt
# prefix: isoprops
@prefix dc: <http://purl.org/dc/terms/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix ex: <http://www.example.com/property#> .
@prefix isoprops: <https://w3id.org/isoprops#> .
@prefix opm: <https://w3id.org/opm#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix qudt: <http://qudt.org/schema/qudt/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix unit: <http://qudt.org/vocab/unit/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://w3id.org/dt#hasExternalDictionaryReference>
owl:equivalentProperty <https://w3id.org/dt#hasExternalDictionaryReference> ;
.
dcat:accessURL
rdf:type owl:AnnotationProperty ;
.
<https://w3id.org/isoprops>
rdf:type owl:Ontology ;
dc:created "2019-01-01"^^xsd:date ;
dc:creator [
rdf:type schema:Person ;
schema:email <mailto:philipp.hagedorn-n6v@rub.de> ;
schema:identifier <https://orcid.org/0000-0002-6249-243X> ;
schema:memberOf [
schema:identifier <https://www.inf.bi.ruhr-uni-bochum.de/iib/lehrstuhl/mitarbeiter/philipp_hagedorn.html.en> ;
schema:name "Ruhr University Bochum" ;
] ;
schema:name "Philipp Hagedorn" ;
] ;
dc:creator [
rdf:type schema:Person ;
schema:email <mailto:sven.zentgraf@rub.de> ;
schema:identifier <https://orcid.org/0000-0001-6058-7614> ;
schema:memberOf [
schema:identifier <https://www.inf.bi.ruhr-uni-bochum.de/iib/lehrstuhl/mitarbeiter/sven_zentgraf.html.en> ;
schema:name "Ruhr University Bochum" ;
] ;
schema:name "Sven Zentgraf" ;
] ;
dc:issued "2021-12-06"^^xsd:date ;
dc:license <https://creativecommons.org/licenses/by/4.0/> ;
dc:modified "2024-04-24"^^xsd:date ;
dc:publisher [
rdf:type schema:Organization ;
schema:identifier <https://www.inf.bi.rub.de> ;
schema:name "Chair of Computing in Engineering, Ruhr University Bochum" ;
schema:parentOrganization [
rdf:type schema:Organization ;
schema:name "Ruhr University Bochum, Germany" ;
] ;
] ;
dc:source <https://linkedbuildingdata.net/ldac2024/files/papers/LDAC2024_Camera_8.pdf>;
vann:preferredNamespacePrefix "isoprops" ;
vann:preferredNamespaceUri <https://w3id.org/isoprops#> ;
rdfs:comment """The ISO Property (ISOProps) ontology maps the data model of the ISO 23386 for the describing, creating, and maintenance of properties in interconnected data dictionaries.
The namespace for ISOProps terms is [https://w3id.org/isoprops](https://w3id.org/isoprops)
The preferred prefix for the ISOProps namespace is `isoprops`.
## Ontology Overview
![IDDO Ontology](Ontology_Overview.png \"Ontology\")
## Assigning an ISOProps Property to a Feature of Interest
![Property_Assignment](Property_Assignment.png \"Property_Assignment\")
## Relation between DCAT vocabulary and the ISOProps ontology
![DataCatalog_Overview](DataCatalog_Overview.png \"DataCatalog_Overview\")
""" ;
rdfs:label "ISO 23386 Property Ontology (ISOProps)" ;
rdfs:seeAlso <https://www.iso.org/standard/75401.html> ;
owl:imports <https://w3id.org/dt> ;
owl:versionIRI <https://w3id.org/isoprops> ;
owl:versionInfo "v2.1" ;
owl:priorVersion <https//w3id.org/iddo>;
skos:example <https://rub-informatik-im-bauwesen.github.io/iddo/Ontology_Overview.png> ;
skos:historyNote """
v2.1: renamed from IDDO to ISOProps
v2.0: update
v0.3: dcat usage update
v0.2: ontology update
v0.1: initial ontology for BIMSTRUCT project
""" ;
schema:codeRepository <https://github.com/RUB-Informatik-im-Bauwesen/ir-ontologies/tree/main/isoprops> ;
.
isoprops:AssignedProperty
rdf:type owl:Class ;
rdfs:comment "Repraesentiert die Zweisung eines Merkmals und einer Merkmalszustandes an ein Feature of Interest (FOI)"@de-DE ;
rdfs:comment "Represents the assignment of a property and a property state to a feature of interest (FOI)." ;
rdfs:label "Assigned property" ;
rdfs:label "Zugewiesenes Merkmal"@de-DE ;
rdfs:subClassOf <http://www.w3id.org/opm#Property> ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty isoprops:hasPropertyReference ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minCardinality 1 ;
owl:onProperty <http://www.w3id.org/opm#hasPropertyState> ;
] ;
.
isoprops:BoundaryLimitMax
rdf:type rdfs:Class ;
rdfs:comment "Boundary limit interval consisting of the the upper (maxValue) interval boundary" ;
rdfs:comment "Grenzwertintervall bestehend aus der oberen(maxValue) Intervallgrenze"@de-DE ;
rdfs:label "Maximum Boundary Limit" ;
rdfs:label "Oberer Grenzwert"@de-DE ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf schema:PropertyValue ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty schema:value ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty isoprops:hasUnit ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:boolean ;
owl:onProperty isoprops:Inclusive ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
skos:scopeNote "PA040" ;
isoprops:code "PA040" ;
isoprops:code "PA040"@de-DE ;
.
isoprops:BoundaryLimitMin
rdf:type rdfs:Class ;
rdfs:comment "Boundary limit interval consisting of the lower(minValue) interval boundary" ;
rdfs:comment "Grenzwertintervall bestehend aus der unteren(minValue) Intervallgrenze"@de-DE ;
rdfs:label "Minimum Boundary Limit" ;
rdfs:label "Unterer Grenzwert"@de-DE ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf schema:PropertyValue ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty schema:value ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty isoprops:hasUnit ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:boolean ;
owl:onProperty isoprops:Inclusive ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
skos:scopeNote "PA040" ;
isoprops:code "PA040" ;
isoprops:code "PA040"@de-DE ;
.
isoprops:BoundaryValue
rdf:type rdfs:Class ;
rdfs:comment "Paar (Liste von Grenzwert-Intervallen moeglicher Werte fuer das Merkmal, Einheit)"@de-DE ;
rdfs:comment "Pair (List of boundary intervals of possible values for the property, unit)" ;
rdfs:label "Boundary values list" ;
rdfs:label "Grenzwertliste"@de-DE ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass isoprops:BoundaryLimitMax ;
owl:onProperty isoprops:hasBoundaryLimit ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass isoprops:BoundaryLimitMin ;
owl:onProperty isoprops:hasBoundaryLimit ;
] ;
skos:scopeNote "PA040" ;
isoprops:code "PA040" ;
isoprops:code "PA040"@de-DE ;
.
isoprops:CategoryOfGroupOfProperties
rdf:type owl:DatatypeProperty ;
rdfs:comment "Gibt die Kategorie der erstellten Merkmalsgruppe an"@de-DE ;
rdfs:comment "Specifies the category of the created property group" ;
rdfs:domain isoprops:GroupOfProperties ;
rdfs:label "Category of group of properties" ;
rdfs:label "Kategorie der Merkmalsgruppe"@de-DE ;
rdfs:range [
rdf:type rdfs:Datatype ;
owl:oneOf (
"Alternative use"
"Class"
"Composed property"
"Domain"
"Reference document"
) ;
] ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:example "Alternative use" ;
skos:example "Class" ;
skos:example "Composed property" ;
skos:example "Domain" ;
skos:example "Reference document" ;
skos:scopeNote "GA022" ;
isoprops:code "GA022" ;
isoprops:code "GA022"@de-DE ;
.
isoprops:CountryOfOrigin
rdf:type owl:DatatypeProperty ;
rdfs:comment "Country from where the requirement for this property/group of properties originated" ;
rdfs:comment "Land, aus dem die Anforderung an dieses Merkmal/dieser Merkmalsgruppe stammt"@de-DE ;
rdfs:domain isoprops:GroupOfProperties ;
rdfs:domain isoprops:Property ;
rdfs:label "Country of origin" ;
rdfs:label "Ursprungsland"@de-DE ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA026/GA021" ;
isoprops:code "PA026/GA021" ;
isoprops:code "PA026/GA021"@de-DE ;
.
isoprops:CountryOfUse
rdf:type owl:DatatypeProperty ;
rdfs:comment "Country (group of countries, continent) in which the property is relevant for the market the stakeholders operate in" ;
rdfs:comment "Land (Gruppe von Laendern, Kon-tinent), in dem das Merkmal/die Merkmalsgruppe fuer den Markt, auf dem die Beteiligten arbeiten, relevant ist"@de-DE ;
rdfs:domain isoprops:GroupOfProperties ;
rdfs:domain isoprops:Property ;
rdfs:label "Country of use" ;
rdfs:label "Land der Verwendung"@de-DE ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA024/GA019" ;
isoprops:code "PA024/GA019" ;
isoprops:code "PA024/GA019"@de-DE ;
.
isoprops:CreatorsLanguage
rdf:type owl:DatatypeProperty ;
rdfs:comment "Satz, der den Grund fuer die Ab-lehnung erlaeutert, der erklaeren kann, wie Werte umzurechnen sind, damit sie dem neuen Merkmal entsprechen; diese Er-laeuterung muss in internatio-nalem Englisch (EN) geschrieben werden"@de-DE ;
rdfs:comment "Sentence explaining the reason of the deprecation, which can explain how to convert values to conform to the new property; this explanation has to be written in international English (EN)" ;
rdfs:domain isoprops:GroupOfProperties ;
rdfs:domain isoprops:Property ;
rdfs:label "Creator's language" ;
rdfs:label "Erlaeuterung fuer die Ablehnung"@de-DE ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA015/GA015" ;
isoprops:code "PA015/GA015" ;
isoprops:code "PA015/GA015"@de-DE ;
.
isoprops:DataType
rdf:type owl:DatatypeProperty ;
rdfs:comment """Format for expressing the value of the property
This can be understood as the storage type from a software perspective
In case of a dynamic property the value of this attribute is the datatype of the result of the calculation by the formula""" ;
rdfs:comment """Format fuer die Angabe des Wertes des Merkmals
dies kann aus einer Soft-ware-Perspektive als Speiche-rungsart verstanden werden
im Falle eines dynamischen Merkmals ist der Wert dieses Attributs der Datentyp des Er-gebnisses der Berechnung mit der Gleichung"""@de-DE ;
rdfs:domain isoprops:Property ;
rdfs:label "Data type" ;
rdfs:label "Datentyp (GUID)"@de-DE ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA030" ;
isoprops:code "PA030" ;
isoprops:code "PA030"@de-DE ;
.
isoprops:DateOfActivation
rdf:type owl:DatatypeProperty ;
rdfs:comment "Date after when the property can be used" ;
rdfs:comment "Datum, nach dem das Merkmal verwendet werden kann"@de-DE ;
rdfs:domain isoprops:GroupOfProperties ;
rdfs:domain isoprops:Property ;
rdfs:label "Date of activation" ;
rdfs:label "Datum der Aktivierung"@de-DE ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA04/GA04" ;
isoprops:code "PA004/GA004" ;
isoprops:code "PA004/GA004"@de-DE ;
.
isoprops:DateOfCreation
rdf:type owl:DatatypeProperty ;
rdfs:comment "Date of validation of the property creation request by experts" ;
rdfs:comment "Datum der Validierung der An-frage zur Erstellung des Merkmals durch Sachverstaendige"@de-DE ;
rdfs:domain isoprops:GroupOfProperties ;
rdfs:domain isoprops:Property ;
rdfs:label "Date of creation" ;
rdfs:label "Datum der Erstellung"@de-DE ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA003/GA003" ;
isoprops:code "PA003/GA003" ;
isoprops:code "PA003/GA003"@de-DE ;
.
isoprops:DateOfDeactivation
rdf:type owl:DatatypeProperty ;
rdfs:comment "Date of deactivation" ;
rdfs:comment "Datum der Deaktivierung"@de-DE ;
rdfs:domain isoprops:GroupOfProperties ;
rdfs:domain isoprops:Property ;
rdfs:label "Date of deactivation" ;
rdfs:label "Datum der Deaktivierung"@de-DE ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA008/GA008" ;
isoprops:code "PA008/GA008" ;
isoprops:code "PA008/GA008"@de-DE ;
.
isoprops:DateOfLastChange
rdf:type owl:DatatypeProperty ;
rdfs:comment "Date of validation of the last change request by experts" ;
rdfs:comment "Datum der Validierung der letzten Aenderungsanfrage durch Sachverstaendige"@de-DE ;
rdfs:domain isoprops:GroupOfProperties ;
rdfs:domain isoprops:Property ;
rdfs:label "Date of last change" ;
rdfs:label "Datum der letzten Aenderung"@de-DE ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA005/GA005" ;
isoprops:code "PA005/GA005" ;
isoprops:code "PA005/GA005"@de-DE ;
.
isoprops:DateOfRevision
rdf:type owl:DatatypeProperty ;
rdfs:comment "Date of revision" ;
rdfs:comment "Datum der Ueberarbeitung"@de-DE ;
rdfs:domain isoprops:GroupOfProperties ;
rdfs:domain isoprops:Property ;
rdfs:label "Date of revision" ;
rdfs:label "Datum der Ueberarbeitung"@de-DE ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA006/GA006" ;
isoprops:code "PA006/GA006" ;
isoprops:code "PA006/GA006"@de-DE ;
.
isoprops:DateOfVersion
rdf:type owl:DatatypeProperty ;
rdfs:comment "Date of version" ;
rdfs:comment "Datum der Version"@de-DE ;
rdfs:domain isoprops:GroupOfProperties ;
rdfs:domain isoprops:Property ;
rdfs:label "Date of version" ;
rdfs:label "Datum der Version"@de-DE ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA007/GA007" ;
isoprops:code "PA007/GA007" ;
isoprops:code "PA007/GA007"@de-DE ;
.
isoprops:DefiningValueItem
rdf:type rdfs:Class ;
rdfs:comment "Contains a defining value of an array in the form of a literal" ;
rdfs:comment "Enthaelt einen definierenden Wert eines Arrays in Form eines Literals"@de-DE ;
rdfs:label "Definierender Wert-Item"@de-DE ;
rdfs:label "Defining value item" ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf schema:PropertyValue ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty schema:value ;
] ;
skos:scopeNote "PA035" ;
isoprops:code "PA035" ;
isoprops:code "PA035"@de-DE ;
.
isoprops:DefiningValuesList
rdf:type rdfs:Class ;
rdfs:comment "Im Falle eines Feldes liefert dieses Attribut die definierenden Werte, sofern zutreffend, der Datentyp wird durch das Attribut PA030 angegeben"@de-DE ;
rdfs:comment "In case of an array, this attribute provides the defining values when applicable, the datatype is given by the attribute PA030" ;
rdfs:label "Defining values list" ;
rdfs:label "Liste definierender Werte"@de-DE ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minCardinality 1 ;
owl:onProperty isoprops:DefiningValueItem ;
] ;
skos:scopeNote "PA035" ;
isoprops:code "PA035" ;
isoprops:code "PA035"@de-DE ;
.
isoprops:DefinitionInLanguage
rdf:type owl:DatatypeProperty ;
rdfs:comment "List of pairs (definition of the property/group of properties, language)" ;
rdfs:comment "Liste von Paaren (Definition des Merkmals/der Merkmalsgruppe, Sprache)"@de-DE ;
rdfs:domain isoprops:GroupOfProperties ;
rdfs:domain isoprops:Property ;
rdfs:label "Definition in Sprache N"@de-DE ;
rdfs:label "Definition of in language N" ;
rdfs:range rdf:langString ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA016/GA016" ;
isoprops:code "PA016/GA016" ;
isoprops:code "PA016/GA016"@de-DE ;
.
isoprops:DeprecationExplanation
rdf:type owl:DatatypeProperty ;
rdfs:comment "Satz, der den Grund fuer die Ablehnung erlaeutert, der erklaeren kann, wie Werte umzurechnen sind, damit sie dem neuen Merkmal/der neuen Merkmalsgruppe entsprechen; diese Erlaeuterung muss in internationalem Englisch (EN) geschrieben werden"@de-DE ;
rdfs:comment "Sentence explaining the reason of the deprecation, which can explain how to convert values to conform to the new property/group of properties; this explanation has to be written in international English (EN)" ;
rdfs:domain isoprops:GroupOfProperties ;
rdfs:domain isoprops:Property ;
rdfs:label "Deprecation explanation" ;
rdfs:label "Erlaeuterung fuer die Ablehnung"@de-DE ;
rdfs:range rdf:langString ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA013/GA013" ;
isoprops:code "PA013/GA013" ;
isoprops:code "PA013/GA013"@de-DE ;
.
isoprops:DescriptionInLanguage
rdf:type owl:DatatypeProperty ;
rdfs:comment "List of pairs (Description of the property, language)" ;
rdfs:comment "Liste von Paaren (Beschreibung des Merkmals, Sprache)"@de-DE ;
rdfs:domain isoprops:Property ;
rdfs:label "Beschreibung in Sprache N"@de-DE ;
rdfs:label "Description in language N" ;
rdfs:range rdf:langString ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA019" ;
isoprops:code "PA019" ;
isoprops:code "PA019"@de-DE ;
.
isoprops:Dictionary
rdf:type owl:Class ;
rdfs:comment "Centralized repository of information about data such as meaning, relationships to other data, origin, usage and format" ;
rdfs:comment "Zentralisiertes Repository von Informationen ueber Daten, wie z. B. Bedeutung, Beziehungen zu anderen Daten, Ursprung, Verwendung und Format"@de-DE ;
rdfs:label "Data dictionary" ;
rdfs:label "Datenkatalog"@de-DE ;
rdfs:subClassOf dcat:Catalog ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty dc:description ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty dc:identifier ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty dc:issued ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty dc:publisher ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty dc:title ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty dc:type ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minCardinality 1 ;
owl:onProperty isoprops:hasDictionarySubset ;
] ;
.
isoprops:DictionaryReferenceDocument
rdf:type owl:Class ;
rdfs:comment "Publication that is consulted to find specific information, particularly in a technical or scientific domain" ;
rdfs:comment "Publikation, die hinzugezogen wird, um bestimmte Informationen zu finden, insbesondere in einer technischen oder wissenschaftlichen Domaene"@de-DE ;
rdfs:label "Reference document" ;
rdfs:label "Referenzdokument"@de-DE ;
rdfs:subClassOf dcat:Distribution ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty isoprops:hasPropertyGroupReference ;
] ;
.
isoprops:DictionarySubset
rdf:type owl:Class ;
rdfs:comment "Defines a subset or subgrouping of a data catalog" ;
rdfs:comment "Definiert eine Teilmenge oder Untergruppierung eines Datenkatalogs"@de-DE ;
rdfs:label "Dictionary subset" ;
rdfs:label "Teilmenge des Datenkatalogs"@de-DE ;
rdfs:subClassOf dcat:Dataset ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty dc:description ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty dc:title ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty dcat:accessURL ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty isoprops:hasDictionaryReferenceDocument ;
] ;
.
isoprops:DigitalFormatItem
rdf:type rdfs:Class ;
rdfs:comment """Paar fuer den digitalen Texttyp (Praezision, Masseinheit)
Praezision ist die Anzahl signifikanter Stellen"""@de-DE ;
rdfs:comment """Pair for digital text type (precision, unit)
Precision is the number of significant digits""" ;
rdfs:label "Digital format item" ;
rdfs:label "Digitales Format-Item"@de-DE ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onClass qudt:Unit ;
owl:onProperty isoprops:hasUnit ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:decimal ;
owl:onProperty isoprops:Precision ;
owl:qualifiedCardinality 1 ;
] ;
skos:scopeNote "PA037" ;
isoprops:code "PA037" ;
isoprops:code "PA037"@de-DE ;
.
isoprops:DynamicProperty
rdf:type owl:DatatypeProperty ;
rdfs:comment "If this is a dynamic property, the value is dependent on the parameters provided in the attribute PA032" ;
rdfs:comment "Wenn es sich um ein dynamisches Merkmal handelt, haengt der Wert von den im Attribut PA032 bereitgestellten Parametern ab"@de-DE ;
rdfs:label "Dynamic Property" ;
rdfs:label "Dynamisches Merkmal"@de-DE ;
rdfs:range [
rdf:type rdfs:Datatype ;
owl:oneOf (
"yes"
"no"
) ;
] ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:example "no" ;
skos:example "yes" ;
skos:scopeNote "PA031" ;
isoprops:code "PA031" ;
isoprops:code "PA031"@de-DE ;
.
isoprops:Encoding
rdf:type owl:DatatypeProperty ;
rdfs:comment "Die Verschluesselung wird nach Name der Codierungsnorm von IANA, RFC 2978 festgelegt"@de-DE ;
rdfs:comment "The encoding is set according to Name of encoding standard of IANA, RFC 2978" ;
rdfs:domain isoprops:TextFormatItem ;
rdfs:label "Encoding" ;
rdfs:label "Kodierung"@de-DE ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA038" ;
isoprops:code "PA038" ;
isoprops:code "PA038"@de-DE ;
.
isoprops:ExampleInLanguage
rdf:type owl:DatatypeProperty ;
rdfs:comment "List of pairs (example of the property, language)" ;
rdfs:comment "Liste von Paaren (Beispiel des Merkmals, Sprache)"@de-DE ;
rdfs:domain isoprops:Property ;
rdfs:label "Beispiel in Sprache N"@de-DE ;
rdfs:label "Example in language N" ;
rdfs:range rdf:langString ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA019" ;
isoprops:code "PA019" ;
isoprops:code "PA019"@de-DE ;
.
isoprops:ExternalDictionaryReference
rdf:type rdfs:Class ;
rdfs:comment """Paar (interner Merkmalsbezeichner, entsprechender Datenkatalog-Bezeichner)
Dieses Attribut sollte fuer die Vertraeglichkeit zwischen bereits vorhandenen Merkmalen verwendet werden"""@de-DE ;
rdfs:comment """Pair (property internal identifier, corresponding data dictionary identifier)
This attribute should be used for compatibility between already existing properties""" ;
rdfs:label "External Dictionary Reference " ;
rdfs:label "External Dictionary Reference"@de-DE ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <https://w3id.org/dt#hasExternalDictionary> ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <https://w3id.org/dt#hasExternalDictionaryProperty> ;
] ;
owl:equivalentClass <https://w3id.org/dt#ExternalDictionaryReference> ;
.
isoprops:GloballyUniqueIdentifier
rdf:type owl:DatatypeProperty ;
rdfs:comment "Eindeutiger Bezeichner, der mit dem in RFC 4122 beschriebenen Algorithmus erzeugt wird"@de-DE ;
rdfs:comment "Unique identifier generated using the algorithm denoted in RFC 4122" ;
rdfs:domain isoprops:GroupOfProperties ;
rdfs:domain isoprops:Property ;
rdfs:label "Global eindeutiger Bezeichner (GUID)"@de-DE ;
rdfs:label "Globally Unique Identifier (GUID)" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA001/GA001" ;
isoprops:code "PA001/GA001" ;
isoprops:code "PA001/GA001"@de-DE ;
.
isoprops:GroupOfProperties
rdf:type owl:Class ;
rdfs:comment "Collection enabling the properties to be prearranged or organized" ;
rdfs:comment "Sammlung, die es ermoeglicht, die Merkmale vorauszuplanen oder zu organisieren"@de-DE ;
rdfs:label "Group of properties" ;
rdfs:label "Merkmalsgruppe"@de-DE ;
rdfs:subClassOf <https://w3id.org/dt#LibraryComponent> ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass isoprops:GroupOfProperties ;
owl:onProperty isoprops:hasParentGroupOfProperties ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onDataRange xsd:string ;
owl:onProperty isoprops:DeprecationExplanation ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onClass isoprops:GroupOfProperties ;
owl:onProperty isoprops:hasParentGroupOfProperties ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onClass isoprops:GroupOfProperties ;
owl:onProperty isoprops:isReplacedByGroupOfProperties ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onClass isoprops:GroupOfProperties ;
owl:onProperty isoprops:replacesGroupOfProperties ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onDataRange xsd:dateTime ;
owl:onProperty isoprops:DateOfActivation ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onDataRange xsd:dateTime ;
owl:onProperty isoprops:DateOfDeactivation ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onDataRange xsd:dateTime ;
owl:onProperty isoprops:DateOfLastChange ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onDataRange xsd:decimal ;
owl:onProperty isoprops:Tolerance ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onDataRange xsd:string ;
owl:onProperty isoprops:DeprecationExplanation ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onDataRange xsd:string ;
owl:onProperty isoprops:SubdivisionOfUse ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass isoprops:ExternalDictionaryReference ;
owl:onProperty isoprops:hasExternalDictionaryReference ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 1 ;
owl:onDataRange xsd:string ;
owl:onProperty isoprops:CountryOfUse ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 1 ;
owl:onDataRange xsd:string ;
owl:onProperty isoprops:DefinitionInLanguage ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 1 ;
owl:onDataRange xsd:string ;
owl:onProperty isoprops:NameInLanguage ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 1 ;
owl:onDataRange xsd:string ;
owl:onProperty isoprops:VisualRepresentation ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:dateTime ;
owl:onProperty isoprops:DateOfCreation ;
owl:qualifiedCardinality 1 ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:dateTime ;
owl:onProperty isoprops:DateOfRevision ;
owl:qualifiedCardinality 1 ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:dateTime ;
owl:onProperty isoprops:DateOfVersion ;
owl:qualifiedCardinality 1 ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:integer ;
owl:onProperty isoprops:RevisionNumber ;
owl:qualifiedCardinality 1 ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:integer ;
owl:onProperty isoprops:VersionNumber ;
owl:qualifiedCardinality 1 ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:string ;
owl:onDataRange [
rdf:type rdfs:Datatype ;
owl:oneOf (
"active"
"inactive"
) ;
] ;
owl:onProperty isoprops:Status ;
owl:qualifiedCardinality 1 ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:string ;
owl:onProperty isoprops:CountryOfOrigin ;
owl:qualifiedCardinality 1 ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:string ;
owl:onProperty isoprops:CreatorsLanguage ;
owl:qualifiedCardinality 1 ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:string ;
owl:onProperty isoprops:GloballyUniqueIdentifier ;
owl:qualifiedCardinality 1 ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange [
rdf:type rdfs:Datatype ;
owl:oneOf (
"Alternative use"
"Class"
"Composed property"
"Domain"
"Reference document"
) ;
] ;
owl:onProperty isoprops:CategoryOfGroupOfProperties ;
owl:qualifiedCardinality 1 ;
] ;
.
isoprops:Inclusive
rdf:type owl:DatatypeProperty ;
rdfs:domain isoprops:BoundaryLimitMax ;
rdfs:domain isoprops:BoundaryLimitMin ;
rdfs:label "inclusive" ;
rdfs:range xsd:boolean ;
rdfs:subPropertyOf owl:topDataProperty ;
.
isoprops:MethodOfMeasurement
rdf:type owl:DatatypeProperty ;
rdfs:comment "Beurteilung von Bauprodukten, um ihre Tauglichkeit entsprechend den Anforderungen in harmonisierten technischen Spezifikationen sicherzustellen" ;
rdfs:comment "Evaluation of construction products to ensure their fitness according to requirements in harmonised technical specifications" ;
rdfs:domain isoprops:Property ;
rdfs:label "Messverfahren"@de-DE ;
rdfs:label "Method of measurement" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA029" ;
isoprops:code "PA029" ;
isoprops:code "PA029"@de-DE ;
.
isoprops:NameInLanguage
rdf:type owl:DatatypeProperty ;
rdfs:comment """List of pairs (property name and language)
This attribute can be used to add synonyms for different domains""" ;
rdfs:comment """Liste von Paaren (Name des Merkmals und Sprache)
Dieses Attribut kann verwendet werden, um Synonyme fuer verschiedene Domaenen hinzuzufuegen"""@de-DE ;
rdfs:domain isoprops:GroupOfProperties ;
rdfs:domain isoprops:Property ;
rdfs:label "Name in Sprache N"@de-DE ;
rdfs:label "Name in language N" ;
rdfs:range rdf:langString ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA016/GA016" ;
isoprops:code "PA016/GA016" ;
isoprops:code "PA016/GA016"@de-DE ;
.
isoprops:NameOfTheDefiningValues
rdf:type owl:DatatypeProperty ;
rdfs:comment "Im Falle eines Feldes liefert dieses Attribut die Namen der Spaltenkoepfe, festgelegt als Liste von Paaren (Name, Sprache)"@de-DE ;
rdfs:comment "In case of an array, this attribute provides the names of the column headers defined as a list of pairs (name, language)" ;
rdfs:label "Name der definierenden Werte"@de-DE ;
rdfs:label "Names of the defining values" ;
rdfs:range rdf:langString ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA034" ;
isoprops:code "PA034" ;
isoprops:code "PA034"@de-DE ;
.
isoprops:NumberOfCharacters
rdf:type owl:DatatypeProperty ;
rdfs:comment "Die Verschluesselung wird nach Name der Codierungsnorm von IANA, RFC 2978 festgelegt"@de-DE ;
rdfs:comment "The encoding is set according to Name of encoding standard of IANA, RFC 2978" ;
rdfs:domain isoprops:TextFormatItem ;
rdfs:label "Anzahl der Zeichen"@de-DE ;
rdfs:label "Number of Characters" ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA038" ;
isoprops:code "PA038" ;
isoprops:code "PA038"@de-DE ;
.
isoprops:PhysicalQuantity
rdf:type rdfs:Class ;
rdfs:comment """List of pairs (physical quantity | language)
Physical quantities are expressed in International System (SI) units
Non-physical quantities such as text are expressed with the value \"without\"
This is equivalent to a measure in ISO 16739-1 and ISO 10303
Only one physical quantity can be attached to a property. This attribute is used to provide the quantity in plain text with all the needed translations""" ;
rdfs:comment """Liste von Paaren (physikalische Groesse | Sprache)
Physikalische Groessen werden in Einheiten des Internationalen Einheitensystems (SI) angegeben
nicht physikalische Groessen wie z. B. Text werden mit dem Wert \"ohne\" angegeben
dies ist gleichbedeutend mit einem Mass in ISO 16739-1 und ISO 10303
nur eine physikalische Groesse kann einem Merkmal zugeordnet werden. Dieses Attribut wird ver-wendet, um die Groesse in Klartext mit allen benoetigten ueberset-zungen bereitzustellen."""@de-DE ;
rdfs:label "Physical quantity" ;
rdfs:label "Physikalische Groesse"@de-DE ;
rdfs:subClassOf <https://w3id.org/dt#LibraryComponent> ;
owl:equivalentClass qudt:QuantityKind ;
.
isoprops:PossibleValues
rdf:type rdfs:Class ;
rdfs:comment """Moeglicher Wert fuer das Merkmal und Sprache
Werte koennen String oder Zahlen sein"""@de-DE ;
rdfs:comment """Possible value for the property and language
Values can be string or numbers""" ;
rdfs:label "Liste moeglicher Werte in Sprache N"@de-DE ;
rdfs:label "Possible value in language N" ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf schema:PropertyValue ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty schema:value ;
] ;
owl:equivalentClass <https://w3id.org/dt#PredefinedValuesList> ;
skos:scopeNote "PA039" ;
isoprops:code "PA039" ;
isoprops:code "PA039"@de-DE ;
.
isoprops:Precision
rdf:type owl:DatatypeProperty ;
rdfs:comment "Praezision ist die Anzahl signifi-kanter Stellen"@de-DE ;
rdfs:comment "Precision is the number of significant digits" ;
rdfs:domain isoprops:DigitalFormatItem ;
rdfs:label "Tolerance" ;
rdfs:label "Toleranz"@de-DE ;
rdfs:range xsd:decimal ;
rdfs:subPropertyOf owl:topDataProperty ;
skos:scopeNote "PA037" ;
isoprops:code "PA037" ;
isoprops:code "PA037"@de-DE ;
.
isoprops:Property
rdf:type owl:Class ;
rdfs:comment "Inhaerente oder erworbene Eigenschaft eines Datenelements"@de-DE ;
rdfs:comment "Inherent or acquired feature of an item" ;
rdfs:label "Merkmal"@de-DE ;
rdfs:label "Property" ;
rdfs:subClassOf <https://w3id.org/dt#LibraryComponent> ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty isoprops:CreatorsLanguage ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onDataRange xsd:string ;
owl:onProperty isoprops:CountryOfOrigin ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onDataRange xsd:string ;
owl:onProperty isoprops:DeprecationExplanation ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onClass isoprops:DefiningValuesList ;
owl:onProperty isoprops:hasDefiningValue ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onClass isoprops:DigitalFormatItem ;
owl:onProperty isoprops:hasDigitalFormat ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onClass isoprops:ExternalDictionaryReference ;
owl:onProperty isoprops:hasExternalDictionaryReference ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onClass isoprops:PossibleValues ;
owl:onProperty isoprops:hasPossibleValues ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onClass isoprops:Property ;
owl:onProperty isoprops:hasConnectedProperty ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onClass isoprops:Property ;
owl:onProperty isoprops:hasParameterOfTheDynamicProperty ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onClass isoprops:Property ;
owl:onProperty isoprops:isReplacedByProperty ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality 0 ;
owl:onClass isoprops:Property ;
owl:onProperty isoprops:replacesProperties ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;