qa 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +284 -2
- data/app/controllers/qa/linked_data_terms_controller.rb +127 -0
- data/config/authorities/linked_data/agrovoc.json +61 -0
- data/config/authorities/linked_data/loc.json +46 -0
- data/config/authorities/linked_data/oclc_fast.json +78 -0
- data/config/initializers/linked_data_authorities.rb +17 -0
- data/config/routes.rb +3 -0
- data/lib/qa.rb +15 -0
- data/lib/qa/authorities.rb +2 -0
- data/lib/qa/authorities/base.rb +1 -1
- data/lib/qa/authorities/crossref.rb +16 -0
- data/lib/qa/authorities/crossref/generic_authority.rb +63 -0
- data/lib/qa/authorities/geonames.rb +2 -1
- data/lib/qa/authorities/linked_data.rb +10 -0
- data/lib/qa/authorities/linked_data/config.rb +80 -0
- data/lib/qa/authorities/linked_data/config/search_config.rb +170 -0
- data/lib/qa/authorities/linked_data/config/term_config.rb +186 -0
- data/lib/qa/authorities/linked_data/find_term.rb +148 -0
- data/lib/qa/authorities/linked_data/generic_authority.rb +49 -0
- data/lib/qa/authorities/linked_data/rdf_helper.rb +102 -0
- data/lib/qa/authorities/linked_data/search_query.rb +143 -0
- data/lib/qa/version.rb +1 -1
- data/spec/controllers/linked_data_terms_controller_spec.rb +202 -0
- data/spec/fixtures/authorities/linked_data/lod_full_config.json +111 -0
- data/spec/fixtures/authorities/linked_data/lod_lang_defaults.json +54 -0
- data/spec/fixtures/authorities/linked_data/lod_lang_multi_defaults.json +54 -0
- data/spec/fixtures/authorities/linked_data/lod_lang_no_defaults.json +52 -0
- data/spec/fixtures/authorities/linked_data/lod_lang_param.json +66 -0
- data/spec/fixtures/authorities/linked_data/lod_min_config.json +49 -0
- data/spec/fixtures/authorities/linked_data/lod_search_only_config.json +55 -0
- data/spec/fixtures/authorities/linked_data/lod_sort.json +27 -0
- data/spec/fixtures/authorities/linked_data/lod_term_only_config.json +59 -0
- data/spec/fixtures/funders-find-response.json +1 -0
- data/spec/fixtures/funders-noquery.json +1 -0
- data/spec/fixtures/funders-noresults.json +1 -0
- data/spec/fixtures/funders-result.json +1 -0
- data/spec/fixtures/journals-find-response-two-issn.json +1 -0
- data/spec/fixtures/journals-find-response.json +1 -0
- data/spec/fixtures/journals-noquery.json +1 -0
- data/spec/fixtures/journals-noresults.json +1 -0
- data/spec/fixtures/journals-result.json +705 -0
- data/spec/fixtures/lod_agrovoc_query_many_results.json +1 -0
- data/spec/fixtures/lod_agrovoc_query_no_results.json +1 -0
- data/spec/fixtures/lod_agrovoc_term_found.rdf.xml +217 -0
- data/spec/fixtures/lod_lang_search_en.rdf.xml +42 -0
- data/spec/fixtures/lod_lang_search_enfr.rdf.xml +48 -0
- data/spec/fixtures/lod_lang_search_enfrde.rdf.xml +54 -0
- data/spec/fixtures/lod_lang_search_fr.rdf.xml +42 -0
- data/spec/fixtures/lod_lang_term_en.rdf.xml +65 -0
- data/spec/fixtures/lod_lang_term_enfr.rdf.xml +71 -0
- data/spec/fixtures/lod_lang_term_enfr_noalt.rdf.xml +69 -0
- data/spec/fixtures/lod_lang_term_enfrde.rdf.xml +79 -0
- data/spec/fixtures/lod_lang_term_fr.rdf.xml +65 -0
- data/spec/fixtures/lod_loc_term_found.rdf.xml +262 -0
- data/spec/fixtures/lod_oclc_all_query_3_results.rdf.xml +142 -0
- data/spec/fixtures/lod_oclc_personalName_query_3_results.rdf.xml +128 -0
- data/spec/fixtures/lod_oclc_query_no_results.rdf.xml +13 -0
- data/spec/fixtures/lod_oclc_term_found.rdf.xml +51 -0
- data/spec/lib/authorities/crossref_spec.rb +180 -0
- data/spec/lib/authorities/geonames_spec.rb +2 -2
- data/spec/lib/authorities/linked_data/config_spec.rb +143 -0
- data/spec/lib/authorities/linked_data/find_term_spec.rb +5 -0
- data/spec/lib/authorities/linked_data/generic_authority_spec.rb +580 -0
- data/spec/lib/authorities/linked_data/search_config_spec.rb +385 -0
- data/spec/lib/authorities/linked_data/search_query_spec.rb +79 -0
- data/spec/lib/authorities/linked_data/term_config_spec.rb +419 -0
- data/spec/routing/linked_data_route_spec.rb +35 -0
- data/spec/spec_helper.rb +2 -0
- metadata +184 -39
@@ -0,0 +1,71 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
2
|
+
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
3
|
+
xmlns:skosxl="http://www.w3.org/2008/05/skos-xl#"
|
4
|
+
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
5
|
+
xmlns:dc="http://purl.org/dc/terms/"
|
6
|
+
xmlns:void="http://rdfs.org/ns/void#"
|
7
|
+
xmlns:ns0="http://art.uniroma2.it/ontologies/vocbench#">
|
8
|
+
|
9
|
+
<skosxl:Label rdf:about="http://aims.fao.org/aos/agrovoc/xl_ar_1299487481966">
|
10
|
+
<skos:notation rdf:datatype="http://aims.fao.org/aos/agrovoc/AgrovocCode">9513</skos:notation>
|
11
|
+
</skosxl:Label>
|
12
|
+
|
13
|
+
<skos:Concept rdf:about="http://aims.fao.org/aos/agrovoc/c_9513">
|
14
|
+
<skosxl:prefLabel>
|
15
|
+
<skosxl:Label rdf:about="http://aims.fao.org/aos/agrovoc/xl_en_1299487482019">
|
16
|
+
<skos:notation rdf:datatype="http://aims.fao.org/aos/agrovoc/AgrovocCode">9513</skos:notation>
|
17
|
+
</skosxl:Label>
|
18
|
+
<skosxl:Label rdf:about="http://aims.fao.org/aos/agrovoc/xl_fr_1299487482080">
|
19
|
+
<skos:notation rdf:datatype="http://aims.fao.org/aos/agrovoc/AgrovocCode">9513</skos:notation>
|
20
|
+
</skosxl:Label>
|
21
|
+
</skosxl:prefLabel>
|
22
|
+
|
23
|
+
<dc:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2014-07-03T18:51:03Z</dc:modified>
|
24
|
+
<skos:inScheme>
|
25
|
+
<skos:ConceptScheme rdf:about="http://aims.fao.org/aos/agrovoc">
|
26
|
+
</skos:ConceptScheme>
|
27
|
+
</skos:inScheme>
|
28
|
+
|
29
|
+
<skos:prefLabel xml:lang="en">buttermilk</skos:prefLabel>
|
30
|
+
<skos:prefLabel xml:lang="fr">Babeurre</skos:prefLabel>
|
31
|
+
<skos:broader>
|
32
|
+
<skos:Concept rdf:about="http://aims.fao.org/aos/agrovoc/c_4830">
|
33
|
+
<skos:prefLabel xml:lang="en">milk products</skos:prefLabel>
|
34
|
+
<skos:prefLabel xml:lang="fr">Produit laitier</skos:prefLabel>
|
35
|
+
<skos:narrower rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
36
|
+
</skos:Concept>
|
37
|
+
</skos:broader>
|
38
|
+
|
39
|
+
<skos:altLabel xml:lang="en">yummy</skos:altLabel>
|
40
|
+
<skos:altLabel xml:lang="fr">délicieux</skos:altLabel>
|
41
|
+
<void:inDataset rdf:resource="http://aims.fao.org/aos/agrovoc/void.ttl#Agrovoc"/>
|
42
|
+
<ns0:hasStatus rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Published</ns0:hasStatus>
|
43
|
+
<skos:closeMatch>
|
44
|
+
<rdf:Description rdf:about="http://dbpedia.org/resource/Buttermilk">
|
45
|
+
<skos:closeMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
46
|
+
</rdf:Description>
|
47
|
+
</skos:closeMatch>
|
48
|
+
|
49
|
+
<skos:exactMatch>
|
50
|
+
<rdf:Description rdf:about="http://cat.aii.caas.cn/concept/c_26308">
|
51
|
+
<skos:exactMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
52
|
+
</rdf:Description>
|
53
|
+
</skos:exactMatch>
|
54
|
+
|
55
|
+
<skos:exactMatch>
|
56
|
+
<rdf:Description rdf:about="http://lod.nal.usda.gov/nalt/20627">
|
57
|
+
<skos:exactMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
58
|
+
</rdf:Description>
|
59
|
+
</skos:exactMatch>
|
60
|
+
|
61
|
+
<skos:exactMatch>
|
62
|
+
<rdf:Description rdf:about="http://d-nb.info/gnd/4147072-2">
|
63
|
+
<skos:exactMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
64
|
+
</rdf:Description>
|
65
|
+
</skos:exactMatch>
|
66
|
+
|
67
|
+
<dc:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2011-11-20T20:29:54Z</dc:created>
|
68
|
+
|
69
|
+
</skos:Concept>
|
70
|
+
|
71
|
+
</rdf:RDF>
|
@@ -0,0 +1,69 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
2
|
+
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
3
|
+
xmlns:skosxl="http://www.w3.org/2008/05/skos-xl#"
|
4
|
+
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
5
|
+
xmlns:dc="http://purl.org/dc/terms/"
|
6
|
+
xmlns:void="http://rdfs.org/ns/void#"
|
7
|
+
xmlns:ns0="http://art.uniroma2.it/ontologies/vocbench#">
|
8
|
+
|
9
|
+
<skosxl:Label rdf:about="http://aims.fao.org/aos/agrovoc/xl_ar_1299487481966">
|
10
|
+
<skos:notation rdf:datatype="http://aims.fao.org/aos/agrovoc/AgrovocCode">9513</skos:notation>
|
11
|
+
</skosxl:Label>
|
12
|
+
|
13
|
+
<skos:Concept rdf:about="http://aims.fao.org/aos/agrovoc/c_9513">
|
14
|
+
<skosxl:prefLabel>
|
15
|
+
<skosxl:Label rdf:about="http://aims.fao.org/aos/agrovoc/xl_en_1299487482019">
|
16
|
+
<skos:notation rdf:datatype="http://aims.fao.org/aos/agrovoc/AgrovocCode">9513</skos:notation>
|
17
|
+
</skosxl:Label>
|
18
|
+
<skosxl:Label rdf:about="http://aims.fao.org/aos/agrovoc/xl_fr_1299487482080">
|
19
|
+
<skos:notation rdf:datatype="http://aims.fao.org/aos/agrovoc/AgrovocCode">9513</skos:notation>
|
20
|
+
</skosxl:Label>
|
21
|
+
</skosxl:prefLabel>
|
22
|
+
|
23
|
+
<dc:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2014-07-03T18:51:03Z</dc:modified>
|
24
|
+
<skos:inScheme>
|
25
|
+
<skos:ConceptScheme rdf:about="http://aims.fao.org/aos/agrovoc">
|
26
|
+
</skos:ConceptScheme>
|
27
|
+
</skos:inScheme>
|
28
|
+
|
29
|
+
<skos:prefLabel xml:lang="en">buttermilk</skos:prefLabel>
|
30
|
+
<skos:prefLabel xml:lang="fr">Babeurre</skos:prefLabel>
|
31
|
+
<skos:broader>
|
32
|
+
<skos:Concept rdf:about="http://aims.fao.org/aos/agrovoc/c_4830">
|
33
|
+
<skos:prefLabel xml:lang="en">milk products</skos:prefLabel>
|
34
|
+
<skos:prefLabel xml:lang="fr">Produit laitier</skos:prefLabel>
|
35
|
+
<skos:narrower rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
36
|
+
</skos:Concept>
|
37
|
+
</skos:broader>
|
38
|
+
|
39
|
+
<void:inDataset rdf:resource="http://aims.fao.org/aos/agrovoc/void.ttl#Agrovoc"/>
|
40
|
+
<ns0:hasStatus rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Published</ns0:hasStatus>
|
41
|
+
<skos:closeMatch>
|
42
|
+
<rdf:Description rdf:about="http://dbpedia.org/resource/Buttermilk">
|
43
|
+
<skos:closeMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
44
|
+
</rdf:Description>
|
45
|
+
</skos:closeMatch>
|
46
|
+
|
47
|
+
<skos:exactMatch>
|
48
|
+
<rdf:Description rdf:about="http://cat.aii.caas.cn/concept/c_26308">
|
49
|
+
<skos:exactMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
50
|
+
</rdf:Description>
|
51
|
+
</skos:exactMatch>
|
52
|
+
|
53
|
+
<skos:exactMatch>
|
54
|
+
<rdf:Description rdf:about="http://lod.nal.usda.gov/nalt/20627">
|
55
|
+
<skos:exactMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
56
|
+
</rdf:Description>
|
57
|
+
</skos:exactMatch>
|
58
|
+
|
59
|
+
<skos:exactMatch>
|
60
|
+
<rdf:Description rdf:about="http://d-nb.info/gnd/4147072-2">
|
61
|
+
<skos:exactMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
62
|
+
</rdf:Description>
|
63
|
+
</skos:exactMatch>
|
64
|
+
|
65
|
+
<dc:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2011-11-20T20:29:54Z</dc:created>
|
66
|
+
|
67
|
+
</skos:Concept>
|
68
|
+
|
69
|
+
</rdf:RDF>
|
@@ -0,0 +1,79 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
2
|
+
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
3
|
+
xmlns:skosxl="http://www.w3.org/2008/05/skos-xl#"
|
4
|
+
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
5
|
+
xmlns:dc="http://purl.org/dc/terms/"
|
6
|
+
xmlns:void="http://rdfs.org/ns/void#"
|
7
|
+
xmlns:ns0="http://art.uniroma2.it/ontologies/vocbench#">
|
8
|
+
|
9
|
+
<skosxl:Label rdf:about="http://aims.fao.org/aos/agrovoc/xl_ar_1299487481966">
|
10
|
+
<skos:notation rdf:datatype="http://aims.fao.org/aos/agrovoc/AgrovocCode">9513</skos:notation>
|
11
|
+
</skosxl:Label>
|
12
|
+
|
13
|
+
<skos:Concept rdf:about="http://aims.fao.org/aos/agrovoc/c_9513">
|
14
|
+
<skosxl:prefLabel>
|
15
|
+
<skosxl:Label rdf:about="http://aims.fao.org/aos/agrovoc/xl_en_1299487482019">
|
16
|
+
<skos:notation rdf:datatype="http://aims.fao.org/aos/agrovoc/AgrovocCode">9513</skos:notation>
|
17
|
+
</skosxl:Label>
|
18
|
+
<skosxl:Label rdf:about="http://aims.fao.org/aos/agrovoc/xl_fr_1299487482080">
|
19
|
+
<skos:notation rdf:datatype="http://aims.fao.org/aos/agrovoc/AgrovocCode">9513</skos:notation>
|
20
|
+
</skosxl:Label>
|
21
|
+
</skosxl:prefLabel>
|
22
|
+
<skosxl:prefLabel>
|
23
|
+
<skosxl:Label rdf:about="http://aims.fao.org/aos/agrovoc/xl_de_1299487482000">
|
24
|
+
<skos:notation rdf:datatype="http://aims.fao.org/aos/agrovoc/AgrovocCode">9513</skos:notation>
|
25
|
+
</skosxl:Label>
|
26
|
+
</skosxl:prefLabel>
|
27
|
+
|
28
|
+
<dc:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2014-07-03T18:51:03Z</dc:modified>
|
29
|
+
<skos:inScheme>
|
30
|
+
<skos:ConceptScheme rdf:about="http://aims.fao.org/aos/agrovoc">
|
31
|
+
</skos:ConceptScheme>
|
32
|
+
</skos:inScheme>
|
33
|
+
|
34
|
+
<skos:prefLabel xml:lang="en">buttermilk</skos:prefLabel>
|
35
|
+
<skos:prefLabel xml:lang="fr">Babeurre</skos:prefLabel>
|
36
|
+
<skos:prefLabel xml:lang="de">Buttermilch</skos:prefLabel>
|
37
|
+
<skos:broader>
|
38
|
+
<skos:Concept rdf:about="http://aims.fao.org/aos/agrovoc/c_4830">
|
39
|
+
<skos:prefLabel xml:lang="en">milk products</skos:prefLabel>
|
40
|
+
<skos:prefLabel xml:lang="fr">Produit laitier</skos:prefLabel>
|
41
|
+
<skos:prefLabel xml:lang="de">Milchprodukt</skos:prefLabel>
|
42
|
+
<skos:narrower rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
43
|
+
</skos:Concept>
|
44
|
+
</skos:broader>
|
45
|
+
|
46
|
+
<skos:altLabel xml:lang="en">yummy</skos:altLabel>
|
47
|
+
<skos:altLabel xml:lang="fr">délicieux</skos:altLabel>
|
48
|
+
<skos:altLabel xml:lang="de">lecker</skos:altLabel>
|
49
|
+
<void:inDataset rdf:resource="http://aims.fao.org/aos/agrovoc/void.ttl#Agrovoc"/>
|
50
|
+
<ns0:hasStatus rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Published</ns0:hasStatus>
|
51
|
+
<skos:closeMatch>
|
52
|
+
<rdf:Description rdf:about="http://dbpedia.org/resource/Buttermilk">
|
53
|
+
<skos:closeMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
54
|
+
</rdf:Description>
|
55
|
+
</skos:closeMatch>
|
56
|
+
|
57
|
+
<skos:exactMatch>
|
58
|
+
<rdf:Description rdf:about="http://cat.aii.caas.cn/concept/c_26308">
|
59
|
+
<skos:exactMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
60
|
+
</rdf:Description>
|
61
|
+
</skos:exactMatch>
|
62
|
+
|
63
|
+
<skos:exactMatch>
|
64
|
+
<rdf:Description rdf:about="http://lod.nal.usda.gov/nalt/20627">
|
65
|
+
<skos:exactMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
66
|
+
</rdf:Description>
|
67
|
+
</skos:exactMatch>
|
68
|
+
|
69
|
+
<skos:exactMatch>
|
70
|
+
<rdf:Description rdf:about="http://d-nb.info/gnd/4147072-2">
|
71
|
+
<skos:exactMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
72
|
+
</rdf:Description>
|
73
|
+
</skos:exactMatch>
|
74
|
+
|
75
|
+
<dc:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2011-11-20T20:29:54Z</dc:created>
|
76
|
+
|
77
|
+
</skos:Concept>
|
78
|
+
|
79
|
+
</rdf:RDF>
|
@@ -0,0 +1,65 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
2
|
+
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
3
|
+
xmlns:skosxl="http://www.w3.org/2008/05/skos-xl#"
|
4
|
+
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
5
|
+
xmlns:dc="http://purl.org/dc/terms/"
|
6
|
+
xmlns:void="http://rdfs.org/ns/void#"
|
7
|
+
xmlns:ns0="http://art.uniroma2.it/ontologies/vocbench#">
|
8
|
+
|
9
|
+
<skosxl:Label rdf:about="http://aims.fao.org/aos/agrovoc/xl_ar_1299487481966">
|
10
|
+
<skos:notation rdf:datatype="http://aims.fao.org/aos/agrovoc/AgrovocCode">9513</skos:notation>
|
11
|
+
</skosxl:Label>
|
12
|
+
|
13
|
+
<skos:Concept rdf:about="http://aims.fao.org/aos/agrovoc/c_9513">
|
14
|
+
<skosxl:prefLabel>
|
15
|
+
<skosxl:Label rdf:about="http://aims.fao.org/aos/agrovoc/xl_fr_1299487482080">
|
16
|
+
<skos:notation rdf:datatype="http://aims.fao.org/aos/agrovoc/AgrovocCode">9513</skos:notation>
|
17
|
+
</skosxl:Label>
|
18
|
+
</skosxl:prefLabel>
|
19
|
+
|
20
|
+
<dc:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2014-07-03T18:51:03Z</dc:modified>
|
21
|
+
<skos:inScheme>
|
22
|
+
<skos:ConceptScheme rdf:about="http://aims.fao.org/aos/agrovoc">
|
23
|
+
</skos:ConceptScheme>
|
24
|
+
</skos:inScheme>
|
25
|
+
|
26
|
+
<skos:prefLabel xml:lang="fr">Babeurre</skos:prefLabel>
|
27
|
+
<skos:broader>
|
28
|
+
<skos:Concept rdf:about="http://aims.fao.org/aos/agrovoc/c_4830">
|
29
|
+
<skos:prefLabel xml:lang="fr">Produit laitier</skos:prefLabel>
|
30
|
+
<skos:narrower rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
31
|
+
</skos:Concept>
|
32
|
+
</skos:broader>
|
33
|
+
|
34
|
+
<skos:altLabel xml:lang="fr">délicieux</skos:altLabel>
|
35
|
+
<void:inDataset rdf:resource="http://aims.fao.org/aos/agrovoc/void.ttl#Agrovoc"/>
|
36
|
+
<ns0:hasStatus rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Published</ns0:hasStatus>
|
37
|
+
<skos:closeMatch>
|
38
|
+
<rdf:Description rdf:about="http://dbpedia.org/resource/Buttermilk">
|
39
|
+
<skos:closeMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
40
|
+
</rdf:Description>
|
41
|
+
</skos:closeMatch>
|
42
|
+
|
43
|
+
<skos:exactMatch>
|
44
|
+
<rdf:Description rdf:about="http://cat.aii.caas.cn/concept/c_26308">
|
45
|
+
<skos:exactMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
46
|
+
</rdf:Description>
|
47
|
+
</skos:exactMatch>
|
48
|
+
|
49
|
+
<skos:exactMatch>
|
50
|
+
<rdf:Description rdf:about="http://lod.nal.usda.gov/nalt/20627">
|
51
|
+
<skos:exactMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
52
|
+
</rdf:Description>
|
53
|
+
</skos:exactMatch>
|
54
|
+
|
55
|
+
<skos:exactMatch>
|
56
|
+
<rdf:Description rdf:about="http://d-nb.info/gnd/4147072-2">
|
57
|
+
<skos:exactMatch rdf:resource="http://aims.fao.org/aos/agrovoc/c_9513"/>
|
58
|
+
</rdf:Description>
|
59
|
+
</skos:exactMatch>
|
60
|
+
|
61
|
+
<dc:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2011-11-20T20:29:54Z</dc:created>
|
62
|
+
|
63
|
+
</skos:Concept>
|
64
|
+
|
65
|
+
</rdf:RDF>
|
@@ -0,0 +1,262 @@
|
|
1
|
+
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
2
|
+
<madsrdf:Topic rdf:about="http://id.loc.gov/authorities/subjects/sh85118553" xmlns:madsrdf="http://www.loc.gov/mads/rdf/v1#">
|
3
|
+
<rdf:type rdf:resource="http://www.loc.gov/mads/rdf/v1#Authority"/>
|
4
|
+
<madsrdf:authoritativeLabel xml:lang="en">Science</madsrdf:authoritativeLabel>
|
5
|
+
<madsrdf:elementList rdf:parseType="Collection">
|
6
|
+
<madsrdf:TopicElement>
|
7
|
+
<madsrdf:elementValue xml:lang="en">Science</madsrdf:elementValue>
|
8
|
+
</madsrdf:TopicElement>
|
9
|
+
</madsrdf:elementList>
|
10
|
+
<madsrdf:classification>Q</madsrdf:classification>
|
11
|
+
<madsrdf:isMemberOfMADSCollection rdf:resource="http://id.loc.gov/authorities/subjects/collection_LCSHAuthorizedHeadings"/>
|
12
|
+
<madsrdf:isMemberOfMADSCollection rdf:resource="http://id.loc.gov/authorities/subjects/collection_LCSH_General"/>
|
13
|
+
<madsrdf:isMemberOfMADSCollection rdf:resource="http://id.loc.gov/authorities/subjects/collection_SubdivideGeographically"/>
|
14
|
+
<madsrdf:hasCloseExternalAuthority>
|
15
|
+
<madsrdf:Authority rdf:about="http://data.bnf.fr/ark:/12148/cb12321484k">
|
16
|
+
<madsrdf:authoritativeLabel xml:lang="FR">Sciences grecques</madsrdf:authoritativeLabel>
|
17
|
+
</madsrdf:Authority>
|
18
|
+
</madsrdf:hasCloseExternalAuthority>
|
19
|
+
<madsrdf:hasCloseExternalAuthority>
|
20
|
+
<madsrdf:Authority rdf:about="http://data.bnf.fr/ark:/12148/cb119673416">
|
21
|
+
<madsrdf:authoritativeLabel xml:lang="FR">Radio -- \xC3\x89missions scientifiques</madsrdf:authoritativeLabel>
|
22
|
+
</madsrdf:Authority>
|
23
|
+
</madsrdf:hasCloseExternalAuthority>
|
24
|
+
<madsrdf:hasCloseExternalAuthority>
|
25
|
+
<madsrdf:Authority rdf:about="http://data.bnf.fr/ark:/12148/cb119934236">
|
26
|
+
<madsrdf:authoritativeLabel xml:lang="FR">Sciences -- Pratique</madsrdf:authoritativeLabel>
|
27
|
+
</madsrdf:Authority>
|
28
|
+
</madsrdf:hasCloseExternalAuthority>
|
29
|
+
<madsrdf:hasCloseExternalAuthority>
|
30
|
+
<madsrdf:Authority rdf:about="http://data.bnf.fr/ark:/12148/cb12062047t">
|
31
|
+
<madsrdf:authoritativeLabel xml:lang="FR">Fraude scientifique</madsrdf:authoritativeLabel>
|
32
|
+
</madsrdf:Authority>
|
33
|
+
</madsrdf:hasCloseExternalAuthority>
|
34
|
+
<madsrdf:hasCloseExternalAuthority>
|
35
|
+
<madsrdf:Authority rdf:about="http://data.bnf.fr/ark:/12148/cb119469567">
|
36
|
+
<madsrdf:authoritativeLabel xml:lang="FR">Sciences -- Fondements</madsrdf:authoritativeLabel>
|
37
|
+
</madsrdf:Authority>
|
38
|
+
</madsrdf:hasCloseExternalAuthority>
|
39
|
+
<madsrdf:hasCloseExternalAuthority>
|
40
|
+
<madsrdf:Authority rdf:about="http://data.bnf.fr/ark:/12148/cb11933232c">
|
41
|
+
<madsrdf:authoritativeLabel xml:lang="FR">Sciences</madsrdf:authoritativeLabel>
|
42
|
+
</madsrdf:Authority>
|
43
|
+
</madsrdf:hasCloseExternalAuthority>
|
44
|
+
<madsrdf:hasCloseExternalAuthority>
|
45
|
+
<madsrdf:Authority rdf:about="http://data.bnf.fr/ark:/12148/cb122890536">
|
46
|
+
<madsrdf:authoritativeLabel xml:lang="FR">Sciences -- Aspect politique</madsrdf:authoritativeLabel>
|
47
|
+
</madsrdf:Authority>
|
48
|
+
</madsrdf:hasCloseExternalAuthority>
|
49
|
+
<madsrdf:hasCloseExternalAuthority>
|
50
|
+
<madsrdf:Authority rdf:about="http://data.bnf.fr/ark:/12148/cb121155321">
|
51
|
+
<madsrdf:authoritativeLabel xml:lang="FR">Science</madsrdf:authoritativeLabel>
|
52
|
+
</madsrdf:Authority>
|
53
|
+
</madsrdf:hasCloseExternalAuthority>
|
54
|
+
<madsrdf:hasCloseExternalAuthority>
|
55
|
+
<madsrdf:Authority rdf:about="http://data.bnf.fr/ark:/12148/cb15556043g">
|
56
|
+
<madsrdf:authoritativeLabel xml:lang="FR">Scientifiques amateurs</madsrdf:authoritativeLabel>
|
57
|
+
</madsrdf:Authority>
|
58
|
+
</madsrdf:hasCloseExternalAuthority>
|
59
|
+
<madsrdf:hasCloseExternalAuthority>
|
60
|
+
<madsrdf:Authority rdf:about="http://data.bnf.fr/ark:/12148/cb123662513">
|
61
|
+
<madsrdf:authoritativeLabel xml:lang="FR">Progr\xC3\xA8s scientifique et technique</madsrdf:authoritativeLabel>
|
62
|
+
</madsrdf:Authority>
|
63
|
+
</madsrdf:hasCloseExternalAuthority>
|
64
|
+
<madsrdf:hasCloseExternalAuthority>
|
65
|
+
<madsrdf:Authority rdf:about="http://d-nb.info/gnd/4066562-8">
|
66
|
+
<madsrdf:authoritativeLabel xml:lang="DE">Wissenschaft</madsrdf:authoritativeLabel>
|
67
|
+
</madsrdf:Authority>
|
68
|
+
</madsrdf:hasCloseExternalAuthority>
|
69
|
+
<madsrdf:hasCloseExternalAuthority>
|
70
|
+
<madsrdf:Authority rdf:about="http://data.bnf.fr/ark:/12148/cb120745812">
|
71
|
+
<madsrdf:authoritativeLabel xml:lang="FR">Sciences -- Analyse marxiste</madsrdf:authoritativeLabel>
|
72
|
+
</madsrdf:Authority>
|
73
|
+
</madsrdf:hasCloseExternalAuthority>
|
74
|
+
<madsrdf:hasCloseExternalAuthority>
|
75
|
+
<madsrdf:Authority rdf:about="http://data.bnf.fr/ark:/12148/cb11973101n">
|
76
|
+
<madsrdf:authoritativeLabel xml:lang="FR">Sciences -- Bases de donn\xC3\xA9es</madsrdf:authoritativeLabel>
|
77
|
+
</madsrdf:Authority>
|
78
|
+
</madsrdf:hasCloseExternalAuthority>
|
79
|
+
<madsrdf:hasCloseExternalAuthority>
|
80
|
+
<madsrdf:Authority rdf:about="http://data.bnf.fr/ark:/12148/cb13328497r">
|
81
|
+
<madsrdf:authoritativeLabel xml:lang="FR">Sciences -- Ressources Internet</madsrdf:authoritativeLabel>
|
82
|
+
</madsrdf:Authority>
|
83
|
+
</madsrdf:hasCloseExternalAuthority>
|
84
|
+
<madsrdf:isMemberOfMADSScheme rdf:resource="http://id.loc.gov/authorities/subjects"/>
|
85
|
+
<madsrdf:hasVariant>
|
86
|
+
<madsrdf:Topic>
|
87
|
+
<rdf:type rdf:resource="http://www.loc.gov/mads/rdf/v1#Variant"/>
|
88
|
+
<madsrdf:variantLabel xml:lang="en">Natural science</madsrdf:variantLabel>
|
89
|
+
<madsrdf:elementList rdf:parseType="Collection">
|
90
|
+
<madsrdf:TopicElement>
|
91
|
+
<madsrdf:elementValue xml:lang="en">Natural science</madsrdf:elementValue>
|
92
|
+
</madsrdf:TopicElement>
|
93
|
+
</madsrdf:elementList>
|
94
|
+
</madsrdf:Topic>
|
95
|
+
</madsrdf:hasVariant>
|
96
|
+
<madsrdf:hasVariant>
|
97
|
+
<madsrdf:Topic>
|
98
|
+
<rdf:type rdf:resource="http://www.loc.gov/mads/rdf/v1#Variant"/>
|
99
|
+
<madsrdf:variantLabel xml:lang="en">Science of science</madsrdf:variantLabel>
|
100
|
+
<madsrdf:elementList rdf:parseType="Collection">
|
101
|
+
<madsrdf:TopicElement>
|
102
|
+
<madsrdf:elementValue xml:lang="en">Science of science</madsrdf:elementValue>
|
103
|
+
</madsrdf:TopicElement>
|
104
|
+
</madsrdf:elementList>
|
105
|
+
</madsrdf:Topic>
|
106
|
+
</madsrdf:hasVariant>
|
107
|
+
<madsrdf:hasVariant>
|
108
|
+
<madsrdf:Topic>
|
109
|
+
<rdf:type rdf:resource="http://www.loc.gov/mads/rdf/v1#Variant"/>
|
110
|
+
<madsrdf:variantLabel xml:lang="en">Sciences</madsrdf:variantLabel>
|
111
|
+
<madsrdf:elementList rdf:parseType="Collection">
|
112
|
+
<madsrdf:TopicElement>
|
113
|
+
<madsrdf:elementValue xml:lang="en">Sciences</madsrdf:elementValue>
|
114
|
+
</madsrdf:TopicElement>
|
115
|
+
</madsrdf:elementList>
|
116
|
+
</madsrdf:Topic>
|
117
|
+
</madsrdf:hasVariant>
|
118
|
+
<madsrdf:editorialNote>headings beginning with the word [Scientific;] and subdivision [Science] under ethnic groups and individual wars, e.g. [World War, 1939-1945--Science]</madsrdf:editorialNote>
|
119
|
+
<identifiers:lccn xmlns:identifiers="http://id.loc.gov/vocabulary/identifiers/">sh 85118553</identifiers:lccn>
|
120
|
+
<owl:sameAs rdf:resource="info:lc/authorities/sh85118553" xmlns:owl="http://www.w3.org/2002/07/owl#"/>
|
121
|
+
<owl:sameAs rdf:resource="http://id.loc.gov/authorities/sh85118553#concept" xmlns:owl="http://www.w3.org/2002/07/owl#"/>
|
122
|
+
<madsrdf:adminMetadata>
|
123
|
+
<ri:RecordInfo xmlns:ri="http://id.loc.gov/ontologies/RecordInfo#">
|
124
|
+
<ri:recordChangeDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2000-06-20T00:00:00</ri:recordChangeDate>
|
125
|
+
<ri:recordStatus rdf:datatype="http://www.w3.org/2001/XMLSchema#string">new</ri:recordStatus>
|
126
|
+
<ri:recordContentSource rdf:resource="http://id.loc.gov/vocabulary/organizations/dlc"/>
|
127
|
+
</ri:RecordInfo>
|
128
|
+
</madsrdf:adminMetadata>
|
129
|
+
<madsrdf:adminMetadata>
|
130
|
+
<ri:RecordInfo xmlns:ri="http://id.loc.gov/ontologies/RecordInfo#">
|
131
|
+
<ri:recordChangeDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2000-07-31T10:18:10</ri:recordChangeDate>
|
132
|
+
<ri:recordStatus rdf:datatype="http://www.w3.org/2001/XMLSchema#string">revised</ri:recordStatus>
|
133
|
+
<ri:recordContentSource rdf:resource="http://id.loc.gov/vocabulary/organizations/dlc"/>
|
134
|
+
</ri:RecordInfo>
|
135
|
+
</madsrdf:adminMetadata>
|
136
|
+
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
137
|
+
<skos:prefLabel xml:lang="en" xmlns:skos="http://www.w3.org/2004/02/skos/core#">Science</skos:prefLabel>
|
138
|
+
<skosxl:altLabel xmlns:skosxl="http://www.w3.org/2008/05/skos-xl#">
|
139
|
+
<rdf:Description>
|
140
|
+
<rdf:type rdf:resource="http://www.w3.org/2008/05/skos-xl#Label"/>
|
141
|
+
<skosxl:literalForm xml:lang="en">Natural science</skosxl:literalForm>
|
142
|
+
</rdf:Description>
|
143
|
+
</skosxl:altLabel>
|
144
|
+
<skosxl:altLabel xmlns:skosxl="http://www.w3.org/2008/05/skos-xl#">
|
145
|
+
<rdf:Description>
|
146
|
+
<rdf:type rdf:resource="http://www.w3.org/2008/05/skos-xl#Label"/>
|
147
|
+
<skosxl:literalForm xml:lang="en">Science of science</skosxl:literalForm>
|
148
|
+
</rdf:Description>
|
149
|
+
</skosxl:altLabel>
|
150
|
+
<skosxl:altLabel xmlns:skosxl="http://www.w3.org/2008/05/skos-xl#">
|
151
|
+
<rdf:Description>
|
152
|
+
<rdf:type rdf:resource="http://www.w3.org/2008/05/skos-xl#Label"/>
|
153
|
+
<skosxl:literalForm xml:lang="en">Sciences</skosxl:literalForm>
|
154
|
+
</rdf:Description>
|
155
|
+
</skosxl:altLabel>
|
156
|
+
<skos:closeMatch xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
157
|
+
<rdf:Description rdf:about="http://data.bnf.fr/ark:/12148/cb12321484k">
|
158
|
+
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
159
|
+
<skos:prefLabel xml:lang="FR">Sciences grecques</skos:prefLabel>
|
160
|
+
</rdf:Description>
|
161
|
+
</skos:closeMatch>
|
162
|
+
<skos:closeMatch xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
163
|
+
<rdf:Description rdf:about="http://data.bnf.fr/ark:/12148/cb119673416">
|
164
|
+
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
165
|
+
<skos:prefLabel xml:lang="FR">Radio -- \xC3\x89missions scientifiques</skos:prefLabel>
|
166
|
+
</rdf:Description>
|
167
|
+
</skos:closeMatch>
|
168
|
+
<skos:closeMatch xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
169
|
+
<rdf:Description rdf:about="http://data.bnf.fr/ark:/12148/cb119934236">
|
170
|
+
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
171
|
+
<skos:prefLabel xml:lang="FR">Sciences -- Pratique</skos:prefLabel>
|
172
|
+
</rdf:Description>
|
173
|
+
</skos:closeMatch>
|
174
|
+
<skos:closeMatch xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
175
|
+
<rdf:Description rdf:about="http://data.bnf.fr/ark:/12148/cb12062047t">
|
176
|
+
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
177
|
+
<skos:prefLabel xml:lang="FR">Fraude scientifique</skos:prefLabel>
|
178
|
+
</rdf:Description>
|
179
|
+
</skos:closeMatch>
|
180
|
+
<skos:closeMatch xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
181
|
+
<rdf:Description rdf:about="http://data.bnf.fr/ark:/12148/cb119469567">
|
182
|
+
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
183
|
+
<skos:prefLabel xml:lang="FR">Sciences -- Fondements</skos:prefLabel>
|
184
|
+
</rdf:Description>
|
185
|
+
</skos:closeMatch>
|
186
|
+
<skos:closeMatch xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
187
|
+
<rdf:Description rdf:about="http://data.bnf.fr/ark:/12148/cb11933232c">
|
188
|
+
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
189
|
+
<skos:prefLabel xml:lang="FR">Sciences</skos:prefLabel>
|
190
|
+
</rdf:Description>
|
191
|
+
</skos:closeMatch>
|
192
|
+
<skos:closeMatch xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
193
|
+
<rdf:Description rdf:about="http://data.bnf.fr/ark:/12148/cb122890536">
|
194
|
+
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
195
|
+
<skos:prefLabel xml:lang="FR">Sciences -- Aspect politique</skos:prefLabel>
|
196
|
+
</rdf:Description>
|
197
|
+
</skos:closeMatch>
|
198
|
+
<skos:closeMatch xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
199
|
+
<rdf:Description rdf:about="http://data.bnf.fr/ark:/12148/cb121155321">
|
200
|
+
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
201
|
+
<skos:prefLabel xml:lang="FR">Science</skos:prefLabel>
|
202
|
+
</rdf:Description>
|
203
|
+
</skos:closeMatch>
|
204
|
+
<skos:closeMatch xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
205
|
+
<rdf:Description rdf:about="http://data.bnf.fr/ark:/12148/cb15556043g">
|
206
|
+
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
207
|
+
<skos:prefLabel xml:lang="FR">Scientifiques amateurs</skos:prefLabel>
|
208
|
+
</rdf:Description>
|
209
|
+
</skos:closeMatch>
|
210
|
+
<skos:closeMatch xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
211
|
+
<rdf:Description rdf:about="http://data.bnf.fr/ark:/12148/cb123662513">
|
212
|
+
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
213
|
+
<skos:prefLabel xml:lang="FR">Progr\xC3\xA8s scientifique et technique</skos:prefLabel>
|
214
|
+
</rdf:Description>
|
215
|
+
</skos:closeMatch>
|
216
|
+
<skos:closeMatch xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
217
|
+
<rdf:Description rdf:about="http://d-nb.info/gnd/4066562-8">
|
218
|
+
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
219
|
+
<skos:prefLabel xml:lang="DE">Wissenschaft</skos:prefLabel>
|
220
|
+
</rdf:Description>
|
221
|
+
</skos:closeMatch>
|
222
|
+
<skos:closeMatch xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
223
|
+
<rdf:Description rdf:about="http://data.bnf.fr/ark:/12148/cb120745812">
|
224
|
+
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
225
|
+
<skos:prefLabel xml:lang="FR">Sciences -- Analyse marxiste</skos:prefLabel>
|
226
|
+
</rdf:Description>
|
227
|
+
</skos:closeMatch>
|
228
|
+
<skos:closeMatch xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
229
|
+
<rdf:Description rdf:about="http://data.bnf.fr/ark:/12148/cb11973101n">
|
230
|
+
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
231
|
+
<skos:prefLabel xml:lang="FR">Sciences -- Bases de donn\xC3\xA9es</skos:prefLabel>
|
232
|
+
</rdf:Description>
|
233
|
+
</skos:closeMatch>
|
234
|
+
<skos:closeMatch xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
235
|
+
<rdf:Description rdf:about="http://data.bnf.fr/ark:/12148/cb13328497r">
|
236
|
+
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
237
|
+
<skos:prefLabel xml:lang="FR">Sciences -- Ressources Internet</skos:prefLabel>
|
238
|
+
</rdf:Description>
|
239
|
+
</skos:closeMatch>
|
240
|
+
<skos:editorial xmlns:skos="http://www.w3.org/2004/02/skos/core#">headings beginning with the word [Scientific;] and subdivision [Science] under ethnic groups and individual wars, e.g. [World War, 1939-1945--Science]</skos:editorial>
|
241
|
+
<skos:inScheme rdf:resource="http://id.loc.gov/authorities/subjects" xmlns:skos="http://www.w3.org/2004/02/skos/core#"/>
|
242
|
+
<skos:altLabel xml:lang="en" xmlns:skos="http://www.w3.org/2004/02/skos/core#">Natural science</skos:altLabel>
|
243
|
+
<skos:altLabel xml:lang="en" xmlns:skos="http://www.w3.org/2004/02/skos/core#">Science of science</skos:altLabel>
|
244
|
+
<skos:altLabel xml:lang="en" xmlns:skos="http://www.w3.org/2004/02/skos/core#">Sciences</skos:altLabel>
|
245
|
+
<skos:changeNote xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
246
|
+
<cs:ChangeSet xmlns:cs="http://purl.org/vocab/changeset/schema#">
|
247
|
+
<cs:subjectOfChange rdf:resource="http://id.loc.gov/authorities/subjects/sh85118553"/>
|
248
|
+
<cs:creatorName rdf:resource="http://id.loc.gov/vocabulary/organizations/dlc"/>
|
249
|
+
<cs:createdDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2000-06-20T00:00:00</cs:createdDate>
|
250
|
+
<cs:changeReason rdf:datatype="http://www.w3.org/2001/XMLSchema#string">new</cs:changeReason>
|
251
|
+
</cs:ChangeSet>
|
252
|
+
</skos:changeNote>
|
253
|
+
<skos:changeNote xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
254
|
+
<cs:ChangeSet xmlns:cs="http://purl.org/vocab/changeset/schema#">
|
255
|
+
<cs:subjectOfChange rdf:resource="http://id.loc.gov/authorities/subjects/sh85118553"/>
|
256
|
+
<cs:creatorName rdf:resource="http://id.loc.gov/vocabulary/organizations/dlc"/>
|
257
|
+
<cs:createdDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2000-07-31T10:18:10</cs:createdDate>
|
258
|
+
<cs:changeReason rdf:datatype="http://www.w3.org/2001/XMLSchema#string">revised</cs:changeReason>
|
259
|
+
</cs:ChangeSet>
|
260
|
+
</skos:changeNote>
|
261
|
+
</madsrdf:Topic>
|
262
|
+
</rdf:RDF>
|