rof 1.0.7 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +9 -7
  3. data/LICENSE +201 -16
  4. data/Rakefile +46 -0
  5. data/bin/csv_to_rof +1 -2
  6. data/bin/fedora_to_rof +7 -1
  7. data/bin/jsonld_to_rof +26 -0
  8. data/bin/osf_to_rof +6 -2
  9. data/bin/rof +5 -19
  10. data/lib/rof.rb +2 -6
  11. data/lib/rof/access.rb +1 -1
  12. data/lib/rof/cli.rb +104 -67
  13. data/lib/rof/compare_rof.rb +68 -39
  14. data/lib/rof/filter.rb +21 -0
  15. data/lib/rof/filters.rb +38 -0
  16. data/lib/rof/filters/bendo.rb +15 -17
  17. data/lib/rof/filters/date_stamp.rb +5 -4
  18. data/lib/rof/filters/file_to_url.rb +5 -3
  19. data/lib/rof/filters/label.rb +9 -7
  20. data/lib/rof/filters/work.rb +7 -5
  21. data/lib/rof/ingest.rb +5 -0
  22. data/lib/rof/osf_context.rb +2 -2
  23. data/lib/rof/rdf_context.rb +2 -0
  24. data/lib/rof/translator.rb +18 -0
  25. data/lib/rof/translators.rb +23 -0
  26. data/lib/rof/{translate_csv.rb → translators/csv_to_rof.rb} +4 -3
  27. data/lib/rof/translators/fedora_to_rof.rb +244 -0
  28. data/lib/rof/translators/jsonld_to_rof.rb +112 -0
  29. data/lib/rof/translators/jsonld_to_rof/accumulator.rb +175 -0
  30. data/lib/rof/translators/jsonld_to_rof/predicate_handler.rb +223 -0
  31. data/lib/rof/translators/jsonld_to_rof/predicate_object_handler.rb +125 -0
  32. data/lib/rof/translators/jsonld_to_rof/statement_handler.rb +91 -0
  33. data/lib/rof/translators/osf_to_rof.rb +191 -0
  34. data/lib/rof/utility.rb +44 -1
  35. data/lib/rof/version.rb +1 -1
  36. data/rof.gemspec +10 -2
  37. data/spec/coverage_helper.rb +17 -0
  38. data/spec/fixtures/for_utility_load_items_from_json_file/multiple_items.json +8 -0
  39. data/spec/fixtures/for_utility_load_items_from_json_file/parse_error.json +3 -0
  40. data/spec/fixtures/for_utility_load_items_from_json_file/single_item.json +3 -0
  41. data/spec/fixtures/jsonld_to_rof/0g354f18610.jsonld +113 -0
  42. data/spec/fixtures/jsonld_to_rof/0g354f18610.rof +96 -0
  43. data/spec/fixtures/jsonld_to_rof/2j62s467216.jsonld +113 -0
  44. data/spec/fixtures/jsonld_to_rof/2j62s467216.rof +93 -0
  45. data/spec/fixtures/jsonld_to_rof/2v23vt16z2z.jsonld +70 -0
  46. data/spec/fixtures/jsonld_to_rof/2v23vt16z2z.rof +87 -0
  47. data/spec/fixtures/jsonld_to_rof/cr56n01253w.jsonld +84 -0
  48. data/spec/fixtures/jsonld_to_rof/cr56n01253w.rof +95 -0
  49. data/spec/fixtures/jsonld_to_rof/h989r21069m.jsonld +84 -0
  50. data/spec/fixtures/jsonld_to_rof/h989r21069m.rof +98 -0
  51. data/spec/fixtures/jsonld_to_rof/js956d59913.jsonld +79 -0
  52. data/spec/fixtures/jsonld_to_rof/js956d59913.rof +89 -0
  53. data/spec/fixtures/jsonld_to_rof/m039k358q5c.jsonld +80 -0
  54. data/spec/fixtures/jsonld_to_rof/m039k358q5c.rof +64 -0
  55. data/spec/fixtures/jsonld_to_rof/nk322b9161g.jsonld +89 -0
  56. data/spec/fixtures/jsonld_to_rof/nk322b9161g.rof +69 -0
  57. data/spec/fixtures/jsonld_to_rof/p8418k7430d.jsonld +84 -0
  58. data/spec/fixtures/jsonld_to_rof/p8418k7430d.rof +67 -0
  59. data/spec/fixtures/jsonld_to_rof/xg94hm53h0c.jsonld +98 -0
  60. data/spec/fixtures/jsonld_to_rof/xg94hm53h0c.rof +110 -0
  61. data/spec/fixtures/jsonld_to_rof/zk51vd69n1r.jsonld +94 -0
  62. data/spec/fixtures/jsonld_to_rof/zk51vd69n1r.rof +121 -0
  63. data/spec/fixtures/osf/phz6b.tar.gz +0 -0
  64. data/spec/lib/rof/access_spec.rb +30 -23
  65. data/spec/lib/rof/cli_spec.rb +83 -60
  66. data/spec/lib/rof/compare_rof_spec.rb +35 -24
  67. data/spec/lib/rof/filter_spec.rb +10 -0
  68. data/spec/lib/rof/filters/bendo_spec.rb +42 -0
  69. data/spec/lib/rof/filters/date_stamp_spec.rb +9 -5
  70. data/spec/lib/rof/filters/file_to_url_spec.rb +7 -3
  71. data/spec/lib/rof/filters/label_spec.rb +121 -77
  72. data/spec/lib/rof/filters/work_spec.rb +7 -4
  73. data/spec/lib/rof/filters_spec.rb +14 -0
  74. data/spec/lib/rof/translator_spec.rb +15 -0
  75. data/spec/lib/rof/{translate_csv_spec.rb → translators/csv_to_rof_spec.rb} +14 -14
  76. data/spec/lib/rof/translators/fedora_to_rof_spec.rb +64 -0
  77. data/spec/lib/rof/translators/jsonld_to_rof/accumulator_spec.rb +121 -0
  78. data/spec/lib/rof/translators/jsonld_to_rof/predicate_handler_spec.rb +73 -0
  79. data/spec/lib/rof/translators/jsonld_to_rof/predicate_object_handler_spec.rb +48 -0
  80. data/spec/lib/rof/translators/jsonld_to_rof/statement_handler_spec.rb +40 -0
  81. data/spec/lib/rof/translators/jsonld_to_rof_spec.rb +120 -0
  82. data/spec/lib/rof/{osf_to_rof_spec.rb → translators/osf_to_rof_spec.rb} +55 -25
  83. data/spec/lib/rof/translators_spec.rb +14 -0
  84. data/spec/lib/rof/utility_spec.rb +47 -1
  85. data/spec/spec_helper.rb +1 -1
  86. data/spec/support/an_rof_filter.rb +10 -0
  87. metadata +186 -15
  88. data/lib/rof/get_from_fedora.rb +0 -211
  89. data/lib/rof/osf_to_rof.rb +0 -123
  90. data/spec/lib/rof/get_from_fedora_spec.rb +0 -22
@@ -0,0 +1,93 @@
1
+ [
2
+ {
3
+ "type": "fobject",
4
+ "pid": "und:2j62s467216",
5
+ "af-model": "Etd",
6
+ "rights": {
7
+ "read": [
8
+ "clane"
9
+ ],
10
+ "edit": [
11
+ "curate_batch_user"
12
+ ],
13
+ "read-groups": [
14
+ "public"
15
+ ],
16
+ "embargo-date": "2021-12-31",
17
+ "edit-groups": [
18
+ "und:q524jm23g92"
19
+ ]
20
+ },
21
+ "metadata": {
22
+ "@context": {
23
+ "dc": "http://purl.org/dc/terms/",
24
+ "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
25
+ "ms": "http://www.ndltd.org/standards/metadata/etdms/1.1/",
26
+ "ths": "http://id.loc.gov/vocabulary/relators/"
27
+ },
28
+ "dc:title#alternate": [
29
+
30
+ ],
31
+ "dc:subject": [
32
+
33
+ ],
34
+ "dc:rights": [
35
+ "All rights reserved"
36
+ ],
37
+ "dc:language": [
38
+
39
+ ],
40
+ "dc:date": [
41
+ "2015-06-10"
42
+ ],
43
+ "dc:title": "The Diversity of Vocations: Choosing a State of Life in Early Modern France",
44
+ "dc:contributor": [
45
+ {
46
+ "dc:contributor": "Brad S. Gregory",
47
+ "ms:role": "Research Director"
48
+ },
49
+ {
50
+ "dc:contributor": "John Van Engen",
51
+ "ms:role": "Committee Member"
52
+ },
53
+ {
54
+ "dc:contributor": "Margaret Meserve",
55
+ "ms:role": "Committee Member"
56
+ },
57
+ {
58
+ "dc:contributor": "Thomas Kselman",
59
+ "ms:role": "Committee Member"
60
+ }
61
+ ],
62
+ "ms:degree": {
63
+ "ms:name": [
64
+ "Doctor of Philosophy"
65
+ ],
66
+ "ms:discipline": [
67
+ "History"
68
+ ],
69
+ "ms:level": "Doctoral Dissertation"
70
+ },
71
+ "dc:creator": [
72
+ "Christopher J. Lane"
73
+ ],
74
+ "dc:dateSubmitted": "2016-02-18Z",
75
+ "dc:modified": "2016-02-19Z"
76
+ },
77
+ "rels-ext": {
78
+ "@context": {
79
+ "hydramata-rel": "http://projecthydra.org/ns/relations#"
80
+ },
81
+ "hydramata-rel:hasEditor": [
82
+ "und:qb98mc9021z"
83
+ ],
84
+ "hydramata-rel:hasEditorGroup": [
85
+ "und:q524jm23g92"
86
+ ]
87
+ },
88
+ "properties-meta": {
89
+ "mime-type": "text/xml"
90
+ },
91
+ "properties": "<fields><depositor>curate_batch_user</depositor><representative>und:47429882s8w</representative></fields>"
92
+ }
93
+ ]
@@ -0,0 +1,70 @@
1
+ {
2
+ "@context": {
3
+ "und": "https://curate.nd.edu/show/",
4
+ "bibo": "http://purl.org/ontology/bibo/",
5
+ "dc": "http://purl.org/dc/terms/",
6
+ "ebucore": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#",
7
+ "foaf": "http://xmlns.com/foaf/0.1/",
8
+ "mrel": "http://id.loc.gov/vocabulary/relators/",
9
+ "nd": "https://library.nd.edu/ns/terms/",
10
+ "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
11
+ "vracore": "http://purl.org/vra/",
12
+ "frels": "info:fedora/fedora-system:def/relations-external#",
13
+ "ms": "http://www.ndltd.org/standards/metadata/etdms/1.1/",
14
+ "pav": "http://purl.org/pav/",
15
+ "fedora-model": "info:fedora/fedora-system:def/model#",
16
+ "hydra": "http://projecthydra.org/ns/relations#",
17
+ "hasModel": {
18
+ "@id": "fedora-model:hasModel",
19
+ "@type": "@id"
20
+ },
21
+ "hasEditor": {
22
+ "@id": "hydra:hasEditor",
23
+ "@type": "@id"
24
+ },
25
+ "hasEditorGroup": {
26
+ "@id": "hydra:hasEditorGroup",
27
+ "@type": "@id"
28
+ },
29
+ "isPartOf": {
30
+ "@id": "frels:isPartOf",
31
+ "@type": "@id"
32
+ },
33
+ "isMemberOfCollection": {
34
+ "@id": "frels:isMemberOfCollection",
35
+ "@type": "@id"
36
+ },
37
+ "isEditorOf": {
38
+ "@id": "hydra:isEditorOf",
39
+ "@type": "@id"
40
+ },
41
+ "hasMember": {
42
+ "@id": "frels:hasMember",
43
+ "@type": "@id"
44
+ },
45
+ "previousVersion": "pav:previousVersion"
46
+ },
47
+ "@id": "und:2v23vt16z2z",
48
+ "dc:creator#administrative_unit": "University of Notre Dame::College of Science::Applied and Computational Mathematics and Statistics",
49
+ "dc:dateSubmitted": {
50
+ "@value": "2016-11-16Z",
51
+ "@type": "http://www.w3.org/2001/XMLSchema#date"
52
+ },
53
+ "dc:description": "Bertini is a software package for numerically solving systems of polynomial equations. It can find both isolated solutions as well as positive-dimensional solutions.\n\nBertini is the product of a research program in numerical algebraic geometry. It uses many newly developed methods, including intersecting and projecting algebraic sets, adaptive precision path tracking, methods for treating singular sets, parameter homotopies, user-defined path tracking, and other new research.",
54
+ "dc:modified": {
55
+ "@value": "2016-11-16Z",
56
+ "@type": "http://www.w3.org/2001/XMLSchema#date"
57
+ },
58
+ "dc:relation": "http://bertini.nd.edu/",
59
+ "dc:subject": ["Numerical Algebraic Geometry", "Mathematics", "Polynomial Systems", "Numerical Methods"],
60
+ "dc:title": "Bertini",
61
+ "nd:accessEdit": "rtillman,dbrower, jladwig",
62
+ "nd:accessReadGroup": "public",
63
+ "nd:afmodel": "LibraryCollection",
64
+ "nd:bendoitem": "2v23vt16z2z",
65
+ "nd:depositor": "batch_ingest",
66
+ "nd:owner": "rtillman,dbrower, jladwig",
67
+ "nd:representativeFile": {
68
+ "@id": "und:2z10wq00734"
69
+ }
70
+ }
@@ -0,0 +1,87 @@
1
+ [
2
+ {
3
+ "pid": "und:2v23vt16z2z",
4
+ "type": "fobject",
5
+ "af-model": "LibraryCollection",
6
+ "rels-ext": {
7
+ "@context": {
8
+ "@vocab": "info:fedora/fedora-system:def/relations-external#",
9
+ "fedora-model": "info:fedora/fedora-system:def/model#",
10
+ "hydra": "http://projecthydra.org/ns/relations#",
11
+ "hasModel": {
12
+ "@id": "fedora-model:hasModel",
13
+ "@type": "@id"
14
+ },
15
+ "hasEditor": {
16
+ "@id": "hydra:hasEditor",
17
+ "@type": "@id"
18
+ },
19
+ "hasEditorGroup": {
20
+ "@id": "hydra:hasEditorGroup",
21
+ "@type": "@id"
22
+ },
23
+ "isPartOf": {
24
+ "@type": "@id"
25
+ },
26
+ "isMemberOfCollection": {
27
+ "@type": "@id"
28
+ },
29
+ "isEditorOf": {
30
+ "@id": "hydra:isEditorOf",
31
+ "@type": "@id"
32
+ },
33
+ "hasMember": {
34
+ "@type": "@id"
35
+ },
36
+ "previousVersion": "http://purl.org/pav/previousVersion"
37
+ },
38
+ "@id": "und:2v23vt16z2z"
39
+ },
40
+ "bendo-item": "2v23vt16z2z",
41
+ "rights": {
42
+ "read-groups": [
43
+ "public"
44
+ ],
45
+ "edit": [
46
+ "rtillman,dbrower, jladwig"
47
+ ]
48
+ },
49
+ "properties-meta": {
50
+ "mime-type": "text/xml"
51
+ },
52
+ "properties": "<fields><depositor>batch_ingest</depositor>\n<owner>rtillman,dbrower, jladwig</owner>\n<representative>und:2z10wq00734</representative>\n</fields>\n",
53
+ "metadata": {
54
+ "@context": {
55
+ "bibo": "http://purl.org/ontology/bibo/",
56
+ "dc": "http://purl.org/dc/terms/",
57
+ "ebucore": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#",
58
+ "foaf": "http://xmlns.com/foaf/0.1/",
59
+ "mrel": "http://id.loc.gov/vocabulary/relators/",
60
+ "nd": "https://library.nd.edu/ns/terms/",
61
+ "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
62
+ "vracore": "http://purl.org/vra/",
63
+ "dc:dateSubmitted": {
64
+ "@type": "http://www.w3.org/2001/XMLSchema#date"
65
+ },
66
+ "dc:created": {
67
+ "@type": "http://www.w3.org/2001/XMLSchema#date"
68
+ },
69
+ "dc:modified": {
70
+ "@type": "http://www.w3.org/2001/XMLSchema#date"
71
+ }
72
+ },
73
+ "@id": "info:fedora/und:2v23vt16z2z",
74
+ "dc:creator#administrative_unit": "University of Notre Dame::College of Science::Applied and Computational Mathematics and Statistics",
75
+ "dc:dateSubmitted": "2016-11-16Z",
76
+ "dc:description": "Bertini is a software package for numerically solving systems of polynomial equations. It can find both isolated solutions as well as positive-dimensional solutions.\n\nBertini is the product of a research program in numerical algebraic geometry. It uses many newly developed methods, including intersecting and projecting algebraic sets, adaptive precision path tracking, methods for treating singular sets, parameter homotopies, user-defined path tracking, and other new research.",
77
+ "dc:modified": "2016-11-16Z",
78
+ "dc:relation": "http://bertini.nd.edu/",
79
+ "dc:subject": [
80
+ "Polynomial Systems",
81
+ "Mathematics",
82
+ "Numerical Algebraic Geometry",
83
+ "Numerical Methods"
84
+ ],
85
+ "dc:title": "Bertini"
86
+ }
87
+ }]
@@ -0,0 +1,84 @@
1
+ {
2
+ "@context": {
3
+ "und": "https://curate.nd.edu/show/",
4
+ "bibo": "http://purl.org/ontology/bibo/",
5
+ "dc": "http://purl.org/dc/terms/",
6
+ "ebucore": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#",
7
+ "foaf": "http://xmlns.com/foaf/0.1/",
8
+ "mrel": "http://id.loc.gov/vocabulary/relators/",
9
+ "nd": "https://library.nd.edu/ns/terms/",
10
+ "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
11
+ "vracore": "http://purl.org/vra/",
12
+ "frels": "info:fedora/fedora-system:def/relations-external#",
13
+ "ms": "http://www.ndltd.org/standards/metadata/etdms/1.1/",
14
+ "pav": "http://purl.org/pav/",
15
+ "fedora-model": "info:fedora/fedora-system:def/model#",
16
+ "hydra": "http://projecthydra.org/ns/relations#",
17
+ "hasModel": {
18
+ "@id": "fedora-model:hasModel",
19
+ "@type": "@id"
20
+ },
21
+ "hasEditor": {
22
+ "@id": "hydra:hasEditor",
23
+ "@type": "@id"
24
+ },
25
+ "hasEditorGroup": {
26
+ "@id": "hydra:hasEditorGroup",
27
+ "@type": "@id"
28
+ },
29
+ "isPartOf": {
30
+ "@id": "frels:isPartOf",
31
+ "@type": "@id"
32
+ },
33
+ "isMemberOfCollection": {
34
+ "@id": "frels:isMemberOfCollection",
35
+ "@type": "@id"
36
+ },
37
+ "isEditorOf": {
38
+ "@id": "hydra:isEditorOf",
39
+ "@type": "@id"
40
+ },
41
+ "hasMember": {
42
+ "@id": "frels:hasMember",
43
+ "@type": "@id"
44
+ },
45
+ "previousVersion": "pav:previousVersion"
46
+ },
47
+ "@id": "und:cr56n01253w",
48
+ "dc:created": {
49
+ "@value": "2009-03-31",
50
+ "@type": "http://www.w3.org/2001/XMLSchema#date"
51
+ },
52
+ "dc:creator#administrative_unit": "University of Notre Dame::Centers and Institutes::Institute for Latino Studies",
53
+ "dc:dateSubmitted": {
54
+ "@value": "2017-02-22Z",
55
+ "@type": "http://www.w3.org/2001/XMLSchema#date"
56
+ },
57
+ "dc:description": "Oral history interview with photographer Antonio Turok, interviewed by Tracy Grimm.",
58
+ "dc:issued": "2009-03-31",
59
+ "dc:language": "English",
60
+ "dc:modified": {
61
+ "@value": "2017-02-22Z",
62
+ "@type": "http://www.w3.org/2001/XMLSchema#date"
63
+ },
64
+ "dc:relation": "https://www.youtube.com/watch?v=gzWRPmYSQWc",
65
+ "dc:rights": "All rights reserved",
66
+ "dc:subject": "Visual Artists",
67
+ "dc:title": "Antonio Turok",
68
+ "ebucore:duration": "1:18:00",
69
+ "ebucore:hasGenre": "Oral histories",
70
+ "frels:isMemberOfCollection": {
71
+ "@id": "und:bz60cv45x5d"
72
+ },
73
+ "mrel:ive": "Antonio Turok",
74
+ "mrel:ivr": "Tracy Grimm",
75
+ "nd:accessEdit": "rtillman,vpattiso",
76
+ "nd:accessReadGroup": "public",
77
+ "nd:afmodel": "Video",
78
+ "nd:bendoitem": "c534fn12g79",
79
+ "nd:depositor": "batch_ingest",
80
+ "nd:owner": "rtillman,vpattiso",
81
+ "nd:representativeFile": {
82
+ "@id": "und:cv43nv95f4b"
83
+ }
84
+ }
@@ -0,0 +1,95 @@
1
+ [
2
+ {
3
+ "pid": "und:cr56n01253w",
4
+ "type": "fobject",
5
+ "af-model": "Video",
6
+ "rels-ext": {
7
+ "@context": {
8
+ "@vocab": "info:fedora/fedora-system:def/relations-external#",
9
+ "fedora-model": "info:fedora/fedora-system:def/model#",
10
+ "hydra": "http://projecthydra.org/ns/relations#",
11
+ "hasModel": {
12
+ "@id": "fedora-model:hasModel",
13
+ "@type": "@id"
14
+ },
15
+ "hasEditor": {
16
+ "@id": "hydra:hasEditor",
17
+ "@type": "@id"
18
+ },
19
+ "hasEditorGroup": {
20
+ "@id": "hydra:hasEditorGroup",
21
+ "@type": "@id"
22
+ },
23
+ "isPartOf": {
24
+ "@type": "@id"
25
+ },
26
+ "isMemberOfCollection": {
27
+ "@type": "@id"
28
+ },
29
+ "isEditorOf": {
30
+ "@id": "hydra:isEditorOf",
31
+ "@type": "@id"
32
+ },
33
+ "hasMember": {
34
+ "@type": "@id"
35
+ },
36
+ "previousVersion": "http://purl.org/pav/previousVersion"
37
+ },
38
+ "@id": "und:cr56n01253w",
39
+ "isMemberOfCollection": "und:bz60cv45x5d"
40
+ },
41
+ "bendo-item": "c534fn12g79",
42
+ "rights": {
43
+ "read-groups": [
44
+ "public"
45
+ ],
46
+ "edit": [
47
+ "rtillman,vpattiso"
48
+ ]
49
+ },
50
+ "properties-meta": {
51
+ "mime-type": "text/xml"
52
+ },
53
+ "properties": "<fields><depositor>batch_ingest</depositor>\n<owner>rtillman,vpattiso</owner>\n<representative>und:cv43nv95f4b</representative>\n</fields>\n",
54
+ "metadata": {
55
+ "@context": {
56
+ "bibo": "http://purl.org/ontology/bibo/",
57
+ "dc": "http://purl.org/dc/terms/",
58
+ "ebucore": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#",
59
+ "foaf": "http://xmlns.com/foaf/0.1/",
60
+ "hydramata-rel": "http://projecthydra.org/ns/relations#",
61
+ "mrel": "http://id.loc.gov/vocabulary/relators/",
62
+ "ms": "http://www.ndltd.org/standards/metadata/etdms/1.1/",
63
+ "nd": "https://library.nd.edu/ns/terms/",
64
+ "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
65
+ "ths": "http://id.loc.gov/vocabulary/relators/",
66
+ "vracore": "http://purl.org/vra/",
67
+ "dc:dateSubmitted": {
68
+ "@type": "http://www.w3.org/2001/XMLSchema#date"
69
+ },
70
+ "dc:created": {
71
+ "@type": "http://www.w3.org/2001/XMLSchema#date"
72
+ },
73
+ "dc:modified": {
74
+ "@type": "http://www.w3.org/2001/XMLSchema#date"
75
+ }
76
+ },
77
+ "@id": "info:fedora/und:cr56n01253w",
78
+ "dc:created": "2009-03-31",
79
+ "dc:creator#administrative_unit": "University of Notre Dame::Centers and Institutes::Institute for Latino Studies",
80
+ "dc:dateSubmitted": "2017-02-22Z",
81
+ "dc:description": "Oral history interview with photographer Antonio Turok, interviewed by Tracy Grimm.",
82
+ "dc:issued": "2009-03-31",
83
+ "dc:language": "English",
84
+ "dc:modified": "2017-02-22Z",
85
+ "dc:relation": "https://www.youtube.com/watch?v=gzWRPmYSQWc",
86
+ "dc:rights": "All rights reserved",
87
+ "dc:subject": "Visual Artists",
88
+ "dc:title": "Antonio Turok",
89
+ "ebucore:duration": "1:18:00",
90
+ "ebucore:hasGenre": "Oral histories",
91
+ "ths:ive": "Antonio Turok",
92
+ "ths:ivr": "Tracy Grimm"
93
+ }
94
+ }
95
+ ]
@@ -0,0 +1,84 @@
1
+ {
2
+ "@context": {
3
+ "und": "https://curate.nd.edu/show/",
4
+ "bibo": "http://purl.org/ontology/bibo/",
5
+ "dc": "http://purl.org/dc/terms/",
6
+ "ebucore": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#",
7
+ "foaf": "http://xmlns.com/foaf/0.1/",
8
+ "mrel": "http://id.loc.gov/vocabulary/relators/",
9
+ "nd": "https://library.nd.edu/ns/terms/",
10
+ "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
11
+ "vracore": "http://purl.org/vra/",
12
+ "frels": "info:fedora/fedora-system:def/relations-external#",
13
+ "ms": "http://www.ndltd.org/standards/metadata/etdms/1.1/",
14
+ "pav": "http://purl.org/pav/",
15
+ "fedora-model": "info:fedora/fedora-system:def/model#",
16
+ "hydra": "http://projecthydra.org/ns/relations#",
17
+ "hasModel": {
18
+ "@id": "fedora-model:hasModel",
19
+ "@type": "@id"
20
+ },
21
+ "hasEditor": {
22
+ "@id": "hydra:hasEditor",
23
+ "@type": "@id"
24
+ },
25
+ "hasEditorGroup": {
26
+ "@id": "hydra:hasEditorGroup",
27
+ "@type": "@id"
28
+ },
29
+ "isPartOf": {
30
+ "@id": "frels:isPartOf",
31
+ "@type": "@id"
32
+ },
33
+ "isMemberOfCollection": {
34
+ "@id": "frels:isMemberOfCollection",
35
+ "@type": "@id"
36
+ },
37
+ "isEditorOf": {
38
+ "@id": "hydra:isEditorOf",
39
+ "@type": "@id"
40
+ },
41
+ "hasMember": {
42
+ "@id": "frels:hasMember",
43
+ "@type": "@id"
44
+ },
45
+ "previousVersion": "pav:previousVersion"
46
+ },
47
+ "@id": "und:h989r21069m",
48
+ "dc:created": {
49
+ "@value": "2011-06-04",
50
+ "@type": "http://www.w3.org/2001/XMLSchema#date"
51
+ },
52
+ "dc:creator#administrative_unit": "University of Notre Dame::Centers and Institutes::Institute for Latino Studies",
53
+ "dc:dateSubmitted": {
54
+ "@value": "2017-02-22Z",
55
+ "@type": "http://www.w3.org/2001/XMLSchema#date"
56
+ },
57
+ "dc:description": "Conversation with Gilberto Cardenas and Tomás Ybarra-Frausto.",
58
+ "dc:issued": "2011-06-04",
59
+ "dc:language": "English",
60
+ "dc:modified": {
61
+ "@value": "2017-02-22Z",
62
+ "@type": "http://www.w3.org/2001/XMLSchema#date"
63
+ },
64
+ "dc:relation": "https://youtu.be/_V1lHMMWXR0",
65
+ "dc:rights": "All rights reserved",
66
+ "dc:subject": ["Arts & Arts Related", "Visual Artists"],
67
+ "dc:title": "Conversation with Gilberto Cardenas and Tomás Ybarra-Frausto",
68
+ "ebucore:duration": "0:41:33",
69
+ "ebucore:hasGenre": "Oral histories",
70
+ "frels:isMemberOfCollection": {
71
+ "@id": "und:bz60cv45x5d"
72
+ },
73
+ "mrel:ive": "Gilberto Cardenas",
74
+ "mrel:ivr": "Thomás Ybarra-Frausto",
75
+ "nd:accessEdit": "rtillman,vpattiso",
76
+ "nd:accessReadGroup": "public",
77
+ "nd:afmodel": "Video",
78
+ "nd:bendoitem": "c534fn12g79",
79
+ "nd:depositor": "batch_ingest",
80
+ "nd:owner": "rtillman,vpattiso",
81
+ "nd:representativeFile": {
82
+ "@id": "und:hd76rx93h0x"
83
+ }
84
+ }