forked from essglobal-linked-open-data/map-sse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
products-services.skos
1060 lines (825 loc) · 39.4 KB
/
products-services.skos
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"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dcterms="http://purl.org/dc/terms/"
xml:base="http://purl.org/essglobal/standard/products-services/">
<skos:ConceptScheme rdf:about="">
<dc:title>Products and Services</dc:title>
<dc:description>Qualifiers controlled vocabulary for SSE</dc:description>
<dc:creator>Mariana Curado Malta ([email protected])</dc:creator>
<dc:contributor>Daniel Tygel ([email protected])</dc:contributor>
<dc:contributor>Jason Nardi ([email protected])</dc:contributor>
<dc:contributor>Marc Alphandery ([email protected])</dc:contributor>
<dc:contributor>Ana Alice Baptista ([email protected])</dc:contributor>
<dc:contributor></dc:contributor>
<dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2014-02-20</dcterms:created>
<dc:language>en-en</dc:language>
<dc:publisher rdf:resource="http://www.ripess.org/" />
<dcterms:publisher>ESSGLOBAL</dcterms:publisher>
<dc:relation rdf:resource="http://www.dsi.uminho.pt/"/>
<skos:hasTopConcept rdf:resource="70000000"/>
<skos:hasTopConcept rdf:resource="71000000"/>
<skos:hasTopConcept rdf:resource="72000000"/>
<skos:hasTopConcept rdf:resource="73000000"/>
<skos:hasTopConcept rdf:resource="74000000"/>
<skos:hasTopConcept rdf:resource="76000000"/>
<skos:hasTopConcept rdf:resource="77000000"/>
<skos:hasTopConcept rdf:resource="78000000"/>
<skos:hasTopConcept rdf:resource="80000000"/>
<skos:hasTopConcept rdf:resource="81000000"/>
<skos:hasTopConcept rdf:resource="82000000"/>
<skos:hasTopConcept rdf:resource="83000000"/>
<skos:hasTopConcept rdf:resource="84000000"/>
<skos:hasTopConcept rdf:resource="85000000"/>
<skos:hasTopConcept rdf:resource="86000000"/>
<skos:hasTopConcept rdf:resource="90000000"/>
<skos:hasTopConcept rdf:resource="91000000"/>
<skos:hasTopConcept rdf:resource="92000000"/>
<skos:hasTopConcept rdf:resource="93000000"/>
<skos:hasTopConcept rdf:resource="94000000"/>
<skos:hasTopConcept rdf:resource="95000000"/>
</skos:ConceptScheme>
<skos:Concept rdf:about="70000000">
<skos:definition xml:lang="EN">Farming and Fishing and Forestry and Wildlife Contracting Services</skos:definition>
<skos:prefLabel xml:lang="EN">Farming and Fishing and Forestry and Wildlife Contracting Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="70100000">
<skos:prefLabel xml:lang="EN">70100000</skos:prefLabel>
<skos:definition xml:lang="EN">Fisheries and aquaculture</skos:definition>
<skos:broader rdf:resource="70000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="70110000">
<skos:prefLabel xml:lang="EN">70110000</skos:prefLabel>
<skos:definition xml:lang="EN">Horticulture</skos:definition>
<skos:broader rdf:resource="70000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="70120000">
<skos:prefLabel xml:lang="EN">70120000</skos:prefLabel>
<skos:definition xml:lang="EN">Livestock services</skos:definition>
<skos:broader rdf:resource="70000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="70130000">
<skos:prefLabel xml:lang="EN">70130000</skos:prefLabel>
<skos:definition xml:lang="EN">Land and soil preparation and management and protection</skos:definition>
<skos:broader rdf:resource="70000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="70140000">
<skos:prefLabel xml:lang="EN">70140000</skos:prefLabel>
<skos:definition xml:lang="EN">Crop production and management and protection</skos:definition>
<skos:broader rdf:resource="70000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="70150000">
<skos:prefLabel xml:lang="EN">70150000</skos:prefLabel>
<skos:definition xml:lang="EN">Forestry</skos:definition>
<skos:broader rdf:resource="70000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="70160000">
<skos:prefLabel xml:lang="EN">70160000</skos:prefLabel>
<skos:definition xml:lang="EN">Wildlife and flora</skos:definition>
<skos:broader rdf:resource="70000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="70170000">
<skos:prefLabel xml:lang="EN">70170000</skos:prefLabel>
<skos:definition xml:lang="EN">Water resources development and oversight</skos:definition>
<skos:broader rdf:resource="70000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="71000000">
<skos:definition xml:lang="EN">Mining and oil and gas services</skos:definition>
<skos:prefLabel xml:lang="EN">Mining and oil and gas services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="71100000">
<skos:prefLabel xml:lang="EN">71100000</skos:prefLabel>
<skos:definition xml:lang="EN">Mining services</skos:definition>
<skos:broader rdf:resource="71000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="71110000">
<skos:prefLabel xml:lang="EN">71110000</skos:prefLabel>
<skos:definition xml:lang="EN">Oil and gas exploration services</skos:definition>
<skos:broader rdf:resource="71000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="71120000">
<skos:prefLabel xml:lang="EN">71120000</skos:prefLabel>
<skos:definition xml:lang="EN">Well drilling and construction services</skos:definition>
<skos:broader rdf:resource="71000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="71130000">
<skos:prefLabel xml:lang="EN">71130000</skos:prefLabel>
<skos:definition xml:lang="EN">Oil and gas extraction and production enhancement services</skos:definition>
<skos:broader rdf:resource="71000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="71140000">
<skos:prefLabel xml:lang="EN">71140000</skos:prefLabel>
<skos:definition xml:lang="EN">Oil and gas restoration and reclamation services</skos:definition>
<skos:broader rdf:resource="71000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="71150000">
<skos:prefLabel xml:lang="EN">71150000</skos:prefLabel>
<skos:definition xml:lang="EN">Oil and gas data management and processing services</skos:definition>
<skos:broader rdf:resource="71000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="71160000">
<skos:prefLabel xml:lang="EN">71160000</skos:prefLabel>
<skos:definition xml:lang="EN">Oil and gas well project management services</skos:definition>
<skos:broader rdf:resource="71000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="72000000">
<skos:definition xml:lang="EN">Building and Facility Construction and Maintenance Services</skos:definition>
<skos:prefLabel xml:lang="EN">Building and Facility Construction and Maintenance Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="72100000">
<skos:prefLabel xml:lang="EN">72100000</skos:prefLabel>
<skos:definition xml:lang="EN">Building and facility maintenance and repair services</skos:definition>
<skos:broader rdf:resource="72000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="72110000">
<skos:prefLabel xml:lang="EN">72110000</skos:prefLabel>
<skos:definition xml:lang="EN">Residential building construction services</skos:definition>
<skos:broader rdf:resource="72000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="72120000">
<skos:prefLabel xml:lang="EN">72120000</skos:prefLabel>
<skos:definition xml:lang="EN">Nonresidential building construction services</skos:definition>
<skos:broader rdf:resource="72000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="72140000">
<skos:prefLabel xml:lang="EN">72140000</skos:prefLabel>
<skos:definition xml:lang="EN">Heavy construction services</skos:definition>
<skos:broader rdf:resource="72000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="72150000">
<skos:prefLabel xml:lang="EN">72150000</skos:prefLabel>
<skos:definition xml:lang="EN">Specialized trade construction and maintenance services</skos:definition>
<skos:broader rdf:resource="72000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="73000000">
<skos:definition xml:lang="EN">Industrial Production and Manufacturing Services</skos:definition>
<skos:prefLabel xml:lang="EN">Industrial Production and Manufacturing Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="73100000">
<skos:prefLabel xml:lang="EN">73100000</skos:prefLabel>
<skos:definition xml:lang="EN">Plastic and chemical industries</skos:definition>
<skos:broader rdf:resource="73000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="73110000">
<skos:prefLabel xml:lang="EN">73110000</skos:prefLabel>
<skos:definition xml:lang="EN">Wood and paper industries</skos:definition>
<skos:broader rdf:resource="73000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="73120000">
<skos:prefLabel xml:lang="EN">73120000</skos:prefLabel>
<skos:definition xml:lang="EN">Metal and mineral industries</skos:definition>
<skos:broader rdf:resource="73000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="73130000">
<skos:prefLabel xml:lang="EN">73130000</skos:prefLabel>
<skos:definition xml:lang="EN">Food and beverage industries</skos:definition>
<skos:broader rdf:resource="73000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="73140000">
<skos:prefLabel xml:lang="EN">73140000</skos:prefLabel>
<skos:definition xml:lang="EN">Fibers and textiles and fabric industries</skos:definition>
<skos:broader rdf:resource="73000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="73150000">
<skos:prefLabel xml:lang="EN">73150000</skos:prefLabel>
<skos:definition xml:lang="EN">Manufacturing support services</skos:definition>
<skos:broader rdf:resource="73000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="73160000">
<skos:prefLabel xml:lang="EN">73160000</skos:prefLabel>
<skos:definition xml:lang="EN">Manufacture</skos:definition>
<skos:broader rdf:resource="73000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="73170000">
<skos:prefLabel xml:lang="EN">73170000</skos:prefLabel>
<skos:definition xml:lang="EN">Precision instruments</skos:definition>
<skos:broader rdf:resource="73000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="73180000">
<skos:prefLabel xml:lang="EN">73180000</skos:prefLabel>
<skos:definition xml:lang="EN">Machining and processing services</skos:definition>
<skos:broader rdf:resource="73000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="76000000">
<skos:definition xml:lang="EN">Industrial Cleaning Services</skos:definition>
<skos:prefLabel xml:lang="EN">Industrial Cleaning Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="76100000">
<skos:prefLabel xml:lang="EN">76100000</skos:prefLabel>
<skos:definition xml:lang="EN">Decontamination services</skos:definition>
<skos:broader rdf:resource="76000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="76110000">
<skos:prefLabel xml:lang="EN">76110000</skos:prefLabel>
<skos:definition xml:lang="EN">Cleaning and janitorial services</skos:definition>
<skos:broader rdf:resource="76000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="76120000">
<skos:prefLabel xml:lang="EN">76120000</skos:prefLabel>
<skos:definition xml:lang="EN">Refuse disposal and treatment</skos:definition>
<skos:broader rdf:resource="76000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="76130000">
<skos:prefLabel xml:lang="EN">76130000</skos:prefLabel>
<skos:definition xml:lang="EN">Toxic and hazardous waste cleanup</skos:definition>
<skos:broader rdf:resource="76000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="77000000">
<skos:definition xml:lang="EN"></skos:definition>
<skos:prefLabel xml:lang="EN">Environmental Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN">Environmental Services</skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="77100000">
<skos:prefLabel xml:lang="EN">77100000</skos:prefLabel>
<skos:definition xml:lang="EN">Environmental management</skos:definition>
<skos:broader rdf:resource="77000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="77110000">
<skos:prefLabel xml:lang="EN">77110000</skos:prefLabel>
<skos:definition xml:lang="EN">Environmental protection</skos:definition>
<skos:broader rdf:resource="77000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="77120000">
<skos:prefLabel xml:lang="EN">77120000</skos:prefLabel>
<skos:definition xml:lang="EN">Pollution tracking and monitoring and rehabilitation</skos:definition>
<skos:broader rdf:resource="77000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="77130000">
<skos:prefLabel xml:lang="EN">70130000</skos:prefLabel>
<skos:definition xml:lang="EN">Pollutants tracking and monitoring and rehabilitation services</skos:definition>
<skos:broader rdf:resource="77000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="78000000">
<skos:definition xml:lang="EN">Transportation and Storage and Mail Services</skos:definition>
<skos:prefLabel xml:lang="EN">Transportation and Storage and Mail Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="78100000">
<skos:prefLabel xml:lang="EN">78100000</skos:prefLabel>
<skos:definition xml:lang="EN">Mail and cargo transport</skos:definition>
<skos:broader rdf:resource="78000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="78110000">
<skos:prefLabel xml:lang="EN">78110000</skos:prefLabel>
<skos:definition xml:lang="EN">Passenger transport</skos:definition>
<skos:broader rdf:resource="78000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="78120000">
<skos:prefLabel xml:lang="EN">78120000</skos:prefLabel>
<skos:definition xml:lang="EN">Material packing and handling</skos:definition>
<skos:broader rdf:resource="78000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="78130000">
<skos:prefLabel xml:lang="EN">78130000</skos:prefLabel>
<skos:definition xml:lang="EN">Storage</skos:definition>
<skos:broader rdf:resource="78000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="78140000">
<skos:prefLabel xml:lang="EN">78140000</skos:prefLabel>
<skos:definition xml:lang="EN">Transport services</skos:definition>
<skos:broader rdf:resource="78000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="78180000">
<skos:prefLabel xml:lang="EN">78180000</skos:prefLabel>
<skos:definition xml:lang="EN">Transportation repair or maintenance services</skos:definition>
<skos:broader rdf:resource="78000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="80000000">
<skos:definition xml:lang="EN">Management and Business Professionals and Administrative Services</skos:definition>
<skos:prefLabel xml:lang="EN">Management and Business Professionals and Administrative Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="80100000">
<skos:prefLabel xml:lang="EN">80100000</skos:prefLabel>
<skos:definition xml:lang="EN">Management advisory services</skos:definition>
<skos:broader rdf:resource="80000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="80110000">
<skos:prefLabel xml:lang="EN">80110000</skos:prefLabel>
<skos:definition xml:lang="EN">Human resources services</skos:definition>
<skos:broader rdf:resource="80000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="80120000">
<skos:prefLabel xml:lang="EN">80120000</skos:prefLabel>
<skos:definition xml:lang="EN">Legal services</skos:definition>
<skos:broader rdf:resource="80000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="80130000">
<skos:prefLabel xml:lang="EN">80130000</skos:prefLabel>
<skos:definition xml:lang="EN">Real estate services</skos:definition>
<skos:broader rdf:resource="80000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="80140000">
<skos:prefLabel xml:lang="EN">80140000</skos:prefLabel>
<skos:definition xml:lang="EN">Marketing and distribution</skos:definition>
<skos:broader rdf:resource="80000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="80150000">
<skos:prefLabel xml:lang="EN">80150000</skos:prefLabel>
<skos:definition xml:lang="EN">Trade policy and services</skos:definition>
<skos:broader rdf:resource="80000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="80160000">
<skos:prefLabel xml:lang="EN">80160000</skos:prefLabel>
<skos:definition xml:lang="EN">Business administration services</skos:definition>
<skos:broader rdf:resource="80000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="81000000">
<skos:definition xml:lang="EN">Engineering and Research and Technology Based Services</skos:definition>
<skos:prefLabel xml:lang="EN">Engineering and Research and Technology Based Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="81100000">
<skos:prefLabel xml:lang="EN">81100000</skos:prefLabel>
<skos:definition xml:lang="EN">Professional engineering services</skos:definition>
<skos:broader rdf:resource="81000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="81110000">
<skos:prefLabel xml:lang="EN">81110000</skos:prefLabel>
<skos:definition xml:lang="EN">Computer Services</skos:definition>
<skos:broader rdf:resource="81000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="81120000">
<skos:prefLabel xml:lang="EN">81120000</skos:prefLabel>
<skos:definition xml:lang="EN">Economics</skos:definition>
<skos:broader rdf:resource="81000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="81130000">
<skos:prefLabel xml:lang="EN">81130000</skos:prefLabel>
<skos:definition xml:lang="EN">Statistics</skos:definition>
<skos:broader rdf:resource="81000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="81140000">
<skos:prefLabel xml:lang="EN">81140000</skos:prefLabel>
<skos:definition xml:lang="EN">Manufacturing technologies</skos:definition>
<skos:broader rdf:resource="81000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="81150000">
<skos:prefLabel xml:lang="EN">81150000</skos:prefLabel>
<skos:definition xml:lang="EN">Earth science services</skos:definition>
<skos:broader rdf:resource="81000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="81160000">
<skos:prefLabel xml:lang="EN">81160000</skos:prefLabel>
<skos:definition xml:lang="EN">Information Technology Service Delivery</skos:definition>
<skos:broader rdf:resource="81000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="82000000">
<skos:definition xml:lang="EN">Editorial and Design and Graphic and Fine Art Services</skos:definition>
<skos:prefLabel xml:lang="EN">Editorial and Design and Graphic and Fine Art Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="82100000">
<skos:prefLabel xml:lang="EN">82100000</skos:prefLabel>
<skos:definition xml:lang="EN">Advertising</skos:definition>
<skos:broader rdf:resource="82000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="82110000">
<skos:prefLabel xml:lang="EN">82110000</skos:prefLabel>
<skos:definition xml:lang="EN">Writing and translations</skos:definition>
<skos:broader rdf:resource="82000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="82120000">
<skos:prefLabel xml:lang="EN">82120000</skos:prefLabel>
<skos:definition xml:lang="EN">Reproduction services</skos:definition>
<skos:broader rdf:resource="82000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="82130000">
<skos:prefLabel xml:lang="EN">82130000</skos:prefLabel>
<skos:definition xml:lang="EN">Photographic services</skos:definition>
<skos:broader rdf:resource="82000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="82140000">
<skos:prefLabel xml:lang="EN">82140000</skos:prefLabel>
<skos:definition xml:lang="EN">Graphic design</skos:definition>
<skos:broader rdf:resource="82000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="82150000">
<skos:prefLabel xml:lang="EN">82150000</skos:prefLabel>
<skos:definition xml:lang="EN">Professional artists and performers</skos:definition>
<skos:broader rdf:resource="82000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="83000000">
<skos:definition xml:lang="EN">Public Utilities and Public Sector Related Services</skos:definition>
<skos:prefLabel xml:lang="EN">Public Utilities and Public Sector Related Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="83100000">
<skos:prefLabel xml:lang="EN">83100000</skos:prefLabel>
<skos:definition xml:lang="EN">Utilities</skos:definition>
<skos:broader rdf:resource="83000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="83110000">
<skos:prefLabel xml:lang="EN">83110000</skos:prefLabel>
<skos:definition xml:lang="EN">Telecommunications media services</skos:definition>
<skos:broader rdf:resource="83000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="83120000">
<skos:prefLabel xml:lang="EN">83120000</skos:prefLabel>
<skos:definition xml:lang="EN">Information services</skos:definition>
<skos:broader rdf:resource="83000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="84000000">
<skos:definition xml:lang="EN">Financial and Insurance Services</skos:definition>
<skos:prefLabel xml:lang="EN">Financial and Insurance Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="84100000">
<skos:prefLabel xml:lang="EN">84100000</skos:prefLabel>
<skos:definition xml:lang="EN">Development finance</skos:definition>
<skos:broader rdf:resource="84000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="84110000">
<skos:prefLabel xml:lang="EN">84110000</skos:prefLabel>
<skos:definition xml:lang="EN">Accounting and bookkeeping services</skos:definition>
<skos:broader rdf:resource="84000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="84120000">
<skos:prefLabel xml:lang="EN">84120000</skos:prefLabel>
<skos:definition xml:lang="EN">Banking and investment</skos:definition>
<skos:broader rdf:resource="84000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="84130000">
<skos:prefLabel xml:lang="EN">84130000</skos:prefLabel>
<skos:definition xml:lang="EN">Insurance and retirement services</skos:definition>
<skos:broader rdf:resource="84000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="84140000">
<skos:prefLabel xml:lang="EN">84140000</skos:prefLabel>
<skos:definition xml:lang="EN">Credit agencies</skos:definition>
<skos:broader rdf:resource="84000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="85000000">
<skos:definition xml:lang="EN">Healthcare Services</skos:definition>
<skos:prefLabel xml:lang="EN">Healthcare Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="85100000">
<skos:prefLabel xml:lang="EN">85100000</skos:prefLabel>
<skos:definition xml:lang="EN">Comprehensive health services</skos:definition>
<skos:broader rdf:resource="85000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="85110000">
<skos:prefLabel xml:lang="EN">85110000</skos:prefLabel>
<skos:definition xml:lang="EN">Disease prevention and control</skos:definition>
<skos:broader rdf:resource="85000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="85120000">
<skos:prefLabel xml:lang="EN">85120000</skos:prefLabel>
<skos:definition xml:lang="EN">Medical practice</skos:definition>
<skos:broader rdf:resource="85000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="85130000">
<skos:prefLabel xml:lang="EN">85130000</skos:prefLabel>
<skos:definition xml:lang="EN">Medical science research and experimentation</skos:definition>
<skos:broader rdf:resource="85000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="85140000">
<skos:prefLabel xml:lang="EN">85140000</skos:prefLabel>
<skos:definition xml:lang="EN"></skos:definition>
<skos:broader rdf:resource="85000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="80150000">
<skos:prefLabel xml:lang="EN">80150000</skos:prefLabel>
<skos:definition xml:lang="EN">Food and nutrition services</skos:definition>
<skos:broader rdf:resource="80000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="85160000">
<skos:prefLabel xml:lang="EN">85160000</skos:prefLabel>
<skos:definition xml:lang="EN">Medical Surgical Equipment Maintenance Refurbishment and Repair Services</skos:definition>
<skos:broader rdf:resource="85000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="805170000">
<skos:prefLabel xml:lang="EN">85170000</skos:prefLabel>
<skos:definition xml:lang="EN">Death and dying support services</skos:definition>
<skos:broader rdf:resource="85000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="86000000">
<skos:definition xml:lang="EN">Education and Training Services</skos:definition>
<skos:prefLabel xml:lang="EN">Education and Training Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="86100000">
<skos:prefLabel xml:lang="EN">86100000</skos:prefLabel>
<skos:definition xml:lang="EN">Vocational training</skos:definition>
<skos:broader rdf:resource="86000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="86110000">
<skos:prefLabel xml:lang="EN">86110000</skos:prefLabel>
<skos:definition xml:lang="EN">Alternative educational systems</skos:definition>
<skos:broader rdf:resource="86000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="86120000">
<skos:prefLabel xml:lang="EN">86120000</skos:prefLabel>
<skos:definition xml:lang="EN">Educational institutions</skos:definition>
<skos:broader rdf:resource="86000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="86130000">
<skos:prefLabel xml:lang="EN">86130000</skos:prefLabel>
<skos:definition xml:lang="EN">Specialized educational services</skos:definition>
<skos:broader rdf:resource="86000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="86140000">
<skos:prefLabel xml:lang="EN">86140000</skos:prefLabel>
<skos:definition xml:lang="EN">Educational facilities</skos:definition>
<skos:broader rdf:resource="86000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="90000000">
<skos:definition xml:lang="EN">Travel and Food and Lodging and Entertainment Services</skos:definition>
<skos:prefLabel xml:lang="EN">Travel and Food and Lodging and Entertainment Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="90100000">
<skos:prefLabel xml:lang="EN">90100000</skos:prefLabel>
<skos:definition xml:lang="EN">Restaurants and catering</skos:definition>
<skos:broader rdf:resource="90000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="90110000">
<skos:prefLabel xml:lang="EN">90110000</skos:prefLabel>
<skos:definition xml:lang="EN">Hotels and lodging and meeting facilities</skos:definition>
<skos:broader rdf:resource="90000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="90120000">
<skos:prefLabel xml:lang="EN">90120000</skos:prefLabel>
<skos:definition xml:lang="EN">Travel facilitation</skos:definition>
<skos:broader rdf:resource="90000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="90130000">
<skos:prefLabel xml:lang="EN">90130000</skos:prefLabel>
<skos:definition xml:lang="EN">Performing arts</skos:definition>
<skos:broader rdf:resource="90000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="90140000">
<skos:prefLabel xml:lang="EN">90140000</skos:prefLabel>
<skos:definition xml:lang="EN">Commercial sports</skos:definition>
<skos:broader rdf:resource="90000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="80150000">
<skos:prefLabel xml:lang="EN">90150000</skos:prefLabel>
<skos:definition xml:lang="EN">Entertainment services</skos:definition>
<skos:broader rdf:resource="90000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="91000000">
<skos:definition xml:lang="EN">Personal and Domestic Services</skos:definition>
<skos:prefLabel xml:lang="EN">Personal and Domestic Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="91100000">
<skos:prefLabel xml:lang="EN">91100000</skos:prefLabel>
<skos:definition xml:lang="EN">Personal appearance</skos:definition>
<skos:broader rdf:resource="91000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="91110000">
<skos:prefLabel xml:lang="EN">91110000</skos:prefLabel>
<skos:definition xml:lang="EN">Domestic and personal assistance</skos:definition>
<skos:broader rdf:resource="91000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="92000000">
<skos:definition xml:lang="EN">Security and Safety Services</skos:definition>
<skos:prefLabel xml:lang="EN">Security and Safety Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="92120000">
<skos:prefLabel xml:lang="EN">92120000</skos:prefLabel>
<skos:definition xml:lang="EN">Security and personal safety</skos:definition>
<skos:broader rdf:resource="92000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="93000000">
<skos:definition xml:lang="EN">Politics and Civic Affairs Services</skos:definition>
<skos:prefLabel xml:lang="EN">Politics and Civic Affairs Services</skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="93100000">
<skos:prefLabel xml:lang="EN">93100000</skos:prefLabel>
<skos:definition xml:lang="EN">Political systems and institutions</skos:definition>
<skos:broader rdf:resource="93000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="93110000">
<skos:prefLabel xml:lang="EN">93110000</skos:prefLabel>
<skos:definition xml:lang="EN">Socio political conditions</skos:definition>
<skos:broader rdf:resource="93000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="93120000">
<skos:prefLabel xml:lang="EN">93120000</skos:prefLabel>
<skos:definition xml:lang="EN">International relations</skos:definition>
<skos:broader rdf:resource="93000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="93130000">
<skos:prefLabel xml:lang="EN">93130000</skos:prefLabel>
<skos:definition xml:lang="EN">Humanitarian aid and relief</skos:definition>
<skos:broader rdf:resource="93000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="93140000">
<skos:prefLabel xml:lang="EN">93140000</skos:prefLabel>
<skos:definition xml:lang="EN">Community and social services</skos:definition>
<skos:broader rdf:resource="93000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="80150000">
<skos:prefLabel xml:lang="EN">80150000</skos:prefLabel>
<skos:definition xml:lang="EN">Public administration and finance services</skos:definition>
<skos:broader rdf:resource="80000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="93160000">
<skos:prefLabel xml:lang="EN">93160000</skos:prefLabel>
<skos:definition xml:lang="EN">Taxation</skos:definition>
<skos:broader rdf:resource="93000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="93170000">
<skos:prefLabel xml:lang="EN">93170000</skos:prefLabel>
<skos:definition xml:lang="EN">Trade policy and regulation</skos:definition>
<skos:broader rdf:resource="93000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="94000000">
<skos:definition xml:lang="EN">Organizations and Clubs</skos:definition>
<skos:prefLabel xml:lang="EN"></skos:prefLabel>
<skos:scopeNote xml:lang="EN"></skos:scopeNote>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="94100000">
<skos:prefLabel xml:lang="EN">94100000</skos:prefLabel>
<skos:definition xml:lang="EN">Work related organizations</skos:definition>
<skos:broader rdf:resource="94000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="94110000">
<skos:prefLabel xml:lang="EN">94110000</skos:prefLabel>
<skos:definition xml:lang="EN">Religious organizations</skos:definition>
<skos:broader rdf:resource="94000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="94120000">
<skos:prefLabel xml:lang="EN">94120000</skos:prefLabel>
<skos:definition xml:lang="EN">Clubs</skos:definition>
<skos:broader rdf:resource="94000000"/>
<skos:inScheme rdf:resource=""/>
</skos:Concept>
<skos:Concept rdf:about="94130000">
<skos:prefLabel xml:lang="EN">94130000</skos:prefLabel>