forked from longmanplus/RoboCloudBrain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorg-lab.owl
1138 lines (776 loc) · 51.9 KB
/
org-lab.owl
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="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#"
xml:base="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"
xmlns:gr="http://purl.org/goodrelations/v1#"
xmlns:org="http://www.w3.org/ns/org#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:locn="http://www.w3.org/ns/locn#"
xmlns:prov="http://www.w3.org/ns/prov#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:time="http://www.w3.org/2006/time#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:org-lab="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#">
<owl:Ontology rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab">
<owl:imports rdf:resource="http://www.w3.org/ns/org#"/>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2004/02/skos/core#definition -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#definition"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2001/XMLSchema#date -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#date"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#hasApparatus -->
<owl:ObjectProperty rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#hasApparatus">
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
<rdfs:range rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Apparatus"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">has apparatus</rdfs:label>
<rdfs:label xml:lang="cn">有装置</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#sustainedBy -->
<owl:ObjectProperty rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#sustainedBy">
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
<rdfs:range rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#SustainActivity"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">sustained by</rdfs:label>
<rdfs:label xml:lang="cn">被维持</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#after -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#after">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/time"/>
<rdfs:label xml:lang="en">is after</rdfs:label>
<rdfs:label xml:lang="cn">随后</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#before -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#before">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/time"/>
<rdfs:label xml:lang="en">is before</rdfs:label>
<rdfs:label xml:lang="cn">之前</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#hasBeginning -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#hasBeginning">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#hasTime"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#Instant"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/time"/>
<rdfs:label xml:lang="en">has beginning</rdfs:label>
<rdfs:label xml:lang="cn">有开始</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#hasEnd -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#hasEnd">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#hasTime"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#Instant"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/time"/>
<rdfs:label xml:lang="en">has end</rdfs:label>
<rdfs:label xml:lang="cn">有结束</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#hasTime -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#hasTime">
<rdfs:range rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/time"/>
<rdfs:label xml:lang="en">has time</rdfs:label>
<rdfs:label xml:lang="cn">有时间</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalAfter -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalAfter">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#after"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/time"/>
<rdfs:label xml:lang="en">interval after</rdfs:label>
<rdfs:label xml:lang="cn">之后</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalBefore -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalBefore">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#before"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/time"/>
<rdfs:label xml:lang="en">interval before</rdfs:label>
<rdfs:label xml:lang="cn">间隔前</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/locn#address -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/locn#address">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/prov#Activity"/>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Agent"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://www.w3.org/ns/locn#Address"/>
<rdfs:comment xml:lang="en">The locn:address property relationship associates any resource with the <a href="#locn:Address">Address</a> Class</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/locn.ttl"/>
<rdfs:label xml:lang="en">address</rdfs:label>
<rdfs:label xml:lang="cn">地址</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/org#basedAt -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/org#basedAt">
<rdfs:comment xml:lang="cn">位于场所</rdfs:comment>
<rdfs:comment xml:lang="cn">表示人员所在的场所。 我们不限制一个人位于多个场所的可能性。</rdfs:comment>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/org#memberDuring -->
<rdf:Description rdf:about="http://www.w3.org/ns/org#memberDuring">
<rdfs:range rdf:resource="http://www.w3.org/2006/time#DateTimeInterval"/>
<rdfs:label xml:lang="cn">成员期</rdfs:label>
</rdf:Description>
<!-- http://www.w3.org/ns/org#organization -->
<rdf:Description rdf:about="http://www.w3.org/ns/org#organization">
<rdfs:label xml:lang="cn">组织</rdfs:label>
</rdf:Description>
<!-- http://www.w3.org/ns/org#siteAddress -->
<rdf:Description rdf:about="http://www.w3.org/ns/org#siteAddress">
<rdfs:range rdf:resource="http://www.w3.org/ns/locn#Address"/>
<rdfs:label xml:lang="cn">场所地址</rdfs:label>
</rdf:Description>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/terms/description -->
<owl:DatatypeProperty rdf:about="http://purl.org/dc/terms/description">
<rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms"/>
<rdfs:label xml:lang="en">description</rdfs:label>
<rdfs:label xml:lang="cn">描述</rdfs:label>
</owl:DatatypeProperty>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#membershipID -->
<owl:DatatypeProperty rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#membershipID">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/org#identifier"/>
<rdfs:comment xml:lang="cn">用于标识行为主体对某组织的成员资格的唯一标识符</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">membership ID</rdfs:label>
<rdfs:label xml:lang="cn">成员资格标识符</rdfs:label>
</owl:DatatypeProperty>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#nationalIdentificationNumber -->
<owl:DatatypeProperty rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#nationalIdentificationNumber">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#notation"/>
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">national identification number</rdfs:label>
<rdfs:label xml:lang="cn">身份证号码</rdfs:label>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#inXSDDate -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#inXSDDate">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#Instant"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/time"/>
<rdfs:label xml:lang="cn">XSD date格式的日期</rdfs:label>
<rdfs:label xml:lang="en">in XSD date</rdfs:label>
<skos:definition xml:lang="en">Position of an instant, expressed using xsd:date</skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/ns/locn#addressArea -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/locn#addressArea">
<rdfs:domain rdf:resource="http://www.w3.org/ns/locn#Address"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">The name or names of a geographic area or locality that groups a number of addressable objects for addressing purposes, without being an administrative unit. This would typically be part of a city, a neighbourhood or village. The domain of locn:addressArea is locn:Address.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/locn.ttl"/>
<rdfs:label xml:lang="en">address area</rdfs:label>
<rdfs:label xml:lang="cn">地址区域</rdfs:label>
</owl:DatatypeProperty>
<!-- http://www.w3.org/ns/locn#fullAddress -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/locn#fullAddress">
<rdfs:domain rdf:resource="http://www.w3.org/ns/locn#Address"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">The complete address written as a string, with or without formatting. The domain of locn:fullAddress is locn:Address.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/locn.ttl"/>
<rdfs:label xml:lang="en">full address</rdfs:label>
<rdfs:label xml:lang="cn">完整地址</rdfs:label>
</owl:DatatypeProperty>
<!-- http://www.w3.org/ns/locn#locatorDesignator -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/locn#locatorDesignator">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/locn#Address"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">A number or a sequence of characters that uniquely identifies the locator within the relevant scope(s). The full identification of the locator could include one or more locator designators. The domain of locn:locatorDesignator is locn:Address.</rdfs:comment>
<rdfs:comment xml:lang="cn">在相关范围内唯一标识定位器的数字或字符序列。 定位器的完整标识可以包括一个或多个定位器指示符。 locn:locatorDesignator 的域是 locn:Address。</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/locn.ttl"/>
<rdfs:label xml:lang="en">locator designator</rdfs:label>
<rdfs:label xml:lang="cn">定位器指示符</rdfs:label>
</owl:DatatypeProperty>
<!-- http://www.w3.org/ns/locn#locatorName -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/locn#locatorName">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/locn#Address"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">Proper noun(s) applied to the real world entity identified by the locator. The locator name could be the name of the property or complex, of the building or part of the building, or it could be the name of a room inside a building. The domain of locn:locatorName is locn:Address.</rdfs:comment>
<rdfs:comment xml:lang="cn">专有名词应用于由定位器识别的现实世界实体。 定位器名称可以是财产或综合体的名称、建筑物或建筑物的一部分的名称,或者它可以是建筑物内的房间的名称。 locn:locatorName 的域是 locn:Address。</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/locn.ttl"/>
<rdfs:label xml:lang="en">locator name</rdfs:label>
<rdfs:label xml:lang="cn">定位器名称</rdfs:label>
</owl:DatatypeProperty>
<!-- http://www.w3.org/ns/org#identifier -->
<rdf:Description rdf:about="http://www.w3.org/ns/org#identifier">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:label xml:lang="cn">标识符</rdfs:label>
</rdf:Description>
<!-- http://www.w3.org/ns/prov#atTime -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/prov#atTime">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/prov#Activity"/>
<rdf:Description rdf:about="http://www.w3.org/ns/prov#InstantaneousEvent"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<rdfs:comment xml:lang="en">The time at which an InstantaneousEvent occurred, in the form of xsd:dateTime.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<rdfs:label xml:lang="en">at time</rdfs:label>
<rdfs:label xml:lang="cn">在时间</rdfs:label>
</owl:DatatypeProperty>
<!-- http://www.w3.org/ns/prov#endedAtTime -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/prov#endedAtTime">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#atTime"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<rdfs:comment xml:lang="en">The time at which an activity ended. See also prov:startedAtTime.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<rdfs:label xml:lang="en">ended at time</rdfs:label>
<rdfs:label xml:lang="cn">结束在时间</rdfs:label>
</owl:DatatypeProperty>
<!-- http://www.w3.org/ns/prov#startedAtTime -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/prov#startedAtTime">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#atTime"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<rdfs:comment xml:lang="en">The time at which an activity started. See also prov:endedAtTime.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<rdfs:label xml:lang="en">start at time</rdfs:label>
<rdfs:label xml:lang="cn">开始在时间</rdfs:label>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/goodrelations/v1#BusinessEntity -->
<rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity">
<rdfs:comment xml:lang="en">An instance of this class represents the legal agent making (or seeking) a particular offering. This can be a legal body or a person. A business entity has at least a primary mailing address and contact details. For this, typical address standards (vCard) and location data (geo, WGS84) can be attached. Note that the location of the business entity is not necessarily the location from which the product or service is being available (e.g. the branch or store). Use gr:Location for stores and branches.
Example: Siemens Austria AG, Volkswagen Ltd., Peter Miller's Cell phone Shop LLC
Compatibility with schema.org: This class is equivalent to the union of http://schema.org/Person and http://schema.org/Organization.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
<rdfs:label xml:lang="en">Business entity</rdfs:label>
<rdfs:label xml:lang="cn">业务性实体</rdfs:label>
</rdf:Description>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Apparatus -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Apparatus">
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Apparatus</rdfs:label>
<rdfs:label xml:lang="cn">装置</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#AssetManagement -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#AssetManagement">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#ResourceManagement"/>
<rdfs:label xml:lang="en">Asset management</rdfs:label>
<rdfs:label xml:lang="cn">资产管理</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Association -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Association">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#NonbusinessEntity"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Association</rdfs:label>
<rdfs:label xml:lang="cn">协会</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Carveout -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Carveout">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/org#ChangeEvent"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Carveout</rdfs:label>
<rdfs:label xml:lang="cn">拆分</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Closedown -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Closedown">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/org#ChangeEvent"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Closedown</rdfs:label>
<rdfs:label xml:lang="cn">倒闭</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Company -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Company">
<rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Company</rdfs:label>
<rdfs:label xml:lang="cn">公司</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Completion -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Completion">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/org#ChangeEvent"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Completion</rdfs:label>
<rdfs:label xml:lang="cn">完成</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Delivery -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Delivery">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/org#ChangeEvent"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Delivery</rdfs:label>
<rdfs:label xml:lang="cn">交付</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Factory -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Factory">
<rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Factory</rdfs:label>
<rdfs:label xml:lang="cn">工厂</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Founding -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Founding">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/org#ChangeEvent"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Founding</rdfs:label>
<rdfs:label xml:lang="cn">成立</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#GovernmentAgency -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#GovernmentAgency">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#NonprofitEntity"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Government agency</rdfs:label>
<rdfs:label xml:lang="cn">政府机构</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#HumanResourceManagement -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#HumanResourceManagement">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#ResourceManagement"/>
<rdfs:label xml:lang="en">HR management</rdfs:label>
<rdfs:label xml:lang="cn">人事管理</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Investment -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Investment">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Operation"/>
<rdfs:label xml:lang="en">Investment</rdfs:label>
<rdfs:label xml:lang="cn">投资</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Kickoff -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Kickoff">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/org#ChangeEvent"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Kickoff</rdfs:label>
<rdfs:label xml:lang="cn">开启</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#League -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#League">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#NonbusinessEntity"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">League</rdfs:label>
<rdfs:label xml:lang="cn">联盟</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Management -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Management">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#SustainActivity"/>
<rdfs:label xml:lang="en">Management</rdfs:label>
<rdfs:label xml:lang="cn">管理</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Mergence -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Mergence">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/org#ChangeEvent"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Mergence</rdfs:label>
<rdfs:label xml:lang="cn">合并</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#NonbusinessEntity -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#NonbusinessEntity">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/org#FormalOrganization"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Nonbusiness entity</rdfs:label>
<rdfs:label xml:lang="cn">非业务性实体</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#NonprofitEntity -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#NonprofitEntity">
<rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Nonprofit entity</rdfs:label>
<rdfs:label xml:lang="cn">非盈利性实体</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Operation -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Operation">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#SustainActivity"/>
<rdfs:label xml:lang="en">Operation</rdfs:label>
<rdfs:label xml:lang="cn">操作</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#PerformanceAppraisal -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#PerformanceAppraisal">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#HumanResourceManagement"/>
<rdfs:label xml:lang="en">Performance appraisal</rdfs:label>
<rdfs:label xml:lang="cn">绩效管理</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Planning -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Planning">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Operation"/>
<rdfs:label xml:lang="en">Planning</rdfs:label>
<rdfs:label xml:lang="cn">规划</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Procurement -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Procurement">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Operation"/>
<rdfs:label xml:lang="en">Procurement</rdfs:label>
<rdfs:label xml:lang="cn">采购</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Production -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Production">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Operation"/>
<rdfs:label xml:lang="en">Production</rdfs:label>
<rdfs:label xml:lang="cn">生产</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Projectmanagement -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Projectmanagement">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Management"/>
<rdfs:label xml:lang="en">Project management</rdfs:label>
<rdfs:label xml:lang="cn">项目管理</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Proposition -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Proposition">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/org#ChangeEvent"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Proposition</rdfs:label>
<rdfs:label xml:lang="cn">提案</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Recruitment -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Recruitment">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#HumanResourceManagement"/>
<rdfs:label xml:lang="en">Recruitment</rdfs:label>
<rdfs:label xml:lang="cn">招聘</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Relocation -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Relocation">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/org#ChangeEvent"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Relocation</rdfs:label>
<rdfs:label xml:lang="cn">搬迁</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Reorganization -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Reorganization">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/org#ChangeEvent"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Reorganization</rdfs:label>
<rdfs:label xml:lang="cn">重组</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#ResearchAndDevelopment -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#ResearchAndDevelopment">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Operation"/>
<rdfs:label xml:lang="en">R&D</rdfs:label>
<rdfs:label xml:lang="cn">其他</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#ResearchInstitute -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#ResearchInstitute">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#NonprofitEntity"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Research institute</rdfs:label>
<rdfs:label xml:lang="cn">研究机构</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#ResourceManagement -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#ResourceManagement">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Management"/>
<rdfs:label xml:lang="en">Resource management</rdfs:label>
<rdfs:label xml:lang="cn">资源管理</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#RewardManagement -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#RewardManagement">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#HumanResourceManagement"/>
<rdfs:label xml:lang="en">Reward management</rdfs:label>
<rdfs:label xml:lang="cn">薪资管理</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#School -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#School">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#NonprofitEntity"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">School</rdfs:label>
<rdfs:label xml:lang="cn">学校</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#SustainActivity -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#SustainActivity">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:label xml:lang="en">Sustain activity</rdfs:label>
<rdfs:label xml:lang="cn">持续性事件</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Union -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Union">
<rdfs:subClassOf rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#NonbusinessEntity"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab"/>
<rdfs:label xml:lang="en">Union</rdfs:label>
<rdfs:label xml:lang="cn">联合会</rdfs:label>
</owl:Class>
<!-- http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Validation -->
<owl:Class rdf:about="http://purl.org/zhejianglab/irobot-center/ontologies/org-lab#Validation">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/org#ChangeEvent"/>
<rdfs:label xml:lang="en">Validation</rdfs:label>
<rdfs:label xml:lang="cn">验证</rdfs:label>
</owl:Class>
<!-- http://www.w3.org/2004/02/skos/core#Concept -->
<rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core#Concept">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
<rdfs:label xml:lang="en">Concept</rdfs:label>
<rdfs:label xml:lang="cn">概念</rdfs:label>
</rdf:Description>
<!-- http://www.w3.org/2006/time#DateTimeInterval -->
<owl:Class rdf:about="http://www.w3.org/2006/time#DateTimeInterval">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/time"/>
<rdfs:label xml:lang="en">Date-time interval</rdfs:label>
<rdfs:label xml:lang="cn">日期时间间隔</rdfs:label>
</owl:Class>
<!-- http://www.w3.org/2006/time#Instant -->
<owl:Class rdf:about="http://www.w3.org/2006/time#Instant">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/time"/>
<rdfs:label xml:lang="en">Time instant</rdfs:label>
<rdfs:label xml:lang="cn">即时时间</rdfs:label>
</owl:Class>
<!-- http://www.w3.org/2006/time#Interval -->
<owl:Class rdf:about="http://www.w3.org/2006/time#Interval">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/time"/>
<rdfs:label xml:lang="en">Time interval</rdfs:label>
<rdfs:label xml:lang="cn">时间间隔</rdfs:label>
</owl:Class>
<!-- http://www.w3.org/2006/time#ProperInterval -->
<owl:Class rdf:about="http://www.w3.org/2006/time#ProperInterval">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2006/time#Interval"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/time"/>
<rdfs:label xml:lang="en">Proper interval</rdfs:label>
<rdfs:label xml:lang="cn">适当的间隔</rdfs:label>
</owl:Class>
<!-- http://www.w3.org/2006/time#TemporalEntity -->
<owl:Class rdf:about="http://www.w3.org/2006/time#TemporalEntity">
<owl:equivalentClass>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Instant"/>
<rdf:Description rdf:about="http://www.w3.org/2006/time#Interval"/>
</owl:unionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/time"/>
<rdfs:label xml:lang="en">Temporal entity</rdfs:label>
<rdfs:label xml:lang="cn">时间实体</rdfs:label>
</owl:Class>
<!-- http://www.w3.org/ns/locn#Address -->
<owl:Class rdf:about="http://www.w3.org/ns/locn#Address">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/locn.ttl"/>
<rdfs:label xml:lang="en">Address</rdfs:label>
<rdfs:label xml:lang="cn">地址</rdfs:label>
</owl:Class>
<!-- http://www.w3.org/ns/org#ChangeEvent -->
<rdf:Description rdf:about="http://www.w3.org/ns/org#ChangeEvent">
<rdfs:label xml:lang="cn">偶发事件</rdfs:label>
</rdf:Description>
<!-- http://www.w3.org/ns/org#FormalOrganization -->
<rdf:Description rdf:about="http://www.w3.org/ns/org#FormalOrganization">
<rdfs:comment xml:lang="cn">一个在世界范围内,特别是在法律管辖范围内得到承认的组织,具有相关的权利和责任。 示例包括公司、慈善机构、政府或教会。 请注意,这是 `gr:BusinessEntity` 的超类,建议使用 GoodRelations 词汇表来表示业务分类,例如 DUNS 或 NAICS。</rdfs:comment>
<rdfs:label xml:lang="cn">正式组织</rdfs:label>
</rdf:Description>
<!-- http://www.w3.org/ns/org#Membership -->
<rdf:Description rdf:about="http://www.w3.org/ns/org#Membership">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/ns/org#organization"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/ns/org#Organization"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:label xml:lang="cn">成员资格</rdfs:label>
<rdfs:label xml:lang="cn">表示行为主体在组织中的成员身份的性质。 表示行为主体、组织和角色之间的 n 元关系。 可以通过使用 `org:memberOf` 属性直接指示成员资格,而与特定角色无关。</rdfs:label>
</rdf:Description>
<!-- http://www.w3.org/ns/org#Organization -->
<rdf:Description rdf:about="http://www.w3.org/ns/org#Organization">
<owl:disjointWith rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
</rdf:Description>
<!-- http://www.w3.org/ns/org#OrganizationalCollaboration -->
<rdf:Description rdf:about="http://www.w3.org/ns/org#OrganizationalCollaboration">
<owl:disjointWith rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<rdfs:comment xml:lang="cn">两个或多个组织之间的协作,例如一个项目。 它符合成为一个组织的标准,因为它具有独立于其特定成员的身份和明确目的,但既不是正式承认的法律实体,也不是某个更大组织内的子单位。 通常可能比其中的组织具有更短的生命周期,但不一定。 所有成员都是“组织:组织”而不是个人,这些组织可以在企业中扮演特定角色。 替代名称:_Project_ _Venture_ _Endeavour_ _Consortium_ _Endeavour_</rdfs:comment>
<rdfs:label xml:lang="cn">合作</rdfs:label>
</rdf:Description>
<!-- http://www.w3.org/ns/prov#Activity -->
<owl:Class rdf:about="http://www.w3.org/ns/prov#Activity">
<rdfs:comment xml:lang="en">An activity is something that occurs over a period of time and acts upon or with entities; it may include consuming, processing, transforming, modifying, relocating, using, or generating entities.</rdfs:comment>
<rdfs:comment xml:lang="cn">活动是在一段时间内发生并作用于实体或与实体一起作用的事物; 它可能包括消费、处理、转换、修改、重新定位、使用或生成实体。</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<rdfs:label xml:lang="en">Activity</rdfs:label>
<rdfs:label xml:lang="cn">活动</rdfs:label>
</owl:Class>
<!-- http://www.w3.org/ns/prov#InstantaneousEvent -->
<owl:Class rdf:about="http://www.w3.org/ns/prov#InstantaneousEvent"/>
<!-- http://xmlns.com/foaf/0.1/Agent -->
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Agent">
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
<rdfs:label xml:lang="en">Agent</rdfs:label>
<rdfs:label xml:lang="cn">行为主体</rdfs:label>
</rdf:Description>
<!-- http://xmlns.com/foaf/0.1/Organization -->
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Organization">
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
<rdfs:label xml:lang="en">Organization</rdfs:label>
<rdfs:label xml:lang="cn">组织机构</rdfs:label>
</rdf:Description>
<!-- http://xmlns.com/foaf/0.1/Person -->