-
Notifications
You must be signed in to change notification settings - Fork 0
/
int-classification-for-standards.ttl
21696 lines (16525 loc) · 953 KB
/
int-classification-for-standards.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix ics: <https://data.nen.nl/ics/> .
@prefix docs: <http://data.nen.nl/docs/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
ics:Class a rdfs:Class ;
rdfs:label "Class"@en,
"Klasse"@nl,
"Klasse"@de,
"Catégorie"@fr ;
rdfs:subClassOf skos:Concept .
ics:hasDocument a rdf:Property ;
rdfs:label "has document"@en,
"heeft document"@nl,
"hat Dokument"@de,
"a document"@fr ;
rdfs:domain ics:Class ;
rdfs:range docs:Document .
<http://data.nen.nl/ics/01> a ics:Class,
skos:Concept ;
skos:notation "01" ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:narrower <http://data.nen.nl/ics/01.020>,
<http://data.nen.nl/ics/01.040>,
<http://data.nen.nl/ics/01.060>,
<http://data.nen.nl/ics/01.070>,
<http://data.nen.nl/ics/01.075>,
<http://data.nen.nl/ics/01.080>,
<http://data.nen.nl/ics/01.100>,
<http://data.nen.nl/ics/01.110>,
<http://data.nen.nl/ics/01.120>,
<http://data.nen.nl/ics/01.140> ;
skos:prefLabel "generalities terminology standardization documentation"@en,
"algemeen terminologie normalisatie documentatie"@nl ;
skos:topConceptOf <http://data.nen.nl/ics> .
<http://data.nen.nl/ics/01.020> a ics:Class,
skos:Concept ;
skos:notation "01.020" ;
rdfs:comment "Including terminography"@en,
"Met inbegrip van terminografie"@nl ;
skos:broader <http://data.nen.nl/ics/01> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "terminology (principles and coordination)"@en,
"terminologie (beginselen en coördinatie)"@nl .
<http://data.nen.nl/ics/01.040.01> a ics:Class,
skos:Concept ;
skos:notation "01.040.01" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "generalities terminology standardization documentation (vocabularies)"@en,
"algemeen terminologie normalisatie documentatie (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.03> a ics:Class,
skos:Concept ;
skos:notation "01.040.03" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "services company organization, management and quality administration transport sociology (vocabularies)"@en,
"diensten bedrijfsorganisatie, beheer en kwaliteit administratie vervoer sociologie (woordenlijsten)"@nl .
<https://data.nen.nl/ics/01.040.07> a ics:Class,
skos:Concept ;
skos:notation "01.040.07" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "natural and applies sciences (vocabularies)"@en,
"natuurwetenschappen en toegepaste wetenschappen (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.11> a ics:Class,
skos:Concept ;
skos:notation "01.040.11" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "health care technology (vocabularies)"@en,
"technologie van de gezondheidszorg (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.13> a ics:Class,
skos:Concept ;
skos:notation "01.040.13" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "environment health protection safety (vocabularies)"@en,
"milieu gezondheidsbescherming veiligheid (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.17> a ics:Class,
skos:Concept ;
skos:notation "01.040.17" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "metrology and measurement physical phenomena (vocabularies)"@en,
"metrologie en meting natuurkundige verschijnselen (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.19> a ics:Class,
skos:Concept ;
skos:notation "01.040.19" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "testing (vocabularies)"@en,
"beproeving (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.21> a ics:Class,
skos:Concept ;
skos:notation "01.040.21" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "mechanical systems and components for general use (vocabularies)"@en,
"mechanische systemen en onderdelen voor algemeen gebruik (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.23> a ics:Class,
skos:Concept ;
skos:notation "01.040.23" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "fluid systems and components for general use (vocabularies)"@en,
"toegepaste vloeistofmechanica en onderdelen voor algemeen gebruik (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.25> a ics:Class,
skos:Concept ;
skos:notation "01.040.25" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "manufacturing engineering (vocabularies)"@en,
"productietechniek (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.27> a ics:Class,
skos:Concept ;
skos:notation "01.040.27" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "energy and heat transfer engineering (vocabularies)"@en,
"energie- en warmte-overdrachttechnieken (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.29> a ics:Class,
skos:Concept ;
skos:notation "01.040.29" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "electrical engineering (vocabularies)"@en,
"elektrotechniek (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.31> a ics:Class,
skos:Concept ;
skos:notation "01.040.31" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "electronics (vocabularies)"@en,
"elektronica (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.33> a ics:Class,
skos:Concept ;
skos:notation "01.040.33" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "telecommunications audio and video engineering (vocabularies)"@en,
"telecommunicatie audio- en videotechniek (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.35> a ics:Class,
skos:Concept ;
skos:notation "01.040.35" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "information technology (vocabularies)"@en,
"informatietechnologie(woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.37> a ics:Class,
skos:Concept ;
skos:notation "01.040.37" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "image technology (vocabularies)"@en,
"beeldtechnologie (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.39> a ics:Class,
skos:Concept ;
skos:notation "01.040.39" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "precision mechanics jewellery (vocabularies)"@en,
"fijnmechanica sieraden (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.43> a ics:Class,
skos:Concept ;
skos:notation "01.040.43" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "road vehicle engineering (vocabularies)"@en,
"wegvoertuigen (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.45> a ics:Class,
skos:Concept ;
skos:notation "01.040.45" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "railway engineering (vocabularies)"@en,
"spoorwegen (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.47> a ics:Class,
skos:Concept ;
skos:notation "01.040.47" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "shipbuilding and marine structures (vocabularies)"@en,
"scheepsbouw en maritieme constructies (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.49> a ics:Class,
skos:Concept ;
skos:notation "01.040.49" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "aircraft and space vehicle engineering (vocabularies)"@en,
"lucht- en ruimtevaart (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.53> a ics:Class,
skos:Concept ;
skos:notation "01.040.53" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "materials handling equipment (vocabularies)"@en,
"transportmiddelen (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.55> a ics:Class,
skos:Concept ;
skos:notation "01.040.55" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "packaging and distribution of goods (vocabularies)"@en,
"verpakking en distributie van goederen (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.59> a ics:Class,
skos:Concept ;
skos:notation "01.040.59" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "textile and leather technology (vocabularies)"@en,
"textiel- en leertechnologie (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.61> a ics:Class,
skos:Concept ;
skos:notation "01.040.61" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "clothing industry (vocabularies)"@en,
"kledingindustrie (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.65> a ics:Class,
skos:Concept ;
skos:notation "01.040.65" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "agriculture (vocabularies)"@en,
"landbouw (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.67> a ics:Class,
skos:Concept ;
skos:notation "01.040.67" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "food technology (vocabularies)"@en,
"voedingsmiddelentechnologie (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.71> a ics:Class,
skos:Concept ;
skos:notation "01.040.71" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "chemical technology (vocabularies)"@en,
"scheikundige technologie (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.73> a ics:Class,
skos:Concept ;
skos:notation "01.040.73" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "mining and minerals (vocabularies)"@en,
"mijnbouw en ertsen (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.75> a ics:Class,
skos:Concept ;
skos:notation "01.040.75" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "petroleum and related technologies (vocabularies)"@en,
"aardolienijverheid en aanverwante technologieën (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.77> a ics:Class,
skos:Concept ;
skos:notation "01.040.77" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "metallurgy (vocabularies)"@en,
"metaalkunde (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.79> a ics:Class,
skos:Concept ;
skos:notation "01.040.79" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "wood technology (vocabularies)"@en,
"houttechnologie (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.81> a ics:Class,
skos:Concept ;
skos:notation "01.040.81" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "glass and ceramics industries (vocabularies)"@en,
"glas- en keramische industrie (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.83> a ics:Class,
skos:Concept ;
skos:notation "01.040.83" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "rubber and plastics industries (vocabularies)"@en,
"rubber- en kunststofindustrie (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.85> a ics:Class,
skos:Concept ;
skos:notation "01.040.85" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "paper technology (vocabularies)"@en,
"papiertechnologie (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.87> a ics:Class,
skos:Concept ;
skos:notation "01.040.87" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "paint and colour industries (vocabularies)"@en,
"verf- en kleurenindustrie (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.91> a ics:Class,
skos:Concept ;
skos:notation "01.040.91" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "construction materials and building (vocabularies)"@en,
"bouw en bouwmaterialen (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.93> a ics:Class,
skos:Concept ;
skos:notation "01.040.93" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "civil engineering (vocabularies)"@en,
"civiele techniek (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.95> a ics:Class,
skos:Concept ;
skos:notation "01.040.95" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "militairy affairs military engineering weapons (vocabularies)"@en,
"militaire zaken militaire techniek wapens (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.040.97> a ics:Class,
skos:Concept ;
skos:notation "01.040.97" ;
skos:broader <http://data.nen.nl/ics/01.040> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "domestic and commercial equipment entertainment sports (vocabularies)"@en,
"huishoudelijke en commerciële toestellen vrije tijd sport (woordenlijsten)"@nl .
<http://data.nen.nl/ics/01.060> a ics:Class,
skos:Concept ;
skos:notation "01.060" ;
rdfs:comment "Standards included in this group shall also be included in other groups and/or sub-groups according to their subject"@en,
"De in deze groep vermelde normen moeten ook worden opgenomen in andere groepen en/of subgroepen die met hun onderwerp overeenstemmen"@nl ;
skos:broader <http://data.nen.nl/ics/01> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "quantities and units"@en,
"grootheden en eenheden"@nl .
<http://data.nen.nl/ics/01.070> a ics:Class,
skos:Concept ;
skos:notation "01.070" ;
rdfs:comment "Standards included in this group shall also be included in other groups and/or subgroups according to their subjects; Safety colors in the context of graphical symbols"@en,
"De in deze groep vermelde normen moeten ook worden opgenomen in andere groepen en/of subgroepen die met hun onderwerp overeenstemmen; Veiligheidskleuren in de inhoud of grafische symbolen"@nl ;
skos:broader <http://data.nen.nl/ics/01> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:related ics:01.080.10 ;
skos:prefLabel "colour coding"@en,
"kleurcodering"@nl .
<http://data.nen.nl/ics/01.075> a ics:Class,
skos:Concept ;
skos:notation "01.075" ;
rdfs:comment "Standards included in this group shall also be included in other groups and/or subgroups according to their subject"@en,
"De in deze groep vermelde normen moeten ook worden opgenomen in andere groepen en/of subgroepen die met hun onderwerp overeenstemmen"@nl ;
skos:broader <http://data.nen.nl/ics/01> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "character symbols"@en,
"tekensymbolen"@nl .
<http://data.nen.nl/ics/01.080.01> a ics:Class,
skos:Concept ;
skos:notation "01.080.01" ;
skos:broader <http://data.nen.nl/ics/01.080> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "graphical symbols in general"@en,
"grafische symbolen, algemeen"@nl .
<http://data.nen.nl/ics/01.080.10> a ics:Class,
skos:Concept ;
skos:notation "01.080.10" ;
rdfs:comment "Including safety signs, safety colours, etc. "@en ;
skos:broader <http://data.nen.nl/ics/01.080> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "public information symbols signs plates labels"@en,
"symbolen voor openbare aanwijzingen"@nl .
<http://data.nen.nl/ics/01.080.20> a ics:Class,
skos:Concept ;
skos:notation "01.080.20" ;
rdfs:comment "Standards included in this group shall also be included in other groups and/or sub-groups according to their subject"@en,
"De in deze ondergroep vermelde normen moeten ook worden opgenomen in andere groepen en/of ondergroepen die met hun onderwerp overeenstemmen"@nl ;
skos:broader <http://data.nen.nl/ics/01.080> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "graphical symbols for use on specific equipment"@en,
"grafische symbolen gebruikt op specifieke apparatuur"@nl .
<http://data.nen.nl/ics/01.080.30> a ics:Class,
skos:Concept ;
skos:notation "01.080.30" ;
rdfs:comment "Standards included in this group shall also be included in other groups and/or sub-groups according to their subject"@en,
"De in deze groep vermelde normen moeten ook worden opgenomen in andere groepen en/of ondergroepen die met hun onderwerp overeenstemmen"@nl ;
skos:broader <http://data.nen.nl/ics/01.080> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "graphical symbols for use on mechanical engineering and construction drawings, diagrams, plans, maps and in relevant technical product documentation"@en,
"grafische symbolen voor werktuigbouwkundige en bouwkundige tekeningen, schema's, plattegronden, kaarten en relevante technische productdocumentatie"@nl .
<http://data.nen.nl/ics/01.080.40> a ics:Class,
skos:Concept ;
skos:notation "01.080.40" ;
rdfs:comment "Standards included in this group shall also be included in other groups and/or sub-groups according to their subject"@en,
"De in deze ondergroep vermelde normen moeten ook worden opgenomen in andere groepen en/of ondergroepen die met hun onderwerp overeenstemmen"@nl ;
skos:broader <http://data.nen.nl/ics/01.080> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "graphical symbols for use on electrical and electronics engineering drawings, diagrams, charts and in relevant technical product documentation"@en,
"grafische symbolen voor elektrotechnische tekeningen, schema's, diagrammen, kaarten en relevante technische productdocumentatie"@nl .
<http://data.nen.nl/ics/01.080.50> a ics:Class,
skos:Concept ;
skos:notation "01.080.50" ;
rdfs:comment "Standards included in this group shall also be included in other groups and/or sub-groups according to their subject"@en,
"De in deze ondergroep vermelde normen moeten ook worden opgenomen in andere groepen en/of ondergroepen die met hun onderwerp overeenstemmen"@nl ;
skos:broader <http://data.nen.nl/ics/01.080> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "graphical symbols for use on information technology and telecommunications technical drawings and in relevant technical product documentation"@en,
"grafische symbolen voor tekeningen en andere technische productdocumentatie voor informatietechnologie en telecommunicatie"@nl .
<http://data.nen.nl/ics/01.080.99> a ics:Class,
skos:Concept ;
skos:notation "01.080.99" ;
skos:broader <http://data.nen.nl/ics/01.080> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "other graphical symbols"@en,
"grafische symbolen, overige"@nl .
<http://data.nen.nl/ics/01.100.01> a ics:Class,
skos:Concept ;
skos:notation "01.100.01" ;
skos:broader <http://data.nen.nl/ics/01.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "technical drawings in general"@en,
"technische tekeningen, algemeen"@nl .
<http://data.nen.nl/ics/01.100.20> a ics:Class,
skos:Concept ;
skos:notation "01.100.20" ;
skos:broader <http://data.nen.nl/ics/01.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "mechanical engineering drawings"@en,
"werktuigbouwkundige tekeningen"@nl .
<http://data.nen.nl/ics/01.100.25> a ics:Class,
skos:Concept ;
skos:notation "01.100.25" ;
rdfs:comment "Including electrical tables, diagrams and charts"@en,
"Met inbegrip van elektrotechnische tabellen, diagrammen en kaarten"@nl ;
skos:broader <http://data.nen.nl/ics/01.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "electrical and electronics engineering drawings"@en,
"elektrotechnische tekeningen"@nl .
<http://data.nen.nl/ics/01.100.27> a ics:Class,
skos:Concept ;
skos:notation "01.100.27" ;
skos:broader <http://data.nen.nl/ics/01.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "technical drawings for telecommunications and information technology fields"@en,
"technische tekeningen voor telecommunicatie en informatietechnologie"@nl .
<http://data.nen.nl/ics/01.100.30> a ics:Class,
skos:Concept ;
skos:notation "01.100.30" ;
rdfs:comment "Including civil engineering drawings"@en,
"Met inbegrip van tekeningen voor de civiele techniek"@nl ;
skos:broader <http://data.nen.nl/ics/01.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "construction drawings"@en,
"bouwkundige tekeningen"@nl .
<http://data.nen.nl/ics/01.100.40> a ics:Class,
skos:Concept ;
skos:notation "01.100.40" ;
skos:broader <http://data.nen.nl/ics/01.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "drawing equipment"@en,
"tekenmateriaal"@nl .
<http://data.nen.nl/ics/01.100.99> a ics:Class,
skos:Concept ;
skos:notation "01.100.99" ;
skos:broader <http://data.nen.nl/ics/01.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "other standards related to technical drawings"@en,
"technische tekeningen, overige"@nl .
<http://data.nen.nl/ics/01.110> a ics:Class,
skos:Concept ;
skos:notation "01.110" ;
rdfs:comment "Including rules for preparation of user guides, manuals, product specifications, etc."@en,
"Met inbegrip van het opstellen van gebruiksaanwijzingen, handleidingen, productspecificaties, enz."@nl ;
skos:broader <http://data.nen.nl/ics/01> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "technical product documentation"@en,
"technische productdocumentatie"@nl .
<http://data.nen.nl/ics/01.120> a ics:Class,
skos:Concept ;
skos:notation "01.120" ;
rdfs:comment "Including rules for the preparation of standards catalogues and management of technical documents"@en,
"Met inbegrip van het opstellen van normen catalogi en beheer van technische documenten"@nl ;
skos:broader <http://data.nen.nl/ics/01> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "standardization general rules"@en,
"normalisatie algemene regels"@nl .
<http://data.nen.nl/ics/01.140.10> a ics:Class,
skos:Concept ;
skos:notation "01.140.10" ;
rdfs:comment "Coded character sets for bibliographic information interchange"@en,
"Gecodeerde tekensets voor uitwisseling van bibliografische informatie"@nl ;
skos:broader <http://data.nen.nl/ics/01.140> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:related ics:35.040 ;
skos:prefLabel "writing and transliteration"@en,
"regels voor het schrift en de translitteratie"@nl .
<http://data.nen.nl/ics/01.140.20> a ics:Class,
skos:Concept ;
skos:notation "01.140.20" ;
rdfs:comment "Including documentation, librarianship and archive systems"@en,
"Met inbegrip van documentatie, bibliotheekwetenschap en archiefsystemen"@nl ;
skos:broader <http://data.nen.nl/ics/01.140> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "information sciences"@en,
"informatiewetenschappen"@nl .
<http://data.nen.nl/ics/01.140.30> a ics:Class,
skos:Concept ;
skos:notation "01.140.30" ;
rdfs:comment "Technical product documentation, see 01.110; Banking documents, see 03.060; Electronic data interchange (EDI), see 35.240.60"@en,
"Technische productdocumentatie, zie 01.110; Bankdocumenten, zie 03.060; Elektronische gegevensuitwisseling (EDI), zie 35.240.60"@nl ;
skos:broader <http://data.nen.nl/ics/01.140> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "documents in administration, commerce and industry"@en,
"documenten in de administratie, de handel en de industrie"@nl .
<http://data.nen.nl/ics/01.140.40> a ics:Class,
skos:Concept ;
skos:notation "01.140.40" ;
rdfs:comment "Electronic publishing, see 35.240.30"@en,
"Elektronisch uitgeven, zie 35.240.30"@nl ;
skos:broader <http://data.nen.nl/ics/01.140> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:related ics:35.240.30 ;
skos:prefLabel "publishing"@en,
"uitgeverij"@nl .
<http://data.nen.nl/ics/03.020> a ics:Class,
skos:Concept ;
skos:notation "03.020" ;
skos:broader <http://data.nen.nl/ics/03> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "sociology demography"@en,
"sociologie demografie"@nl .
<http://data.nen.nl/ics/03.040> a ics:Class,
skos:Concept ;
skos:notation "03.040" ;
rdfs:comment "Working environment, see 13.040.30 and 13.180"@en,
"Arbeidsomstandigheden, zie 13.040.30 en 13.180"@nl ;
skos:broader <http://data.nen.nl/ics/03> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "labour employment"@en,
"arbeid werkgelegenheid"@nl .
<http://data.nen.nl/ics/03.060> a ics:Class,
skos:Concept ;
skos:notation "03.060" ;
rdfs:comment "Including personal financial planning; Information technology applications in banking, see 35.240.40"@en,
"Met inbegrip van persoonlijke financiële strategie; Toepassingen van de informatietechnologie in het bankwezen, zie 35.240.40"@nl ;
skos:broader <http://data.nen.nl/ics/03> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "finances banking monetary systems insurance"@en,
"financiën bankwezen monetaire systemen verzekering"@nl .
<http://data.nen.nl/ics/03.080.01> a ics:Class,
skos:Concept ;
skos:notation "03.080.01" ;
skos:broader <http://data.nen.nl/ics/03.080> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "services in general"@en,
"diensten, algemeen"@nl .
<http://data.nen.nl/ics/03.080.10> a ics:Class,
skos:Concept ;
skos:notation "03.080.10" ;
rdfs:comment "Including cleaning and pest control; Sterilization and disinfection in health care, see 11.080"@en,
"Met inbegrip van schoonmaak en ongediertebestrijding; Sterilisatie en desinfectie in de gezondheidszorg, zie 11.080"@nl ;
skos:broader <http://data.nen.nl/ics/03.080> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "maintenance services facilities management"@en,
"onderhoudsdiensten facility management"@nl .
<http://data.nen.nl/ics/03.080.20> a ics:Class,
skos:Concept ;
skos:notation "03.080.20" ;
rdfs:comment "Including publicity, advertising, professional services, recruitment services, management consultancy, outsourcing, etc; Outsourcing as part of a company organization, see 03.100.01; Staff training and staff certification, see 03.100.30"@en,
"Met inbegrip van publiciteit, adverteren, professionele diensten, wervingsdiensten, management adviesbureau's, outsourcing, enz..; Outsourcing als onderdeel van een bedrijfsorganisatie, zie 03.100.01; Opleiding en certificatie van personeel, zie 03.100.30"@nl ;
skos:broader <http://data.nen.nl/ics/03.080> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "services for companies"@en,
"diensten voor ondernemingen"@nl .
<http://data.nen.nl/ics/03.080.30> a ics:Class,
skos:Concept ;
skos:notation "03.080.30" ;
rdfs:comment "Including hotels, restaurants, washing, cleaning, removals, funerals, real estate, vehicle repair and servicing, furniture removals, services for elderly, sheltered housing etc.; Services for dementia care, assisted living, see 11.020.10; Transport services and costs, see 03.220; Consumer information, see 97.020"@en,
"Met inbegrip van hotels, restaurants, wasserijen, schoonmaak,verhuizingen, uitvaarten, vastgoed, garagebedrijven, verhuisbedrijvenen, diensten voor ouderen, aanleunwoningen enz. .; Diensten voor alzheimerzorg, begeleid wonen, zie 11.020.10; Vervoersdiensten en kosten, zie 03.220; Consumenteninformatie, zie 97.020"@nl ;
skos:broader <http://data.nen.nl/ics/03.080> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "services for consumers"@en,
"diensten voor consumenten"@nl .
<http://data.nen.nl/ics/03.080.99> a ics:Class,
skos:Concept ;
skos:notation "03.080.99" ;
skos:broader <http://data.nen.nl/ics/03.080> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "other services"@en,
"diensten, overige"@nl .
<http://data.nen.nl/ics/03.100.01> a ics:Class,
skos:Concept ;
skos:notation "03.100.01" ;
rdfs:comment "Including legal aspects and risk management, social security, outsourcing. Outsourcing as a business to business service, see 03.080.20. Management systems, see 03.100.70. Security and protection against crime, see 13.310"@en,
"Met inbegrip van wettelijke aspecten en risicomanagement, sociale zekerheid, outsourcing. Outsoursing als zakelijke dienstverlening, zie 03.080.20. Managementsystemen, zie 03.100.70. Veiligheid en bescherming tegen misdaad, zie 13.310"@nl ;
skos:broader <http://data.nen.nl/ics/03.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "company organization and management in general"@en,
"bedrijfsorganistie en -beheer, algemeen"@nl .
<http://data.nen.nl/ics/03.100.02> a ics:Class,
skos:Concept ;
skos:notation "03.100.02" ;
rdfs:comment "Including anti-bribery, anti-procurement fraud, corporate social responsibility"@en,
"Met inbegrip van anti-corruptie, anti-inkoop fraude, sociale bedrijfsaansprakelijkheid"@nl ;
skos:broader <http://data.nen.nl/ics/03.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "governance and ethics"@en,
"beheer en ethiek"@nl .
<http://data.nen.nl/ics/03.100.10> a ics:Class,
skos:Concept ;
skos:notation "03.100.10" ;
rdfs:comment "Including asset management, supply chain, etc. "@en,
"Met inbegrip van assetmanagement, toeleveringsketen, enz. "@nl ;
skos:broader <http://data.nen.nl/ics/03.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "purchasing procurement logistics"@en,
"bevoorrading aankoop logistiek"@nl .
<http://data.nen.nl/ics/03.100.20> a ics:Class,
skos:Concept ;
skos:notation "03.100.20" ;
rdfs:comment "E-commerce, see 35.240.60"@en,
"E-commerce, zie 35.240.60"@nl ;
skos:broader <http://data.nen.nl/ics/03.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "trade commercial function marketing"@en,
"handel handelsfunctie marketing"@nl .
<http://data.nen.nl/ics/03.100.30> a ics:Class,
skos:Concept ;
skos:notation "03.100.30" ;
rdfs:comment "Including staff training, staff responsibilities, staff qualifications and certification; Welders' qualifications, see 25.160.01"@en,
"Met inbegrip van de opleiding, verantwoordelijkheid, kwalificatie en certificatie van het personeel; Kwalificeren van lassers, zie 25.160.01"@nl ;
skos:broader <http://data.nen.nl/ics/03.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "management of human resources"@en,
"management van personeel"@nl .
<http://data.nen.nl/ics/03.100.40> a ics:Class,
skos:Concept ;
skos:notation "03.100.40" ;
rdfs:comment "Including project management, value analysis, etc."@en,
"Met inbegrip van projectbeheer, waarde-analyse, enz."@nl ;
skos:broader <http://data.nen.nl/ics/03.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "research and development"@en,
"onderzoek en ontwikkeling"@nl .
<http://data.nen.nl/ics/03.100.50> a ics:Class,
skos:Concept ;
skos:notation "03.100.50" ;
skos:broader <http://data.nen.nl/ics/03.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "production production management"@en,
"productie productiemanagement"@nl .
<http://data.nen.nl/ics/03.100.60> a ics:Class,
skos:Concept ;
skos:notation "03.100.60" ;
skos:broader <http://data.nen.nl/ics/03.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "accountancy"@en,
"boekhouding"@nl .
<http://data.nen.nl/ics/03.100.70> a ics:Class,
skos:Concept ;
skos:notation "03.100.70" ;
rdfs:comment "Standards included in this sub-group shall also be included in other groups and/or sub-groups according tho their subject; Including environmental management systems (EMS), road traffic management systems, energy management systems, health care management systems, etc. "@en,
"Normen in deze subgroep worden ook opgenomen in andere groepen en/of subgroepen naar onderwerp; Met inbegrip van milieumanagementsystemen (MMS), verkeersmanagementsystemen, energiemanagementsystemen, gezondheidsmanagementsystemen enz."@nl ;
skos:broader <http://data.nen.nl/ics/03.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "management systems"@en,
"managementsystemen"@nl .
<http://data.nen.nl/ics/03.100.99> a ics:Class,
skos:Concept ;
skos:notation "03.100.99" ;
skos:broader <http://data.nen.nl/ics/03.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "other standards related to company organization and management"@en,
"bedrijfsorganisatie en -beheer, overige"@nl .
<http://data.nen.nl/ics/03.120.01> a ics:Class,
skos:Concept ;
skos:notation "03.120.01" ;
rdfs:comment "Including general aspects related to reliability and maintainability"@en,
"Met inbegrip van algemene aspecten van betrouwbaarheid en onderhoudbaarheid"@nl ;
skos:broader <http://data.nen.nl/ics/03.120> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "quality in general"@en,
"kwaliteit, algemeen"@nl .
<http://data.nen.nl/ics/03.120.10> a ics:Class,
skos:Concept ;
skos:notation "03.120.10" ;
rdfs:comment "Quality management systems, see 03.100.70"@en,
"Kwaliteitsmanagementsystemen, zie 03.100.70"@nl ;
skos:broader <http://data.nen.nl/ics/03.120> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "quality management and quality assurance"@en,
"kwaliteitszorg en kwaliteitsborging"@nl .
<http://data.nen.nl/ics/03.120.20> a ics:Class,
skos:Concept ;
skos:notation "03.120.20" ;
rdfs:comment "Including laboratory accreditation and audit programmes and auditing"@en,
"Met inbegrip van laboratoriumaccreditatie en auditprogramma's en auditeren"@nl ;
skos:broader <http://data.nen.nl/ics/03.120> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "product and company certification conformity assessment"@en,
"certificatie van producten en ondernemingen beoordeling van de overeenkomstigheid"@nl .
<http://data.nen.nl/ics/03.120.30> a ics:Class,
skos:Concept ;
skos:notation "03.120.30" ;
skos:broader <http://data.nen.nl/ics/03.120> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "application of statistical methods"@en,
"toepassing van statistische methoden"@nl .
<http://data.nen.nl/ics/03.120.99> a ics:Class,
skos:Concept ;
skos:notation "03.120.99" ;
skos:broader <http://data.nen.nl/ics/03.120> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "other standards related to quality"@en,
"kwaliteit, overige"@nl .
<http://data.nen.nl/ics/03.140> a ics:Class,
skos:Concept ;
skos:notation "03.140" ;
skos:broader <http://data.nen.nl/ics/03> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "patents intellectual property"@en,
"octrooien intellectueel eigendom"@nl .
<http://data.nen.nl/ics/03.160> a ics:Class,
skos:Concept ;
skos:notation "03.160" ;
rdfs:comment "Including flags and associated symbols (emblems) of political and administrative entities, military flags, flags of organizations, etc; This group includes standards for general use"@en,
"Met inbegrip van vlaggen en geassocieerde symbolen (emblemen) van politieke en administratieve entiteiten, militaire vlaggen, vlaggen van organisaties, enz.; Deze groep bevat normen voor algemeen gebruik"@nl ;
skos:broader <http://data.nen.nl/ics/03> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "law administration"@en,
"wetgeving administratie"@nl .
<http://data.nen.nl/ics/03.180> a ics:Class,
skos:Concept ;
skos:notation "03.180" ;
rdfs:comment "E-learning, see 35.240.99"@en,
"E-learning, zie 35.240.99"@nl ;
skos:broader <http://data.nen.nl/ics/03> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "education"@en,
"onderwijs"@nl .
<http://data.nen.nl/ics/03.200.01> a ics:Class,
skos:Concept ;
skos:notation "03.200.01" ;
rdfs:comment "Including outdoor events management, tourist information offices, tourism services, hotels, etc."@en,
"Met inbegrip van outdoor evenementen management, verkeersbureaus, dienstverlening voor tourisme, hotels, enz. "@nl ;
skos:broader <http://data.nen.nl/ics/03.200> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "leisure and tourism in general"@en,
"vrijetijd en toerisme, algemeen"@nl .
<http://data.nen.nl/ics/03.200.10> a ics:Class,
skos:Concept ;
skos:notation "03.200.10" ;
skos:broader <http://data.nen.nl/ics/03.200> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "adventure tourism"@en,
"adventure tourism"@nl .
<http://data.nen.nl/ics/03.200.99> a ics:Class,
skos:Concept ;
skos:notation "03.200.99" ;
rdfs:comment "Including recreational diving services"@en,
"Met inbegrip van dienstverlening voor recreatief duiken"@nl ;
skos:broader <http://data.nen.nl/ics/03.200> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "other standards relating to leiseure and tourism"@en,
"andere normen gerelateerd aan vrijetijd en toerisme"@nl .
<http://data.nen.nl/ics/03.220.01> a ics:Class,
skos:Concept ;
skos:notation "03.220.01" ;
skos:broader <http://data.nen.nl/ics/03.220> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "transport in general"@en,
"vervoer, algemeen"@nl .
<http://data.nen.nl/ics/03.220.20> a ics:Class,
skos:Concept ;
skos:notation "03.220.20" ;
rdfs:comment "Including road transport services; Road traffic management system, see 03.100.70; Road traffic control equipment and installations, see 93.080.30"@en,
"Met inbegrip van diensten voor het wegvervoer; Beheersystemen voor het wegvervoer, zie 03.100.70; Uitrusting en installaties voor het wegvervoer, zie 93.080.30"@nl ;
skos:broader <http://data.nen.nl/ics/03.220> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "road transport"@en,
"wegvervoer"@nl .
<http://data.nen.nl/ics/03.220.30> a ics:Class,
skos:Concept ;
skos:notation "03.220.30" ;
rdfs:comment "Including rail transport services; Rail traffic control equipment and installations, see 93.100"@en,
"Met inbegrip van diensten voor het spoorwegvervoer; Spoorweguitrusting en -installaties, zie 93.100"@nl ;
skos:broader <http://data.nen.nl/ics/03.220> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "transport by rail"@en,
"vervoer per spoorweg"@nl .
<http://data.nen.nl/ics/03.220.40> a ics:Class,
skos:Concept ;
skos:notation "03.220.40" ;
rdfs:comment "Including water transport services; Water transport control equipment and installations, see 93.140"@en,
"Met inbegrip van diensten voor het vervoer over water; Controle-apparatuur en installaties voor het vervoer over water, zie 93.140"@nl ;
skos:broader <http://data.nen.nl/ics/03.220> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "transport by water"@en,
"transport over water"@nl .
<http://data.nen.nl/ics/03.220.50> a ics:Class,
skos:Concept ;
skos:notation "03.220.50" ;
rdfs:comment "Including air transport services; Air transport control equipment and installations, see 93.120"@en,
"Met inbegrip van diensten voor het luchtvervoer; Controle-apparatuur e n installaties voor het luchtvervoer, zie 93.120"@nl ;
skos:broader <http://data.nen.nl/ics/03.220> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "air transport"@en,
"luchtvervoer"@nl .
<http://data.nen.nl/ics/03.220.99> a ics:Class,
skos:Concept ;
skos:notation "03.220.99" ;
skos:broader <http://data.nen.nl/ics/03.220> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "other forms of transport"@en,
"vormen van vervoer, overige"@nl .
<http://data.nen.nl/ics/03.240> a ics:Class,
skos:Concept ;
skos:notation "03.240" ;
rdfs:comment "Including postal equipment, postboxes and letter-boxes, etc."@en,
"Met inbegrip van materieel voor postdiensten, postbussen, brievenbussen, enz."@nl ;
skos:broader <http://data.nen.nl/ics/03> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "postal services"@en,
"postdiensten"@nl .
<http://data.nen.nl/ics/07.020> a ics:Class,
skos:Concept ;
skos:notation "07.020" ;
rdfs:comment "Application of statistical methods in quality assurance, see 03.120.30"@en,
"Toepassing van statistische methoden op de kwaliteitsborging, zie 03.120.30"@nl ;
skos:broader <http://data.nen.nl/ics/07> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "mathematics"@en,
"wiskunde"@nl .
<http://data.nen.nl/ics/07.030> a ics:Class,
skos:Concept ;
skos:notation "07.030" ;
rdfs:comment "This group includes standards in the field of physics and chemistry as natural sciences; Applied physics, see 17; Chemical technology, see 71"@en,
"Deze groep bevat normen op het gebied van fysica en chemie als natuurwetenschappen; Toegepaste fysica, zie 17; Scheikundige technologie, zie 71"@nl ;
skos:broader <http://data.nen.nl/ics/07> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "physics chemistry"@en,
"natuurkunde chemie"@nl .
<http://data.nen.nl/ics/07.040> a ics:Class,
skos:Concept ;
skos:notation "07.040" ;
skos:broader <http://data.nen.nl/ics/07> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "astronomy geodesy geography"@en,
"sterrenkunde landmeetkunde geografie"@nl .
<http://data.nen.nl/ics/07.060> a ics:Class,
skos:Concept ;
skos:notation "07.060" ;
skos:broader <http://data.nen.nl/ics/07> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "geology meteorology hydrology"@en,
"geologie weerkunde waterkunde"@nl .
<http://data.nen.nl/ics/07.080> a ics:Class,
skos:Concept ;
skos:notation "07.080" ;
rdfs:comment "Including biotechnology"@en,
"Met inbegrip van biotechnologie"@nl ;
skos:broader <http://data.nen.nl/ics/07> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "biology botany zoology"@en,
"biologie plantkunde dierkunde"@nl .
<http://data.nen.nl/ics/07.100.01> a ics:Class,
skos:Concept ;
skos:notation "07.100.01" ;
skos:broader <http://data.nen.nl/ics/07.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "microbiology in general"@en,
"microbiologie, algemeen"@nl .
<http://data.nen.nl/ics/07.100.10> a ics:Class,
skos:Concept ;
skos:notation "07.100.10" ;
rdfs:comment "Laboratory medicine, see 11.100"@en,
"Laboratoriumgeneeskunde, zie 11.100"@nl ;
skos:broader <http://data.nen.nl/ics/07.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "medical microbiology"@en,
"medische microbiologie"@nl .
<http://data.nen.nl/ics/07.100.20> a ics:Class,
skos:Concept ;
skos:notation "07.100.20" ;
rdfs:comment "Examination of biological properties of water, see 13.060.70"@en,
"Onderzoek van biologische eigenschappen van water, zie 13.060.70"@nl ;
skos:broader <http://data.nen.nl/ics/07.100> ;
skos:inScheme <http://data.nen.nl/ics> ;
skos:prefLabel "microbiology of water"@en,