-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathiirds-core.rdf
More file actions
2082 lines (2081 loc) · 157 KB
/
iirds-core.rdf
File metadata and controls
2082 lines (2081 loc) · 157 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
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
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xml:base="http://iirds.tekom.de/iirds#" xml:lang="en" xmlns:iirds="http://iirds.tekom.de/iirds#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:schema="http://schema.org/">
<!--
© 2023 Gesellschaft für Technische Kommunikation – tekom Deutschland e.V. All rights reserved.
This work is licensed under a Creative Commons Attribution-NoDerivatives 4.0 International License (https://creativecommons.org/licenses/by-nd/4.0/).
-->
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Action">
<rdfs:label xml:lang="de">Handlung</rdfs:label>
<rdfs:label xml:lang="en">action</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#FunctionalMetadata"/>
<iirds:description xml:lang="en">Use the relates-to-action property to create a reference from an information unit to an action.</iirds:description>
<rdfs:comment xml:lang="en">atomic manipulation of an object by a participant</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#AdministrativeMetadata">
<rdfs:label xml:lang="de">Verwaltungsmetadaten</rdfs:label>
<rdfs:label xml:lang="en">administrative metadata</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#iirdsDomainEntity"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead.</iirds:description>
<rdfs:comment xml:lang="en">information that allows the management of iiRDS resources</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#AfterUse">
<rdfs:label xml:lang="de">Nutzungsende</rdfs:label>
<rdfs:label xml:lang="en">after use</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#ProductLifeCyclePhase"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead. For lifecycle phases not covered by the iiRDS standard subclasses, define custom subclasses.</iirds:description>
<rdfs:comment xml:lang="en">product life cycle phase that follows the active use of the product</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Collection">
<rdfs:label xml:lang="de">Zusammenstellung</rdfs:label>
<rdfs:label xml:lang="en">collection</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationSubject"/>
<iirds:description xml:lang="en">Not intented to be used directly. Use the subclasses instead. For collection subjects not covered by the iiRDS standard subclasses, define custom subclasses.</iirds:description>
<rdfs:comment xml:lang="en">information subject that covers specific content in lists or overviews</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Component">
<rdfs:label xml:lang="de">Komponente</rdfs:label>
<rdfs:label xml:lang="en">component</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#ProductMetadata"/>
<iirds:description xml:lang="en">Components may have relations to other components so that iiRDS Generators can build up a simple component hierarchy with iiRDS structures. The iirds#Component may also be used as a docking point for external component definitions.</iirds:description>
<rdfs:comment xml:lang="en">part used as a constituent in an assembled product, system or plant</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Concept">
<rdfs:label xml:lang="de">Beschreibung</rdfs:label>
<rdfs:label xml:lang="en">concept</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#TopicType"/>
<iirds:description xml:lang="en">Conceptual information helps users to map their existing knowledge to tasks and other essential information about a product or system.
</iirds:description>
<rdfs:comment xml:lang="en">topic type that provides background information which helps users understand the structure or essential principles of a product, interface, or task</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Conformity">
<rdfs:label xml:lang="de">Konformität</rdfs:label>
<rdfs:label xml:lang="en">conformity</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationSubject"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead. For information subjects not covered by the iiRDS standard subclasses, define custom subclasses.</iirds:description>
<rdfs:comment xml:lang="en">information subject that covers applicable standards or the fulfilment of a product requirement</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#DesignAndRealization">
<rdfs:label xml:lang="de">Produktentstehung</rdfs:label>
<rdfs:label xml:lang="en">design and realization</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#ProductLifeCyclePhase"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead. For lifecycle phases not covered by the iiRDS standard subclasses, define custom subclasses.</iirds:description>
<rdfs:comment xml:lang="en">product life cycle phase from environment analysis and ideation through production</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#DirectoryNode">
<rdfs:label xml:lang="de">Verzeichnisknoten</rdfs:label>
<rdfs:label xml:lang="en">directory node</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#iirdsDomainEntity"/>
<iirds:description xml:lang="en">A directory is a tree-like, ordered collection of information units. Directory nodes are the entries in the directory. Directories help the user to navigate through the information units. A table of contents is a typical example of a directory. </iirds:description>
<iirds:description xml:lang="de">Ein Verzeichnis ist eine baumartig organisierte und geordnete Zusammenstellung von Informationseinheiten. Verzeichnisknoten sind die Einträge in dem Baum. Verzeichnisse dienen dem Benutzer als Navigationshilfe über die Informationseinheiten. Ein Inhaltsverzeichnis eines Dokuments ist ein typisches Beispiel eines Verzeichnisses.</iirds:description>
<rdfs:comment xml:lang="en">node in a tree-like, ordered collection</rdfs:comment>
<iirds:description xml:lang="en">IRI: optional</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#DirectoryNodeType">
<rdfs:label xml:lang="de">Verzeichnistyp</rdfs:label>
<rdfs:label xml:lang="en">directory node type</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationType"/>
<iirds:description xml:lang="en">A directory represented by a directory root node and its sub nodes has a type such as 'table of contens' or 'list of figures'.</iirds:description>
<iirds:description xml:lang="de">Ein Verzeichnis, das durch einen Wurzelknoten und seine untergeordneten Knoten aufgespannt wird, hat einen Typ wie 'Inhaltsverzeichnis' oder 'Abbildungsverzeichnis'.</iirds:description>
<rdfs:comment xml:lang="en">type of information arranged in a hierarchically ordered list of elements built by a root node and its subordinate nodes</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Document">
<rdfs:label xml:lang="de">Dokument</rdfs:label>
<rdfs:label xml:lang="en">document</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<iirds:description xml:lang="en">A document consists of one or more files. It can consist of topics. The resource is either a blank node (when there is no file representing the document) or a file in the iiRDS package.</iirds:description>
<rdfs:comment xml:lang="en">information unit that consists of an ordered set of information intended by the sender to be regarded as an entity</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#DocumentationMetadata">
<rdfs:label xml:lang="de">Metadaten der Dokumentation</rdfs:label>
<rdfs:label xml:lang="en">documentation metadata</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#iirdsDomainEntity"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead.</iirds:description>
<rdfs:comment xml:lang="en">information that describes the context to which iiRDS resources apply</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#DocumentType">
<rdfs:label xml:lang="de">Dokumentart</rdfs:label>
<rdfs:label xml:lang="en">document type</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationType"/>
<iirds:description xml:lang="en">Document types define the intended purpose of a document.</iirds:description>
<rdfs:comment xml:lang="en">type of information arranged in a document defined with respect to its specified purpose, function, and form of presentation</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#DownTime">
<rdfs:label xml:lang="de">Stillstandzeit</rdfs:label>
<rdfs:label xml:lang="en">down time</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#PlanningTime"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">period of time during which an item is not in condition to perform its intended function</rdfs:comment>
<iirds:description xml:lang="en">IRI: optional</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Event">
<rdfs:label xml:lang="de">Ereignis</rdfs:label>
<rdfs:label xml:lang="en">event</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#FunctionalMetadata"/>
<iirds:description xml:lang="en">Examples are errors, malfunctions, and warnings.
Use the relates-to-event property to create a reference from an information unit to an event.</iirds:description>
<rdfs:comment xml:lang="en">something noticeable that takes place at a given location and point in time</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#ContentLifeCycleStatus">
<rdfs:label xml:lang="de">Lebenszyklus-Status einer Informationseinheit</rdfs:label>
<rdfs:label xml:lang="en">information unit lifecycle status</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#AdministrativeMetadata"/>
<iirds:description xml:lang="en">The status value is referenced using has-content-lifecycle-status-value. </iirds:description>
<rdfs:comment xml:lang="en">stage of an information unit in the information development process</rdfs:comment>
<iirds:description xml:lang="en">IRI: optional</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#ContentLifeCycleStatusValue">
<rdfs:label xml:lang="de">Wert des Lebenszyklus-Status einer Informationseinheit</rdfs:label>
<rdfs:label xml:lang="en">value of the information unit lifecycle status</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#AdministrativeMetadata"/>
<iirds:description xml:lang="en">The value refers to the content status, for example whether it is approved or withdrawn.</iirds:description>
<rdfs:comment xml:lang="en">categorical denomination of the information unit life cycle stage</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Identity">
<rdfs:label xml:lang="de">Identität</rdfs:label>
<rdfs:label xml:lang="en">identity</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#AdministrativeMetadata"/>
<iirds:description xml:lang="en">Complex identifiers may be assigned to information objects, information units, product variants, and components. Typically, identities are used to provide IDs from other systems. Examples: serial numbers for components and module IDs from content management systems for topics.</iirds:description>
<rdfs:comment xml:lang="en">complex identifier of a resource in an external system</rdfs:comment>
<iirds:description xml:lang="en">IRI: optional</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#IdentityDomain">
<rdfs:label xml:lang="de">Identitäts-Domäne</rdfs:label>
<rdfs:label xml:lang="en">identity domain</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#AdministrativeMetadata"/>
<iirds:description xml:lang="en">An identity domain relates to a party, meaning a company or organization. The party is the owner or custodian of the domain.</iirds:description>
<rdfs:comment xml:lang="en">organizational origin of an identifier that is assigned to an iiRDS identity</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#IdentityType">
<rdfs:label xml:lang="de">Identitäts-Typ</rdfs:label>
<rdfs:label xml:lang="en">identity type</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#AdministrativeMetadata"/>
<iirds:description xml:lang="en">The type of identity contained by the domain.</iirds:description>
<rdfs:comment xml:lang="en">distinguished set of identifiers that are assigned to an iiRDS identity</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#ExternalClassification">
<rdfs:label xml:lang="de">Externe Klassifikation</rdfs:label>
<rdfs:label xml:lang="en">external classification</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#AdministrativeMetadata"/>
<iirds:description xml:lang="en">External classifications may be assigned to information objects, information units, product variants, product features and components. Typically, external classifications are used to include metadata from other standards. Examples: ECLASS and CDD (IEC 61360) for product classfication and DCC (IEC 61355) or VDI 2770 for document classification.</iirds:description>
<rdfs:comment xml:lang="en">External classification of an iiRDS domain entity. Each classification must be related to the classification domain within which it is unambiguous.</rdfs:comment>
<iirds:description xml:lang="en">IRI: optional</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#ClassificationDomain">
<rdfs:label xml:lang="de">Externe Klassifikationsdomäne</rdfs:label>
<rdfs:label xml:lang="en">external classification domain</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#AdministrativeMetadata"/>
<iirds:description xml:lang="en">A classification domain relates to a party, meaning a company or organization. The party is the owner or custodian of the domain.</iirds:description>
<rdfs:comment xml:lang="en">domain of an external classification that is assigned to an iiRDS entity</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#ClassificationType">
<rdfs:label xml:lang="de">Klassifikationstyp</rdfs:label>
<rdfs:label xml:lang="en">classification type</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#AdministrativeMetadata"/>
<iirds:description xml:lang="en">The type of classification contained by the domain.</iirds:description>
<rdfs:comment xml:lang="en">type of an classification that is assigned to an iiRDS domain entity</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Form">
<rdfs:label xml:lang="de">Formular</rdfs:label>
<rdfs:label xml:lang="en">form</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#TopicType"/>
<iirds:description xml:lang="en">Examples of forms are service reports, field reports, and user feedback.</iirds:description>
<rdfs:comment xml:lang="en">topic type that provides information in pre-defined fields</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Formality">
<rdfs:label xml:lang="de">Formalität</rdfs:label>
<rdfs:label xml:lang="en">formality</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationSubject"/>
<iirds:description xml:lang="en">Examples of formality subjects are license terms and warranty conditions.</iirds:description>
<rdfs:comment xml:lang="en">information subject that covers contractually relevant elements</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Fragment">
<rdfs:label xml:lang="de">Fragment</rdfs:label>
<rdfs:label xml:lang="en">fragment</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<iirds:description xml:lang="en">Sections, tables, lists, paragraphs, and hazard statements are examples of fragments. Fragments assign metadata to parts of topic or document files in an iiRDS package. The parts are identified by a fragment selector.</iirds:description>
<rdfs:comment xml:lang="en">information unit that requires additional context</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#FragmentSelector">
<rdfs:label xml:lang="de">Fragmentselektor</rdfs:label>
<rdfs:label xml:lang="en">fragment selector</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#Selector"/>
<rdfs:comment xml:lang="en">selector that defines a part of content by a single identifier</rdfs:comment>
<iirds:description xml:lang="en">IRI: optional</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Functionality">
<rdfs:label xml:lang="de">Funktionalität</rdfs:label>
<rdfs:label xml:lang="en">functionality</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationSubject"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">information subject that covers specific capabilities of the product</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#FunctionalMetadata">
<rdfs:label xml:lang="de">Funktionale Metadaten</rdfs:label>
<rdfs:label xml:lang="en">functional metadata</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#DocumentationMetadata"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead.</iirds:description>
<rdfs:comment xml:lang="en">information used to implement advanced content delivery scenarios and content assemblies for specific purposes</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#iirdsDomainEntity">
<rdfs:label xml:lang="de">iirdsDomainEntity</rdfs:label>
<rdfs:label xml:lang="en">iirdsDomainEntity</rdfs:label>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead.</iirds:description>
<rdfs:comment xml:lang="en">any resource within the iiRDS domain</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#InformationObject">
<rdfs:label xml:lang="de">Informationsobjekt</rdfs:label>
<rdfs:label xml:lang="en">information object</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#iirdsDomainEntity"/>
<iirds:description xml:lang="en">Only used if a version/language-independent equivalent to an information unit is required. The versioned information unit references the information object.</iirds:description>
<rdfs:comment xml:lang="en">version- and language-independent abstraction of an information unit</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#InformationSubject">
<rdfs:label xml:lang="de">Informationsthema</rdfs:label>
<rdfs:label xml:lang="en">information subject</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationType"/>
<iirds:description xml:lang="en">Not intented to be used directly. Use the subclasses instead.</iirds:description>
<rdfs:comment xml:lang="en">thematical characteristic of content</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#InformationType">
<rdfs:label xml:lang="de">Informationsart</rdfs:label>
<rdfs:label xml:lang="en">information type</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#iirdsDomainEntity"/>
<iirds:description xml:lang="en">Not intented to be used directly.</iirds:description>
<rdfs:comment xml:lang="en">characteristic of content</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#InformationUnit">
<rdfs:label xml:lang="de">Informationseinheit</rdfs:label>
<rdfs:label xml:lang="en">information unit</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#iirdsDomainEntity"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses Package, Document, Topic, and Fragment instead.</iirds:description>
<rdfs:comment xml:lang="en">piece of digitally encoded information</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Learning">
<rdfs:label xml:lang="de">Lernen</rdfs:label>
<rdfs:label xml:lang="en">learning</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#TopicType"/>
<iirds:description xml:lang="en">Learning content may comprise learning plans, learning objectives, learning content details, summaries, and assessments.</iirds:description>
<rdfs:comment xml:lang="en">topic type that provides learning content</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#MaintenanceInterval">
<rdfs:label xml:lang="de">Wartungsintervall</rdfs:label>
<rdfs:label xml:lang="en">maintenance interval</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#PlanningTime"/>
<iirds:description xml:lang="en">Instances have a maintenance frequency and an optional maintenance duration.</iirds:description>
<rdfs:comment xml:lang="en">period of time between scheduled maintenance operations</rdfs:comment>
<iirds:description xml:lang="en">IRI: optional</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#nil">
<rdfs:label xml:lang="de">Ende einer Verzeichnisstruktur</rdfs:label>
<rdfs:label xml:lang="en">end of Directory node</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#DirectoryNode"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">closing element in a chain of directory nodes</rdfs:comment>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Package">
<rdfs:label xml:lang="de">Paket</rdfs:label>
<rdfs:label xml:lang="en">package</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<iirds:description xml:lang="en">There is exactly one Package instance within an iiRDS package. It holds general metadata on the overall iiRDS package.</iirds:description>
<rdfs:comment xml:lang="en">information unit that bundles other information units for exchange</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Party">
<rdfs:label xml:lang="de">Akteur</rdfs:label>
<rdfs:label xml:lang="en">party</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#AdministrativeMetadata"/>
<iirds:description xml:lang="en">Detailed information about a party may be specified in a vCard.</iirds:description>
<rdfs:comment xml:lang="en">person, organization, or system</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#PartyRole">
<rdfs:label xml:lang="de">Akteursrolle</rdfs:label>
<rdfs:label xml:lang="en">party role</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#AdministrativeMetadata"/>
<iirds:description xml:lang="en">Examples of party roles: manufacturer, author, inspector.</iirds:description>
<rdfs:comment xml:lang="en">responsibility of a person or organization</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#PlanningTime">
<rdfs:label xml:lang="de">Planungszeit</rdfs:label>
<rdfs:label xml:lang="en">planning time</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#FunctionalMetadata"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead.</iirds:description>
<rdfs:comment xml:lang="en">period of time required for or resulting from a specific task</rdfs:comment>
<iirds:description xml:lang="en">IRI: optional</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Process">
<rdfs:label xml:lang="de">Prozess</rdfs:label>
<rdfs:label xml:lang="en">process</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationSubject"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">information subject that covers structured activities carried out to achieve a specific goal</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#ProductFeature">
<rdfs:label xml:lang="de">Produktmerkmal</rdfs:label>
<rdfs:label xml:lang="en">product feature</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#ProductMetadata"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead.</iirds:description>
<rdfs:comment xml:lang="en">product characteristics</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#ProductProperty">
<rdfs:label xml:lang="de">Produkteigenschaft</rdfs:label>
<rdfs:label xml:lang="en">product property</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#ProductFeature"/>
<iirds:description xml:lang="en">Examples: dimensions, voltage, power, weight.</iirds:description>
<rdfs:comment xml:lang="en">invariable characteristic of a product whose value is fixed once the product is defined</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#ProductFunction">
<rdfs:label xml:lang="de">Produktfunktion</rdfs:label>
<rdfs:label xml:lang="en">product function</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#ProductFeature"/>
<iirds:description xml:lang="en">Examples: starting a phone call, ending a phone call, ringing.</iirds:description>
<rdfs:comment xml:lang="en">capability of a product or a component which is specific or required for the intended product task</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#ProductLifeCyclePhase">
<rdfs:label xml:lang="de">Produktlebenszyklusphase</rdfs:label>
<rdfs:label xml:lang="en">phase of product lifecycle</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#ProductMetadata"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead. </iirds:description>
<rdfs:comment xml:lang="en">defined period in the evolution of a product from the conceptual idea to its ultimate disposal</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#ProductMetadata">
<rdfs:label xml:lang="de">Produktmetadaten</rdfs:label>
<rdfs:label xml:lang="en">productMetadata</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#DocumentationMetadata"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead.</iirds:description>
<rdfs:comment xml:lang="en">information about a product or component</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#ProductVariant">
<rdfs:label xml:lang="de">Produktvariante</rdfs:label>
<rdfs:label xml:lang="en">product variant</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#ProductMetadata"/>
<iirds:description xml:lang="en">Examples: a specific model in a series or an individually manufactured good.</iirds:description>
<rdfs:comment xml:lang="en">item or service offered on the market and designed to meet the needs or wishes of customers</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#PuttingToUse">
<rdfs:label xml:lang="de">In Nutzung nehmen</rdfs:label>
<rdfs:label xml:lang="en">putting to use</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#ProductLifeCyclePhase"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead. For lifecycle phases not covered by the iiRDS standard subclasses, define custom subclasses.</iirds:description>
<rdfs:comment xml:lang="en">product life cycle phase after production in which a product is set up for its intended use</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Qualification">
<rdfs:label xml:lang="de">Qualifikation</rdfs:label>
<rdfs:label xml:lang="en">qualification</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#FunctionalMetadata"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead. </iirds:description>
<rdfs:comment xml:lang="en">proficiency, competence, or expertise exhibited by an individual</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#RangeSelector">
<rdfs:label xml:lang="de">Bereichsselektor</rdfs:label>
<rdfs:label xml:lang="en">range selector</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#Selector"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">selector that defines the start point and the end point of a part of content</rdfs:comment>
<iirds:description xml:lang="en">IRI: optional</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Reference">
<rdfs:label xml:lang="de">Referenz</rdfs:label>
<rdfs:label xml:lang="en">reference</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#TopicType"/>
<iirds:description xml:lang="de">Examples are parameter lists, tables with technical data, UI control overviews, and parts lists.
</iirds:description>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Rendition">
<rdfs:label xml:lang="de">Inhaltsausprägung</rdfs:label>
<rdfs:label xml:lang="en">rendition</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#iirdsDomainEntity"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">content of an information unit in a specific format</rdfs:comment>
<iirds:description xml:lang="en">IRI: optional</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Role">
<rdfs:label xml:lang="de">Rolle</rdfs:label>
<rdfs:label xml:lang="en">role</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#Qualification"/>
<iirds:description xml:lang="en">Describes a set of connected behaviors, privileges and obligations associated with users (humans, software processes or devices) of a system.</iirds:description>
<iirds:description xml:lang="de">Menge von zusammenhängenden Verhaltensweisen, Berechtigungen und Verpflichtungen, die Nutzern (Menschen, Softwareprozesse oder Geräte) eines Systems zugeordnet sind.</iirds:description>
<rdfs:comment xml:lang="en">set of connected behaviors, privileges, and obligations associated with a party</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Safety">
<rdfs:label xml:lang="de">Sicherheit</rdfs:label>
<rdfs:label xml:lang="en">safety</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationSubject"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead.</iirds:description>
<rdfs:comment xml:lang="en">information subject that covers content which helps to avoid risk</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#WarningMessage">
<rdfs:label xml:lang="de">Warnhinweis</rdfs:label>
<rdfs:label xml:lang="en">warning message</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#Safety"/>
<iirds:description xml:lang="en">Warning messages usually consist of a hazard alert symbol, a signal word (such as "Danger", "Warning", "Caution", "Notice"),
a description of the potential hazard, and hints how to avoid the hazard.</iirds:description>
<rdfs:comment xml:lang="en">safety-related information that warns about hazards and instructs on how to avoid them</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Selector">
<rdfs:label xml:lang="de">Selektor</rdfs:label>
<rdfs:label xml:lang="en">selector</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#iirdsDomainEntity"/>
<iirds:description xml:lang="en"/>
<iirds:description xml:lang="de"/>
<rdfs:comment xml:lang="en">pointer to the content of a rendition</rdfs:comment>
<iirds:description xml:lang="en">IRI: optional</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#SkillLevel">
<rdfs:label xml:lang="de">Kenntnisstufe</rdfs:label>
<rdfs:label xml:lang="en">skill level</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#Qualification"/>
<iirds:description xml:lang="en">Describe the levels of ability required to carry out a specific task described in the technical documentation.</iirds:description>
<rdfs:comment xml:lang="en">degree of qualification of an individual</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Supply">
<rdfs:label xml:lang="de">Hilfsmittel</rdfs:label>
<rdfs:label xml:lang="en">supply</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#FunctionalMetadata"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead. </iirds:description>
<rdfs:comment xml:lang="en">physical object used by an actor that performs work tasks described in technical documentation</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Task">
<rdfs:label xml:lang="de">Aufgabe</rdfs:label>
<rdfs:label xml:lang="en">task</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#TopicType"/>
<iirds:description xml:lang="en">Tasks provide instructions and may contain information on other aspects, such as requirements that must be fulfilled or safety instructions.
</iirds:description>
<rdfs:comment xml:lang="en">topic type that provides procedures and action steps to be followed or considered</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#TechnicalData">
<rdfs:label xml:lang="de">Technische Daten</rdfs:label>
<rdfs:label xml:lang="en">technical data</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationSubject"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use instances of this class instead.</iirds:description>
<rdfs:comment xml:lang="en">information subject that covers qualitative and quantitative characteristics of technical objects</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#TechnicalOverview">
<rdfs:label xml:lang="de">Technische Übersicht</rdfs:label>
<rdfs:label xml:lang="en">technical overview</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationSubject"/>
<iirds:description xml:lang="en">Examples are circuit diagrams, flow diagrams, software interface overviews, and pneumatic diagrams.</iirds:description>
<rdfs:comment xml:lang="en">information subject that covers the technical structure of a product</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Topic">
<rdfs:label xml:lang="de">Topic</rdfs:label>
<rdfs:label xml:lang="en">topic</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<iirds:description xml:lang="en">The resource of a topic is a file in the iiRDS package.</iirds:description>
<rdfs:comment xml:lang="en">information unit that covers a single subject</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#TopicType">
<rdfs:label xml:lang="de">Topictyp</rdfs:label>
<rdfs:label xml:lang="en">topic type</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#InformationType"/>
<iirds:description xml:lang="en">Possible types include task, learning, and concept. Information units that represent topics may have one or more has-topic-type properties that define the topic's information type. Topics without a has-topic-type property are generic topics, with no specific type.</iirds:description>
<rdfs:comment xml:lang="en">type of information determined according to functional principles</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Troubleshooting">
<rdfs:label xml:lang="de">Störungsbeseitigung</rdfs:label>
<rdfs:label xml:lang="en">troubleshooting </rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#TopicType"/>
<iirds:description xml:lang="en">Typical troubleshooting topics contain sections with a description of the system's behavior or symptom, the cause for the error, and a remedy for the error.</iirds:description>
<rdfs:comment xml:lang="en">topic type that provides an explanation for symptoms, diagnosis, and resolution of problems</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#Use">
<rdfs:label xml:lang="de">Nutzung</rdfs:label>
<rdfs:label xml:lang="en">use</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#ProductLifeCyclePhase"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead. For lifecycle phases not covered by the iiRDS standard subclasses, define custom subclasses.</iirds:description>
<rdfs:comment xml:lang="en">product life cycle phase in which the product is supposed to realize its function</rdfs:comment>
<iirds:description xml:lang="en">IRI: required</iirds:description>
</rdfs:Class>
<rdfs:Class rdf:about="http://iirds.tekom.de/iirds#WorkingTime">
<rdfs:label xml:lang="de">Arbeitszeit</rdfs:label>
<rdfs:label xml:lang="en">working time</rdfs:label>
<rdfs:subClassOf rdf:resource="http://iirds.tekom.de/iirds#PlanningTime"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">period of time that is required for conducting a specific task</rdfs:comment>
<iirds:description xml:lang="en">IRI: optional</iirds:description>
</rdfs:Class>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#dateOfCreation">
<rdfs:label xml:lang="de">Erstellungsdatum</rdfs:label>
<rdfs:label xml:lang="en">date of Creation</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/created"/>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTimeStamp"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">date of creation of the resource</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2001/XMLSchema#dateTimeStamp"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#InformationUnit [0..1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#dateOfEffect">
<rdfs:label xml:lang="de">Gültigkeitsbeginn</rdfs:label>
<rdfs:label xml:lang="en">effective date</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#ContentLifeCycleStatus"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTimeStamp"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">date and time on which the given content lifecycle status becomes valid</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#ContentLifeCycleStatus"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2001/XMLSchema#dateTimeStamp"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#ContentLifeCycleStatus [0..1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#dateOfExpiry">
<rdfs:label xml:lang="de">Auslaufdatum</rdfs:label>
<rdfs:label xml:lang="en">expiry date</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#ContentLifeCycleStatus"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTimeStamp"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">date and time on which the given content lifecycle status becomes invalid</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#ContentLifeCycleStatus"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2001/XMLSchema#dateTimeStamp"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#ContentLifeCycleStatus [0..1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#dateOfLastModification">
<rdfs:label xml:lang="de">Letztes Änderungsdatum</rdfs:label>
<rdfs:label xml:lang="en">date of last modification</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTimeStamp"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">date and time of an information unit's last change </rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2001/XMLSchema#dateTimeStamp"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#InformationUnit [0..1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#dateOfStatus">
<rdfs:label xml:lang="de">Vergabedatum</rdfs:label>
<rdfs:label xml:lang="en">status date</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#ContentLifeCycleStatus"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTimeStamp"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">date and time of a lifecycle status's last change</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#ContentLifeCycleStatus"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2001/XMLSchema#dateTimeStamp"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#ContentLifeCycleStatus [0..1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#description">
<rdfs:label xml:lang="de">Beschreibung</rdfs:label>
<rdfs:label xml:lang="en">description</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/description"/>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Typically a free-text acount of the resource</iirds:description>
<rdfs:comment xml:lang="en">account on the resource</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#iirdsDomainEntity"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#iirdsDomainEntity [0..*]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#duration">
<rdfs:label xml:lang="de">Dauer</rdfs:label>
<rdfs:label xml:lang="en">duration</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#PlanningTime"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#duration"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">span of time</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#PlanningTime"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2001/XMLSchema#duration"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#PlanningTime [1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#format">
<rdfs:label xml:lang="de">Format</rdfs:label>
<rdfs:label xml:lang="en">format</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/format"/>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#Rendition"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">media type of the rendition</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#Rendition"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#Rendition [1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#formatRestriction">
<rdfs:label xml:lang="de">Formateinschränkung</rdfs:label>
<rdfs:label xml:lang="en">format Restriction</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#Package"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Value "A" means that the package uses a restricted set of media formats ("iiRDS/A").</iirds:description>
<rdfs:comment xml:lang="en">restriction of media formats allowed in an iiRDS package</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#Package"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#Package [0..1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#frequency">
<rdfs:label xml:lang="de">Wartungsfrequenz</rdfs:label>
<rdfs:label xml:lang="en">maintenance frequency</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#MaintenanceInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">intended interval between recurring maintanance tasks</rdfs:comment>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#MaintenanceInterval [1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#identifier">
<rdfs:label xml:lang="de">Bezeichner</rdfs:label>
<rdfs:label xml:lang="en">identifier</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#Identity"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Recommended best practice is to identify the resource by means of a string conforming to a formal identification system.</iirds:description>
<rdfs:comment xml:lang="en">unique name of the resource within a given domain</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#Identity"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#Identity [1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#classificationIdentifier">
<rdfs:label xml:lang="de">Klassifikationsbezeichner</rdfs:label>
<rdfs:label xml:lang="en">classification identifier</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#ExternalClassification"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Recommended best practice is to classify the resource by means of a string conforming to a non-IRI identifier in an external classification domain.</iirds:description>
<rdfs:comment xml:lang="en">classification identifier of the resource within an external classification domain</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#ExternalClassification"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#ExternalClassification [1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#classificationVersion">
<rdfs:label xml:lang="de">Klassifikationsversion</rdfs:label>
<rdfs:label xml:lang="en">classification version</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#ExternalClassification"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Recommended best practice is to use the version or release date of the external classification.</iirds:description>
<rdfs:comment xml:lang="en">version of the external classification</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#ExternalClassification"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#ExternalClassification [0..1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#iirdsAttribute">
<rdfs:label xml:lang="de">iirdsAttribute</rdfs:label>
<rdfs:label xml:lang="en">iirdsAttribute</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Not intended to be used directly. Use the subclasses instead.</iirds:description>
<rdfs:comment xml:lang="en">property with a literal value</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#iirdsDomainEntity"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#iiRDSVersion">
<rdfs:label xml:lang="de">iiRDS Version</rdfs:label>
<rdfs:label xml:lang="en">iiRDS version</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#Package"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Current version is 1.0.</iirds:description>
<rdfs:comment xml:lang="en">iiRDS version with which the iiRDS package complies</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#Package"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#Package [1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#language">
<rdfs:label xml:lang="de">Sprache</rdfs:label>
<rdfs:label xml:lang="en">language</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/language"/>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Controlled vocabulary according to RFC 4646.</iirds:description>
<rdfs:comment xml:lang="en">identifier of the content's language</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#InformationUnit [0..*]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#revision">
<rdfs:label xml:lang="de">Revision</rdfs:label>
<rdfs:label xml:lang="en">revision</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">version of an information unit</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#InformationUnit [0..1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#rights">
<rdfs:label xml:lang="de">Rechte</rdfs:label>
<rdfs:label xml:lang="en">rights</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/rights"/>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">declaration of specific rights regarding the usage of the information</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#InformationUnit [0..*]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#statusComment">
<rdfs:label xml:lang="de">Kommentar zum Status</rdfs:label>
<rdfs:label xml:lang="en">status comment</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#ContentLifeCycleStatus"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">note on a content lifecycle status</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#ContentLifeCycleStatus"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#ContentLifeCycleStatus [0..*]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#source">
<rdfs:label xml:lang="de">Quelle</rdfs:label>
<rdfs:label xml:lang="en">source</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#Rendition"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="de">The path is relative to the root directory of the package, e.g., "content/overview.html".</iirds:description>
<rdfs:comment xml:lang="en">relative path of a file in an iiRDS package that contains the content of a rendition</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#Rendition"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#Rendition [1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#synonym">
<rdfs:label xml:lang="de">Synonym</rdfs:label>
<rdfs:label xml:lang="en">synonym</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#iirdsDomainEntity"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">word or phrase that means exactly or nearly the same as another word or phrase in the same language</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#iirdsDomainEntity"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#iirdsDomainEntity [0..*]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#title">
<rdfs:label xml:lang="de">Titel</rdfs:label>
<rdfs:label xml:lang="en">title</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/title"/>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsAttribute"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Typically, a title will be a name by which the information unit is formally known.</iirds:description>
<rdfs:comment xml:lang="en">name of the information unit</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<schema:rangeIncludes rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#InformationUnit [0..1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#is-applicable-for-document-type">
<rdfs:label xml:lang="de">geeignet für Dokumentart</rdfs:label>
<rdfs:label xml:lang="en">applicable for document type</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#has-information-type"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<rdfs:range rdf:resource="http://iirds.tekom.de/iirds#DocumentType"/>
<iirds:description xml:lang="en">Example: topics that are suitable for the installation instructions.</iirds:description>
<rdfs:comment xml:lang="en">information unit's property that references a document type the information unit is suitable for</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<schema:rangeIncludes rdf:resource="http://iirds.tekom.de/iirds#DocumentType"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#InformationUnit [0..*]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#has-abstract">
<rdfs:label xml:lang="de">hat Zusammenfassung</rdfs:label>
<rdfs:label xml:lang="en">has abstract</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/abstract"/>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsRelationConcept"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">summary of the resource</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#InformationUnit [0..1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#has-component">
<rdfs:label xml:lang="de">hat Komponente</rdfs:label>
<rdfs:label xml:lang="en">has component</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsRelationConcept"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#Component"/>
<rdfs:range rdf:resource="http://iirds.tekom.de/iirds#Component"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">property that references a component</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#Component"/>
<schema:rangeIncludes rdf:resource="http://iirds.tekom.de/iirds#Component"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#Component [0..*]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#has-content-lifecycle-status">
<rdfs:label xml:lang="de">hat Beziehung zu Bearbeitungsstatus</rdfs:label>
<rdfs:label xml:lang="en">relates to content lifecycle status</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#relates-to-administrative-metadata"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<rdfs:range rdf:resource="http://iirds.tekom.de/iirds#ContentLifeCycleStatus"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">information unit's property that references its content lifecycle status</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<schema:rangeIncludes rdf:resource="http://iirds.tekom.de/iirds#ContentLifeCycleStatus"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#InformationUnit [0..*]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#has-content-lifecycle-status-value">
<rdfs:label xml:lang="de">hat Statuswert</rdfs:label>
<rdfs:label xml:lang="en">has status value</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsRelationConcept"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#ContentLifeCycleStatus"/>
<rdfs:range rdf:resource="http://iirds.tekom.de/iirds#ContentLifeCycleStatusValue"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">content lifecycle status's property that references its value</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#ContentLifeCycleStatus"/>
<schema:rangeIncludes rdf:resource="http://iirds.tekom.de/iirds#ContentLifeCycleStatusValue"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#ContentLifeCycleStatus [1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#has-directory-structure-type">
<rdfs:label xml:lang="de">hat Verzeichnisstrukturtyp</rdfs:label>
<rdfs:label xml:lang="en">has directory structure type</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsRelationConcept"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#DirectoryNode"/>
<rdfs:range rdf:resource="http://iirds.tekom.de/iirds#DirectoryNodeType"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">directory node's property that references its node type</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#DirectoryNode"/>
<schema:rangeIncludes rdf:resource="http://iirds.tekom.de/iirds#DirectoryNodeType"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#DirectoryNode [0..1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#has-document-type">
<rdfs:label xml:lang="de">hat Dokumentart</rdfs:label>
<rdfs:label xml:lang="en">has document type</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#has-information-type"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#Document"/>
<rdfs:range rdf:resource="http://iirds.tekom.de/iirds#DocumentType"/>
<iirds:description xml:lang="en">Documents have one or more document types. Documents without document types are unspecific documents.</iirds:description>
<rdfs:comment xml:lang="en">document's property that references its document type</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#Document"/>
<schema:rangeIncludes rdf:resource="http://iirds.tekom.de/iirds#DocumentType"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#Document [1..*]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#has-end-selector">
<rdfs:label xml:lang="de">hat Endselektor</rdfs:label>
<rdfs:label xml:lang="en">has end selector</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#has-selector"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#RangeSelector"/>
<rdfs:range rdf:resource="http://iirds.tekom.de/iirds#FragmentSelector"/>
<iirds:description xml:lang="en">A range selector must reference one start and one end selector.</iirds:description>
<rdfs:comment xml:lang="en">range selector's property that references the end of its range</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#RangeSelector"/>
<schema:rangeIncludes rdf:resource="http://iirds.tekom.de/iirds#FragmentSelector"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#RangeSelector [1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#has-event-code">
<rdfs:label xml:lang="de">hat Ereigniscode</rdfs:label>
<rdfs:label xml:lang="en">has event code</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsRelationConcept"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#Event"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">property to identify an event</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#Event"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#Event [0..1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#has-event-type">
<rdfs:label xml:lang="de">hat Ereignistyp</rdfs:label>
<rdfs:label xml:lang="en">has event type</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsRelationConcept"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#Event"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">event's property that references its type</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#Event"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#Event [0..1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#has-first-child">
<rdfs:label xml:lang="de">hat als erstes Kindelement</rdfs:label>
<rdfs:label xml:lang="en">has first child</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsRelationConcept"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#DirectoryNode"/>
<rdfs:range rdf:resource="http://iirds.tekom.de/iirds#DirectoryNode"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">directory node's property that references the first directory node on the next subordinate level in a directory structure</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#DirectoryNode"/>
<schema:rangeIncludes rdf:resource="http://iirds.tekom.de/iirds#DirectoryNode"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#DirectoryNode [0..1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#has-identity">
<rdfs:label xml:lang="de">hat komplexen Identifier</rdfs:label>
<rdfs:label xml:lang="en">has complex identifier</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#relates-to-administrative-metadata"/>
<rdfs:range rdf:resource="http://iirds.tekom.de/iirds#Identity"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">iiRDS resource's property that references an identifier</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#Component"/>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#InformationObject"/>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#ProductVariant"/>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#Rendition"/>
<schema:rangeIncludes rdf:resource="http://iirds.tekom.de/iirds#Identity"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#Component [0..*]</iirds:description>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#InformationObject [0..*]</iirds:description>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#InformationUnit [0..*]</iirds:description>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#ProductVariant [0..*]</iirds:description>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#Rendition [0..*]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#has-identity-domain">
<rdfs:label xml:lang="de">hat Identifier-Domain</rdfs:label>
<rdfs:label xml:lang="en">has identifier domain</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsRelationConcept"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#Identity"/>
<rdfs:range rdf:resource="http://iirds.tekom.de/iirds#IdentityDomain"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">identifier's property that references the domain in which it is unique</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#Identity"/>
<schema:rangeIncludes rdf:resource="http://iirds.tekom.de/iirds#IdentityDomain"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#Identity [1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#has-identity-type">
<rdfs:label xml:lang="de">hat Identifier-Typ</rdfs:label>
<rdfs:label xml:lang="en">has identifier type</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsRelationConcept"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#IdentityDomain"/>
<rdfs:range rdf:resource="http://iirds.tekom.de/iirds#IdentityType"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">identity domain's property that references its identifier type</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#IdentityDomain"/>
<schema:rangeIncludes rdf:resource="http://iirds.tekom.de/iirds#IdentityType"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#IdentityDomain [0..1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#has-classification-domain">
<rdfs:label xml:lang="de">hat Klassifikations-Domain</rdfs:label>
<rdfs:label xml:lang="en">has classification domain</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#iirdsRelationConcept"/>
<rdfs:domain rdf:resource="http://iirds.tekom.de/iirds#ExternalClassification"/>
<rdfs:range rdf:resource="http://iirds.tekom.de/iirds#ClassificationDomain"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">references the domain that a classification refers to</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#ExternalClassification"/>
<schema:rangeIncludes rdf:resource="http://iirds.tekom.de/iirds#ClassificationDomain"/>
<iirds:description xml:lang="en">Cardinality: http://iirds.tekom.de/iirds#ExternalClassification [1]</iirds:description>
</rdf:Property>
<rdf:Property rdf:about="http://iirds.tekom.de/iirds#has-external-classification">
<rdfs:label xml:lang="de">hat externe Klassifikation</rdfs:label>
<rdfs:label xml:lang="en">has external classification</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://iirds.tekom.de/iirds#relates-to-administrative-metadata"/>
<rdfs:range rdf:resource="http://iirds.tekom.de/iirds#ExternalClassification"/>
<iirds:description xml:lang="en"/>
<rdfs:comment xml:lang="en">references an external classification</rdfs:comment>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#Component"/>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#InformationUnit"/>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#ProductVariant"/>
<schema:domainIncludes rdf:resource="http://iirds.tekom.de/iirds#ProductFeature"/>