forked from nl-digigo/nen2660
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnen2660.rdf
2433 lines (2433 loc) · 175 KB
/
nen2660.rdf
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
xmlns:nen2660="https://w3id.org/nen2660/def#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:sh="http://www.w3.org/ns/shacl#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#Activity">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#Activity"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#Entity"/>
<rdfs:subClassOf rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db1"/>
<skos:definition xml:lang="en">Entity that takes place or can take place in a concrete space-time. An activity transforms objects, and is executed by an object</skos:definition>
<skos:prefLabel xml:lang="en">Activity</skos:prefLabel>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b1"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b2"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b3"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b4"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b5"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#AggregationStateType">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/nen2660/def#EnumerationType"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#AggregationStateType"/>
<skos:definition xml:lang="en">One of the four fundamental states of matter being a solid, liquid, gas or plasma</skos:definition>
<skos:prefLabel xml:lang="en">Aggregation state type</skos:prefLabel>
<sh:in rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b6"/>
<owl:oneOf rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db2"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#isBoundBy">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#SpatialRegion"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#PhysicalObject"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#isBoundBy"/>
<skos:definition xml:lang="en">The physical object that bounds a spatial region</skos:definition>
<skos:prefLabel xml:lang="en">is bound by</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#aggregationStateType">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">Het hebben van een aggregatietoestandtype</skos:definition>
<skos:definition xml:lang="en">The possession of an aggregation state type</skos:definition>
<skos:prefLabel xml:lang="nl">aggregatietoestandtype</skos:prefLabel>
<skos:prefLabel xml:lang="en">aggregation state type</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#MatterPortion">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#MatterPortion"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#RelationReference"/>
<rdfs:subClassOf rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db8"/>
<rdfs:subClassOf rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db9"/>
<skos:definition xml:lang="en">An objectified relation reference for the consists of relation</skos:definition>
<skos:prefLabel xml:lang="en">Matter portion</skos:prefLabel>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b32"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#ConcreteConcept">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#ConcreteConcept"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#TopConcept"/>
<skos:definition xml:lang="en">Concept that forms a manifestation and a demarcation in a concrete space-time. A concrete concept has a life cycle</skos:definition>
<skos:prefLabel xml:lang="en">Concrete concept</skos:prefLabel>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b10"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b11"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b12"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b13"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b14"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#hasFunctionalPart">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#FunctionalEntity"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#FunctionalEntity"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#hasFunctionalPart"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/nen2660/def#hasPart"/>
<skos:definition xml:lang="en">The hasPart relation of a functional nature</skos:definition>
<skos:prefLabel xml:lang="en">has functional part</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#contains">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">De reële objecten die zich in een ruimtelijk gebied bevinden, meestal de gasvormige hoeveelheid bulkmaterie die in dat gebied aanwezig is</skos:definition>
<skos:definition xml:lang="en">The real objects located in a spatial region, typically the gaseous amount of bulk matter present in that region</skos:definition>
<skos:prefLabel xml:lang="nl">bevat</skos:prefLabel>
<skos:prefLabel xml:lang="en">contains</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#hasSolution">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#FunctionalEntity"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#TechnicalEntity"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#hasSolution"/>
<skos:definition xml:lang="en">A technical entity that is a potential solution for a functional entity</skos:definition>
<skos:prefLabel xml:lang="en">has solution</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db10">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/nen2660/def#Object"/>
<owl:onProperty rdf:resource="https://w3id.org/nen2660/def#hasPart"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b59">
<sh:path rdf:resource="https://w3id.org/nen2660/def#hasPart"/>
<sh:class rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b60"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#Type">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#AbstractConcept"/>
<skos:definition xml:lang="en">A meta-concept which instances are concepts (not individuals)</skos:definition>
<skos:definition xml:lang="nl">Een meta-concept waarvan instanties concepten zijn (geen individuen)</skos:definition>
<skos:prefLabel xml:lang="en">Type</skos:prefLabel>
<skos:prefLabel xml:lang="nl">Type</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db13">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<owl:onProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#value"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#isPlanFor">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="en">A potentially realized entity according to this planned entity</skos:definition>
<skos:definition xml:lang="nl">Een potentieel gerealiseerde entiteit volgens deze geplande entiteit</skos:definition>
<skos:prefLabel xml:lang="en">is plan for</skos:prefLabel>
<skos:prefLabel xml:lang="nl">is plan voor</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#RelationReference">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#Objectification"/>
<skos:definition xml:lang="nl">De objectivering van een referentie voor een relatie met een complexe waarde zoals een simpele referentie sec gecombineerd met andere metadata of alleen een combinatie van simpele referenties (n-ary relaties)</skos:definition>
<skos:definition xml:lang="en">The objectification of a reference for a relation having a complex value like a simple reference sec combined with other metadata or just a combination of simple references (n-ary relation)</skos:definition>
<skos:prefLabel xml:lang="nl">Relatie referentie</skos:prefLabel>
<skos:prefLabel xml:lang="en">Relation reference</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#triggers">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#Entity"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#Event"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#triggers"/>
<skos:definition xml:lang="en">The event triggert by an entity</skos:definition>
<skos:prefLabel xml:lang="en">triggers</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b31">
<sh:path rdf:resource="https://w3id.org/nen2660/def#chemicalFormula"/>
<sh:datatype rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#ChemicalCompound">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#ChemicalBonding"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#PureSubstance"/>
<skos:definition xml:lang="en">Pure substance consisting of two or more chemical elements that have a chemical bond with each other. In a chemical compound, the elements occur in a fixed ratio. A compound can be broken down into simpler substances by means of chemical reactions</skos:definition>
<skos:prefLabel xml:lang="en">Chemical compound</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#connectsObject">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#PhysicalObject"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#connectsObject"/>
<skos:definition xml:lang="en">The physical objects connected by a connection or interface</skos:definition>
<skos:prefLabel xml:lang="en">connects object</skos:prefLabel>
<rdfs:domain rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db36"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#Activity">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#Entity"/>
<skos:definition xml:lang="nl">Entiteit die plaatsvindt of kan plaatsvinden in een concrete ruimte-tijd. Een activiteit transformeert objecten, en wordt uitgevoerd door een object</skos:definition>
<skos:definition xml:lang="en">Entity that takes place or can take place in a concrete space-time. An activity transforms objects, and is executed by an object</skos:definition>
<skos:prefLabel xml:lang="en">Activity</skos:prefLabel>
<skos:prefLabel xml:lang="nl">Aktiviteit</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db11">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
<owl:onProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#value"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db56">
<rdf:first rdf:resource="https://w3id.org/nen2660/def#TechnicalEntity"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#EnumerationType">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#EnumerationType"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Container"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#Type"/>
<skos:definition xml:lang="en">A meta-concept having concepts as instances having no further attributes or relations (annotations only)</skos:definition>
<skos:prefLabel xml:lang="en">Enumeration type</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/shacl/def">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology"/>
<owl:imports rdf:resource="http://qudt.org/schema/qudt"/>
<owl:imports rdf:resource="http://qudt.org/vocab/quantitykind"/>
<owl:imports rdf:resource="http://qudt.org/vocab/unit"/>
<owl:imports rdf:resource="http://www.w3.org/2004/02/skos/core"/>
<owl:imports rdf:resource="http://www.w3.org/2006/time"/>
<owl:imports rdf:resource="http://www.w3.org/ns/shacl"/>
<owl:imports rdf:resource="https://w3id.org/nen2660/rdfs/def"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#transferType">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">Het hebben van een overdrachtstype door een interactie</skos:definition>
<skos:definition xml:lang="en">The possession of a transfer type by an interaction</skos:definition>
<skos:prefLabel xml:lang="nl">overdrachtstype</skos:prefLabel>
<skos:prefLabel xml:lang="en">transfer type</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#executes">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">De activiteit uitgevoerd door een fysiek object</skos:definition>
<skos:definition xml:lang="en">The activity executed by a physical object</skos:definition>
<skos:prefLabel xml:lang="en">executes</skos:prefLabel>
<skos:prefLabel xml:lang="nl">voert uit</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db29">
<rdf:first rdf:resource="https://w3id.org/nen2660/def#Port"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#RealizedEntity">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#Entity"/>
<skos:definition xml:lang="en">An entity that exists or has existed in the physical reality</skos:definition>
<skos:definition xml:lang="nl">Een entiteit die bestaat of heeft bestaan in de fysieke werkelijkheid</skos:definition>
<skos:prefLabel xml:lang="nl">Gerealiseerde entiteit</skos:prefLabel>
<skos:prefLabel xml:lang="en">Realized entity</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b112">
<rdf:first rdf:resource="https://w3id.org/nen2660/def#TechnicalEntity"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#Requirement">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#Requirement"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#InformationObject"/>
<rdfs:subClassOf rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db25"/>
<skos:definition>A rule that should hold for something, defined via its attributes or relations</skos:definition>
<skos:prefLabel xml:lang="en">Requirement</skos:prefLabel>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b65"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b66"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b67"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b68"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b69"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#Solid">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#AggregationStateType"/>
<skos:definition xml:lang="nl">Materie die kan worden opgepakt of vastgehouden, een textuur heeft en meestal stevig is. In tegenstelling tot een vloeistof, gas of plasma</skos:definition>
<skos:definition xml:lang="en">Matter that can be picked up or held, having a texture, and usually firm. Unlike a liquid, gas or plasma</skos:definition>
<skos:prefLabel xml:lang="en">Solid</skos:prefLabel>
<skos:prefLabel xml:lang="nl">Vaste stof</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#HeterogeneousMixture">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#Mixture"/>
<skos:definition xml:lang="en">A mixture that is separated into different regions or phases that have different compositions or properties</skos:definition>
<skos:definition xml:lang="nl">Een mengsel dat is opgedeeld in verschillende regio's of fasen met verschillende samenstellingen of eigenschappen</skos:definition>
<skos:prefLabel xml:lang="nl">Heterogeneen mengsel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Heterogeneous mixture</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#isConnectedTo">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#PhysicalObject"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#PhysicalObject"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#isConnectedTo"/>
<skos:definition xml:lang="en">The topological relationship between physical objects</skos:definition>
<skos:prefLabel xml:lang="en">is connected to</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#EnergyFlow">
<rdf:type rdf:resource="https://w3id.org/nen2660/def#TransferType"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#EnergyFlow"/>
<skos:definition xml:lang="en">The movement of an amount of energy (as capacity to do work)</skos:definition>
<skos:prefLabel xml:lang="en">Energy flow</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#TechnicalEntity">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#Entity"/>
<skos:definition xml:lang="en">An entity concerned with technical properties and relations that implements or plays functional entities</skos:definition>
<skos:definition xml:lang="nl">Een entiteit waarbij het gaat om technische eigenschappen en relaties die functionele entiteiten implementeert of speelt</skos:definition>
<skos:prefLabel xml:lang="en">Technical entity</skos:prefLabel>
<skos:prefLabel xml:lang="nl">Technische entiteit</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#hasState">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">De toestand van een entiteit op een bepaald tijdstip of in een bepaalde periode</skos:definition>
<skos:definition xml:lang="en">The state of an entity in a certain point or period of time</skos:definition>
<skos:prefLabel xml:lang="en">has state</skos:prefLabel>
<skos:prefLabel xml:lang="nl">heeft toestand</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#ConceptType">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#ConceptType"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#Type"/>
<skos:definition xml:lang="en">A meta-concept having concepts as instances that can have attributes or relations</skos:definition>
<skos:prefLabel xml:lang="en">Concept type</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#requirementSourceType">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">Het hebben van een brontype door een eis</skos:definition>
<skos:definition xml:lang="en">The possession of a source type by a requirement</skos:definition>
<skos:prefLabel xml:lang="nl">eis bron type</skos:prefLabel>
<skos:prefLabel xml:lang="en">requirement source type</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db40">
<rdf:first rdf:resource="https://w3id.org/nen2660/def#Connection"/>
<rdf:rest rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db41"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#AllDisjointClassesShape">
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<sh:targetSubjectsOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b89"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b99"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b106"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b113"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#HomogeneousMixture">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#Mixture"/>
<skos:definition xml:lang="en">A mixture that is uniform throughout, and has only one phase</skos:definition>
<skos:definition xml:lang="nl">Een mengsel dat overal uniform is en maar 1 fase heeft</skos:definition>
<skos:prefLabel xml:lang="nl">Homogeen mengsel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Homogeneous mixture</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#hasTechnicalPart">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#hasPart"/>
<skos:definition xml:lang="en">A hasPart relation of a technical nature</skos:definition>
<skos:definition xml:lang="nl">Een heeftDeel relatie van technische aard</skos:definition>
<skos:prefLabel xml:lang="en">has technical part</skos:prefLabel>
<skos:prefLabel xml:lang="nl">heeft technisch deel</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#Entity">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#Entity"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#ConcreteConcept"/>
<skos:definition xml:lang="en">Concept that forms a manifestation and a demarcation in a concrete space-time, and which has a certain state at any moment in time. An entity has a unique identity that remains constant throughout its life cycle. The life cycle of an entity is made up of the sequence of states of that entity, which follow each other in time. An entity is an object or an activity. An object exists, an activity takes place</skos:definition>
<skos:prefLabel xml:lang="en">Entity</skos:prefLabel>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b17"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b18"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#isRealizedBy">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#isPlanFor"/>
<skos:definition xml:lang="nl">De gerealiseerde entiteit die een geplande entiteit realiseert</skos:definition>
<skos:definition xml:lang="en">The realized entity that realizes a planned entity</skos:definition>
<skos:prefLabel xml:lang="nl">is gerealiseerd door</skos:prefLabel>
<skos:prefLabel xml:lang="en">is realized by</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b26">
<sh:path rdf:resource="https://w3id.org/nen2660/def#overInterface"/>
<sh:class rdf:resource="https://w3id.org/nen2660/def#Interface"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#requirementTopicType">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">Het hebben van een onderwerptype door een eis</skos:definition>
<skos:definition xml:lang="en">The possession of a topic type by a requirement</skos:definition>
<skos:prefLabel xml:lang="nl">eis onderwerp type</skos:prefLabel>
<skos:prefLabel xml:lang="en">requirement topic type</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#isDescribedBy">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#TopConcept"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#InformationObject"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#isDescribedBy"/>
<skos:definition xml:lang="en">The information object that describes something</skos:definition>
<skos:prefLabel xml:lang="en">is described by</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db51">
<rdf:first rdf:resource="https://w3id.org/nen2660/def#Event"/>
<rdf:rest rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db52"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/2006/time#TemporalEntity">
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#TemporalEntity"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#Representation"/>
<skos:definition xml:lang="en">A temporal interval or instant</skos:definition>
<skos:prefLabel xml:lang="en">Temporal entity</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#aggregationStateType">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#Matter"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#AggregationStateType"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#aggregationStateType"/>
<skos:definition xml:lang="en">The possession of an aggregation state type</skos:definition>
<skos:prefLabel xml:lang="en">aggregation state type</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#consistsOf">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">De materie waarvan een reëel object of mengsel is gemaakt</skos:definition>
<skos:definition xml:lang="en">The matter a real object or mixture is made of</skos:definition>
<skos:prefLabel xml:lang="nl">bestaat uit</skos:prefLabel>
<skos:prefLabel xml:lang="en">consists of</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#Gas">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#AggregationStateType"/>
<skos:definition xml:lang="nl">Materie in een tussentoestand tussen vloeistof en plasma die alleen kan worden ingesloten als deze volledig is omgeven door een vaste stof (of in een bel van vloeistof) (of bij elkaar wordt gehouden door zwaartekracht); het kan condenseren tot een vloeistof, of kan (zelden) direct een vaste stof worden door afzetting</skos:definition>
<skos:definition xml:lang="en">Matter in an intermediate state between liquid and plasma that can be contained only if it is fully surrounded by a solid (or in a bubble of liquid) (or held together by gravitational pull); it can condense into a liquid, or can (rarely) become a solid directly by deposition</skos:definition>
<skos:prefLabel xml:lang="en">Gas</skos:prefLabel>
<skos:prefLabel xml:lang="nl">Gas</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#Interface">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#SpatialRegion"/>
<skos:definition xml:lang="en">A spatial object, typically a thin 2D physical space (but also 0D or 1D) that connects two physical objects or ports of physical objects through which a static or dynamic interaction or interaction between those elements can take place</skos:definition>
<skos:definition xml:lang="nl">Een ruimtelijk object, typisch een dunne 2D fysieke ruimte (maar 0D of 1D kan ook) dat de verbinding legt tussen twee fysieke objecten of poorten van fysieke objecten waarlangs een statische of dynamische wisselwerking of interactie tussen die elementen kan plaatsvinden</skos:definition>
<skos:prefLabel xml:lang="en">Interface</skos:prefLabel>
<skos:prefLabel xml:lang="nl">Raakvlak</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#hasPart">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#ConcreteConcept"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#ConcreteConcept"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#hasPart"/>
<skos:definition xml:lang="en">A decomposition (hasPart) relation between concrete concepts</skos:definition>
<skos:prefLabel xml:lang="en">has part</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#ChemicalElement">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#PureSubstance"/>
<skos:definition xml:lang="en">Pure substance that is made up of atoms with the same atomic number. A chemical element cannot be decomposed through chemical reactions</skos:definition>
<skos:definition xml:lang="nl">Zuivere stof die is opgebouwd uit atomen met hetzelfde atoomnummer. Een chemisch element kan niet worden ontleed door middel van chemische reacties</skos:definition>
<skos:prefLabel xml:lang="en">Chemical element</skos:prefLabel>
<skos:prefLabel xml:lang="nl">Chemisch element</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#participatesIn">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#PhysicalObject"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#Interaction"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#participatesIn"/>
<skos:definition xml:lang="en">The interaction a physical object participates in</skos:definition>
<skos:prefLabel xml:lang="en">participates in</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#Type">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#Type"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#AbstractConcept"/>
<skos:definition xml:lang="en">A meta-concept which instances are concepts (not individuals)</skos:definition>
<skos:prefLabel xml:lang="en">Type</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#MaterialFlow">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#TransferType"/>
<skos:definition xml:lang="nl">De beweging van een hoeveelheid materiaal</skos:definition>
<skos:definition xml:lang="en">The movement of an amount of material</skos:definition>
<skos:prefLabel xml:lang="nl">Materiaalstroom</skos:prefLabel>
<skos:prefLabel xml:lang="en">Material flow</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#QualityValue">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#QualityValue"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#Objectification"/>
<rdfs:subClassOf rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db13"/>
<skos:definition xml:lang="en">The objectification of a value of a quality having a complex value like a simple value sec combined with other metadata or just a combination of simple values</skos:definition>
<skos:prefLabel xml:lang="en">Quality value</skos:prefLabel>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b46"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/owl/def">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology"/>
<owl:imports rdf:resource="http://qudt.org/schema/qudt"/>
<owl:imports rdf:resource="http://qudt.org/vocab/quantitykind"/>
<owl:imports rdf:resource="http://qudt.org/vocab/unit"/>
<owl:imports rdf:resource="http://www.w3.org/2004/02/skos/core"/>
<owl:imports rdf:resource="http://www.w3.org/2006/time"/>
<owl:imports rdf:resource="http://www.w3.org/ns/shacl"/>
<owl:imports rdf:resource="https://w3id.org/nen2660/rdfs/def"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#PlannedEntity">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#PlannedEntity"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#Entity"/>
<rdfs:subClassOf rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db12"/>
<skos:definition xml:lang="en">An entity that does not yet exist in physical reality, but which exists in mental or conceptual reality</skos:definition>
<skos:prefLabel xml:lang="en">Planned entity</skos:prefLabel>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b44"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b45"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#RequirementSourceType">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/nen2660/def#EnumerationType"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#RequirementSourceType"/>
<skos:definition xml:lang="en">The type of source from which a requirement comes like a client, by definition, recommended by the sector or demanded by law/regulation</skos:definition>
<skos:prefLabel xml:lang="en">Requirement source type</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db33">
<rdf:first rdf:resource="https://w3id.org/nen2660/def#EnergyFlow"/>
<rdf:rest rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db34"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b8">
<rdf:first rdf:resource="https://w3id.org/nen2660/def#Gas"/>
<rdf:rest rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b9"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#portion">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#MatterPortion"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#QuantityValue"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#portion"/>
<skos:definition xml:lang="en">The relative portion of a matter portion</skos:definition>
<skos:prefLabel xml:lang="en">portion</skos:prefLabel>
<nen2660:hasQuantityKind rdf:resource="http://qudt.org/vocab/quantitykind/DimensionlessRatio"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b98">
<rdf:first rdf:resource="https://w3id.org/nen2660/def#Activity"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db41">
<rdf:first rdf:resource="https://w3id.org/nen2660/def#Interface"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b44">
<sh:path rdf:resource="https://w3id.org/nen2660/def#hasPart"/>
<sh:class rdf:resource="https://w3id.org/nen2660/def#PlannedEntity"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db34">
<rdf:first rdf:resource="https://w3id.org/nen2660/def#InformationFlow"/>
<rdf:rest rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db35"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#transforms">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">Het object getransformeerd door een activiteit</skos:definition>
<skos:definition xml:lang="en">The object transformed by an activity</skos:definition>
<skos:prefLabel xml:lang="nl">transformeert</skos:prefLabel>
<skos:prefLabel xml:lang="en">transforms</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#isConnectedTo">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">De topologische relatie tussen fysieke objecten</skos:definition>
<skos:definition xml:lang="en">The topological relation between physical objects</skos:definition>
<skos:prefLabel xml:lang="en">is connected to</skos:prefLabel>
<skos:prefLabel xml:lang="nl">is verbonden met</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#Mixture">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#Matter"/>
<skos:definition xml:lang="nl">De combinatie van twee of meer verschillende zuivere stoffen zonder dat daarbij de moleculen hun identiteit verliezen</skos:definition>
<skos:definition xml:lang="en">The combination of two or more different pure substances without the molecules losing their identity</skos:definition>
<skos:prefLabel xml:lang="nl">Mengsel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Mixture</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#InformationFlow">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#TransferType"/>
<skos:definition xml:lang="nl">De beweging van informatie weergegeven in een of ander medium</skos:definition>
<skos:definition xml:lang="en">The movement of information represented in some medium</skos:definition>
<skos:prefLabel xml:lang="nl">Informatie stroom</skos:prefLabel>
<skos:prefLabel xml:lang="en">Information flow</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#hasBoundary">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">De geometrische entiteit die de grens van een concreet concept vertegenwoordigt</skos:definition>
<skos:definition xml:lang="en">The geometric entity representing the boundary of a concrete concept</skos:definition>
<skos:prefLabel xml:lang="en">has boundary</skos:prefLabel>
<skos:prefLabel xml:lang="nl">heeft begrenzing</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#AbstractConcept">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#AbstractConcept"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#TopConcept"/>
<skos:definition xml:lang="en">Concept that forms a manifestation and demarcation in an abstract space. An abstract concept has no life cycle</skos:definition>
<skos:prefLabel xml:lang="en">Abstract concept</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#ends">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#Event"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#State"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#ends"/>
<skos:definition xml:lang="en">The state that is ended by an event</skos:definition>
<skos:prefLabel xml:lang="en">ends</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#Event">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#ConcreteConcept"/>
<skos:definition xml:lang="nl">Overgang tussen twee opeenvolgende toestanden van een entiteit (object of activiteit). Een gebeurtenis wordt getriggerd in een toestand</skos:definition>
<skos:definition xml:lang="en">Transition between two successive states of an entity (object or activity). An event is triggered in a state</skos:definition>
<skos:prefLabel xml:lang="en">Event</skos:prefLabel>
<skos:prefLabel xml:lang="nl">Gebeurtenis</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b100">
<sh:zeroOrMorePath rdf:resource="http://www.w3.org/2000/01/rdf-schema#subClassOf"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#Mixture">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#Mixture"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#Matter"/>
<skos:definition xml:lang="en">The combination of two or more different pure substances without the molecules losing their identity</skos:definition>
<skos:prefLabel xml:lang="en">Mixture</skos:prefLabel>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b33"/>
</rdf:Description>
<rdf:Description rdf:about="http://qudt.org/schema/qudt/Unit">
<rdf:type rdf:resource="https://w3id.org/nen2660/def#EnumerationType"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#Unit"/>
<skos:definition xml:lang="en">A particular quantity value that has been chosen as a scale for measuring other quantities the same kind</skos:definition>
<skos:prefLabel xml:lang="en">Unit</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#hasQuantityKind">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:range rdf:resource="http://qudt.org/schema/qudt/QuantityKind"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#hasQuantityKind"/>
<skos:definition xml:lang="en">The possession of a quantity kind</skos:definition>
<skos:prefLabel xml:lang="en">has quantity kind</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#hasPartsGroup">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">Het hebben van een groep, eventueel impliciete, onderdelen</skos:definition>
<skos:definition xml:lang="en">The possession of an group of, potentially implicit, parts</skos:definition>
<skos:prefLabel xml:lang="en">has parts group</skos:prefLabel>
<skos:prefLabel xml:lang="nl">heeft delen groep</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#QualityValue">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#Objectification"/>
<skos:definition xml:lang="nl">De objectivering van een waarde van een kwaliteit met een complexe waarde zoals een eenvoudige waarde sec gecombineerd met andere metadata of alleen een combinatie van eenvoudige waarden</skos:definition>
<skos:definition xml:lang="en">The objectification of a value of a quality having a complex value like a simple value sec combined with other metadata or just a combination of simple values</skos:definition>
<skos:prefLabel xml:lang="nl">Kwaliteitwaarde</skos:prefLabel>
<skos:prefLabel xml:lang="en">Quality value</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#HeterogeneousMixture">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#HeterogeneousMixture"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#Mixture"/>
<skos:definition xml:lang="en">A mixture that is separated into different regions or phases that have different compositions or properties</skos:definition>
<skos:prefLabel xml:lang="en">Heterogeneous mixture</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#Representation">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#InformationObject"/>
<skos:definition xml:lang="nl">Dat wat iets anders vertegenwoordigt</skos:definition>
<skos:definition xml:lang="en">That which represents something else</skos:definition>
<skos:prefLabel xml:lang="nl">Representatie</skos:prefLabel>
<skos:prefLabel xml:lang="en">Representation</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#SpatialRegion">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#SpatialRegion"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#PhysicalObject"/>
<rdfs:subClassOf rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db26"/>
<skos:definition xml:lang="en">A physical object that encloses a particular area such as a room, roadway and river, that is bounded by real objects or other spatial areas (e.g., by usage or convention) and that contains primarily liquid or gaseous amount of matter</skos:definition>
<skos:prefLabel xml:lang="en">Spatial region</skos:prefLabel>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b70"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b71"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b75"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b71">
<sh:path rdf:resource="https://w3id.org/nen2660/def#hasPart"/>
<sh:class rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b72"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#PureSubstance">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#Matter"/>
<skos:definition xml:lang="nl">Een chemische stof die een gelijke chemische samenstelling en herkenbare uniforme en isotrope eigenschappen heeft</skos:definition>
<skos:definition xml:lang="en">Chemical matter that has an equal chemical composition and recognizable uniform and isotropic properties</skos:definition>
<skos:prefLabel xml:lang="en">Pure substance</skos:prefLabel>
<skos:prefLabel xml:lang="nl">Zuivere stof</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#AllDisjointClasses_4">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDisjointClasses"/>
<owl:members rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db57"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b2">
<sh:path rdf:resource="https://w3id.org/nen2660/def#hasInterior"/>
<sh:class rdf:resource="https://w3id.org/nen2660/def#GeometricEntity"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#Liquid">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#AggregationStateType"/>
<skos:definition xml:lang="en">A liquid is a nearly incompressible fluid that conforms to the shape of its container but retains a (nearly) constant volume independent of pressure</skos:definition>
<skos:definition xml:lang="nl">Een vloeistof is een bijna onsamendrukbare vloeistof die zich aanpast aan de vorm van de houder, maar een (bijna) constant volume behoudt, onafhankelijk van de druk</skos:definition>
<skos:prefLabel xml:lang="en">Liquid</skos:prefLabel>
<skos:prefLabel xml:lang="nl">Vloeistof</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#QuantityKind">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="en">Any observable property that can be measured and quantified numerically</skos:definition>
<skos:definition xml:lang="nl">Elke waarneembare eigenschap die numeriek kan worden gemeten en gekwantificeerd</skos:definition>
<skos:prefLabel xml:lang="nl">Kwantiteitsoort</skos:prefLabel>
<skos:prefLabel xml:lang="en">Quantity kind</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#hasBoundary">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#ConcreteConcept"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#GeometricEntity"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#hasBoundary"/>
<skos:definition xml:lang="en">The geometric entity representing the boundary of a concrete concept</skos:definition>
<skos:prefLabel xml:lang="en">has boundary</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#FunctionalEntity">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#FunctionalEntity"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#Entity"/>
<rdfs:subClassOf rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db7"/>
<skos:definition xml:lang="en">An entity involving the external behavior where the output contributes to stakeholder objectives implemented/played by one or more technical entities</skos:definition>
<skos:prefLabel xml:lang="en">Functional entity</skos:prefLabel>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b22"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b23"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b24"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b28">
<sh:path rdf:resource="https://w3id.org/nen2660/def#connectsObject"/>
<sh:class rdf:resource="https://w3id.org/nen2660/def#PhysicalObject"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#portion">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">Het relatieve deel van een materiedeel</skos:definition>
<skos:definition xml:lang="en">The relative portion of a matter portion</skos:definition>
<skos:prefLabel xml:lang="nl">aandeel</skos:prefLabel>
<skos:prefLabel xml:lang="en">portion</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b88">
<rdf:first rdf:resource="https://w3id.org/nen2660/def#Force"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b89">
<sh:path rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b91"/>
<sh:qualifiedValueShape rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b93"/>
<sh:qualifiedMaxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:qualifiedMaxCount>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#connectsPort">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#Port"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#connectsPort"/>
<skos:definition xml:lang="en">The ports (as part of physical objects) connected by a connection or interface</skos:definition>
<skos:prefLabel xml:lang="en">connects port</skos:prefLabel>
<rdfs:domain rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db39"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b80">
<sh:path rdf:resource="https://w3id.org/nen2660/def#hasPart"/>
<sh:class rdf:resource="https://w3id.org/nen2660/def#Entity"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b9">
<rdf:first rdf:resource="https://w3id.org/nen2660/def#Plasma"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db46">
<rdf:first rdf:resource="https://w3id.org/nen2660/def#Matter"/>
<rdf:rest rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db47"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#transferType">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#Interaction"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#TransferType"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#transferType"/>
<skos:definition xml:lang="en">The possession of a transfer type by an interaction</skos:definition>
<skos:prefLabel xml:lang="en">transfer type</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#FunctionalEntity">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#Entity"/>
<skos:definition xml:lang="en">An entity involving the external behavior where the output contributes to stakeholder objectives implemented/played by one or more technical entities</skos:definition>
<skos:definition xml:lang="nl">Een entiteit waarbij het gaat om het externe gedrag waarbij de uitvoer bijdraagt aan doelstellingen van belanghebbenden geïmplementeerd/gespeeld door een of meer technische entiteiten</skos:definition>
<skos:prefLabel xml:lang="en">Functional entity</skos:prefLabel>
<skos:prefLabel xml:lang="nl">Functionele entiteit</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#Object">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#Entity"/>
<skos:definition xml:lang="nl">Entiteit die bestaat of kan bestaan binnen een concrete ruimte-tijd. Een object voert een activiteit uit, en wordt getransformeerd door een activiteit</skos:definition>
<skos:definition xml:lang="en">Entity that exists or can exist within a concrete space-time. An object executes an activity, and is transformed by an activity</skos:definition>
<skos:prefLabel xml:lang="en">Object</skos:prefLabel>
<skos:prefLabel xml:lang="nl">Object</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#connectsPort">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">De poorten (als onderdeel van fysieke objecten) verbonden door een verbinding of interface</skos:definition>
<skos:definition xml:lang="en">The ports (as part of physical objects) connected by a connection or interface</skos:definition>
<skos:prefLabel xml:lang="en">connects port</skos:prefLabel>
<skos:prefLabel xml:lang="nl">verbindt poort</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#Unit">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="en">A particular quantity value that has been chosen as a scale for measuring other quantities the same kind</skos:definition>
<skos:definition xml:lang="nl">Een bepaalde hoeveelheidswaarde die is gekozen als schaal voor het meten van andere hoeveelheden van dezelfde soort</skos:definition>
<skos:prefLabel xml:lang="nl">Eenheid</skos:prefLabel>
<skos:prefLabel xml:lang="en">Unit</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#Force">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#TransferType"/>
<skos:definition xml:lang="nl">Natuurkundige grootheid die, uitgeoefend op een lichaam, daarin een spanning of druk doet ontstaan, of die het lichaam van beweging doet veranderen, doet versnellen</skos:definition>
<skos:definition xml:lang="en">Physical quantity which, when exerted on a body, causes tension or pressure to arise therein, or which causes the body to change motion, accelerate</skos:definition>
<skos:prefLabel xml:lang="en">Force</skos:prefLabel>
<skos:prefLabel xml:lang="nl">Kracht</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#overInterface">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#Interaction"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#Interface"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#overInterface"/>
<skos:definition xml:lang="en">The interface over which an interaction between physical objects takes place</skos:definition>
<skos:prefLabel xml:lang="en">over interface</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#verificationMethodType">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#Requirement"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#VerificationMethodType"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#verificationMethodType"/>
<skos:definition xml:lang="en">The possession of a verification method type by a requirement</skos:definition>
<skos:prefLabel xml:lang="en">verification method type</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b45">
<sh:path rdf:resource="https://w3id.org/nen2660/def#isPlanFor"/>
<sh:class rdf:resource="https://w3id.org/nen2660/def#RealizedEntity"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#PhysicalObject">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#Object"/>
<skos:definition xml:lang="nl">Object dat bestaat of kan bestaan binnen de fysieke 4D ruimte-tijd. Een fysiek object vormt een manifestatie en een afbakening van materie en/of energie, en is (in)direct waarneembaar door de zintuigen</skos:definition>
<skos:definition xml:lang="en">Object that exists or may exist within physical 4D space-time. A physical object forms a manifestation and a demarcation of matter and/or energy, and is (in)directly perceptible by the senses</skos:definition>
<skos:prefLabel xml:lang="nl">Fysiek object</skos:prefLabel>
<skos:prefLabel xml:lang="en">Physical object</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#connectsObject">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">De fysieke objecten verbonden door een verbinding of raakvlak</skos:definition>
<skos:definition xml:lang="en">The physical objects connected by a connection or interface</skos:definition>
<skos:prefLabel xml:lang="en">connects object</skos:prefLabel>
<skos:prefLabel xml:lang="nl">verbindt object</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#RealizedEntity">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#RealizedEntity"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#Entity"/>
<rdfs:subClassOf rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db23"/>
<skos:definition xml:lang="en">An entity that exists or has existed in the physical reality</skos:definition>
<skos:prefLabel xml:lang="en">Realized entity</skos:prefLabel>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b63"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#DiscreteObject">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#DiscreteObject"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#RealObject"/>
<skos:definition xml:lang="en">A real object consisting of a contiguous amount of form-retaining matter, held together primarily by internal forces (gravity or electromagnetic force)</skos:definition>
<skos:prefLabel xml:lang="en">Discrete object</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#ends">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="nl">De toestand die wordt beëindigd door een gebeurtenis</skos:definition>
<skos:definition xml:lang="en">The state that is ended by an event</skos:definition>
<skos:prefLabel xml:lang="nl">beeindigt</skos:prefLabel>
<skos:prefLabel xml:lang="en">ends</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#hasState">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#Entity"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#State"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#hasState"/>
<skos:definition xml:lang="en">The state of an entity in a certain point or period of time</skos:definition>
<skos:prefLabel xml:lang="en">has state</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#VerificationMethodType">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#EnumerationType"/>
<skos:definition xml:lang="nl">De methode waarmee een eis wordt geverifieerd</skos:definition>
<skos:definition xml:lang="en">The method by which a requirement is verified</skos:definition>
<skos:prefLabel xml:lang="nl">Verificatie methode type</skos:prefLabel>
<skos:prefLabel xml:lang="en">Verification method type</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#RealObject">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:altLabel xml:lang="en">Amount of matter</skos:altLabel>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#PhysicalObject"/>
<skos:definition xml:lang="nl">Een fysiek object (vormvast of niet-vormvast) dat in de werkelijkheid tastbaar en zichtbaar is (of kan zijn), door de mens gemaakt of natuurlijk ontstaan</skos:definition>
<skos:definition xml:lang="en">physical object (rigid or non-rigid) that is (or can be) tangible and visible in reality, man-made or naturally occurring</skos:definition>
<skos:prefLabel xml:lang="en">Real object</skos:prefLabel>
<skos:prefLabel xml:lang="nl">Reeel object</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#State">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#State"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#ConcreteConcept"/>
<rdfs:subClassOf rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db30"/>
<skos:definition xml:lang="en">Temporal part of an entity during a period between two events. A state is characterized by the properties and relations of the entity</skos:definition>
<skos:prefLabel xml:lang="en">State</skos:prefLabel>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b76"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b77"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b78"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b79"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b32">
<sh:path rdf:resource="https://w3id.org/nen2660/def#portion"/>
<sh:class rdf:resource="https://w3id.org/nen2660/def#QuantityValue"/>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:minCount>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#AllDisjointClasses_1">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDisjointClasses"/>
<owl:members rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db48"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#consistsOf">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#consistsOf"/>
<skos:definition xml:lang="en">The matter a real object or mixture is made of</skos:definition>
<skos:prefLabel xml:lang="en">consists of</skos:prefLabel>
<rdfs:domain rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db42"/>
<rdfs:range rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db45"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b65">
<sh:path rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#value"/>
<sh:datatype rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<sh:maxCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:maxCount>
<sh:minCount rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</sh:minCount>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#MatterPortion">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#RelationReference"/>
<skos:definition xml:lang="en">An objectified relation reference for the consists of relation</skos:definition>
<skos:definition xml:lang="nl">Een geobjectiveerde relatiereferentie voor de bestaat uit relatie</skos:definition>
<skos:prefLabel xml:lang="nl">Materie-aandeel</skos:prefLabel>
<skos:prefLabel xml:lang="en">Matter portion</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#RealObject">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="http://www.w3.org/ns/shacl#NodeShape"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#RealObject"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/nen2660/def#PhysicalObject"/>
<rdfs:subClassOf rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db19"/>
<skos:definition xml:lang="en">physical object (rigid or non-rigid) that is (or can be) tangible and visible in reality, man-made or naturally occurring</skos:definition>
<skos:prefLabel xml:lang="en">Real object</skos:prefLabel>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b54"/>
<sh:property rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b59"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/def#isPlanFor">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/nen2660/def#PlannedEntity"/>
<rdfs:range rdf:resource="https://w3id.org/nen2660/def#RealizedEntity"/>
<rdfs:seeAlso rdf:resource="https://w3id.org/nen2660/term#isPlanFor"/>
<skos:definition xml:lang="en">A potentially realized entity according to this planned entity</skos:definition>
<skos:prefLabel xml:lang="en">is plan for</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db26">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:allValuesFrom rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db27"/>
<owl:onProperty rdf:resource="https://w3id.org/nen2660/def#hasPart"/>
</rdf:Description>
<rdf:Description rdf:nodeID="na0351f148d564b1cb6c1a51dde131d4db7">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/nen2660/def#Entity"/>
<owl:onProperty rdf:resource="https://w3id.org/nen2660/def#hasPart"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#SpatialRegion">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#PhysicalObject"/>
<skos:definition xml:lang="en">A physical object that encloses a particular area such as a room, roadway and river, that is bounded by real objects or other spatial areas (e.g., by usage or convention) and that contains primarily liquid or gaseous amount of matter</skos:definition>
<skos:definition xml:lang="nl">Een fysiek object dat een bepaald gebied omsluit zoals een vertrek, rijbaan en rivier, die wordt begrensd door reële objecten of andere ruimtelijke gebieden (bijvoorbeeld op basis van gebruik of conventie) en dat voornamelijk vloeibare of gasvormige hoeveelheid materie bevat</skos:definition>
<skos:prefLabel xml:lang="nl">Ruimtelijk gebied</skos:prefLabel>
<skos:prefLabel xml:lang="en">Spatial region</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:nodeID="na3d393b63dfe45089d0f0d67e9ef4ba7b62">
<rdf:first rdf:resource="https://w3id.org/nen2660/def#Port"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/nen2660/term#State">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="https://w3id.org/nen2660/term#ConcreteConcept"/>
<skos:definition xml:lang="en">Temporal part of an entity during a period between two events. A state is characterized by the properties and relations of the entity</skos:definition>
<skos:definition xml:lang="nl">Temporeel deel van een entiteit gedurende een periode tussen twee gebeurtenissen. Een toestand wordt gekenmerkt door de eigenschappen en relaties van de entiteit</skos:definition>