-
Notifications
You must be signed in to change notification settings - Fork 1
/
MetaShare.ttl
3734 lines (3088 loc) · 178 KB
/
MetaShare.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
# baseURI: http://lodserver.iula.upf.edu/Metashare/ontology/
# imports: http://lodserver.iula.upf.edu/Metashare/services/
@prefix bibo: <http://purl.org/ontology/bibo/#> .
@prefix bio: <http://lodserver.iula.upf.edu/Metashare/services/> .
@prefix browser: <http://browser.upf/browser#> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix dblp: <http://sw.deri.org/~aharth/2004/07/dblp/dblp.owl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcr: <http://www.isocat.org/ns/dcr.rdf#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix languagecode: <http://www.fao.org/aims/aos/languagecode.owl#> .
@prefix ms: <http://lodserver.iula.upf.edu/Metashare/ontology/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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#> .
@prefix swrc: <http://swrc.ontoware.org/ontology#> .
@prefix test: <http://lodserver.iula.upf.edu/Metashare/resource/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
ms: rdf:type owl:Ontology ;
rdfs:comment "On going draft version of the MetaShare model in LOD. Includes the MS ontology and all metadata records describing Resources and Services from IULA-UPF. Comments and suggestions are wellcome. CC-BY license. More info in Villegas, Melero and Bel \"Metadata as Linked Open Data: mappimg disparate XML metadata registries into one RDF/OWL registry\" Conference: Proceedings of the Ninth International Conference on Language Resources and Evaluation (LREC'14), At Reykjavik, Iceland."@en ;
rdfs:label "MetaShare LOD version"@en ;
cc:license <https://creativecommons.org/licenses/by/3.0/> ;
dc:creator test:organization_UPF-IULA , "IULA - Universitat Pompeu Fabra"^^xsd:string , test:person_Marta_Villegas ;
dcterms:issued "2014-03-18" ;
dcterms:modified "2014-09-30" ;
dcterms:rights <https://creativecommons.org/licenses/by/3.0/> ;
dcterms:title "MetaShare LOD version"@en ;
owl:imports bio: ;
owl:versionInfo "0.9" .
ms:AGPL
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "AGPL"@en ;
dc:description "AGPL is a kind of license meant to govern the use or redistribution of a resource"@en ;
owl:sameAs <http://dbpedia.org/resource/Agpl> .
ms:AcademicUser
rdf:type ms:UserNature ;
rdfs:label "Academic User"@en .
ms:Agent
rdf:type owl:Class ;
rdfs:label "Agent"@en ;
rdfs:subClassOf owl:Thing ;
owl:equivalentClass foaf:Agent , swrc:Agent .
ms:AnnotationMode
rdf:type owl:Class ;
rdfs:label "Annotation Mode"@en ;
ms:dcr "http://www.isocat.org/datcat/DC-2506"@en ;
dc:description "Specifies whether the resource is created automatically or in a manual or interactive mode "@en .
ms:AnnotationType
rdf:type owl:Class ;
rdfs:label "Annotation Type"@en ;
ms:dcr "http://www.isocat.org/datcat/DC-2462"@en ;
dc:description "Specifies the annotation level of the resource or the annotation type a tool/ service requires or produces as an output"@en .
<http://lodserver.iula.upf.edu/Metashare/ontology/ApacheLicence_2.0>
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "ApacheLicence_2.0"@en ;
rdfs:seeAlso <http://en.wikipedia.org/wiki/Apache_License> ;
dc:description "ApacheLicence_2.0 is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:Audio
rdf:type ms:MediaType ;
rdfs:label "Audio"@en ;
ms:dcr "https://catalog.clarin.eu/isocat/rest/dc/2653"^^xsd:string ;
dc:description "Any electronic media content that requires an audio output device (such as a speaker or a telephone) to \"display\" the contents."@en .
ms:Availability
rdf:type owl:Class ;
rdfs:label "Availability"@en ;
ms:dcr "http://www.isocat.org/datcat/DC-2453"@en ;
dc:description "Specifies the availability status of the resource; restrictionsOfUse can be further used to indicate the specific terms of availability"@en .
ms:BLM
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "BLM"@en ;
dc:description "BLM is a standard used in Natural Language Processing"@en .
ms:BSD
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "BSD"@en ;
dc:description "BSD is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:BSD-style
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "BSD-style"@en ;
dc:description "BSD-style is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:Big5
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Big5"@en ;
dc:description "Big5 is a character encoding"@en .
ms:Big5-HKSCS
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Big5-HKSCS"@en ;
dc:description "Big5-HKSCS is a character encoding"@en .
ms:Big5_Solaris
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Big5_Solaris"@en ;
dc:description "Big5_Solaris is a character encoding"@en .
ms:CC-BY
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "CC-BY"@en ;
dc:description "CC-BY is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:CC-BY-NC
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "CC-BY-NC"@en ;
dc:description "CC-BY-NC is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:CC-BY-NC-ND
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "CC-BY-NC-ND"@en ;
dc:description "CC-BY-NC-ND is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:CC-BY-NC-SA
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "CC-BY-NC-SA"@en ;
dc:description "CC-BY-NC-SA is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:CC-BY-ND
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "CC-BY-ND"@en ;
dc:description "CC-BY-ND is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:CC-BY-SA
rdf:type owl:NamedIndividual , ms:License ;
rdfs:label "CC-BY-SA"@en ;
dc:description "CC-BY-SA is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:CC-ZERO
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "CC-ZERO"@en ;
dc:description "CC-ZERO is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:CES
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "CES"@en ;
dc:description "CES (Corpus Encoding Standard) is a standard used in Natural Language Processing for corpus-based work"@en .
ms:CLARIN_ACA
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "CLARIN_ACA"@en ;
dc:description "CLARIN_ACA is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:CLARIN_ACA-NC
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "CLARIN_ACA-NC"@en ;
dc:description "CLARIN_ACA-NC is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:CLARIN_PUB
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "CLARIN_PUB"@en ;
dc:description "CLARIN_PUB is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:CLARIN_RES
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "CLARIN_RES"@en ;
dc:description "CLARIN_RES is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:CharacterEncoding
rdf:type owl:Class ;
rdfs:label "CharacterEncoding"@en ;
ms:dcr "http://www.isocat.org/datcat/DC-2564"@en ;
dc:description "Groups together information on character encoding of the resource"@en ;
owl:sameAs <http://dbpedia.org/resource/Character_encoding> .
ms:CommercialUser
rdf:type ms:UserNature ;
rdfs:label "Commercial User"@en ;
dc:description "User nature: For commercial institutions"@en .
ms:ComputationalLexicon
rdf:type owl:Class ;
rdfs:label "ComputationalLexicon"@en ;
rdfs:subClassOf ms:LexicalConceptualResource ;
dc:description "Computational lexicon is a repository of words usually structured with a list of each of the stems and affixes of the language together with a representation of the morphotactics that tells us how they can fit together [Jurafsky and Martin, 2006]"@en .
ms:Corpus
rdf:type owl:Class ;
rdfs:label "Corpus"@en ;
rdfs:subClassOf ms:Resource ;
dc:description "A corpus is a collection of writings, conversations, speeches, etc., that people use to study and describe a language [Merriam-Webster]"@en ;
owl:disjointUnionOf (ms:CorpusAudio ms:CorpusCollection ms:CorpusImage ms:CorpusText ms:CorpusVideo) .
ms:CorpusAudio
rdf:type owl:Class ;
rdfs:label "Corpus Audio"@en ;
rdfs:subClassOf ms:Corpus ;
dc:description "A speech corpus (or spoken corpus) is a database of speech audio files and text transcriptions. (wikipedia)"@en ;
owl:sameAs <http://dbpedia.org/resource/Speech_corpus> .
ms:CorpusCollection
rdf:type owl:Class ;
rdfs:label "CorpusCollection"@en ;
rdfs:subClassOf ms:Corpus ;
dc:description "A corpus collection is a set of corpora (text, audio, video or images) created for studying and describing a language"@en .
ms:CorpusImage
rdf:type owl:Class ;
rdfs:label "Corpus Image"@en ;
rdfs:subClassOf ms:Corpus ;
dc:description "An image corpus includes a collection of graphical representation files and their text transcription"@en .
ms:CorpusText
rdf:type owl:Class ;
rdfs:label "Corpus Text"@en ;
rdfs:subClassOf ms:Corpus ;
ms:dcr "http://www.isocat.org/datcat/DC-4046"@en ;
dc:description "Text corpus is a large and structured set of texts used to do statistical analysis and hypothesis testing, checking occurrences or validating linguistic rules within a specific language territory. (wikipedia)."@en ;
owl:sameAs <http://dbpedia.org/resource/Text_corpus> .
ms:CorpusTextNgram
rdf:type owl:Class ;
rdfs:label "Corpus Text Ngrams"@en ;
rdfs:subClassOf ms:Corpus ;
dc:description "It is a linguistic resource composed of contiguous sequences of n items named as ngrams (phonemes, syllables, letters, words, etc.) and collected from a text corpus"@en .
ms:CorpusVideo
rdf:type owl:Class ;
rdfs:label "Corpus Video"@en ;
rdfs:subClassOf ms:Corpus ;
dc:description "A video corpus includes a collection of audiovisual files and their text transcription"@en .
ms:Cp037
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp037"@en ;
dc:description "Cp037 is a character encoding"@en .
ms:Cp1006
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp1006"@en ;
dc:description "Cp1006 is a character encoding"@en .
ms:Cp1025
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp1025"@en ;
dc:description "Cp1025 is a character encoding"@en .
ms:Cp1026
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp1026"@en ;
dc:description "Cp1026 is a character encoding"@en .
ms:Cp1046
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp1046"@en ;
dc:description "Cp1046 is a character encoding"@en .
ms:Cp1047
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp1047"@en ;
dc:description "Cp1047 is a character encoding"@en .
ms:Cp1097
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp1097"@en ;
dc:description "Cp1097 is a character encoding"@en .
ms:Cp1098
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp1098"@en ;
dc:description "Cp1098 is a character encoding"@en .
ms:Cp1112
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp1112"@en ;
dc:description "Cp1112 is a character encoding"@en .
ms:Cp1122
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp1122"@en ;
dc:description "Cp1122 is a character encoding"@en .
ms:Cp1123
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp1123"@en ;
dc:description "Cp1123 is a character encoding"@en .
ms:Cp1124
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp1124"@en ;
dc:description "Cp1124 is a character encoding"@en .
ms:Cp1140
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp1140"@en ;
dc:description "Cp1140 is a character encoding"@en .
ms:Cp1141
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp1141"@en ;
dc:description "Cp1141 is a character encoding"@en .
ms:Cp1142
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp1142"@en ;
dc:description "Cp1142 is a character encoding"@en .
ms:Cp1143
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp1143"@en ;
dc:description "Cp1143 is a character encoding"@en .
ms:Cp1144
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp1144"@en ;
dc:description "Cp1144 is a character encoding"@en .
ms:Cp1145
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp1145"@en ;
dc:description "Cp1145 is a character encoding"@en .
ms:Cp1146
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp1146"@en ;
dc:description "Cp1146 is a character encoding"@en .
ms:Cp1147
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp1147"@en ;
dc:description "Cp1147 is a character encoding"@en .
ms:Cp1148
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp1148"@en ;
dc:description "Cp1148 is a character encoding"@en .
ms:Cp1149
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp1149"@en ;
dc:description "Cp1149 is a character encoding"@en .
ms:Cp1381
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp1381"@en ;
dc:description "Cp1381 is a character encoding"@en .
ms:Cp1383
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp1383"@en ;
dc:description "Cp1383 is a character encoding"@en .
ms:Cp273
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp273"@en ;
dc:description "Cp273 is a character encoding"@en .
ms:Cp277
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp277"@en ;
dc:description "Cp277 is a character encoding"@en .
ms:Cp278
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp278"@en ;
dc:description "Cp278 is a character encoding"@en .
ms:Cp280
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp280"@en ;
dc:description "Cp280 is a character encoding"@en .
ms:Cp284
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp284"@en ;
dc:description "Cp284 is a character encoding"@en .
ms:Cp285
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp285"@en ;
dc:description "Cp285 is a character encoding"@en .
ms:Cp297
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp297"@en ;
dc:description "Cp297 is a character encoding"@en .
ms:Cp33722
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp33722"@en ;
dc:description "Cp33722 is a character encoding"@en .
ms:Cp420
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp420"@en ;
dc:description "Cp420 is a character encoding"@en .
ms:Cp424
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp424"@en ;
dc:description "Cp424 is a character encoding"@en .
ms:Cp437
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp437"@en ;
dc:description "Cp437 is a character encoding"@en .
ms:Cp500
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp500"@en ;
dc:description "Cp500 is a character encoding"@en .
ms:Cp737
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp737"@en ;
dc:description "Cp737 is a character encoding"@en .
ms:Cp775
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp775"@en ;
dc:description "Cp775 is a character encoding"@en .
ms:Cp838
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp838"@en ;
dc:description "Cp838 is a character encoding"@en .
ms:Cp850
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp850"@en ;
dc:description "Cp850 is a character encoding"@en .
ms:Cp852
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp852"@en ;
dc:description "Cp852 is a character encoding"@en .
ms:Cp855
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp855"@en ;
dc:description "Cp855 is a character encoding"@en .
ms:Cp856
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp856"@en ;
dc:description "Cp856 is a character encoding"@en .
ms:Cp857
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp857"@en ;
dc:description "Cp857 is a character encoding"@en .
ms:Cp858
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp858"@en ;
dc:description "Cp858 is a character encoding"@en .
ms:Cp860
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp860"@en ;
dc:description "Cp860 is a character encoding"@en .
ms:Cp861
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp861"@en ;
dc:description "Cp861 is a character encoding"@en .
ms:Cp862
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp862"@en ;
dc:description "Cp862 is a character encoding"@en .
ms:Cp863
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp863"@en ;
dc:description "Cp863 is a character encoding"@en .
ms:Cp864
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp864"@en ;
dc:description "Cp864 is a character encoding"@en .
ms:Cp865
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp865"@en ;
dc:description "Cp865 is a character encoding"@en .
ms:Cp866
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp866"@en ;
dc:description "Cp866 is a character encoding"@en .
ms:Cp868
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp868"@en ;
dc:description "Cp868 is a character encoding"@en .
ms:Cp869
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp869"@en ;
dc:description "Cp869 is a character encoding"@en .
ms:Cp870
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp870"@en ;
dc:description "Cp870 is a character encoding"@en .
ms:Cp871
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp871"@en ;
dc:description "Cp871 is a character encoding"@en .
ms:Cp874
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp874"@en ;
dc:description "Cp874 is a character encoding"@en .
ms:Cp875
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp875"@en ;
dc:description "Cp875 is a character encoding"@en .
ms:Cp918
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp918"@en ;
dc:description "Cp918 is a character encoding"@en .
ms:Cp921
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp921"@en ;
dc:description "Cp921 is a character encoding"@en .
ms:Cp922
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp922"@en ;
dc:description "Cp922 is a character encoding"@en .
ms:Cp930
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp930"@en ;
dc:description "Cp930 is a character encoding"@en .
ms:Cp933
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp933"@en ;
dc:description "Cp933 is a character encoding"@en .
ms:Cp935
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp935"@en ;
dc:description "Cp935 is a character encoding"@en .
ms:Cp937
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp937"@en ;
dc:description "Cp937 is a character encoding"@en .
ms:Cp939
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp939"@en ;
dc:description "Cp939 is a character encoding"@en .
ms:Cp942
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp942"@en ;
dc:description "Cp942 is a character encoding"@en .
ms:Cp942C
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp942C"@en ;
dc:description "Cp942C is a character encoding"@en .
ms:Cp943
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp943"@en ;
dc:description "Cp943 is a character encoding"@en .
ms:Cp943C
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "Cp943C"@en ;
dc:description "Cp943C is a character encoding"@en .
ms:Cp948
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp948"@en ;
dc:description "Cp948 is a character encoding"@en .
ms:Cp949
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp949"@en ;
dc:description "Cp949 is a character encoding"@en .
ms:Cp949C
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp949C"@en ;
dc:description "Cp949C is a character encoding"@en .
ms:Cp950
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp950"@en ;
dc:description "Cp950 is a character encoding"@en .
ms:Cp964
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp964"@en ;
dc:description "Cp964 is a character encoding"@en .
ms:Cp970
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "Cp970"@en ;
dc:description "Cp970 is a character encoding"@en .
ms:CreationMode
rdf:type owl:Class ;
rdfs:label "Creation Mode"@en ;
dc:description "Indicates whether the resource is created manually or by automatic processes."@en .
ms:DiscourseAnnotation
rdf:type owl:Class ;
rdfs:label "Discourse Annotation"@en ;
rdfs:subClassOf ms:AnnotationType ;
dc:description "Discourse annotation is the labeling of certain features of a discourse sample"@en .
ms:Document
rdf:type owl:Class ;
rdfs:label "Documentation"@en ;
rdfs:subClassOf owl:Thing ;
dc:description "description \"A document is a bounded physical representation of body of information designed with the capacity (and usually intent) to communicate [bibo]"@en ;
owl:equivalentClass swrc:Document , bibo:Document , foaf:Document .
ms:DomainInfo
rdf:type owl:Class ;
rdfs:label "Domain Information"@en ;
ms:dcr "http://www.isocat.org/datcat/DC-2467"@en ;
dc:description "Groups together information on domains represented in the resource; can be repeated for parts of the resource with distinct domain."@en .
ms:EAGLES
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "EAGLES"@en ;
dc:description "EAGLES (Expert Advisory Group on Language Engineering Standards). The Eagles Guidelines provide guidance for markup to be used with text corpora."@en ;
owl:sameAs <http://dbpedia.org/resource/Eagles_Guidelines> .
ms:ELRA_END_USER
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "ELRA_END_USER"@en ;
dc:description "ELRA_END_USER is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:ELRA_EVALUATION
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "ELRA_EVALUATION"@en ;
dc:description "ELRA_EVALUATION is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:ELRA_VAR
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "ELRA_VAR"@en ;
dc:description "ELRA_VAR is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:EML
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "EML"@en ;
dc:description "EML (Election Markup Language)"@en ;
owl:sameAs <http://dbpedia.org/resource/EML> .
ms:EMMA
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "EMMA"@en ;
dc:description "EMMA (Extensible MultiModal Annotation) is an XML language for describing the interpretation of user input and supporting Multimodal interaction scenarios on the Web."@en .
ms:EUC-JP
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "EUC-JP"@en ;
dc:description "EUC-JP is a character encoding"@en .
ms:EUC-KR
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "EUC-KR"@en ;
dc:description "EUC-KR is a character encoding"@en .
ms:EncodingLevel
rdf:type owl:Class ;
rdfs:label "Encoding Level"@en ;
rdfs:subClassOf owl:Thing ;
dc:description "Information on the contents of the Lexical Conceptual Resource as regards the linguistic level of analysis."@en .
ms:Framenet
rdf:type owl:Class ;
rdfs:label "Framenet"@en ;
rdfs:subClassOf ms:LexicalConceptualResource ;
dc:description "FrameNet is an electronic resource based on a theory of meaning called frame semantics. A semantic frame can be thought of as a conceptual structure describing an event, relation, or object and the participants in it [Wikipedia].The FrameNet lexical database contains around 1,200 semantic frames, 13,000 lexical units (a pairing of a word with a meaning; polysemous words are represented by several lexical units) and over 190,000 example sentences [Wikipedia]"@en ;
owl:sameAs <http://dbpedia.org/resource/FrameNet> .
ms:GB18030
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "GB18030"@en ;
dc:description "GB18030 is a character encoding"@en .
ms:GBK
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "GBK"@en ;
dc:description "GBK is a character encoding"@en .
ms:GFDL
rdf:type owl:NamedIndividual , ms:License ;
rdfs:label "GFDL"@en ;
dc:description "GFDL is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:GMX
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "GMX"@en ;
dc:description "GMX (Global information management Metrics eXchange) is a collection of standards for the translation industry."@en ;
owl:sameAs <http://dbpedia.org/resource/Global_information_management_Metrics_eXchange> .
ms:GPL
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "GPL"@en ;
dc:description "GPL is a kind of license meant to govern the use or redistribution of a resource"@en ;
owl:sameAs <http://dbpedia.org/resource/GNU_General_Public_License> .
ms:GrAF
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "GrAF"@en ;
dc:description "GrAF (Graph Annotation Framework) is a data model based on graph theory that can be used to represent linguistic annotations."@en .
ms:HamNoSys
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "HamNoSys"@en ;
dc:description "HamNoSys ( Hamburg Sign Language Notation System) is a phonetic transcription system for sign languages"@en ;
owl:sameAs <http://dbpedia.org/resource/Hamburg_Notation_System> .
ms:ISCII91
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "ISCII91"@en ;
dc:description "ISCII91 is a character encoding"@en .
ms:ISO-2022-JP
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "ISO-2022-JP"@en ;
dc:description "ISO-2022-JP is a character encoding"@en .
ms:ISO-2022-KR
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "ISO-2022-KR"@en ;
dc:description "ISO-2022-KR is a character encoding"@en .
ms:ISO-8859-1
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "ISO-8859-1"@en ;
dc:description "ISO-8859-1 is a character encoding"@en ;
owl:sameAs <http://dbpedia.org/resource/ISO%2FIEC_8859-1> .
ms:ISO-8859-13
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "ISO-8859-13"@en ;
dc:description "ISO-8859-13 is a character encoding"@en .
ms:ISO-8859-15
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "ISO-8859-15"@en ;
dc:description "ISO-8859-15 is a character encoding"@en .
ms:ISO-8859-2
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "ISO-8859-2"@en ;
dc:description "ISO-8859-2 is a character encoding"@en .
ms:ISO-8859-3
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "ISO-8859-3"@en ;
dc:description "ISO-8859-3 is a character encoding"@en .
ms:ISO-8859-4
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "ISO-8859-4"@en ;
dc:description "ISO-8859-4 is a character encoding"@en .
ms:ISO-8859-5
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "ISO-8859-5"@en ;
dc:description "ISO-8859-5 is a character encoding"@en .
ms:ISO-8859-6
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "ISO-8859-6"@en ;
dc:description "ISO-8859-6 is a character encoding"@en .
ms:ISO-8859-7
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "ISO-8859-7"@en ;
dc:description "ISO-8859-7 is a character encoding"@en .
ms:ISO-8859-8
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "ISO-8859-8"@en ;
dc:description "ISO-8859-8 is a character encoding"@en .
ms:ISO-8859-9
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "ISO-8859-9"@en ;
dc:description "ISO-8859-9 is a character encoding"@en .
ms:ISO12620
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "ISO12620"@en ;
rdfs:seeAlso <http://dbpedia.org/resource/ISO/TC_37> ;
dc:description "ISO12620 (Data Categories) is a standard used in Natural Language Processing from ISO/TC 37 which defines a Data Category Registry of linguistic terms"@en ;
owl:sameAs <http://dbpedia.org/resource/ISO_12620> .
ms:ISO16642
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "ISO16642"@en ;
rdfs:seeAlso <http://dbpedia.org/resource/ISO/TC_37> ;
dc:description "ISO16642 is a standard used in terminology. Terminological markup framework."@en .
ms:ISO1987
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "ISO1987"@en ;
dc:description "ISO1987 is a standard"@en .
ms:ISO2022_CN_CNS
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "ISO2022_CN_CNS"@en ;
dc:description "ISO2022_CN_CNS is a character encoding"@en .
ms:ISO2022_CN_GB
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "ISO2022_CN_GB"@en ;
dc:description "ISO2022_CN_GB is a character encoding"@en .
ms:ISO26162
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "ISO26162"@en ;
rdfs:seeAlso <http://dbpedia.org/resource/ISO/TC_37> ;
dc:description "ISO26162 is a standard used in terminology management systems"@en .
ms:ISO30042
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "ISO30042"@en ;
rdfs:seeAlso <http://dbpedia.org/resource/ISO/TC_37> ;
dc:description "ISO30042 is a standard used in terminology"@en .
ms:ISO704
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "ISO704"@en ;
rdfs:seeAlso <http://dbpedia.org/resource/ISO/TC_37> ;
dc:description "ISO704 is a standard used in terminology"@en .
ms:InkML
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "InkML"@en ;
dc:description "InkML (ink Markup Language)"@en ;
owl:sameAs <http://dbpedia.org/resource/InkML> .
ms:JISAutoDetect
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "JISAutoDetect"@en ;
dc:description "JISAutoDetect is a character encoding"@en .
ms:KOI8-R
rdf:type owl:NamedIndividual , ms:CharacterEncoding ;
rdfs:label "KOI8-R"@en ;
dc:description "KOI8-R is a character encoding"@en .
ms:LGPL
rdf:type owl:NamedIndividual , ms:License ;
rdfs:label "LGPL"@en ;
dc:description "LGPL is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:LMF
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "LMF"@en ;
rdfs:seeAlso <http://dbpedia.org/resource/ISO/TC_37> ;
ms:documentation test:doc_35 ;
dc:description "LMF (Lexical Markup Framework) is a standard used in lexicography aiming to provide a common model for the creation and use of lexical resources."@en ;
owl:sameAs <http://dbpedia.org/resource/Lexical_Markup_Framework> .
ms:LanguageCode
rdf:type owl:Class ;
rdfs:label "Language Code"@en ;
rdfs:subClassOf owl:Thing .
ms:LexicalConceptualResource
rdf:type owl:Class ;
rdfs:label "LexicalConceptualResource"@en ;
rdfs:subClassOf ms:Resource ;
dc:description "Lexical and conceptual resources include representations of lexical or conceptual knowledge (e.g. computational lexica, ontologies, machine-readable dictionaries, terminological resources, thesauri, multimodal/multimedia lexica and dictionaries, etc.) for using them by natural language processing applications"@en .
ms:Lexicon
rdf:type owl:Class ;
rdfs:label "Lexicon"@en ;
rdfs:subClassOf ms:LexicalConceptualResource ;
ms:dcr "http://www.isocat.org/datcat/DC-3296" ;
dc:description "Formally, in linguistics, a lexicon is a language's inventory of lexemes [Wikipedia]"@en ;
owl:sameAs <http://dbpedia.org/resource/Lexicon> .
ms:License
rdf:type owl:Class ;
rdfs:comment "Unstable. To be replaced by future specifications."@en ;
rdfs:label "License"@en ;
ms:dcr "http://www.isocat.org/datcat/DC-2457"@en ;
dc:description "The licence of use for the resource; for an overview of licences, please visit: http://www.meta-net.eu/meta-share/licenses."@en ;
owl:sameAs <http://dbpedia.org/resource/License> .
ms:Linguality
rdf:type owl:Class ;
rdfs:label "Linguality"@en ;
ms:dcr "http://www.isocat.org/datcat/DC-2491"@en ;
dc:description "Indicates whether the resource includes one, two or more languages"@en .
ms:LinguisticInformation
rdf:type owl:Class ;
rdfs:label "Linguistic Information"@en ;
dc:description "A more detailed account of the linguistic information contained in the Lexical Conceptual Resource."@en .
ms:MAF
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "MAF"@en ;
dc:description "MAF (Morpho-syntactic Annotation Framework) is a standard used in Natural Language Processing used in syntactic annotation."@en .
ms:MLIF
rdf:type owl:NamedIndividual , ms:StandardsBestPractices ;
rdfs:label "MLIF"@en ;
dc:description "MLIF (Multilingual Information Framework) is a model used in Natural Language Processing to describe multilingual data."@en .
ms:MS-C-NoReD
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "MS-C-NoReD"@en ;
dc:description "MS-C-NoReD is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:MS-C-NoReD-FF
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "MS-C-NoReD-FF"@en ;
dc:description "MS-C-NoReD-FF is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:MS-C-NoReD-ND
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "MS-C-NoReD-ND"@en ;
dc:description "MS-C-NoReD-ND is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:MS-C-NoReD-ND-FF
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "MS-C-NoReD-ND-FF"@en ;
dc:description "MS-C-NoReD-ND-FF is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:MS-NC-NoReD
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "MS-NC-NoReD"@en ;
dc:description "MS-NC-NoReD is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:MS-NC-NoReD-FF
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "MS-NC-NoReD-FF"@en ;
dc:description "MS-NC-NoReD-FF is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:MS-NC-NoReD-ND
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "MS-NC-NoReD-ND"@en ;
dc:description "MS-NC-NoReD-ND is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:MS-NC-NoReD-ND-FF
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "MS-NC-NoReD-ND-FF"@en ;
dc:description "MS-NC-NoReD-ND-FF is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:MS874
rdf:type ms:CharacterEncoding , owl:NamedIndividual ;
rdfs:label "MS874"@en ;
dc:description "MS874 is a character encoding"@en .
ms:MSCommons-BY
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "MSCommons-BY"@en ;
dc:description "MSCommons-BY is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:MSCommons-BY-NC
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "MSCommons-BY-NC"@en ;
dc:description "MSCommons-BY-NC is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:MSCommons-BY-NC-ND
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "MSCommons-BY-NC-ND"@en ;
dc:description "MSCommons-BY-NC-ND is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:MSCommons-BY-NC-SA
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "MSCommons-BY-NC-SA"@en ;
dc:description "MSCommons-BY-NC-SA is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:MSCommons-BY-ND
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "MSCommons-BY-ND"@en ;
dc:description "MSCommons-BY-ND is a kind of license meant to govern the use or redistribution of a resource"@en .
ms:MSCommons-BY-SA
rdf:type ms:License , owl:NamedIndividual ;
rdfs:label "MSCommons-BY-SA"@en ;