Last active
July 24, 2025 17:16
-
-
Save pgwillia/2761f103bc0c97d15bd9bf53b9b36e90 to your computer and use it in GitHub Desktop.
How to get report of missing thumbnails from Scholaris DSpace
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'net/http' | |
| require 'cgi' | |
| require 'json' | |
| File.open('missing_thumbnails.txt', 'w') do |file| | |
| source = URI.parse('https://ualberta.scholaris.ca/server/api/discover/search/objects?sort=score,DESC&page=0&size=100&configuration=administrativeView&embed=thumbnail&embed=item/thumbnail&embed=accessStatus') | |
| loop do | |
| print '.' | |
| resp = Net::HTTP.get_response(source) | |
| data = resp.body | |
| result = JSON.parse(data).to_h | |
| result['_embedded']['searchResult']['_embedded']['objects'].each do |item| | |
| file.puts item['_embedded']['indexableObject']['id'] if nil == item['_embedded']['indexableObject']['_embedded']['thumbnail'] | |
| end | |
| break unless next_url = result['_embedded']['searchResult']['_links']['next']['href'] | |
| next_page = CGI.parse(URI.parse(next_url).query)['page'] | |
| params = CGI.parse(source.query) | |
| params['page'] = next_page | |
| source = URI::HTTPS.build(host: source.host, path: source.path, query: URI.encode_www_form(params)) | |
| end | |
| end |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "id" : null, | |
| "scope" : null, | |
| "query" : null, | |
| "appliedFilters" : null, | |
| "sort" : { | |
| "by" : "score", | |
| "order" : "DESC" | |
| }, | |
| "configuration" : "administrativeView", | |
| "type" : "discover", | |
| "_links" : { | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/discover/search/objects?configuration=administrativeView" | |
| } | |
| }, | |
| "_embedded" : { | |
| "searchResult" : { | |
| "_embedded" : { | |
| "objects" : [ { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1a4f67-7ffd-4436-b8dd-8cce10ab47a0" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e1a4f67-7ffd-4436-b8dd-8cce10ab47a0", | |
| "uuid" : "7e1a4f67-7ffd-4436-b8dd-8cce10ab47a0", | |
| "name" : "970.44.30 ventral", | |
| "handle" : "123456789/38985", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "University of Alberta Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Bryan, Alan L., Dr.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Southern Cone", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Chile, Ascotán", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T08:51:59Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T08:51:59Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1970", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3CR5ND3F", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Utilized flake", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Lithic tools", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "970.44.30 ventral", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:02:55.596+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1a4f67-7ffd-4436-b8dd-8cce10ab47a0/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1a4f67-7ffd-4436-b8dd-8cce10ab47a0/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1a4f67-7ffd-4436-b8dd-8cce10ab47a0/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1a4f67-7ffd-4436-b8dd-8cce10ab47a0/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1a4f67-7ffd-4436-b8dd-8cce10ab47a0/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1a4f67-7ffd-4436-b8dd-8cce10ab47a0/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1a4f67-7ffd-4436-b8dd-8cce10ab47a0/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1a4f67-7ffd-4436-b8dd-8cce10ab47a0/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1a4f67-7ffd-4436-b8dd-8cce10ab47a0/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1a4f67-7ffd-4436-b8dd-8cce10ab47a0" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "c040b8e4-72fd-449a-995e-c080e34f6968", | |
| "uuid" : "c040b8e4-72fd-449a-995e-c080e34f6968", | |
| "name" : "1970-044-030_v_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:02:55Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1970-044-030_v_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4121, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "c57de703168ec2ca9ddba47277b8126d" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/c040b8e4-72fd-449a-995e-c080e34f6968/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/c040b8e4-72fd-449a-995e-c080e34f6968/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/c040b8e4-72fd-449a-995e-c080e34f6968/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/c040b8e4-72fd-449a-995e-c080e34f6968/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/c040b8e4-72fd-449a-995e-c080e34f6968" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1b62fe-cba0-4ea3-9c32-cd062a8c293e" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e1b62fe-cba0-4ea3-9c32-cd062a8c293e", | |
| "uuid" : "7e1b62fe-cba0-4ea3-9c32-cd062a8c293e", | |
| "name" : "Dorsal view of a lanceolate projectile point dorsal", | |
| "handle" : "123456789/39593", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Meghan Ward", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "University of Alberta", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T09:44:05Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T09:44:05Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2007-10-18", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-4qkt-e125", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "lithic tools", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "projectile point", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Dorsal view of a lanceolate projectile point dorsal", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:02:59.982+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1b62fe-cba0-4ea3-9c32-cd062a8c293e/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1b62fe-cba0-4ea3-9c32-cd062a8c293e/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1b62fe-cba0-4ea3-9c32-cd062a8c293e/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1b62fe-cba0-4ea3-9c32-cd062a8c293e/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1b62fe-cba0-4ea3-9c32-cd062a8c293e/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1b62fe-cba0-4ea3-9c32-cd062a8c293e/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1b62fe-cba0-4ea3-9c32-cd062a8c293e/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1b62fe-cba0-4ea3-9c32-cd062a8c293e/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1b62fe-cba0-4ea3-9c32-cd062a8c293e/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1b62fe-cba0-4ea3-9c32-cd062a8c293e" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "3ca2c3f2-f1bb-45df-9c0c-5d8d8bd4a727", | |
| "uuid" : "3ca2c3f2-f1bb-45df-9c0c-5d8d8bd4a727", | |
| "name" : "1995-026-001_d_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:02:59Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1995-026-001_d_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3766, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "9fb36de4715fa21e66bf28039172732e" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/3ca2c3f2-f1bb-45df-9c0c-5d8d8bd4a727/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/3ca2c3f2-f1bb-45df-9c0c-5d8d8bd4a727/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/3ca2c3f2-f1bb-45df-9c0c-5d8d8bd4a727/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/3ca2c3f2-f1bb-45df-9c0c-5d8d8bd4a727/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/3ca2c3f2-f1bb-45df-9c0c-5d8d8bd4a727" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1bfe7e-22e6-4022-b18b-ecb6e5eddd50" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e1bfe7e-22e6-4022-b18b-ecb6e5eddd50", | |
| "uuid" : "7e1bfe7e-22e6-4022-b18b-ecb6e5eddd50", | |
| "name" : "Cognitive and affective factors in students' responses to a leadership debate: experimental evidence that the audience processes what it hears", | |
| "handle" : "123456789/59655", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "MacNeill, Douglas G.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-06T16:01:46Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-06T16:01:46Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1997", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3DR2PD31", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This thesis is made available by the University of Alberta Libraries with permission of the copyright owner solely for non-commercial purposes. This thesis, or any portion thereof, may not otherwise be copied or reproduced without the written consent of the copyright owner, except to the extent permitted by Canadian copyright law.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Public speaking--Case studies", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Voice culture--Case studies", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Self-presentation--Case studies", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Cognitive and affective factors in students' responses to a leadership debate: experimental evidence that the audience processes what it hears", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_46ec", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.grantor" : [ { | |
| "value" : "http://id.loc.gov/authorities/names/n79058482", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.level" : [ { | |
| "value" : "Master's", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.name" : [ { | |
| "value" : "Master of Arts", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.date.graduation" : [ { | |
| "value" : "1997", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.department" : [ { | |
| "value" : "Department of Sociology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:00.787+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1bfe7e-22e6-4022-b18b-ecb6e5eddd50/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1bfe7e-22e6-4022-b18b-ecb6e5eddd50/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1bfe7e-22e6-4022-b18b-ecb6e5eddd50/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1bfe7e-22e6-4022-b18b-ecb6e5eddd50/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1bfe7e-22e6-4022-b18b-ecb6e5eddd50/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1bfe7e-22e6-4022-b18b-ecb6e5eddd50/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1bfe7e-22e6-4022-b18b-ecb6e5eddd50/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1bfe7e-22e6-4022-b18b-ecb6e5eddd50/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1bfe7e-22e6-4022-b18b-ecb6e5eddd50/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1bfe7e-22e6-4022-b18b-ecb6e5eddd50" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "f1f22451-fdf2-43a5-8f20-791091b66a54", | |
| "uuid" : "f1f22451-fdf2-43a5-8f20-791091b66a54", | |
| "name" : "MQ22540.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:00Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "MQ22540.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5373, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "f17f49420b5e9a72540faad73f18485b" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/f1f22451-fdf2-43a5-8f20-791091b66a54/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/f1f22451-fdf2-43a5-8f20-791091b66a54/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/f1f22451-fdf2-43a5-8f20-791091b66a54/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/f1f22451-fdf2-43a5-8f20-791091b66a54/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/f1f22451-fdf2-43a5-8f20-791091b66a54" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1e1ccc-ce90-4bbd-ad99-2830d0f73809" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e1e1ccc-ce90-4bbd-ad99-2830d0f73809", | |
| "uuid" : "7e1e1ccc-ce90-4bbd-ad99-2830d0f73809", | |
| "name" : "Equivalent Land Capability Workshop Summary Notes", | |
| "handle" : "123456789/23362", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Oil Sands Research and Information Network", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Canada, Alberta, Fort McMurray", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T17:47:05Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T17:47:05Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2011/06/10", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "The Equivalent Land Capability Workshop, held on November 26, 2010 at the University of Alberta, provided an opportunity for 60 reclamation specialists to share views about Equivalent Land Capability and how it is applied to oil sands mine reclamation, and to identify research and information needs. The purpose of the workshop was to develop a shared understanding of the concept and application of Equivalent Land Capability (ELC) as it applies to oil sands mine reclamation. The workshop format was a series of presentations, each followed by group discussions, which were guided by a series of questions provided by the organizers. A final open forum plenary discussion asked what people had learned and what they felt the next steps should be. There was general agreement that government should develop a policy document on what ELC means today, and acknowledge that the vision may change in the future. The policy document should acknowledge that ELC is much broader than the regulatory definition. ELC is a province-wide issue not just oil sands – therefore the oil sands could be a chapter in a bigger policy document. The policy should clearly distinguish the concept from the practice (implementation, measurement, etc.). External discussion papers could be also commissioned, with representation from all the publics. The compilation of these papers can act as a pre-policy paper – a synthesis of opinions meant to inform policy. Contributors may need to be paid a stipend. It is not necessary to agree and there can be a diversity of opinions. Additional recommendations that came out of the meeting are summarized below: • Revisit 1998 End Land Use Committee Report. • Re-institute the Development and Reclamation Review Committee as a tool to get better integration of government agency approaches and issues. • Develop a vehicle for sharing information on ELC (e.g., an ELC Blog). • Get more reclamation certificate applications in to test the system. • Poll the public about reclamation expectations and land use options. Additional ideas were submitted after the meeting: • Develop a flow chart that shows and explains the different reclamation stages: Define end use goals; Establish baseline inventories and long term monitoring plots; Reclamation planning; Reclamation implementation; Reclamation monitoring; and, Certification assessment. • Provide an example of an ELC through the various stages to show its change as it is proposed by a proponent after stakeholder involvement, negotiated, and then approved by government. • Define what other measurement tools there are – indicating where they are appropriate would help.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3X05XF7H", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by/3.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Oil Sands", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Land Use", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Oil sands", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Tar Sands", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Legislation", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "Tar sands", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| }, { | |
| "value" : "Reclamation", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 6 | |
| }, { | |
| "value" : "Land Capability", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 7 | |
| }, { | |
| "value" : "OSRIN", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 8 | |
| }, { | |
| "value" : "Alberta", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 9 | |
| }, { | |
| "value" : "TR-13", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 10 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Equivalent Land Capability Workshop Summary Notes", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:01.291+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1e1ccc-ce90-4bbd-ad99-2830d0f73809/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1e1ccc-ce90-4bbd-ad99-2830d0f73809/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1e1ccc-ce90-4bbd-ad99-2830d0f73809/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1e1ccc-ce90-4bbd-ad99-2830d0f73809/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1e1ccc-ce90-4bbd-ad99-2830d0f73809/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1e1ccc-ce90-4bbd-ad99-2830d0f73809/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1e1ccc-ce90-4bbd-ad99-2830d0f73809/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1e1ccc-ce90-4bbd-ad99-2830d0f73809/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1e1ccc-ce90-4bbd-ad99-2830d0f73809/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1e1ccc-ce90-4bbd-ad99-2830d0f73809" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "695dfb9a-9cd1-40ce-84a0-872894377805", | |
| "uuid" : "695dfb9a-9cd1-40ce-84a0-872894377805", | |
| "name" : "Equivalent-20Land-20Capability-20Workshop-20--202011-2006-2008.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:01Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Equivalent-20Land-20Capability-20Workshop-20--202011-2006-2008.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3110, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "a944b95e7ea4b4ec4e6271cdc50021d4" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/695dfb9a-9cd1-40ce-84a0-872894377805/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/695dfb9a-9cd1-40ce-84a0-872894377805/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/695dfb9a-9cd1-40ce-84a0-872894377805/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/695dfb9a-9cd1-40ce-84a0-872894377805/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/695dfb9a-9cd1-40ce-84a0-872894377805" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1fd60a-09fd-4712-bb6d-d516bfae0aee" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e1fd60a-09fd-4712-bb6d-d516bfae0aee", | |
| "uuid" : "7e1fd60a-09fd-4712-bb6d-d516bfae0aee", | |
| "name" : "String Quartet Reading Workshop", | |
| "handle" : "123456789/43354", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "New, Diane", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T18:48:07Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T18:48:07Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2000-03-22", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-j700-t591", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.relation" : [ { | |
| "value" : "https://era-av.library.ualberta.ca/media_objects/avalon:16781", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This audiovisual content is being provided solely for educational use and research, pursuant to exceptions in the Canadian Copyright Act. Further reproduction or distribution or other use may require additional permissions.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Instrumental music", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "String Quartet Reading Workshop", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_1843", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:02.717+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1fd60a-09fd-4712-bb6d-d516bfae0aee/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1fd60a-09fd-4712-bb6d-d516bfae0aee/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1fd60a-09fd-4712-bb6d-d516bfae0aee/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1fd60a-09fd-4712-bb6d-d516bfae0aee/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1fd60a-09fd-4712-bb6d-d516bfae0aee/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1fd60a-09fd-4712-bb6d-d516bfae0aee/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1fd60a-09fd-4712-bb6d-d516bfae0aee/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1fd60a-09fd-4712-bb6d-d516bfae0aee/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1fd60a-09fd-4712-bb6d-d516bfae0aee/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e1fd60a-09fd-4712-bb6d-d516bfae0aee" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "40aaa6f9-6d30-4241-86db-06f51e9c9264", | |
| "uuid" : "40aaa6f9-6d30-4241-86db-06f51e9c9264", | |
| "name" : "2000-03-22.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:02Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "2000-03-22.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 2767, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "0ba05135c124bebc388ea3c557cbe986" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/40aaa6f9-6d30-4241-86db-06f51e9c9264/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/40aaa6f9-6d30-4241-86db-06f51e9c9264/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/40aaa6f9-6d30-4241-86db-06f51e9c9264/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/40aaa6f9-6d30-4241-86db-06f51e9c9264/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/40aaa6f9-6d30-4241-86db-06f51e9c9264" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e209b22-a1c3-4ff2-8fe7-7a9fa1ae9213" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e209b22-a1c3-4ff2-8fe7-7a9fa1ae9213", | |
| "uuid" : "7e209b22-a1c3-4ff2-8fe7-7a9fa1ae9213", | |
| "name" : "Health And Usage Monitoring Systems (HUMS) Of Unpiloted Aerial Vehicles - A Literature Review", | |
| "handle" : "123456789/26746", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Turjo, Iraban", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Lipsett, M.G.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T20:15:37Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T20:15:37Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2022-06-01", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "Conference abstract. Part of the Proceedings of the Canadian Society for Mechanical Engineering International Congress 2022.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-tnyh-xw45", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc/4.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "abstract", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Health And Usage Monitoring Systems (HUMS) Of Unpiloted Aerial Vehicles - A Literature Review", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_1843", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:02.964+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e209b22-a1c3-4ff2-8fe7-7a9fa1ae9213/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e209b22-a1c3-4ff2-8fe7-7a9fa1ae9213/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e209b22-a1c3-4ff2-8fe7-7a9fa1ae9213/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e209b22-a1c3-4ff2-8fe7-7a9fa1ae9213/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e209b22-a1c3-4ff2-8fe7-7a9fa1ae9213/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e209b22-a1c3-4ff2-8fe7-7a9fa1ae9213/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e209b22-a1c3-4ff2-8fe7-7a9fa1ae9213/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e209b22-a1c3-4ff2-8fe7-7a9fa1ae9213/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e209b22-a1c3-4ff2-8fe7-7a9fa1ae9213/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e209b22-a1c3-4ff2-8fe7-7a9fa1ae9213" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "4289f0ea-a1bc-4507-a7b9-4cd8bf0f224e", | |
| "uuid" : "4289f0ea-a1bc-4507-a7b9-4cd8bf0f224e", | |
| "name" : "CSME-2022_Abstract_2d8b5473-72a9-4f24-a58f-a0488217df2d.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:02Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "CSME-2022_Abstract_2d8b5473-72a9-4f24-a58f-a0488217df2d.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4064, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "bef592c6cf11bbf320a12aa6936187e6" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/4289f0ea-a1bc-4507-a7b9-4cd8bf0f224e/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/4289f0ea-a1bc-4507-a7b9-4cd8bf0f224e/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/4289f0ea-a1bc-4507-a7b9-4cd8bf0f224e/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/4289f0ea-a1bc-4507-a7b9-4cd8bf0f224e/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/4289f0ea-a1bc-4507-a7b9-4cd8bf0f224e" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e21ea01-c50d-4eef-91e7-c38768af0ae8" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e21ea01-c50d-4eef-91e7-c38768af0ae8", | |
| "uuid" : "7e21ea01-c50d-4eef-91e7-c38768af0ae8", | |
| "name" : "Rehabilitation of the Lake George Mine at Captains Flat NSW — 25 Years On", | |
| "handle" : "123456789/29849", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Dobos, S. K.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Brisebois, J.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T21:00:34Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T21:00:34Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2003-01-01", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "The derelict Lake George Mine is located at Captains Flat in NSW, a community of approximately 450, which lies some 43 km southeast of Queanbeyan. It straddles the Molonglo River, which flows to Queanbeyan and thence the nation’s capital, Canberra. Catastrophic tailings dam failures in 1939 and again in 1943 resulted in the transport and dispersion of thousands of tonnes of sulfidic wastes downstream, with terminal settling in Lake Burley Griffin, in Canberra. The mine was closed in 1962, and major rehabilitation in 1996 - 1997 addressed the risk of further collapses, and reduced water flow into the underground mine. Nevertheless, acid mine drainage from the mine, and seepages of contaminated water from the capped tailings dumps continue to pollute the Molonglo River for some 30 km downstream. Environmentally, the highest contributor to the total contaminant load of the river is the Main Adit Spring. This was shown to be a constant groundwater-driven acidic flow, with contaminant generation resulting almost entirely from the ingress of gaseous oxygen into the underground workings. Long term remediation may be possible at source, by pumping reducing gases into the sealed mine, but the probability of this technology succeeding to the required degree is yet to be demonstrated. For at least the medium term, treatment of contaminated water flow(s) will be required to achieve any of the water quality targets that may be applicable to the river. Three methodologies were short listed, but a number of strategic uncertainties remain, which the NSW Derelict Mines Program will address. Future risk arising from long-term contaminant release by the treatment wastes must be considered. Appropriate data, and realistic long-term performance parameters regarding the relative stabilities of water treatment sludges are scarce, and make proper evaluation of competing technologies problematic.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-46sn-hx26", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Use of this product is restricted to current faculty, staff, and students of the University. It is the responsibility of each user to ensure that he or she uses this product for individual, non-commercial educational or research purposes only, and does not systematically download or retain substantial portions of information. Users may not reproduce or redistribute unprocessed/raw data portions of the data to any third party, or otherwise engage in the systematic retransmission or commercialization of the data.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Waste Rock", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Surface Flux Modelling", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Regulations", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Tailings", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Coal Characterisation", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "Underground", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| }, { | |
| "value" : "Treatment", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 6 | |
| }, { | |
| "value" : "Prediction", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 7 | |
| }, { | |
| "value" : "Assessment", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 8 | |
| }, { | |
| "value" : "Non-mining", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 9 | |
| }, { | |
| "value" : "Pit Lakes", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 10 | |
| }, { | |
| "value" : "Covers", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 11 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Rehabilitation of the Lake George Mine at Captains Flat NSW — 25 Years On", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_6501 http://purl.org/coar/version/c_970fb48d4fbd8a85", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:03.286+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e21ea01-c50d-4eef-91e7-c38768af0ae8/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e21ea01-c50d-4eef-91e7-c38768af0ae8/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e21ea01-c50d-4eef-91e7-c38768af0ae8/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e21ea01-c50d-4eef-91e7-c38768af0ae8/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e21ea01-c50d-4eef-91e7-c38768af0ae8/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e21ea01-c50d-4eef-91e7-c38768af0ae8/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e21ea01-c50d-4eef-91e7-c38768af0ae8/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e21ea01-c50d-4eef-91e7-c38768af0ae8/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e21ea01-c50d-4eef-91e7-c38768af0ae8/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e21ea01-c50d-4eef-91e7-c38768af0ae8" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "00a0294d-48f0-45ad-b04a-5ecd568d60ac", | |
| "uuid" : "00a0294d-48f0-45ad-b04a-5ecd568d60ac", | |
| "name" : "p200303003-dobos_A1b.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:03Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "p200303003-dobos_A1b.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5953, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "3fddfe0b7e2353dbe8de0f66ff27eb24" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/00a0294d-48f0-45ad-b04a-5ecd568d60ac/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/00a0294d-48f0-45ad-b04a-5ecd568d60ac/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/00a0294d-48f0-45ad-b04a-5ecd568d60ac/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/00a0294d-48f0-45ad-b04a-5ecd568d60ac/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/00a0294d-48f0-45ad-b04a-5ecd568d60ac" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e221ea0-30d8-4090-9b92-0e139d2fdcd7" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e221ea0-30d8-4090-9b92-0e139d2fdcd7", | |
| "uuid" : "7e221ea0-30d8-4090-9b92-0e139d2fdcd7", | |
| "name" : "Thermo Scientific, Genesys 20 Spectrophotometer, Back View", | |
| "handle" : "123456789/2958", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "University of Alberta, Department of Biological Sciences", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T01:39:14Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T01:39:14Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2018-01-01", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "This image is part of a series displaying key features of a Spectrophotometer. This image illustrates the Spectrophotometer from the back. This laboratory equipment is used in Introduction to Cell Biology: Biology 107 and MolecuLar Genetics and Heredity: Biology 207. This image was created as part of the University of Alberta OER image database project in Biological Sciences. Identifier 3001I.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-xvmr-nj49", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.relation" : [ { | |
| "value" : "https://era-av.library.ualberta.ca/media_objects/3x816n813 https://era-av.library.ualberta.ca/media_objects/3f4626366 https://era-av.library.ualberta.ca/media_objects/xp68kh312 https://era-av.library.ualberta.ca/media_objects/8w32r6672", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by/4.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Laboratory", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Spectrophotometer", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Equipment", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Thermo Scientific, Genesys 20 Spectrophotometer, Back View", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title.alternative" : [ { | |
| "value" : "Spectrophotometer - Back", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:04.611+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e221ea0-30d8-4090-9b92-0e139d2fdcd7/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e221ea0-30d8-4090-9b92-0e139d2fdcd7/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e221ea0-30d8-4090-9b92-0e139d2fdcd7/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e221ea0-30d8-4090-9b92-0e139d2fdcd7/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e221ea0-30d8-4090-9b92-0e139d2fdcd7/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e221ea0-30d8-4090-9b92-0e139d2fdcd7/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e221ea0-30d8-4090-9b92-0e139d2fdcd7/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e221ea0-30d8-4090-9b92-0e139d2fdcd7/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e221ea0-30d8-4090-9b92-0e139d2fdcd7/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e221ea0-30d8-4090-9b92-0e139d2fdcd7" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "2a86fde5-ef8d-46fd-b865-19b545f0b491", | |
| "uuid" : "2a86fde5-ef8d-46fd-b865-19b545f0b491", | |
| "name" : "SCI_2068.jpg.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:03:04Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "SCI_2068.jpg.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4817, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "556eaeb69dd58f649dfc6f63e516a9b0" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/2a86fde5-ef8d-46fd-b865-19b545f0b491/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/2a86fde5-ef8d-46fd-b865-19b545f0b491/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/2a86fde5-ef8d-46fd-b865-19b545f0b491/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/2a86fde5-ef8d-46fd-b865-19b545f0b491/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/2a86fde5-ef8d-46fd-b865-19b545f0b491" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2452dd-21f6-47bf-b24f-5ba2c02ff63e" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e2452dd-21f6-47bf-b24f-5ba2c02ff63e", | |
| "uuid" : "7e2452dd-21f6-47bf-b24f-5ba2c02ff63e", | |
| "name" : "Preserved Stonecat Specimen, Pectoral Fin Spine", | |
| "handle" : "123456789/3104", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "University of Alberta, Department of Biological Sciences", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T01:40:04Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T01:40:04Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2018", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "This is an image of the pectoral fin spine of a stonecat Specimen. This specimen is observed in Survey of Vertebrates, Zoology 224. This image was created as part of the University of Alberta OER image database project in Biological Sciences. Identifier 2083I.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-gvjw-a034", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by/4.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Noturus Flavus", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Pectoral Fin Spine", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Vertebrate", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Stonecat", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Animal", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "Fish", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Preserved Stonecat Specimen, Pectoral Fin Spine", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title.alternative" : [ { | |
| "value" : "Stonecat - Pectoral Fin Spine", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:06.774+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2452dd-21f6-47bf-b24f-5ba2c02ff63e/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2452dd-21f6-47bf-b24f-5ba2c02ff63e/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2452dd-21f6-47bf-b24f-5ba2c02ff63e/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2452dd-21f6-47bf-b24f-5ba2c02ff63e/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2452dd-21f6-47bf-b24f-5ba2c02ff63e/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2452dd-21f6-47bf-b24f-5ba2c02ff63e/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2452dd-21f6-47bf-b24f-5ba2c02ff63e/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2452dd-21f6-47bf-b24f-5ba2c02ff63e/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2452dd-21f6-47bf-b24f-5ba2c02ff63e/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2452dd-21f6-47bf-b24f-5ba2c02ff63e" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "7ae8e392-9f27-4e5c-844d-7981f2cd07a8", | |
| "uuid" : "7ae8e392-9f27-4e5c-844d-7981f2cd07a8", | |
| "name" : "SCI_1289.jpg.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:03:06Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "SCI_1289.jpg.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 2596, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "a6ea954ac804124c5799fff31771bf54" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7ae8e392-9f27-4e5c-844d-7981f2cd07a8/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7ae8e392-9f27-4e5c-844d-7981f2cd07a8/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7ae8e392-9f27-4e5c-844d-7981f2cd07a8/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7ae8e392-9f27-4e5c-844d-7981f2cd07a8/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7ae8e392-9f27-4e5c-844d-7981f2cd07a8" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e247d0f-9d24-4ca7-8d07-aa51b0b6e1d2" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e247d0f-9d24-4ca7-8d07-aa51b0b6e1d2", | |
| "uuid" : "7e247d0f-9d24-4ca7-8d07-aa51b0b6e1d2", | |
| "name" : "Algal ancestor of land plants was preadapted for symbiosis", | |
| "handle" : "123456789/16149", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Jayaraman, Dhileepkumar", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Zhang, Yong", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Radhakrishnan, Guru V", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Sederoff, Heike Winter", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Malbreil, Mathilde", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "Sekimoto, Hiroyuki", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| }, { | |
| "value" : "Surek, Barbara", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 6 | |
| }, { | |
| "value" : "Delaux, Pierre-Marc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 7 | |
| }, { | |
| "value" : "Ané, Jean-Michel", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 8 | |
| }, { | |
| "value" : "Roux, Christophe", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 9 | |
| }, { | |
| "value" : "Sussman, Michael R", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 10 | |
| }, { | |
| "value" : "Dunand, Christophe", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 11 | |
| }, { | |
| "value" : "Rothfels, Carl J", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 12 | |
| }, { | |
| "value" : "Oldroyd, Giles ED", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 13 | |
| }, { | |
| "value" : "Cheema, Jitender", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 14 | |
| }, { | |
| "value" : "Wong, Gane Ka-Shu", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 15 | |
| }, { | |
| "value" : "Stevenson, Dennis W", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 16 | |
| }, { | |
| "value" : "Melkonian, Michael", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 17 | |
| }, { | |
| "value" : "Pokorny, Lisa", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 18 | |
| }, { | |
| "value" : "Morris, Richard J", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 19 | |
| }, { | |
| "value" : "Nishiyama, Tomoaki", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 20 | |
| }, { | |
| "value" : "Volkening, Jeremy D", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 21 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T12:04:59Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T12:04:59Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2015/10/27", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3CN6Z123", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Copyright © 2015 National Academy of Sciences. Website by Boston Interactive", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Plant–microbe interactions", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Algae", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Plant evolution", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Phylogeny", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Symbiosis", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Algal ancestor of land plants was preadapted for symbiosis", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_6501 http://purl.org/coar/version/c_970fb48d4fbd8a85", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:07.138+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e247d0f-9d24-4ca7-8d07-aa51b0b6e1d2/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e247d0f-9d24-4ca7-8d07-aa51b0b6e1d2/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e247d0f-9d24-4ca7-8d07-aa51b0b6e1d2/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e247d0f-9d24-4ca7-8d07-aa51b0b6e1d2/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e247d0f-9d24-4ca7-8d07-aa51b0b6e1d2/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e247d0f-9d24-4ca7-8d07-aa51b0b6e1d2/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e247d0f-9d24-4ca7-8d07-aa51b0b6e1d2/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e247d0f-9d24-4ca7-8d07-aa51b0b6e1d2/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e247d0f-9d24-4ca7-8d07-aa51b0b6e1d2/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e247d0f-9d24-4ca7-8d07-aa51b0b6e1d2" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "c85b6de0-ebf5-4517-93c0-931cdcdd87fe", | |
| "uuid" : "c85b6de0-ebf5-4517-93c0-931cdcdd87fe", | |
| "name" : "Algal-20ancestor-20of-20land-20plants-20was-20preadapted-20for-20symbiosis.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:07Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Algal-20ancestor-20of-20land-20plants-20was-20preadapted-20for-20symbiosis.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 6970, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "8e962634b83b4458c4767f419afc2b44" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/c85b6de0-ebf5-4517-93c0-931cdcdd87fe/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/c85b6de0-ebf5-4517-93c0-931cdcdd87fe/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/c85b6de0-ebf5-4517-93c0-931cdcdd87fe/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/c85b6de0-ebf5-4517-93c0-931cdcdd87fe/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/c85b6de0-ebf5-4517-93c0-931cdcdd87fe" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e24f5e3-2cf3-47c8-9c3d-b0e795066fef" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e24f5e3-2cf3-47c8-9c3d-b0e795066fef", | |
| "uuid" : "7e24f5e3-2cf3-47c8-9c3d-b0e795066fef", | |
| "name" : "Current Index to Legal Periodicals, July 21, 2017", | |
| "handle" : "123456789/5998", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Marian Gould Gallagher Law Library", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T02:14:21Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T02:14:21Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2017/07/21", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3QZ22W7N", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Use of this product is restricted to members of the University of Alberta community and to users of the Library's physical facilities.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Law--United States--Periodicals--Indexes", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Law--Periodicals--Indexes", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Current Index to Legal Periodicals, July 21, 2017", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:07.562+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e24f5e3-2cf3-47c8-9c3d-b0e795066fef/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e24f5e3-2cf3-47c8-9c3d-b0e795066fef/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e24f5e3-2cf3-47c8-9c3d-b0e795066fef/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e24f5e3-2cf3-47c8-9c3d-b0e795066fef/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e24f5e3-2cf3-47c8-9c3d-b0e795066fef/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e24f5e3-2cf3-47c8-9c3d-b0e795066fef/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e24f5e3-2cf3-47c8-9c3d-b0e795066fef/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e24f5e3-2cf3-47c8-9c3d-b0e795066fef/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e24f5e3-2cf3-47c8-9c3d-b0e795066fef/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e24f5e3-2cf3-47c8-9c3d-b0e795066fef" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "150c5623-ba5d-4c55-a3a5-e5cd2c58cf48", | |
| "uuid" : "150c5623-ba5d-4c55-a3a5-e5cd2c58cf48", | |
| "name" : "cilp072117.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:07Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "cilp072117.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5361, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "7329d605775a2bf8516042c33abca2a3" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/150c5623-ba5d-4c55-a3a5-e5cd2c58cf48/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/150c5623-ba5d-4c55-a3a5-e5cd2c58cf48/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/150c5623-ba5d-4c55-a3a5-e5cd2c58cf48/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/150c5623-ba5d-4c55-a3a5-e5cd2c58cf48/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/150c5623-ba5d-4c55-a3a5-e5cd2c58cf48" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e25cf59-0338-4d83-8ab3-6a086752f150" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e25cf59-0338-4d83-8ab3-6a086752f150", | |
| "uuid" : "7e25cf59-0338-4d83-8ab3-6a086752f150", | |
| "name" : "Who speaks for the trees? Analyzing sources featured in Canadian environmental policy news stories", | |
| "handle" : "123456789/3665", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Krahn, Kendall", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "McMahon, Rob (Supervisor)", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T01:48:56Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T01:48:56Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2024-08-22", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "The literature on environmental sustainability in Canadian news media underscores a dynamic discourse shaped by evolving journalistic practices and a growing trend in ecological modernization. Because of mainstreaming effects and the corresponding inclination to partner ecology and economics, the very definition of ‘environmental sustainability’ presented in commercial news media discourse appears to be changing. What had been referred to as a more balanced approach to sustaining existing ecosystems and biological diversity with the needs of society appears now to be more heavily weighted towards a society that allows its institutions and economy to continue to operate without any additional environmental restrictions. In this context, this study was designed to scrutinize the sources featured in Canadian environmental policy coverage by mainstream commercial news media, using coverage of the federal government’s \"2030 Emissions Reduction Plan\" as a case study. Employing media institutional theory, gatekeeping, and agenda-building theory as analytical frameworks, the research explores how journalists select and represent sources, and the extent to which these choices influence news discourse. By analyzing articles from two national newspapers, The Globe and Mail and the National Post, this study will identify patterns in source usage and how they are being represented; offering insights into the interplay between media practices and environmental communication in Canada.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-r73d-9t43", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc/4.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Agenda-setting", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Environmental policy", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "News media", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Ecological modernization", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Content analysis", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Who speaks for the trees? Analyzing sources featured in Canadian environmental policy news stories", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:07.959+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e25cf59-0338-4d83-8ab3-6a086752f150/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e25cf59-0338-4d83-8ab3-6a086752f150/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e25cf59-0338-4d83-8ab3-6a086752f150/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e25cf59-0338-4d83-8ab3-6a086752f150/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e25cf59-0338-4d83-8ab3-6a086752f150/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e25cf59-0338-4d83-8ab3-6a086752f150/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e25cf59-0338-4d83-8ab3-6a086752f150/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e25cf59-0338-4d83-8ab3-6a086752f150/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e25cf59-0338-4d83-8ab3-6a086752f150/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e25cf59-0338-4d83-8ab3-6a086752f150" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "f6cd3467-ac3f-41dd-aebc-0829113a69d7", | |
| "uuid" : "f6cd3467-ac3f-41dd-aebc-0829113a69d7", | |
| "name" : "KrahnCapstone_082224 - Kendall Krahn.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:07Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "KrahnCapstone_082224 - Kendall Krahn.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 2664, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "99510b9d301ea92fdf7833bb41ccbaa6" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/f6cd3467-ac3f-41dd-aebc-0829113a69d7/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/f6cd3467-ac3f-41dd-aebc-0829113a69d7/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/f6cd3467-ac3f-41dd-aebc-0829113a69d7/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/f6cd3467-ac3f-41dd-aebc-0829113a69d7/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/f6cd3467-ac3f-41dd-aebc-0829113a69d7" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e27934a-5219-4f1e-aa00-3adb919804d2" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e27934a-5219-4f1e-aa00-3adb919804d2", | |
| "uuid" : "7e27934a-5219-4f1e-aa00-3adb919804d2", | |
| "name" : "University of the Arctic Council Meeting Report", | |
| "handle" : "123456789/4404", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Campbell, Sandy", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Russia, Arkhangelsk", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.coverage.temporal" : [ { | |
| "value" : "2007/06/4-9", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T01:56:35Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T01:56:35Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2007", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "This article is a report about the University of the Arctic Council Meeting, Arkhangelsk, Russia June 4-9, 2007 to the Polar Libraries Colloquy.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R37D2Q774", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.relation" : [ { | |
| "value" : "http://arcticcentre.ulapland.fi/polarweb/plc/pubs.asp", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.relation.isversionof" : [ { | |
| "value" : "Campbell, S. (2007). University of the Arctic Council Meeting Report, Polar Libraries Bulletin, 59 (Fall), 7-8.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc-nd/4.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "University of the Arctic Council Meeting, Arkhangelsk, Russia June 4-9, 2007", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "University of the Arctic Council Meeting Report", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_6501 http://purl.org/coar/version/c_970fb48d4fbd8a85", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:08.304+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e27934a-5219-4f1e-aa00-3adb919804d2/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e27934a-5219-4f1e-aa00-3adb919804d2/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e27934a-5219-4f1e-aa00-3adb919804d2/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e27934a-5219-4f1e-aa00-3adb919804d2/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e27934a-5219-4f1e-aa00-3adb919804d2/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e27934a-5219-4f1e-aa00-3adb919804d2/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e27934a-5219-4f1e-aa00-3adb919804d2/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e27934a-5219-4f1e-aa00-3adb919804d2/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e27934a-5219-4f1e-aa00-3adb919804d2/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e27934a-5219-4f1e-aa00-3adb919804d2" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "9bf1fdac-ff07-47a3-96aa-718137a59b8f", | |
| "uuid" : "9bf1fdac-ff07-47a3-96aa-718137a59b8f", | |
| "name" : "PLCBulletin-20report.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:08Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "PLCBulletin-20report.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5397, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "f45f35f79635f58e60e0adb8d77f3208" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9bf1fdac-ff07-47a3-96aa-718137a59b8f/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9bf1fdac-ff07-47a3-96aa-718137a59b8f/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9bf1fdac-ff07-47a3-96aa-718137a59b8f/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9bf1fdac-ff07-47a3-96aa-718137a59b8f/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9bf1fdac-ff07-47a3-96aa-718137a59b8f" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2873fd-00bf-480d-bd5e-28ff8baa60f2" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e2873fd-00bf-480d-bd5e-28ff8baa60f2", | |
| "uuid" : "7e2873fd-00bf-480d-bd5e-28ff8baa60f2", | |
| "name" : "Disc 48 Tory, 1-28, 10, 1 ventral", | |
| "handle" : "123456789/40625", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Jennifer Papineau", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T11:31:14Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T11:31:14Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2008-08-12", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-639c-sf57", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "flake", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "lithic debitage", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Disc 48 Tory, 1-28, 10, 1 ventral", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:12.116+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2873fd-00bf-480d-bd5e-28ff8baa60f2/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2873fd-00bf-480d-bd5e-28ff8baa60f2/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2873fd-00bf-480d-bd5e-28ff8baa60f2/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2873fd-00bf-480d-bd5e-28ff8baa60f2/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2873fd-00bf-480d-bd5e-28ff8baa60f2/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2873fd-00bf-480d-bd5e-28ff8baa60f2/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2873fd-00bf-480d-bd5e-28ff8baa60f2/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2873fd-00bf-480d-bd5e-28ff8baa60f2/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2873fd-00bf-480d-bd5e-28ff8baa60f2/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2873fd-00bf-480d-bd5e-28ff8baa60f2" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "9f3c67ea-acf6-4db9-a3f9-4ed29392f524", | |
| "uuid" : "9f3c67ea-acf6-4db9-a3f9-4ed29392f524", | |
| "name" : "1970-008-051_v_v 002.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:03:12Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1970-008-051_v_v 002.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3719, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "65a042fdeebff184f34cb7a904e8afc5" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9f3c67ea-acf6-4db9-a3f9-4ed29392f524/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9f3c67ea-acf6-4db9-a3f9-4ed29392f524/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9f3c67ea-acf6-4db9-a3f9-4ed29392f524/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9f3c67ea-acf6-4db9-a3f9-4ed29392f524/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9f3c67ea-acf6-4db9-a3f9-4ed29392f524" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a5c4e-989d-45be-8187-c8b3bee32a97" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e2a5c4e-989d-45be-8187-c8b3bee32a97", | |
| "uuid" : "7e2a5c4e-989d-45be-8187-c8b3bee32a97", | |
| "name" : "Parliament Now, September 10, 2010", | |
| "handle" : "123456789/23516", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Hill Times Publishing", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T17:50:18Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T17:50:18Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2010/09/10", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "Canada’s premier daily information service about Parliament and the federal government", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3W950R75", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This material can be used for non-commercial educational, research, teaching and personal uses, including use in scholarly publications as permitted under copyright legislation, and discussion or presentation of such research or publications at academic conferences.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Canada--Parliament--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Parliament Now, September 10, 2010", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-01T17:50:18.927+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a5c4e-989d-45be-8187-c8b3bee32a97/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a5c4e-989d-45be-8187-c8b3bee32a97/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a5c4e-989d-45be-8187-c8b3bee32a97/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a5c4e-989d-45be-8187-c8b3bee32a97/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a5c4e-989d-45be-8187-c8b3bee32a97/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a5c4e-989d-45be-8187-c8b3bee32a97/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a5c4e-989d-45be-8187-c8b3bee32a97/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a5c4e-989d-45be-8187-c8b3bee32a97/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a5c4e-989d-45be-8187-c8b3bee32a97/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a5c4e-989d-45be-8187-c8b3bee32a97" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : null, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a84da-c486-4678-9585-b2b79f51b9ad" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e2a84da-c486-4678-9585-b2b79f51b9ad", | |
| "uuid" : "7e2a84da-c486-4678-9585-b2b79f51b9ad", | |
| "name" : "Teacher at his desk - Nunavut [NWT]-614", | |
| "handle" : "123456789/22672", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Halpern, Joel Martin", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Canada--Nunavut [NWT]--Igloolik", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T16:52:15Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T16:52:15Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1981/05/29", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3R49G86R", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc/3.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Schools", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Teachers", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Teacher at his desk - Nunavut [NWT]-614", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:16.211+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a84da-c486-4678-9585-b2b79f51b9ad/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a84da-c486-4678-9585-b2b79f51b9ad/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a84da-c486-4678-9585-b2b79f51b9ad/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a84da-c486-4678-9585-b2b79f51b9ad/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a84da-c486-4678-9585-b2b79f51b9ad/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a84da-c486-4678-9585-b2b79f51b9ad/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a84da-c486-4678-9585-b2b79f51b9ad/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a84da-c486-4678-9585-b2b79f51b9ad/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a84da-c486-4678-9585-b2b79f51b9ad/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2a84da-c486-4678-9585-b2b79f51b9ad" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "7baa0b44-e2f1-4f99-a949-e2ef657bf89b", | |
| "uuid" : "7baa0b44-e2f1-4f99-a949-e2ef657bf89b", | |
| "name" : "77_085a.jpg.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:03:16Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "77_085a.jpg.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3928, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "7346e8bc2c6dc71e30bba53d47771ce2" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7baa0b44-e2f1-4f99-a949-e2ef657bf89b/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7baa0b44-e2f1-4f99-a949-e2ef657bf89b/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7baa0b44-e2f1-4f99-a949-e2ef657bf89b/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7baa0b44-e2f1-4f99-a949-e2ef657bf89b/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7baa0b44-e2f1-4f99-a949-e2ef657bf89b" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ad683-80dd-44aa-b897-12ac62e04221" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e2ad683-80dd-44aa-b897-12ac62e04221", | |
| "uuid" : "7e2ad683-80dd-44aa-b897-12ac62e04221", | |
| "name" : "Ventral view of a flake", | |
| "handle" : "123456789/47411", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Ward, Meghan", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Bryan, Alan L., Dr.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Andes", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Ecuador", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-03T02:50:01Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-03T02:50:01Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1970", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3Z60C54B", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Flake", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Lithic debitage", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Ventral view of a flake", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:20.038+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ad683-80dd-44aa-b897-12ac62e04221/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ad683-80dd-44aa-b897-12ac62e04221/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ad683-80dd-44aa-b897-12ac62e04221/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ad683-80dd-44aa-b897-12ac62e04221/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ad683-80dd-44aa-b897-12ac62e04221/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ad683-80dd-44aa-b897-12ac62e04221/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ad683-80dd-44aa-b897-12ac62e04221/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ad683-80dd-44aa-b897-12ac62e04221/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ad683-80dd-44aa-b897-12ac62e04221/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ad683-80dd-44aa-b897-12ac62e04221" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "40fe78ad-dd18-47e1-826b-4f444cd957a8", | |
| "uuid" : "40fe78ad-dd18-47e1-826b-4f444cd957a8", | |
| "name" : "1970-100-030_v_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:03:20Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1970-100-030_v_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5141, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "c475d54f9f9a3e897d6097cd98f2cb0c" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/40fe78ad-dd18-47e1-826b-4f444cd957a8/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/40fe78ad-dd18-47e1-826b-4f444cd957a8/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/40fe78ad-dd18-47e1-826b-4f444cd957a8/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/40fe78ad-dd18-47e1-826b-4f444cd957a8/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/40fe78ad-dd18-47e1-826b-4f444cd957a8" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2bc06e-dbc3-4b7e-958e-7fb28c5a0f4c" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e2bc06e-dbc3-4b7e-958e-7fb28c5a0f4c", | |
| "uuid" : "7e2bc06e-dbc3-4b7e-958e-7fb28c5a0f4c", | |
| "name" : "Cultural difference and teaching ESL students: a school based action research project", | |
| "handle" : "123456789/58976", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Leard, Diane Jean Wishart.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-06T15:45:09Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-06T15:45:09Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1999", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3XW48527", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This thesis is made available by the University of Alberta Libraries with permission of the copyright owner solely for non-commercial purposes. This thesis, or any portion thereof, may not otherwise be copied or reproduced without the written consent of the copyright owner, except to the extent permitted by Canadian copyright law.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "English language--Study and teaching--Foreign speakers--Alberta--Edmonton", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Multicultural education--Alberta--Edmonton", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Children of immigrants--Education--Alberta--Edmonton", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Cultural difference and teaching ESL students: a school based action research project", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title.alternative" : [ { | |
| "value" : "School based action research project.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_46ec", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.grantor" : [ { | |
| "value" : "http://id.loc.gov/authorities/names/n79058482", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.level" : [ { | |
| "value" : "Master's", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.name" : [ { | |
| "value" : "Master of Education in International/Intercultural Education", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.date.graduation" : [ { | |
| "value" : "1999", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.department" : [ { | |
| "value" : "Department of Educational Policy Studies", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-08T07:12:52.753+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2bc06e-dbc3-4b7e-958e-7fb28c5a0f4c/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2bc06e-dbc3-4b7e-958e-7fb28c5a0f4c/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2bc06e-dbc3-4b7e-958e-7fb28c5a0f4c/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2bc06e-dbc3-4b7e-958e-7fb28c5a0f4c/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2bc06e-dbc3-4b7e-958e-7fb28c5a0f4c/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2bc06e-dbc3-4b7e-958e-7fb28c5a0f4c/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2bc06e-dbc3-4b7e-958e-7fb28c5a0f4c/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2bc06e-dbc3-4b7e-958e-7fb28c5a0f4c/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2bc06e-dbc3-4b7e-958e-7fb28c5a0f4c/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2bc06e-dbc3-4b7e-958e-7fb28c5a0f4c" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "74c2af4a-9fd3-4045-9026-878f6ea47e38", | |
| "uuid" : "74c2af4a-9fd3-4045-9026-878f6ea47e38", | |
| "name" : "MQ47140.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-08T07:12:52Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "MQ47140.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5424, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "a6db23297cbf8c553bb6db65fa41203f" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/74c2af4a-9fd3-4045-9026-878f6ea47e38/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/74c2af4a-9fd3-4045-9026-878f6ea47e38/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/74c2af4a-9fd3-4045-9026-878f6ea47e38/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/74c2af4a-9fd3-4045-9026-878f6ea47e38/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/74c2af4a-9fd3-4045-9026-878f6ea47e38" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c2d06-74da-4596-9536-fb481da90e04" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e2c2d06-74da-4596-9536-fb481da90e04", | |
| "uuid" : "7e2c2d06-74da-4596-9536-fb481da90e04", | |
| "name" : "Investigating Boreal Songbird Communities Amid Variable Retention Harvesting in Deciduous and Mixedwood Forests", | |
| "handle" : "123456789/30459", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Kublik, Jocelyn", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Turgeon, Michelle", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Peters, Leah", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T21:05:43Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T21:05:43Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2024-04-18", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-sxvv-5k56", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc/4.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Songbird Communities", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Diversity", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Tree Harvesting Techniques", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Investigating Boreal Songbird Communities Amid Variable Retention Harvesting in Deciduous and Mixedwood Forests", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/R60J-J5BD", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:23.839+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c2d06-74da-4596-9536-fb481da90e04/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c2d06-74da-4596-9536-fb481da90e04/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c2d06-74da-4596-9536-fb481da90e04/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c2d06-74da-4596-9536-fb481da90e04/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c2d06-74da-4596-9536-fb481da90e04/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c2d06-74da-4596-9536-fb481da90e04/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c2d06-74da-4596-9536-fb481da90e04/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c2d06-74da-4596-9536-fb481da90e04/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c2d06-74da-4596-9536-fb481da90e04/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c2d06-74da-4596-9536-fb481da90e04" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "76967802-76cc-40b9-ae75-0e3c274d665b", | |
| "uuid" : "76967802-76cc-40b9-ae75-0e3c274d665b", | |
| "name" : "SAC Poster - AUBIO 315 (1).pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:23Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "SAC Poster - AUBIO 315 (1).pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 8153, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "b97f4f886fd916b0a086c5e8d03c3b5e" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/76967802-76cc-40b9-ae75-0e3c274d665b/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/76967802-76cc-40b9-ae75-0e3c274d665b/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/76967802-76cc-40b9-ae75-0e3c274d665b/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/76967802-76cc-40b9-ae75-0e3c274d665b/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/76967802-76cc-40b9-ae75-0e3c274d665b" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c80a3-3157-4af6-ae06-ff92062c2288" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e2c80a3-3157-4af6-ae06-ff92062c2288", | |
| "uuid" : "7e2c80a3-3157-4af6-ae06-ff92062c2288", | |
| "name" : "Sediment intrusion and deposition near road crossings in small foothill streams in west central Alberta", | |
| "handle" : "123456789/62607", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Spillios, Liane C.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-06T18:54:31Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-06T18:54:31Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1999", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3HT2GG6H", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This thesis is made available by the University of Alberta Libraries with permission of the copyright owner solely for non-commercial purposes. This thesis, or any portion thereof, may not otherwise be copied or reproduced without the written consent of the copyright owner, except to the extent permitted by Canadian copyright law.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Sedimentation and deposition--Alberta", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Suspended sediments--Alberta", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Stream conservation--Alberta", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Fishes--Effect of sediments on", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Sediment transport--Alberta", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Sediment intrusion and deposition near road crossings in small foothill streams in west central Alberta", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_46ec", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.grantor" : [ { | |
| "value" : "http://id.loc.gov/authorities/names/n79058482", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.level" : [ { | |
| "value" : "Master's", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.name" : [ { | |
| "value" : "Master of Science", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.date.graduation" : [ { | |
| "value" : "1999", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.department" : [ { | |
| "value" : "Department of Renewable Resources", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:24.737+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c80a3-3157-4af6-ae06-ff92062c2288/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c80a3-3157-4af6-ae06-ff92062c2288/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c80a3-3157-4af6-ae06-ff92062c2288/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c80a3-3157-4af6-ae06-ff92062c2288/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c80a3-3157-4af6-ae06-ff92062c2288/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c80a3-3157-4af6-ae06-ff92062c2288/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c80a3-3157-4af6-ae06-ff92062c2288/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c80a3-3157-4af6-ae06-ff92062c2288/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c80a3-3157-4af6-ae06-ff92062c2288/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2c80a3-3157-4af6-ae06-ff92062c2288" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "ad809692-8744-42ce-ad34-a94adfb2fcde", | |
| "uuid" : "ad809692-8744-42ce-ad34-a94adfb2fcde", | |
| "name" : "MQ47101.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:24Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "MQ47101.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5424, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "92ca5b3e7dcda9b016c08168c3f19127" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/ad809692-8744-42ce-ad34-a94adfb2fcde/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/ad809692-8744-42ce-ad34-a94adfb2fcde/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/ad809692-8744-42ce-ad34-a94adfb2fcde/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/ad809692-8744-42ce-ad34-a94adfb2fcde/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/ad809692-8744-42ce-ad34-a94adfb2fcde" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2d3bfc-6349-4619-ba90-36d2208e7094" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e2d3bfc-6349-4619-ba90-36d2208e7094", | |
| "uuid" : "7e2d3bfc-6349-4619-ba90-36d2208e7094", | |
| "name" : "Daily Record, Friday, June 25, 2010", | |
| "handle" : "123456789/8302", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Toronto Stock Exchange", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T02:53:28Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T02:53:28Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2010/06/25", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3P843W1Q", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Use of this product is restricted to current faculty, staff, and students of the University. It is the responsibility of each user to ensure that he or she uses this product for individual, non-commercial educational or research purposes only, and does not systematically download or retain substantial portions of information. Users may not reproduce or redistribute unprocessed/raw data portions of the data to any third party, or otherwise engage in the systematic retransmission or commercialization of the data.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Toronto stock exchange--periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Stock exchanges--canada--tables--periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Daily Record, Friday, June 25, 2010", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:25.143+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2d3bfc-6349-4619-ba90-36d2208e7094/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2d3bfc-6349-4619-ba90-36d2208e7094/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2d3bfc-6349-4619-ba90-36d2208e7094/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2d3bfc-6349-4619-ba90-36d2208e7094/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2d3bfc-6349-4619-ba90-36d2208e7094/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2d3bfc-6349-4619-ba90-36d2208e7094/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2d3bfc-6349-4619-ba90-36d2208e7094/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2d3bfc-6349-4619-ba90-36d2208e7094/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2d3bfc-6349-4619-ba90-36d2208e7094/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2d3bfc-6349-4619-ba90-36d2208e7094" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "e6062ab7-a3a4-47f3-b786-9ea32c28b976", | |
| "uuid" : "e6062ab7-a3a4-47f3-b786-9ea32c28b976", | |
| "name" : "20100625DailyRecordNon-Pro.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:25Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "20100625DailyRecordNon-Pro.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 6392, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "05563d37567e8a0ddd856af89b194ac3" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/e6062ab7-a3a4-47f3-b786-9ea32c28b976/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/e6062ab7-a3a4-47f3-b786-9ea32c28b976/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/e6062ab7-a3a4-47f3-b786-9ea32c28b976/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/e6062ab7-a3a4-47f3-b786-9ea32c28b976/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/e6062ab7-a3a4-47f3-b786-9ea32c28b976" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e31b6-eb57-44a1-977a-b6d5ae0e555e" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e2e31b6-eb57-44a1-977a-b6d5ae0e555e", | |
| "uuid" : "7e2e31b6-eb57-44a1-977a-b6d5ae0e555e", | |
| "name" : "Parliament Now, September 24, 2010", | |
| "handle" : "123456789/25699", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Hill Times Publishing", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T18:39:18Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T18:39:18Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2010/09/24", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "Canada’s premier daily information service about Parliament and the federal government", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R34J0B13N", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This material can be used for non-commercial educational, research, teaching and personal uses, including use in scholarly publications as permitted under copyright legislation, and discussion or presentation of such research or publications at academic conferences.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Canada--Parliament--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Parliament Now, September 24, 2010", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-01T18:39:19.218+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e31b6-eb57-44a1-977a-b6d5ae0e555e/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e31b6-eb57-44a1-977a-b6d5ae0e555e/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e31b6-eb57-44a1-977a-b6d5ae0e555e/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e31b6-eb57-44a1-977a-b6d5ae0e555e/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e31b6-eb57-44a1-977a-b6d5ae0e555e/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e31b6-eb57-44a1-977a-b6d5ae0e555e/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e31b6-eb57-44a1-977a-b6d5ae0e555e/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e31b6-eb57-44a1-977a-b6d5ae0e555e/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e31b6-eb57-44a1-977a-b6d5ae0e555e/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e31b6-eb57-44a1-977a-b6d5ae0e555e" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : null, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e7bf4-cbd2-4a89-9705-75713b64ee12" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e2e7bf4-cbd2-4a89-9705-75713b64ee12", | |
| "uuid" : "7e2e7bf4-cbd2-4a89-9705-75713b64ee12", | |
| "name" : "Task force on public assistance food allowance", | |
| "handle" : "123456789/12906", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Edmonton Social Planning Council", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Canada, Alberta", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T11:32:09Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T11:32:09Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1973/06", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3NP2D", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc-nd/3.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Food security", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Public welfare--Government policy", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Cost and standard of living", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Food relief", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Task force on public assistance food allowance", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:25.748+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e7bf4-cbd2-4a89-9705-75713b64ee12/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e7bf4-cbd2-4a89-9705-75713b64ee12/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e7bf4-cbd2-4a89-9705-75713b64ee12/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e7bf4-cbd2-4a89-9705-75713b64ee12/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e7bf4-cbd2-4a89-9705-75713b64ee12/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e7bf4-cbd2-4a89-9705-75713b64ee12/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e7bf4-cbd2-4a89-9705-75713b64ee12/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e7bf4-cbd2-4a89-9705-75713b64ee12/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e7bf4-cbd2-4a89-9705-75713b64ee12/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2e7bf4-cbd2-4a89-9705-75713b64ee12" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "852aa165-578e-470c-bf01-ca7007074ed3", | |
| "uuid" : "852aa165-578e-470c-bf01-ca7007074ed3", | |
| "name" : "1973_foodallowance.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:25Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1973_foodallowance.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5502, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "f0b827f29f28739e722444ad3904b68a" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/852aa165-578e-470c-bf01-ca7007074ed3/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/852aa165-578e-470c-bf01-ca7007074ed3/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/852aa165-578e-470c-bf01-ca7007074ed3/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/852aa165-578e-470c-bf01-ca7007074ed3/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/852aa165-578e-470c-bf01-ca7007074ed3" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ee6f6-7838-4aac-a225-a30be3c897ea" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e2ee6f6-7838-4aac-a225-a30be3c897ea", | |
| "uuid" : "7e2ee6f6-7838-4aac-a225-a30be3c897ea", | |
| "name" : "Abstract right, reason, and the state in Hegel's philosophy of right", | |
| "handle" : "123456789/61821", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Czank, James Mathew", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-06T17:52:17Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-06T17:52:17Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2005-06", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-e9y3-fn39", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This thesis is made available by the University of Alberta Libraries with permission of the copyright owner solely for the purpose of private, scholarly or scientific research. This thesis, or any portion thereof, may not otherwise be copied or reproduced without the written consent of the copyright owner, except to the extent permitted by Canadian copyright law.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Hegel, Georg Wilhelm Friedrich, 1770-1831. Grundlinien der Philosophie des Rechts.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Hegel, Georg Wilhelm Friedrich, 1770-1831.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Human rights. Philosophy.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Liberalism.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Abstract right, reason, and the state in Hegel's philosophy of right", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_46ec", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.grantor" : [ { | |
| "value" : "http://id.loc.gov/authorities/names/n79058482", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.level" : [ { | |
| "value" : "Master's", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.name" : [ { | |
| "value" : "Master of Arts", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.date.graduation" : [ { | |
| "value" : "Spring 2005", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.department" : [ { | |
| "value" : "Department of Philosophy", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:26.614+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ee6f6-7838-4aac-a225-a30be3c897ea/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ee6f6-7838-4aac-a225-a30be3c897ea/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ee6f6-7838-4aac-a225-a30be3c897ea/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ee6f6-7838-4aac-a225-a30be3c897ea/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ee6f6-7838-4aac-a225-a30be3c897ea/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ee6f6-7838-4aac-a225-a30be3c897ea/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ee6f6-7838-4aac-a225-a30be3c897ea/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ee6f6-7838-4aac-a225-a30be3c897ea/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ee6f6-7838-4aac-a225-a30be3c897ea/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e2ee6f6-7838-4aac-a225-a30be3c897ea" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "6ee593b3-9404-49a6-98cd-0a33da25eba5", | |
| "uuid" : "6ee593b3-9404-49a6-98cd-0a33da25eba5", | |
| "name" : "MR07980.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:26Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "MR07980.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4408, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "18db8df946de9f5daddcc5d7042d6799" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6ee593b3-9404-49a6-98cd-0a33da25eba5/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6ee593b3-9404-49a6-98cd-0a33da25eba5/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6ee593b3-9404-49a6-98cd-0a33da25eba5/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6ee593b3-9404-49a6-98cd-0a33da25eba5/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6ee593b3-9404-49a6-98cd-0a33da25eba5" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e30bc74-add3-484a-9261-051eed74b73e" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e30bc74-add3-484a-9261-051eed74b73e", | |
| "uuid" : "7e30bc74-add3-484a-9261-051eed74b73e", | |
| "name" : "Current Index to Legal Periodicals, August 23, 2019", | |
| "handle" : "123456789/5963", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Marian Gould Gallagher Law Library", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T02:14:07Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T02:14:07Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2019-08-23", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-r73s-rx45", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Use of this product is restricted to members of the University of Alberta community and to users of the Library's physical facilities.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Law--Periodicals--Indexes", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Law--United States--Periodicals--Indexes", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Current Index to Legal Periodicals, August 23, 2019", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:27.131+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e30bc74-add3-484a-9261-051eed74b73e/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e30bc74-add3-484a-9261-051eed74b73e/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e30bc74-add3-484a-9261-051eed74b73e/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e30bc74-add3-484a-9261-051eed74b73e/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e30bc74-add3-484a-9261-051eed74b73e/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e30bc74-add3-484a-9261-051eed74b73e/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e30bc74-add3-484a-9261-051eed74b73e/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e30bc74-add3-484a-9261-051eed74b73e/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e30bc74-add3-484a-9261-051eed74b73e/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e30bc74-add3-484a-9261-051eed74b73e" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "642935ee-50b0-4f03-b5c0-6de98c945bfd", | |
| "uuid" : "642935ee-50b0-4f03-b5c0-6de98c945bfd", | |
| "name" : "cilp082319.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:27Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "cilp082319.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5332, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "36cf54952dba294fe7e524b9d0c4ff54" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/642935ee-50b0-4f03-b5c0-6de98c945bfd/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/642935ee-50b0-4f03-b5c0-6de98c945bfd/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/642935ee-50b0-4f03-b5c0-6de98c945bfd/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/642935ee-50b0-4f03-b5c0-6de98c945bfd/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/642935ee-50b0-4f03-b5c0-6de98c945bfd" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3119cd-aa51-48ee-95ec-34153527bdb3" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e3119cd-aa51-48ee-95ec-34153527bdb3", | |
| "uuid" : "7e3119cd-aa51-48ee-95ec-34153527bdb3", | |
| "name" : "The Hill Times, Monday, October 18, 2004", | |
| "handle" : "123456789/31666", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Hill Times Publishing", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T21:17:38Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T21:17:38Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2004/10/18", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "The newspaper of Parliament", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3NS0KX57", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This material can be used for non-commercial educational, research, teaching and personal uses, including use in scholarly publications as permitted under copyright legislation, and discussion or presentation of such research or publications at academic conferences.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Canada--politics and government--periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Canada--Parliament--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "The Hill Times, Monday, October 18, 2004", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:27.740+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3119cd-aa51-48ee-95ec-34153527bdb3/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3119cd-aa51-48ee-95ec-34153527bdb3/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3119cd-aa51-48ee-95ec-34153527bdb3/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3119cd-aa51-48ee-95ec-34153527bdb3/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3119cd-aa51-48ee-95ec-34153527bdb3/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3119cd-aa51-48ee-95ec-34153527bdb3/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3119cd-aa51-48ee-95ec-34153527bdb3/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3119cd-aa51-48ee-95ec-34153527bdb3/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3119cd-aa51-48ee-95ec-34153527bdb3/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3119cd-aa51-48ee-95ec-34153527bdb3" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "7a28deac-06ff-4f60-86a5-7ca81c62e92c", | |
| "uuid" : "7a28deac-06ff-4f60-86a5-7ca81c62e92c", | |
| "name" : "101804_ht.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:27Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "101804_ht.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 9274, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "612caca3a6e7547afb1153fbd39504a6" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7a28deac-06ff-4f60-86a5-7ca81c62e92c/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7a28deac-06ff-4f60-86a5-7ca81c62e92c/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7a28deac-06ff-4f60-86a5-7ca81c62e92c/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7a28deac-06ff-4f60-86a5-7ca81c62e92c/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7a28deac-06ff-4f60-86a5-7ca81c62e92c" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32519c-ebe5-48dc-b010-70fcd5a56fe3" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e32519c-ebe5-48dc-b010-70fcd5a56fe3", | |
| "uuid" : "7e32519c-ebe5-48dc-b010-70fcd5a56fe3", | |
| "name" : "View of children in line - Nunavut (NWT)-1684", | |
| "handle" : "123456789/22018", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Halpern, Joel Martin", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Canada--Nunavut (NWT)-- [Arviat [Eskimo Point]]", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T16:34:44Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T16:34:44Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1983/08/01", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3WP9T88M", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc/3.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Schools", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "School children", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Group portraits", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "View of children in line - Nunavut (NWT)-1684", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:27.982+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32519c-ebe5-48dc-b010-70fcd5a56fe3/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32519c-ebe5-48dc-b010-70fcd5a56fe3/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32519c-ebe5-48dc-b010-70fcd5a56fe3/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32519c-ebe5-48dc-b010-70fcd5a56fe3/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32519c-ebe5-48dc-b010-70fcd5a56fe3/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32519c-ebe5-48dc-b010-70fcd5a56fe3/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32519c-ebe5-48dc-b010-70fcd5a56fe3/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32519c-ebe5-48dc-b010-70fcd5a56fe3/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32519c-ebe5-48dc-b010-70fcd5a56fe3/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32519c-ebe5-48dc-b010-70fcd5a56fe3" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "8ea776d0-e4d7-4807-87cc-b1f577cee46f", | |
| "uuid" : "8ea776d0-e4d7-4807-87cc-b1f577cee46f", | |
| "name" : "88_042c.jpg.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:03:27Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "88_042c.jpg.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 6772, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "5678d42b2210bf4dde81d677c70f4f63" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/8ea776d0-e4d7-4807-87cc-b1f577cee46f/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/8ea776d0-e4d7-4807-87cc-b1f577cee46f/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/8ea776d0-e4d7-4807-87cc-b1f577cee46f/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/8ea776d0-e4d7-4807-87cc-b1f577cee46f/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/8ea776d0-e4d7-4807-87cc-b1f577cee46f" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32dd11-3549-4ffc-a0d0-0d8a7cb03287" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e32dd11-3549-4ffc-a0d0-0d8a7cb03287", | |
| "uuid" : "7e32dd11-3549-4ffc-a0d0-0d8a7cb03287", | |
| "name" : "Evaluation of uncertainty in the life cycle assessment of well-to-tank and combustion greenhouse gas emissions of various transportation fuels", | |
| "handle" : "123456789/17857", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Di Lullo, Giovanni", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Zhang, Hao", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Kumar, Amit", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T12:23:20Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T12:23:20Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2016-01-01", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "Growing concern over climate change has created pressure on the oil and gas industry to reduce their greenhouse gas emissions (GHG). There have been multiple well-to-tank + combustion (WTT+C) studies that have examined various crude oils in an attempt to determine their GHG emission intensities. The majority of these studies published deterministic point estimates with a limited sensitivity analysis. Due to the variation in results between studies and the lack of uncertainty analysis the usefulness of these studies to policy makers and industry representatives is limited. The goal of this study is to expand on the previous literature by identifying a range of WTT+C emissions for crude oils from Saudi Arabia, Venezuela, and Iran. First, the previously published FUNdamental ENgineering PrinciplEs-based ModeL for Estimation of GreenHouse Gases in Conventional Crude Oils (FUNNEL-GHG-CCO) was used to perform a WTT+C analysis of the crudes GHG emissions. Then a Monte Carlo simulation was carried out using existing literature to define input distributions for the key inputs. The resulting gasoline WTT+C GHG emission ranges are 113.6-138.5 (Venezuela High Steam), 101.6-109.9 (Venezuela Low Steam), 101.1-109.2 (Sirri, Iran), and 95.3-99.9 gCO2eq/MJ (Saudi Arabia). This result indicates that even when uncertainty is taken into account the Venezuelan high steam crude clearly has higher emissions than the Saudi Arabia crude. The results of this study will give policy makers and industry representatives a better understanding of how the WTT+C GHG emissions vary between various crude oils.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-ycr2-b948", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.relation" : [ { | |
| "value" : "https://doi.org/10.1016/j.apenergy.2016.10.027", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.relation.isversionof" : [ { | |
| "value" : "Di Lullo, Giovanni, Zhang, Hao, & Kumar, Amit (2016). Evaluation of uncertainty in the life cycle assessment of well-to-tank and combustion greenhouse gas emissions of various transportation fuels. Applied Energy, 184, 413-426. https://doi.org/10.1016/j.apenergy.2016.10.027", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc-nd/4.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Monte Carlo Simulation", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Conventional Crude", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Transportation Fuel", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "GHG Emissions", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Life Cycle Assessment", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "Uncertainty Analysis", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Evaluation of uncertainty in the life cycle assessment of well-to-tank and combustion greenhouse gas emissions of various transportation fuels", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_6501 http://purl.org/coar/version/c_b1a7d7d4d402bcce http://purl.org/coar/version/c_71e4c1898caa6e32", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:28.507+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32dd11-3549-4ffc-a0d0-0d8a7cb03287/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32dd11-3549-4ffc-a0d0-0d8a7cb03287/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32dd11-3549-4ffc-a0d0-0d8a7cb03287/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32dd11-3549-4ffc-a0d0-0d8a7cb03287/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32dd11-3549-4ffc-a0d0-0d8a7cb03287/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32dd11-3549-4ffc-a0d0-0d8a7cb03287/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32dd11-3549-4ffc-a0d0-0d8a7cb03287/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32dd11-3549-4ffc-a0d0-0d8a7cb03287/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32dd11-3549-4ffc-a0d0-0d8a7cb03287/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e32dd11-3549-4ffc-a0d0-0d8a7cb03287" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "ebcc8bb7-3bdf-4ffc-8830-d92ca4caa2bf", | |
| "uuid" : "ebcc8bb7-3bdf-4ffc-8830-d92ca4caa2bf", | |
| "name" : "AE_184_413.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:28Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "AE_184_413.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4793, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "250f99771eb2c19cd4477928b4e8cb02" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/ebcc8bb7-3bdf-4ffc-8830-d92ca4caa2bf/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/ebcc8bb7-3bdf-4ffc-8830-d92ca4caa2bf/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/ebcc8bb7-3bdf-4ffc-8830-d92ca4caa2bf/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/ebcc8bb7-3bdf-4ffc-8830-d92ca4caa2bf/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/ebcc8bb7-3bdf-4ffc-8830-d92ca4caa2bf" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e34061e-3583-4691-9e0e-b557104550cd" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e34061e-3583-4691-9e0e-b557104550cd", | |
| "uuid" : "7e34061e-3583-4691-9e0e-b557104550cd", | |
| "name" : "The Function of Aesthetics in Art Therapy: How Art Therapists Perceive the Role of Aesthetics in Art Therapy Interventions with Adolescents and Young Adults", | |
| "handle" : "123456789/11761", | |
| "metadata" : { | |
| "dc.contributor.advisor" : [ { | |
| "value" : "Gardner, Leslie", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.author" : [ { | |
| "value" : "Moerkerk, Remy", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Muggeridge, Marie", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T11:14:23Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T11:14:23Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2022", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description.abstract" : [ { | |
| "value" : "This research was fuelled by observations of aesthetic subscriptions in adolescents and young adults. Combining a curiosity with this phenomenon with graduate studies, an intrigue developed considering the nuanced differences between how each of these sectors define, utilize, and approach aesthetics within their respective applications. Using Interpretative Phenomenological Analysis, the assistance of three co-researchers was enlisted, who are practicing art therapists or art therapy practicum students, to discover how the topic of aesthetics with adolescents and young adults is understood and the role in which aesthetics is observed to have in meaning-making, spirituality, and identity formation. Through semi-structured interviews conducted with the co-researchers, data was obtained that indicates three predominant themes of Belonging, Image, and Hopelessness as relevant to aesthetic subscription in the perceptions of art therapists. Sub-themes were also identified relating to purpose, spirituality, expression, recreation, the internet, and worries for the future. Aesthetics was viewed by each co-researcher in a different light following the interviews, and an increased understanding into the motivations, drives, characteristics, and identities of their adolescent and young adult clients resulted from their participation. In the analysis of the data, it was determined that an understanding of the aesthetics of adolescents and young adults has become increasingly important in the provision of art therapy as it is an extension of whole-person care relating to the spokes of spirituality, as well as social, cognitive, physical, and emotional needs. The research suggests that this growing phenomena of claimed aesthetic identities will meld the perceptions of process and product within art therapy theoretical foundations, and that in order to provide adequate therapeutic care to adolescents and young adults increased understanding and awareness is essential.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-c4f1-9p10", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This thesis is made available by the University of Alberta Libraries with permission of the copyright owner solely for non-commercial purposes. This thesis, or any portion thereof, may not otherwise be copied or reproduced without the written consent of the copyright owner, except to the extent permitted by Canadian copyright law.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "aesthetics", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "art therapy", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "spirituality", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "psychology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "adolescents", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "young adults", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "The Function of Aesthetics in Art Therapy: How Art Therapists Perceive the Role of Aesthetics in Art Therapy Interventions with Adolescents and Young Adults", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_46ec", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.discipline" : [ { | |
| "value" : "Art Therapy", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.grantor" : [ { | |
| "value" : "http://id.loc.gov/authorities/names/n2009054054", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.level" : [ { | |
| "value" : "Master", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.name" : [ { | |
| "value" : "Master of Psychotherapy and Spirituality", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.date.graduation" : [ { | |
| "value" : "2022", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.department" : [ { | |
| "value" : "Department of Psychotherapy and Spirituality", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:29.109+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e34061e-3583-4691-9e0e-b557104550cd/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e34061e-3583-4691-9e0e-b557104550cd/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e34061e-3583-4691-9e0e-b557104550cd/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e34061e-3583-4691-9e0e-b557104550cd/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e34061e-3583-4691-9e0e-b557104550cd/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e34061e-3583-4691-9e0e-b557104550cd/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e34061e-3583-4691-9e0e-b557104550cd/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e34061e-3583-4691-9e0e-b557104550cd/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e34061e-3583-4691-9e0e-b557104550cd/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e34061e-3583-4691-9e0e-b557104550cd" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "9c91ab94-e364-4eaa-abd3-b74dac7e1617", | |
| "uuid" : "9c91ab94-e364-4eaa-abd3-b74dac7e1617", | |
| "name" : "Moerkerk_Remy_2022_MPS-AT.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:29Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Moerkerk_Remy_2022_MPS-AT.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 2761, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "6f77d59ee2c69bf4c00c0b370d63d297" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9c91ab94-e364-4eaa-abd3-b74dac7e1617/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9c91ab94-e364-4eaa-abd3-b74dac7e1617/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9c91ab94-e364-4eaa-abd3-b74dac7e1617/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9c91ab94-e364-4eaa-abd3-b74dac7e1617/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9c91ab94-e364-4eaa-abd3-b74dac7e1617" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e357c1e-f2c0-4acb-83ae-57f76457f4fd" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e357c1e-f2c0-4acb-83ae-57f76457f4fd", | |
| "uuid" : "7e357c1e-f2c0-4acb-83ae-57f76457f4fd", | |
| "name" : "Influence of lipids (arachidonic acid and cholesterol) on calcium signalling in rodent pancreatic beta cells", | |
| "handle" : "123456789/61771", | |
| "metadata" : { | |
| "dc.contributor.advisor" : [ { | |
| "value" : "Tse, Amy (Centre for Neuroscience and Department of Pharmacology)", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.author" : [ { | |
| "value" : "Yeung-Yam-Wah, Valerie", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Braun, Andrew P. (Department of Physiology and Pharmacology, University of Calgary)", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Karpinski, Edward (Department of Physiology)", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Chaves, Elena Posse de (Department of Pharmacology)", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Colmers, William F. (Centre for Neuroscience and Department of Pharmacology)", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-06T17:48:45Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-06T17:48:45Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2010-11", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description.abstract" : [ { | |
| "value" : "Ca2+ is an important mediator of stimulus-secretion coupling in beta cells of the pancreatic islets, which secrete insulin in response to elevation in plasma glucose concentration. I studied the actions of two lipids, arachidonic acid (AA) and cholesterol, on enzymatically-dissociated single beta cells of rat and mouse, using cytosolic Ca2+ ([Ca2+]i) measurement in conjunction with whole-cell patch-clamp techniques.\nAA, which is produced in the beta cell upon stimulation with either glucose or acetylcholine, was found to induce a large increase in [Ca2+]i that was dependent on both extracellular Ca2+ entry and intracellular Ca2+ release. Part of the AA-mediated extracellular Ca2+ entry was due to Ca2+ influx through the arachidonate-regulated Ca2+ (ARC) channels, which have not previously been reported in beta cells. The AA-mediated intracellular Ca2+ release was a result of Ca2+ mobilization from multiple inositol trisphosphate (IP3)-sensitive intracellular stores, including the endoplasmic reticulum (ER) and an acidic Ca2+ store that is probably the secretory granules. Therefore, in beta cells, the AA-mediated Ca2+ signal may amplify the [Ca2+]i rise induced by insulin secretagogues.\nCholesterol is an integral component of cellular membranes and an important regulator of cellular functions. However, elevation of cholesterol level in the pancreatic islets reduces glucose-stimulated insulin secretion. I found that cholesterol overload impairs the glucose-stimulated [Ca2+]i increase in beta cells by two major mechanisms: the first is a decrease in glucose-stimulated ATP production, which is partly mediated by a decrease in glucose uptake, and the second is the reduction of voltage-gated Ca2+ current density. These effects of cholesterol may partly account for the decreased insulin secretion that develops in patients with type II diabetes, who typically exhibit hypercholesterolemia.\nIn summary, different lipids may mediate beneficial or detrimental effects on Ca2+ regulation in rodent pancreatic beta cells.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3DS5D", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This thesis is made available by the University of Alberta Libraries with permission of the copyright owner solely for non-commercial purposes. This thesis, or any portion thereof, may not otherwise be copied or reproduced without the written consent of the copyright owner, except to the extent permitted by Canadian copyright law.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Fluorescent calcium imaging", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Extracellular calcium entry", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Electrophysiology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Rat", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Arachidonic acid", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "Mouse", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| }, { | |
| "value" : "Intracellular calcium concentration", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 6 | |
| }, { | |
| "value" : "Pancreatic beta cells", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 7 | |
| }, { | |
| "value" : "Rodents", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 8 | |
| }, { | |
| "value" : "Neuroendocrine", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 9 | |
| }, { | |
| "value" : "Cholesterol", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 10 | |
| }, { | |
| "value" : "Intracellular calcium release", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 11 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Influence of lipids (arachidonic acid and cholesterol) on calcium signalling in rodent pancreatic beta cells", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_46ec", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.grantor" : [ { | |
| "value" : "http://id.loc.gov/authorities/names/n79058482", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.level" : [ { | |
| "value" : "Doctoral", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.name" : [ { | |
| "value" : "Doctor of Philosophy", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.date.graduation" : [ { | |
| "value" : "Fall 2010", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.department" : [ { | |
| "value" : "Centre for Neuroscience", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:29.574+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e357c1e-f2c0-4acb-83ae-57f76457f4fd/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e357c1e-f2c0-4acb-83ae-57f76457f4fd/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e357c1e-f2c0-4acb-83ae-57f76457f4fd/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e357c1e-f2c0-4acb-83ae-57f76457f4fd/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e357c1e-f2c0-4acb-83ae-57f76457f4fd/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e357c1e-f2c0-4acb-83ae-57f76457f4fd/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e357c1e-f2c0-4acb-83ae-57f76457f4fd/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e357c1e-f2c0-4acb-83ae-57f76457f4fd/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e357c1e-f2c0-4acb-83ae-57f76457f4fd/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e357c1e-f2c0-4acb-83ae-57f76457f4fd" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "a0aa2e19-68d4-4928-968c-e503b435bfad", | |
| "uuid" : "a0aa2e19-68d4-4928-968c-e503b435bfad", | |
| "name" : "Yeung-Yam-Wah_Valerie_Fall2010.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:29Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Yeung-Yam-Wah_Valerie_Fall2010.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3125, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "6f3793b484b4b0f5aeefcf30639e9e54" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a0aa2e19-68d4-4928-968c-e503b435bfad/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a0aa2e19-68d4-4928-968c-e503b435bfad/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a0aa2e19-68d4-4928-968c-e503b435bfad/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a0aa2e19-68d4-4928-968c-e503b435bfad/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a0aa2e19-68d4-4928-968c-e503b435bfad" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e364dbe-48c6-4547-9390-76466042c15a" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e364dbe-48c6-4547-9390-76466042c15a", | |
| "uuid" : "7e364dbe-48c6-4547-9390-76466042c15a", | |
| "name" : "2005-010-041 ventral", | |
| "handle" : "123456789/46817", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Curtis Scally", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Wilson, W. M.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Geology Department, University of Alberta", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-03T01:56:44Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-03T01:56:44Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2009-12-23", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-jrvh-hk87", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "flake", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "lithic debitage", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "2005-010-041 ventral", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:34.018+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e364dbe-48c6-4547-9390-76466042c15a/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e364dbe-48c6-4547-9390-76466042c15a/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e364dbe-48c6-4547-9390-76466042c15a/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e364dbe-48c6-4547-9390-76466042c15a/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e364dbe-48c6-4547-9390-76466042c15a/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e364dbe-48c6-4547-9390-76466042c15a/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e364dbe-48c6-4547-9390-76466042c15a/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e364dbe-48c6-4547-9390-76466042c15a/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e364dbe-48c6-4547-9390-76466042c15a/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e364dbe-48c6-4547-9390-76466042c15a" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "4a6cf30d-861a-4e9b-96f5-383662a31e93", | |
| "uuid" : "4a6cf30d-861a-4e9b-96f5-383662a31e93", | |
| "name" : "2005-010-041_v_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:03:34Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "2005-010-041_v_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3474, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "e7e587eddcee2708c51a8f82ca5767c8" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/4a6cf30d-861a-4e9b-96f5-383662a31e93/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/4a6cf30d-861a-4e9b-96f5-383662a31e93/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/4a6cf30d-861a-4e9b-96f5-383662a31e93/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/4a6cf30d-861a-4e9b-96f5-383662a31e93/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/4a6cf30d-861a-4e9b-96f5-383662a31e93" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3675c6-29ee-41ea-b98e-e4f31e68356c" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e3675c6-29ee-41ea-b98e-e4f31e68356c", | |
| "uuid" : "7e3675c6-29ee-41ea-b98e-e4f31e68356c", | |
| "name" : "Ce(IV) analysis of carbohydrates II. Transgalactosylation products of ¿- galactosidase from Maxilact", | |
| "handle" : "123456789/59034", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Griffith, Lee Shane.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-06T15:46:14Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-06T15:46:14Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1990", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R36M33878", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This thesis is made available by the University of Alberta Libraries with permission of the copyright owner solely for non-commercial purposes. This thesis, or any portion thereof, may not otherwise be copied or reproduced without the written consent of the copyright owner, except to the extent permitted by Canadian copyright law.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Carbohydrates--Oxidation", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Lactose", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Hydrolysis", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Ce(IV) analysis of carbohydrates II. Transgalactosylation products of ¿- galactosidase from Maxilact", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_46ec", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.grantor" : [ { | |
| "value" : "http://id.loc.gov/authorities/names/n79058482", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.level" : [ { | |
| "value" : "Doctoral", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.name" : [ { | |
| "value" : "Doctor of Philosophy", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.date.graduation" : [ { | |
| "value" : "1990", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.department" : [ { | |
| "value" : "Department of Food Science", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:35.059+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3675c6-29ee-41ea-b98e-e4f31e68356c/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3675c6-29ee-41ea-b98e-e4f31e68356c/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3675c6-29ee-41ea-b98e-e4f31e68356c/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3675c6-29ee-41ea-b98e-e4f31e68356c/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3675c6-29ee-41ea-b98e-e4f31e68356c/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3675c6-29ee-41ea-b98e-e4f31e68356c/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3675c6-29ee-41ea-b98e-e4f31e68356c/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3675c6-29ee-41ea-b98e-e4f31e68356c/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3675c6-29ee-41ea-b98e-e4f31e68356c/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3675c6-29ee-41ea-b98e-e4f31e68356c" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "50f98d3e-265e-4375-ae30-e688034c80c6", | |
| "uuid" : "50f98d3e-265e-4375-ae30-e688034c80c6", | |
| "name" : "NN60328.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:35Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "NN60328.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4205, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "347f9e594fabe08ee2fbb969420917fa" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/50f98d3e-265e-4375-ae30-e688034c80c6/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/50f98d3e-265e-4375-ae30-e688034c80c6/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/50f98d3e-265e-4375-ae30-e688034c80c6/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/50f98d3e-265e-4375-ae30-e688034c80c6/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/50f98d3e-265e-4375-ae30-e688034c80c6" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e39482a-3561-4238-aaa9-cac5d82b03e8" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e39482a-3561-4238-aaa9-cac5d82b03e8", | |
| "uuid" : "7e39482a-3561-4238-aaa9-cac5d82b03e8", | |
| "name" : "Parliament Now, January 6, 2021", | |
| "handle" : "123456789/25695", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Hill Times Publishing", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T18:39:08Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T18:39:08Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2021-01-06", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "Canada’s premier daily information service about Parliament and the federal government.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-yy0e-7a66", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This material can be used for non-commercial educational, research, teaching and personal uses, including use in scholarly publications as permitted under copyright legislation, and discussion or presentation of such research or publications at academic conferences. Use of this product is restricted to current faculty, staff, and students of the University. It is the responsibility of each user to ensure that he or she uses this product for individual, non-commercial educational or research purposes only, and does not systematically download or retain substantial portions of information. Users may not reproduce or redistribute unprocessed/raw data portions of the data to any third party, or otherwise engage in the systematic retransmission or commercialization of the data.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Canada-- Parliament-- Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Parliament Now, January 6, 2021", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:35.385+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e39482a-3561-4238-aaa9-cac5d82b03e8/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e39482a-3561-4238-aaa9-cac5d82b03e8/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e39482a-3561-4238-aaa9-cac5d82b03e8/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e39482a-3561-4238-aaa9-cac5d82b03e8/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e39482a-3561-4238-aaa9-cac5d82b03e8/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e39482a-3561-4238-aaa9-cac5d82b03e8/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e39482a-3561-4238-aaa9-cac5d82b03e8/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e39482a-3561-4238-aaa9-cac5d82b03e8/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e39482a-3561-4238-aaa9-cac5d82b03e8/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e39482a-3561-4238-aaa9-cac5d82b03e8" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "b595ee61-a75e-4360-9387-b075450dfc40", | |
| "uuid" : "b595ee61-a75e-4360-9387-b075450dfc40", | |
| "name" : "010621_parliamentnow.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:35Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "010621_parliamentnow.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3181, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "5ba3fa6eb20910d3dfed591703fe0fb4" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b595ee61-a75e-4360-9387-b075450dfc40/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b595ee61-a75e-4360-9387-b075450dfc40/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b595ee61-a75e-4360-9387-b075450dfc40/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b595ee61-a75e-4360-9387-b075450dfc40/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b595ee61-a75e-4360-9387-b075450dfc40" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3a369c-1cdd-47f3-8617-b9cb93e60899" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e3a369c-1cdd-47f3-8617-b9cb93e60899", | |
| "uuid" : "7e3a369c-1cdd-47f3-8617-b9cb93e60899", | |
| "name" : "A dorsal view of a single straight side scraper dorsal", | |
| "handle" : "123456789/48210", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Lindsey Commandeur", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Ami, Dr. H. M.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-03T04:12:59Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-03T04:12:59Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2011-12-06", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-0bj5-qa55", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "scraper", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "lithic tools", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "A dorsal view of a single straight side scraper dorsal", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:36.175+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3a369c-1cdd-47f3-8617-b9cb93e60899/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3a369c-1cdd-47f3-8617-b9cb93e60899/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3a369c-1cdd-47f3-8617-b9cb93e60899/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3a369c-1cdd-47f3-8617-b9cb93e60899/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3a369c-1cdd-47f3-8617-b9cb93e60899/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3a369c-1cdd-47f3-8617-b9cb93e60899/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3a369c-1cdd-47f3-8617-b9cb93e60899/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3a369c-1cdd-47f3-8617-b9cb93e60899/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3a369c-1cdd-47f3-8617-b9cb93e60899/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3a369c-1cdd-47f3-8617-b9cb93e60899" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "12d69077-63b3-41fd-ba2b-bb40be455558", | |
| "uuid" : "12d69077-63b3-41fd-ba2b-bb40be455558", | |
| "name" : "1996-001-542_d_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:03:36Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1996-001-542_d_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5788, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "8bc7f97079a7a34de046fe348db7b4b5" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/12d69077-63b3-41fd-ba2b-bb40be455558/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/12d69077-63b3-41fd-ba2b-bb40be455558/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/12d69077-63b3-41fd-ba2b-bb40be455558/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/12d69077-63b3-41fd-ba2b-bb40be455558/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/12d69077-63b3-41fd-ba2b-bb40be455558" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c23ed-94ba-4931-94e7-051ac8635448" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e3c23ed-94ba-4931-94e7-051ac8635448", | |
| "uuid" : "7e3c23ed-94ba-4931-94e7-051ac8635448", | |
| "name" : "EFFHEAD#1", | |
| "handle" : "123456789/14014", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Lapierre, Matthew", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T11:43:52Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T11:43:52Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2021-01-01", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "The No-Brow movement emphasizes the intersection between high and low culture, acknowledging their continuous dialogue, despite the severance between them. No-Brow collapses dichotomies between high and low culture by amalgamating art historical pictorial strategies of the old masters with counter-cultural influences from television, comix, graffiti, and cartoons. This undermines cultural hegemony and class-cultural hierarchies, and gives voice to artists with a range of cultural experiences.\nMy work investigates psychic imaginaries through obscenity, humour, and sexuality. I challenge western institutional intelligibilities of taste, decency, and artistic practice with exaggerated transgressive imagery. The painting EFFHEAD #1 obfuscates boundaries between genres of abstraction and portraiture, and systems of representation.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-bp84-s838", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc/4.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Research image", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "EFFHEAD#1", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:40.649+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c23ed-94ba-4931-94e7-051ac8635448/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c23ed-94ba-4931-94e7-051ac8635448/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c23ed-94ba-4931-94e7-051ac8635448/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c23ed-94ba-4931-94e7-051ac8635448/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c23ed-94ba-4931-94e7-051ac8635448/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c23ed-94ba-4931-94e7-051ac8635448/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c23ed-94ba-4931-94e7-051ac8635448/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c23ed-94ba-4931-94e7-051ac8635448/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c23ed-94ba-4931-94e7-051ac8635448/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c23ed-94ba-4931-94e7-051ac8635448" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "2058b8be-7af5-46a6-a2d8-54cd8f5c987f", | |
| "uuid" : "2058b8be-7af5-46a6-a2d8-54cd8f5c987f", | |
| "name" : "Lapierre - EFFHEAD - Namplate IOR 2021.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:40Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Lapierre - EFFHEAD - Namplate IOR 2021.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4007, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "42a726f535d23d744caf8e860143f797" | |
| }, | |
| "sequenceId" : 5, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/2058b8be-7af5-46a6-a2d8-54cd8f5c987f/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/2058b8be-7af5-46a6-a2d8-54cd8f5c987f/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/2058b8be-7af5-46a6-a2d8-54cd8f5c987f/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/2058b8be-7af5-46a6-a2d8-54cd8f5c987f/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/2058b8be-7af5-46a6-a2d8-54cd8f5c987f" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c7c68-3ed6-4f69-aa21-a8dda0462536" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e3c7c68-3ed6-4f69-aa21-a8dda0462536", | |
| "uuid" : "7e3c7c68-3ed6-4f69-aa21-a8dda0462536", | |
| "name" : "Issues in video-conferencing in a nursing education program", | |
| "handle" : "123456789/61842", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Biro, Anne.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-06T17:53:49Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-06T17:53:49Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1998", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3BN9X694", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This thesis is made available by the University of Alberta Libraries with permission of the copyright owner solely for non-commercial purposes. This thesis, or any portion thereof, may not otherwise be copied or reproduced without the written consent of the copyright owner, except to the extent permitted by Canadian copyright law.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Distance education", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Nursing--Study and teaching--Audio-visual aids", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Telecommunication in medicine", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Videoconferencing", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Issues in video-conferencing in a nursing education program", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title.alternative" : [ { | |
| "value" : "Issues in video-conferencing.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_46ec", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.grantor" : [ { | |
| "value" : "http://id.loc.gov/authorities/names/n79058482", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.level" : [ { | |
| "value" : "Master's", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.name" : [ { | |
| "value" : "Master of Nursing", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.date.graduation" : [ { | |
| "value" : "1998", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.department" : [ { | |
| "value" : "Faculty of Nursing", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:41.380+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c7c68-3ed6-4f69-aa21-a8dda0462536/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c7c68-3ed6-4f69-aa21-a8dda0462536/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c7c68-3ed6-4f69-aa21-a8dda0462536/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c7c68-3ed6-4f69-aa21-a8dda0462536/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c7c68-3ed6-4f69-aa21-a8dda0462536/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c7c68-3ed6-4f69-aa21-a8dda0462536/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c7c68-3ed6-4f69-aa21-a8dda0462536/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c7c68-3ed6-4f69-aa21-a8dda0462536/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c7c68-3ed6-4f69-aa21-a8dda0462536/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e3c7c68-3ed6-4f69-aa21-a8dda0462536" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "56ef240e-3259-4157-8bd6-628d505bce4b", | |
| "uuid" : "56ef240e-3259-4157-8bd6-628d505bce4b", | |
| "name" : "MQ34472.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:41Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "MQ34472.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5781, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "b4f2de75078cf561d2c45ec06f3c5da4" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/56ef240e-3259-4157-8bd6-628d505bce4b/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/56ef240e-3259-4157-8bd6-628d505bce4b/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/56ef240e-3259-4157-8bd6-628d505bce4b/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/56ef240e-3259-4157-8bd6-628d505bce4b/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/56ef240e-3259-4157-8bd6-628d505bce4b" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e405206-9b62-4bac-b2dd-96a8290aeb52" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e405206-9b62-4bac-b2dd-96a8290aeb52", | |
| "uuid" : "7e405206-9b62-4bac-b2dd-96a8290aeb52", | |
| "name" : "Data Warehouse Approach to Historical Analysis of Vehicle Trajectory Data on a Road Network", | |
| "handle" : "123456789/58925", | |
| "metadata" : { | |
| "dc.contributor.advisor" : [ { | |
| "value" : "Sander, Joerg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Parsons, Ian", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.contributor.author" : [ { | |
| "value" : "Pareek, Priyanka", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-06T15:44:16Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-06T15:44:16Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2018-11", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description.abstract" : [ { | |
| "value" : "Personal devices such as smartphones or fitness bands enable users to record their movement information using GPS sensors, along with associated attribute data such as heart rate, speed, and elevation. Data collected using such devices include both, time-stamped recordings of object movement (called trajectories), and associated timeseries recorded for related attributes. Analysis of attribute information within the context of the path taken can be used to highlight important trends and similarities in movement of different objects. However, data volumes can make historical analysis of these data streams challenging without a proper pre-processing and data management strategy.\nIn this thesis, we design and implement a data warehouse structure to enable exploratory analysis of movement information for objects traveling in a constrained environment (e.g. a road network). The proposed data warehouse design can be used to analyze differences in vehicle attributes for trips taken on common road segments, or contrast trip-level information for categories of vehicles. Further, we design a spatial partitioning technique that takes advantage of the road network topology and use it to approximate average attribute values for spatial queries. We demonstrate the benefits of our data warehouse structure and analyze the results of our approximation method using a dataset of haul trucks operating in a surface mining environment.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3DJ58Z6R", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Permission is hereby granted to the University of Alberta Libraries to reproduce single copies of this thesis and to lend or sell such copies for private, scholarly or scientific research purposes only. Where the thesis is converted to, or otherwise made available in digital form, the University of Alberta will advise potential users of the thesis of these terms. The author reserves all other publication and other rights in association with the copyright in the thesis and, except as herein before provided, neither the thesis nor any substantial portion thereof may be printed or otherwise reproduced in any material form whatsoever without the author's prior written permission.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "data warehouse, trajectory", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Data Warehouse Approach to Historical Analysis of Vehicle Trajectory Data on a Road Network", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_46ec", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.grantor" : [ { | |
| "value" : "http://id.loc.gov/authorities/names/n79058482", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.level" : [ { | |
| "value" : "Master's", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.name" : [ { | |
| "value" : "Master of Science", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.date.graduation" : [ { | |
| "value" : "Fall 2018", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.department" : [ { | |
| "value" : "Department of Computing Science", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:41.758+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e405206-9b62-4bac-b2dd-96a8290aeb52/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e405206-9b62-4bac-b2dd-96a8290aeb52/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e405206-9b62-4bac-b2dd-96a8290aeb52/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e405206-9b62-4bac-b2dd-96a8290aeb52/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e405206-9b62-4bac-b2dd-96a8290aeb52/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e405206-9b62-4bac-b2dd-96a8290aeb52/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e405206-9b62-4bac-b2dd-96a8290aeb52/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e405206-9b62-4bac-b2dd-96a8290aeb52/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e405206-9b62-4bac-b2dd-96a8290aeb52/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e405206-9b62-4bac-b2dd-96a8290aeb52" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "4c4f9bd2-bce8-44e4-8669-fef985324abe", | |
| "uuid" : "4c4f9bd2-bce8-44e4-8669-fef985324abe", | |
| "name" : "Pareek_Priyanka_201809_MSc.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:41Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Pareek_Priyanka_201809_MSc.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 2587, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "1e4d22962620463bc76b37f55606c695" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/4c4f9bd2-bce8-44e4-8669-fef985324abe/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/4c4f9bd2-bce8-44e4-8669-fef985324abe/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/4c4f9bd2-bce8-44e4-8669-fef985324abe/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/4c4f9bd2-bce8-44e4-8669-fef985324abe/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/4c4f9bd2-bce8-44e4-8669-fef985324abe" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e44bcd1-b976-4e1b-98d5-2e5bb23aba39" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e44bcd1-b976-4e1b-98d5-2e5bb23aba39", | |
| "uuid" : "7e44bcd1-b976-4e1b-98d5-2e5bb23aba39", | |
| "name" : "Assessment of Variation in the Alberta Context Tool: The Contribution of Unit Level Contextual Factors and Specialty in Canadian Pediatric Acute Care Settings", | |
| "handle" : "123456789/13590", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Stevens, B.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Squires, J.E.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Hutchinson, A.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Midodzi, W.K.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Cummings, G.G.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "Kang, S.H.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| }, { | |
| "value" : "Scott, S.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 6 | |
| }, { | |
| "value" : "Estabrooks, C.A.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 7 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T11:39:33Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T11:39:33Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2011", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "Background: There are few validated measures of organizational context and none that we located are parsimonious and address modifiable characteristics of context. The Alberta Context Tool (ACT) was developed to meet this need. The instrument assesses 8 dimensions of context, which comprise 10 concepts. The purpose of this paper is to report evidence to further the validity argument for ACT. The specific objectives of this paper are to: (1) examine the extent to which the 10 ACT concepts discriminate between patient care units and (2) identify variables that significantly contribute to between-unit variation for each of the 10 concepts. Methods: 859 professional nurses (844 valid responses) working in medical, surgical and critical care units of 8 Canadian pediatric hospitals completed the ACT. A random intercept, fixed effects hierarchical linear modeling (HLM) strategy was used to quantify and explain variance in the 10 ACT concepts to establish the ACT's ability to discriminate between units. We ran 40 models (a series of 4 models for each of the 10 concepts) in which we systematically assessed the unique contribution (i.e., error variance reduction) of different variables to between-unit variation. First, we constructed a null model in which we quantified the variance overall, in each of the concepts. Then we controlled for the contribution of individual level variables (Model 1). In Model 2, we assessed the contribution of practice specialty (medical, surgical, critical care) to variation since it was central to construction of the sampling frame for the study. Finally, we assessed the contribution of additional unit level variables (Model 3). Results: The null model (unadjusted baseline HLM model) established that there was significant variation between units in each of the 10 ACT concepts (i.e., discrimination between units). When we controlled for individual characteristics, significant variation in the 10 concepts remained. Assessment of the contribution of specialty to between-unit variation enabled us to explain more variance (1.19% to 16.73%) in 6 of the 10 ACT concepts. Finally, when we assessed the unique contribution of the unit level variables available to us, we were able to explain additional variance (15.91% to 73.25%) in 7 of the 10 ACT concepts. Conclusion: The findings reported here represent the third published argument for validity of the ACT and adds to the evidence supporting its use to discriminate patient care units by all 10 contextual factors. We found evidence of relationships between a variety of individual and unit-level variables that explained much of this between-unit variation for each of the 10 ACT concepts. Future research will include examination of the relationships between the ACT's contextual factors and research utilization by nurses and ultimately the relationships between context, research utilization, and outcomes for patients.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3H70868S", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.relation.isversionof" : [ { | |
| "value" : "Estabrooks CA, Squires JE, Hutchinson A, Scott S, Cummings GG, Kang SH, Midodzi WK, Stevens B. (2011). Assessment of Variation in the Alberta Context Tool: The Contribution of Unit Level Contextual Factors and Specialty in Canadian Pediatric Acute Care Settings. BMC Health Services Research, 11(251), 1-17. doi:10.1186/1472-6963-11-251.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by/3.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Reliability", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Coefficients", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Health care", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Organizations", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Implementation", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "Nurses", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| }, { | |
| "value" : "Index", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 6 | |
| }, { | |
| "value" : "Safety", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 7 | |
| }, { | |
| "value" : "Mortality", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 8 | |
| }, { | |
| "value" : "Translations", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 9 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Assessment of Variation in the Alberta Context Tool: The Contribution of Unit Level Contextual Factors and Specialty in Canadian Pediatric Acute Care Settings", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_6501 http://purl.org/coar/version/c_970fb48d4fbd8a85", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:42.404+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e44bcd1-b976-4e1b-98d5-2e5bb23aba39/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e44bcd1-b976-4e1b-98d5-2e5bb23aba39/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e44bcd1-b976-4e1b-98d5-2e5bb23aba39/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e44bcd1-b976-4e1b-98d5-2e5bb23aba39/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e44bcd1-b976-4e1b-98d5-2e5bb23aba39/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e44bcd1-b976-4e1b-98d5-2e5bb23aba39/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e44bcd1-b976-4e1b-98d5-2e5bb23aba39/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e44bcd1-b976-4e1b-98d5-2e5bb23aba39/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e44bcd1-b976-4e1b-98d5-2e5bb23aba39/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e44bcd1-b976-4e1b-98d5-2e5bb23aba39" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "15a05a4d-1184-4636-82e8-010ea31c9b90", | |
| "uuid" : "15a05a4d-1184-4636-82e8-010ea31c9b90", | |
| "name" : "BMCHSR_11_2011_1.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:42Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "BMCHSR_11_2011_1.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5732, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "1f9c071fce9b33b8f166e943fdf07c5b" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/15a05a4d-1184-4636-82e8-010ea31c9b90/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/15a05a4d-1184-4636-82e8-010ea31c9b90/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/15a05a4d-1184-4636-82e8-010ea31c9b90/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/15a05a4d-1184-4636-82e8-010ea31c9b90/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/15a05a4d-1184-4636-82e8-010ea31c9b90" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e46b9ee-4aa9-4a9a-969b-eeab8f347687" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e46b9ee-4aa9-4a9a-969b-eeab8f347687", | |
| "uuid" : "7e46b9ee-4aa9-4a9a-969b-eeab8f347687", | |
| "name" : "Parliament Now, January 11, 2018", | |
| "handle" : "123456789/23594", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Hill Times Publishing", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T17:50:29Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T17:50:29Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2018/01/11", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "Canada’s premier daily information service about Parliament and the federal government.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R34M91Q9W", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This material can be used for non-commercial educational, research, teaching and personal uses, including use in scholarly publications as permitted under copyright legislation, and discussion or presentation of such research or publications at academic conferences. Use of this product is restricted to current faculty, staff, and students of the University. It is the responsibility of each user to ensure that he or she uses this product for individual, non-commercial educational or research purposes only, and does not systematically download or retain substantial portions of information. Users may not reproduce or redistribute unprocessed/raw data portions of the data to any third party, or otherwise engage in the systematic retransmission or commercialization of the data.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Canada--Parliament--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Parliament Now, January 11, 2018", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:42.848+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e46b9ee-4aa9-4a9a-969b-eeab8f347687/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e46b9ee-4aa9-4a9a-969b-eeab8f347687/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e46b9ee-4aa9-4a9a-969b-eeab8f347687/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e46b9ee-4aa9-4a9a-969b-eeab8f347687/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e46b9ee-4aa9-4a9a-969b-eeab8f347687/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e46b9ee-4aa9-4a9a-969b-eeab8f347687/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e46b9ee-4aa9-4a9a-969b-eeab8f347687/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e46b9ee-4aa9-4a9a-969b-eeab8f347687/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e46b9ee-4aa9-4a9a-969b-eeab8f347687/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e46b9ee-4aa9-4a9a-969b-eeab8f347687" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "994754fb-594f-4915-a785-9ea720b229ac", | |
| "uuid" : "994754fb-594f-4915-a785-9ea720b229ac", | |
| "name" : "011118_parliamentnow.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:42Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "011118_parliamentnow.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3607, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "f4881cb722deeb6de4c2c3fe653c4db4" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/994754fb-594f-4915-a785-9ea720b229ac/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/994754fb-594f-4915-a785-9ea720b229ac/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/994754fb-594f-4915-a785-9ea720b229ac/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/994754fb-594f-4915-a785-9ea720b229ac/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/994754fb-594f-4915-a785-9ea720b229ac" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e487005-3971-4ccd-abbd-3c4b0c1d9858" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e487005-3971-4ccd-abbd-3c4b0c1d9858", | |
| "uuid" : "7e487005-3971-4ccd-abbd-3c4b0c1d9858", | |
| "name" : "Ventral view of a flake ventral", | |
| "handle" : "123456789/41530", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Meghan Ward", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T13:26:36Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T13:26:36Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2007-08-13", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-hm21-3x90", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "lithic debitage", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "flake", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Ventral view of a flake ventral", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:46.696+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e487005-3971-4ccd-abbd-3c4b0c1d9858/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e487005-3971-4ccd-abbd-3c4b0c1d9858/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e487005-3971-4ccd-abbd-3c4b0c1d9858/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e487005-3971-4ccd-abbd-3c4b0c1d9858/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e487005-3971-4ccd-abbd-3c4b0c1d9858/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e487005-3971-4ccd-abbd-3c4b0c1d9858/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e487005-3971-4ccd-abbd-3c4b0c1d9858/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e487005-3971-4ccd-abbd-3c4b0c1d9858/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e487005-3971-4ccd-abbd-3c4b0c1d9858/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e487005-3971-4ccd-abbd-3c4b0c1d9858" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "abb7764e-0e86-43c7-b51e-e161e61b575c", | |
| "uuid" : "abb7764e-0e86-43c7-b51e-e161e61b575c", | |
| "name" : "1973-005-110_v_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:03:46Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1973-005-110_v_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4819, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "002d79bd9399ff6e9cdccc15bfe7464b" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/abb7764e-0e86-43c7-b51e-e161e61b575c/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/abb7764e-0e86-43c7-b51e-e161e61b575c/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/abb7764e-0e86-43c7-b51e-e161e61b575c/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/abb7764e-0e86-43c7-b51e-e161e61b575c/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/abb7764e-0e86-43c7-b51e-e161e61b575c" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e48f4ff-fece-495c-9a56-82b2441c24bb" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e48f4ff-fece-495c-9a56-82b2441c24bb", | |
| "uuid" : "7e48f4ff-fece-495c-9a56-82b2441c24bb", | |
| "name" : "Syncrude Lease No. 17: An archaeological survey", | |
| "handle" : "123456789/31012", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Syncrude Canada Ltd.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Canada, Alberta, Fort McMurray", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T21:11:27Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T21:11:27Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1973", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "During project planning, Syncrude Canada Ltd. became concerned for possible archaeological resources which might be endangered by its development in Athabasca Tar Sands Lease #17. Proposals were solicited by Syncrude for assistance in conducting a survey of the Lease #17 area to determine its archaeological site potential. In line with their environmental baseline studies, Syncrude accepted a research proposal and funded a field project to that end. The report contained herein embodies background information from the original research proposal and the subsequent findings of the archaeological survey project. Included are statements of both the method and theory employed in the research. All reported archaeological finds in the Boreal Mixedwood Ecosystem of Alberta and pertinent ethnohistorical and ethnographic literature concerning Native Groups of the general region are reviewed. In preparation for the survey, a system was formulated whereby Lease #17 could be divided into a number of priority areas according to their archaeological potential. To define these priority areas, it became necessary to first make an appraisal of the human carrying capacity of the area employing existing environmental data. In summary, the artifact sample from Lease #17 shows that a variety of stone materials were available and were utilized. Tools were apparently roughed out at a quarry site and then transported to camp sites for finishing. The edge angles of worn artifacts indicates that the tools had a variety of uses. The scarcity of projectile points may be due to the use of perishable bone and antler for these tools.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3513TW7V", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Conditions of Use Syncrude Canada Ltd, 1973. Syncrude Lease No. 17: An archaeological survey. Syncrude Canada Ltd., Edmonton, Alberta. Ecological Research Monograph 1973-4. 98 pp. Permission for non-commercial use, publication or presentation of excerpts or figures is granted, provided appropriate attribution (as above) is cited. Commercial reproduction, in whole or in part, is not permitted without prior written consent. The use of these materials by the end user is done without any affiliation with or endorsement by Syncrude Canada Ltd. Reliance upon the end user's use of these materials is at the sole risk of the end user.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Archaeology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Oil Sands", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Surveys", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Oil sands", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Tar Sands", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "Tar sands", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| }, { | |
| "value" : "Syncrude", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 6 | |
| }, { | |
| "value" : "Environmental Research Monograph 1973-4", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 7 | |
| }, { | |
| "value" : "Alberta", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 8 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Syncrude Lease No. 17: An archaeological survey", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:50.355+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e48f4ff-fece-495c-9a56-82b2441c24bb/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e48f4ff-fece-495c-9a56-82b2441c24bb/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e48f4ff-fece-495c-9a56-82b2441c24bb/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e48f4ff-fece-495c-9a56-82b2441c24bb/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e48f4ff-fece-495c-9a56-82b2441c24bb/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e48f4ff-fece-495c-9a56-82b2441c24bb/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e48f4ff-fece-495c-9a56-82b2441c24bb/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e48f4ff-fece-495c-9a56-82b2441c24bb/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e48f4ff-fece-495c-9a56-82b2441c24bb/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e48f4ff-fece-495c-9a56-82b2441c24bb" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "6d5ca754-6eb1-46e1-9c9a-699d5203edfa", | |
| "uuid" : "6d5ca754-6eb1-46e1-9c9a-699d5203edfa", | |
| "name" : "1973-4-20--20ERM-20--20Syncrude-20--20Archaeological-20Survey.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:50Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1973-4-20--20ERM-20--20Syncrude-20--20Archaeological-20Survey.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4968, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "fd2259e39b9723d1742a64eb43c838eb" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6d5ca754-6eb1-46e1-9c9a-699d5203edfa/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6d5ca754-6eb1-46e1-9c9a-699d5203edfa/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6d5ca754-6eb1-46e1-9c9a-699d5203edfa/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6d5ca754-6eb1-46e1-9c9a-699d5203edfa/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6d5ca754-6eb1-46e1-9c9a-699d5203edfa" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e495f45-42ab-48a7-a2d6-4e979684b21e" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e495f45-42ab-48a7-a2d6-4e979684b21e", | |
| "uuid" : "7e495f45-42ab-48a7-a2d6-4e979684b21e", | |
| "name" : "Making the Transition from SSHRC to CIHR Funding - How to prepare a successful CIHR grant application, Presentation", | |
| "handle" : "123456789/42267", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Holt, Nick - Associate Professor, Faculty of Physical Educaiton & Recreation", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T18:28:54Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T18:28:54Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2012-10-18", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "Dr. Nick Holt (Associate Professor, Faculty of Physical Education and Recreation) shared his experiences as he has reviewed and been funded by both SSHRC and CIHR. Consequently, in this workshop he highlights the key differences between application funded by the the two funding agencies, strategies for preparing a successful CIHR application, and CIHR review process and criteria.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3TX35M97", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc-nd/4.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Operating Grant Program", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "OOGP", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "SSHRC", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Making the Transition from SSHRC to CIHR Funding - How to prepare a successful CIHR grant application, Presentation", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_1843", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-02T18:28:54.261+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e495f45-42ab-48a7-a2d6-4e979684b21e/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e495f45-42ab-48a7-a2d6-4e979684b21e/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e495f45-42ab-48a7-a2d6-4e979684b21e/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e495f45-42ab-48a7-a2d6-4e979684b21e/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e495f45-42ab-48a7-a2d6-4e979684b21e/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e495f45-42ab-48a7-a2d6-4e979684b21e/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e495f45-42ab-48a7-a2d6-4e979684b21e/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e495f45-42ab-48a7-a2d6-4e979684b21e/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e495f45-42ab-48a7-a2d6-4e979684b21e/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e495f45-42ab-48a7-a2d6-4e979684b21e" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : null, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e49e135-93bc-4ac3-b79b-6174522511ff" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e49e135-93bc-4ac3-b79b-6174522511ff", | |
| "uuid" : "7e49e135-93bc-4ac3-b79b-6174522511ff", | |
| "name" : "Privacy Praxis: Engagement and Agency at the Threshold", | |
| "handle" : "123456789/26307", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Cardozo, Paula", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T20:09:26Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T20:09:26Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2017/05", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "Privacy as a right has been established by the Supreme Court; however, it isn’t absolute and it is under threat.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3C824T44", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.relation.isversionof" : [ { | |
| "value" : "Cardozo, Paula. (2017). Privacy Praxis: Engagement and Agency at the Threshold. WILU 2017, Edmonton, AB, May 23-25.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc/4.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Agency", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Engagement", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Privacy", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Privacy Praxis: Engagement and Agency at the Threshold", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_6670", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:54.870+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e49e135-93bc-4ac3-b79b-6174522511ff/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e49e135-93bc-4ac3-b79b-6174522511ff/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e49e135-93bc-4ac3-b79b-6174522511ff/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e49e135-93bc-4ac3-b79b-6174522511ff/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e49e135-93bc-4ac3-b79b-6174522511ff/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e49e135-93bc-4ac3-b79b-6174522511ff/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e49e135-93bc-4ac3-b79b-6174522511ff/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e49e135-93bc-4ac3-b79b-6174522511ff/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e49e135-93bc-4ac3-b79b-6174522511ff/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e49e135-93bc-4ac3-b79b-6174522511ff" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "27413956-2cef-45ea-87be-6aab85ffa9af", | |
| "uuid" : "27413956-2cef-45ea-87be-6aab85ffa9af", | |
| "name" : "PrivacyPraxisPoster_Cardozo.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:54Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "PrivacyPraxisPoster_Cardozo.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 9565, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "7de5c84ea4371e8b5c86751c9cc13530" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/27413956-2cef-45ea-87be-6aab85ffa9af/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/27413956-2cef-45ea-87be-6aab85ffa9af/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/27413956-2cef-45ea-87be-6aab85ffa9af/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/27413956-2cef-45ea-87be-6aab85ffa9af/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/27413956-2cef-45ea-87be-6aab85ffa9af" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4b7f41-6dab-4952-92bc-c4ba5be9e850" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e4b7f41-6dab-4952-92bc-c4ba5be9e850", | |
| "uuid" : "7e4b7f41-6dab-4952-92bc-c4ba5be9e850", | |
| "name" : "Daily Record, Wednesday, June 20, 2018", | |
| "handle" : "123456789/9923", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Toronto Stock Exchange", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T04:18:17Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T04:18:17Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2018-06-20", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3P26QJ78", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Use of this product is restricted to current faculty, staff, and students of the University. It is the responsibility of each user to ensure that he or she uses this product for individual, non-commercial educational or research purposes only, and does not systematically download or retain substantial portions of information. Users may not reproduce or redistribute unprocessed/raw data portions of the data to any third party, or otherwise engage in the systematic retransmission or commercialization of the data.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Toronto Stock Exchange--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Stock exchanges--Canada--Tables--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Daily Record, Wednesday, June 20, 2018", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:55.511+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4b7f41-6dab-4952-92bc-c4ba5be9e850/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4b7f41-6dab-4952-92bc-c4ba5be9e850/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4b7f41-6dab-4952-92bc-c4ba5be9e850/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4b7f41-6dab-4952-92bc-c4ba5be9e850/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4b7f41-6dab-4952-92bc-c4ba5be9e850/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4b7f41-6dab-4952-92bc-c4ba5be9e850/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4b7f41-6dab-4952-92bc-c4ba5be9e850/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4b7f41-6dab-4952-92bc-c4ba5be9e850/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4b7f41-6dab-4952-92bc-c4ba5be9e850/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4b7f41-6dab-4952-92bc-c4ba5be9e850" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "7df9b57f-c36c-4512-9e28-9a1b3cd91ff8", | |
| "uuid" : "7df9b57f-c36c-4512-9e28-9a1b3cd91ff8", | |
| "name" : "20180620 00_00_00.0DailyRecordNon-Pro.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:55Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "20180620 00_00_00.0DailyRecordNon-Pro.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3728, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "7ddeabdac77f2c5103d96860220cefe7" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7df9b57f-c36c-4512-9e28-9a1b3cd91ff8/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7df9b57f-c36c-4512-9e28-9a1b3cd91ff8/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7df9b57f-c36c-4512-9e28-9a1b3cd91ff8/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7df9b57f-c36c-4512-9e28-9a1b3cd91ff8/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7df9b57f-c36c-4512-9e28-9a1b3cd91ff8" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c145e-ad27-4b16-9065-64cfa4014657" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e4c145e-ad27-4b16-9065-64cfa4014657", | |
| "uuid" : "7e4c145e-ad27-4b16-9065-64cfa4014657", | |
| "name" : "Daily Record, Wednesday, February 12, 2025", | |
| "handle" : "123456789/11390", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Toronto Stock Exchange", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T06:23:59Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T06:23:59Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2025-02-12", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-x2m6-z472", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Use of this product is restricted to current faculty, staff, and students of the University. It is the responsibility of each user to ensure that he or she uses this product for individual, non-commercial educational or research purposes only, and does not systematically download or retain substantial portions of information. Users may not reproduce or redistribute unprocessed/raw data portions of the data to any third party, or otherwise engage in the systematic retransmission or commercialization of the data.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Toronto Stock Exchange--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Stock exchanges--Canada--Tables--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Daily Record, Wednesday, February 12, 2025", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:55.940+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c145e-ad27-4b16-9065-64cfa4014657/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c145e-ad27-4b16-9065-64cfa4014657/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c145e-ad27-4b16-9065-64cfa4014657/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c145e-ad27-4b16-9065-64cfa4014657/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c145e-ad27-4b16-9065-64cfa4014657/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c145e-ad27-4b16-9065-64cfa4014657/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c145e-ad27-4b16-9065-64cfa4014657/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c145e-ad27-4b16-9065-64cfa4014657/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c145e-ad27-4b16-9065-64cfa4014657/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c145e-ad27-4b16-9065-64cfa4014657" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "cfda40de-f309-41e2-8730-0bd114ef618c", | |
| "uuid" : "cfda40de-f309-41e2-8730-0bd114ef618c", | |
| "name" : "20250212 00_00_00.0DailyRecordNon-Pro.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:55Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "20250212 00_00_00.0DailyRecordNon-Pro.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3411, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "1daa763c499035c25e9058576fb4e006" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/cfda40de-f309-41e2-8730-0bd114ef618c/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/cfda40de-f309-41e2-8730-0bd114ef618c/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/cfda40de-f309-41e2-8730-0bd114ef618c/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/cfda40de-f309-41e2-8730-0bd114ef618c/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/cfda40de-f309-41e2-8730-0bd114ef618c" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c3d74-d352-4891-a20b-23fe341d87d8" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e4c3d74-d352-4891-a20b-23fe341d87d8", | |
| "uuid" : "7e4c3d74-d352-4891-a20b-23fe341d87d8", | |
| "name" : "The Hill Times, Monday, February 5, 2018", | |
| "handle" : "123456789/32991", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Hill Times Publishing", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T21:40:52Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T21:40:52Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2018/02/05", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "The newspaper of Parliament.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R33X84094", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This material can be used for non-commercial educational, research, teaching and personal uses, including use in scholarly publications as permitted under copyright legislation, and discussion or presentation of such research or publications at academic conferences. Use of this product is restricted to current faculty, staff, and students of the University. It is the responsibility of each user to ensure that he or she uses this product for individual, non-commercial educational or research purposes only, and does not systematically download or retain substantial portions of information. Users may not reproduce or redistribute unprocessed/raw data portions of the data to any third party, or otherwise engage in the systematic retransmission or commercialization of the data.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Diplomats--Ontario--Ottawa--Newspapers", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Diplomatic and consular service--Canada--Newspapers", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Canada--Parliament--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "World politics--21st century--Newspapers", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "International relations--newspapers", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "Canada--Politics and government--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "The Hill Times, Monday, February 5, 2018", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:03:56.469+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c3d74-d352-4891-a20b-23fe341d87d8/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c3d74-d352-4891-a20b-23fe341d87d8/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c3d74-d352-4891-a20b-23fe341d87d8/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c3d74-d352-4891-a20b-23fe341d87d8/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c3d74-d352-4891-a20b-23fe341d87d8/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c3d74-d352-4891-a20b-23fe341d87d8/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c3d74-d352-4891-a20b-23fe341d87d8/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c3d74-d352-4891-a20b-23fe341d87d8/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c3d74-d352-4891-a20b-23fe341d87d8/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c3d74-d352-4891-a20b-23fe341d87d8" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "7e8fb608-51ae-488f-ab69-2d00eaaaf677", | |
| "uuid" : "7e8fb608-51ae-488f-ab69-2d00eaaaf677", | |
| "name" : "020518_ht.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:03:56Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "020518_ht.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 8585, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "dc5886d626ecc3019afa5f38da79ebd0" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7e8fb608-51ae-488f-ab69-2d00eaaaf677/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7e8fb608-51ae-488f-ab69-2d00eaaaf677/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7e8fb608-51ae-488f-ab69-2d00eaaaf677/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7e8fb608-51ae-488f-ab69-2d00eaaaf677/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7e8fb608-51ae-488f-ab69-2d00eaaaf677" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c95f7-c551-4335-9440-e62695a1d202" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e4c95f7-c551-4335-9440-e62695a1d202", | |
| "uuid" : "7e4c95f7-c551-4335-9440-e62695a1d202", | |
| "name" : "Disc 52 Tory, 1-28, 10, 4", | |
| "handle" : "123456789/40453", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Jennifer Papinea", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "University of Alberta", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T11:11:37Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T11:11:37Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2008-08-12", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "7 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-vr61-wv34", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "flake", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "lithic debitage", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Disc 52 Tory, 1-28, 10, 4", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:00.735+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c95f7-c551-4335-9440-e62695a1d202/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c95f7-c551-4335-9440-e62695a1d202/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c95f7-c551-4335-9440-e62695a1d202/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c95f7-c551-4335-9440-e62695a1d202/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c95f7-c551-4335-9440-e62695a1d202/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c95f7-c551-4335-9440-e62695a1d202/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c95f7-c551-4335-9440-e62695a1d202/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c95f7-c551-4335-9440-e62695a1d202/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c95f7-c551-4335-9440-e62695a1d202/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4c95f7-c551-4335-9440-e62695a1d202" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "9f6609b0-561f-47af-bc2b-e56c1fc471ce", | |
| "uuid" : "9f6609b0-561f-47af-bc2b-e56c1fc471ce", | |
| "name" : "1994-006-001Lot_v 00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:04:00Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1994-006-001Lot_v 00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 6406, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "e6a4c6d4c7dd3407be672a705876c18f" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9f6609b0-561f-47af-bc2b-e56c1fc471ce/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9f6609b0-561f-47af-bc2b-e56c1fc471ce/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9f6609b0-561f-47af-bc2b-e56c1fc471ce/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9f6609b0-561f-47af-bc2b-e56c1fc471ce/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/9f6609b0-561f-47af-bc2b-e56c1fc471ce" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4cb0b9-0477-4e59-84dc-bb539c286c07" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e4cb0b9-0477-4e59-84dc-bb539c286c07", | |
| "uuid" : "7e4cb0b9-0477-4e59-84dc-bb539c286c07", | |
| "name" : "Current Index to Legal Periodicals, December 12, 2014", | |
| "handle" : "123456789/25064", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Marian Gould Gallagher Law Library", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T18:15:33Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T18:15:33Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2014/12/12", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3KW57K5X", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Use of this product is restricted to members of the University of Alberta community and to users of the Library's physical facilities.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Law--United States--Periodicals--Indexes", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Law--Periodicals--Indexes", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Current Index to Legal Periodicals, December 12, 2014", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:01.119+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4cb0b9-0477-4e59-84dc-bb539c286c07/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4cb0b9-0477-4e59-84dc-bb539c286c07/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4cb0b9-0477-4e59-84dc-bb539c286c07/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4cb0b9-0477-4e59-84dc-bb539c286c07/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4cb0b9-0477-4e59-84dc-bb539c286c07/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4cb0b9-0477-4e59-84dc-bb539c286c07/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4cb0b9-0477-4e59-84dc-bb539c286c07/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4cb0b9-0477-4e59-84dc-bb539c286c07/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4cb0b9-0477-4e59-84dc-bb539c286c07/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4cb0b9-0477-4e59-84dc-bb539c286c07" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "aaf0c0b1-00ed-4106-a8ed-c909212f590f", | |
| "uuid" : "aaf0c0b1-00ed-4106-a8ed-c909212f590f", | |
| "name" : "cilp1212.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:04:01Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "cilp1212.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5181, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "e8fd1cd1940fd5f59de0a14076aa4149" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/aaf0c0b1-00ed-4106-a8ed-c909212f590f/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/aaf0c0b1-00ed-4106-a8ed-c909212f590f/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/aaf0c0b1-00ed-4106-a8ed-c909212f590f/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/aaf0c0b1-00ed-4106-a8ed-c909212f590f/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/aaf0c0b1-00ed-4106-a8ed-c909212f590f" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4d433c-b606-4b8e-8d41-6a0b7b33a615" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e4d433c-b606-4b8e-8d41-6a0b7b33a615", | |
| "uuid" : "7e4d433c-b606-4b8e-8d41-6a0b7b33a615", | |
| "name" : "Dorsal view of a folsom preform dorsal", | |
| "handle" : "123456789/47342", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Meghan Ward", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-03T02:43:30Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-03T02:43:30Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2007-08-21", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-ja90-0k67", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "preform", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "lithic tools", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Dorsal view of a folsom preform dorsal", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:05.175+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4d433c-b606-4b8e-8d41-6a0b7b33a615/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4d433c-b606-4b8e-8d41-6a0b7b33a615/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4d433c-b606-4b8e-8d41-6a0b7b33a615/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4d433c-b606-4b8e-8d41-6a0b7b33a615/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4d433c-b606-4b8e-8d41-6a0b7b33a615/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4d433c-b606-4b8e-8d41-6a0b7b33a615/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4d433c-b606-4b8e-8d41-6a0b7b33a615/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4d433c-b606-4b8e-8d41-6a0b7b33a615/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4d433c-b606-4b8e-8d41-6a0b7b33a615/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e4d433c-b606-4b8e-8d41-6a0b7b33a615" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "6fa71a20-c86d-4cc4-84ef-39fb689224f8", | |
| "uuid" : "6fa71a20-c86d-4cc4-84ef-39fb689224f8", | |
| "name" : "1974-001-002_d_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:04:05Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1974-001-002_d_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4029, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "60a9b1ab7a2e7a77a2db10380b90d0a1" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6fa71a20-c86d-4cc4-84ef-39fb689224f8/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6fa71a20-c86d-4cc4-84ef-39fb689224f8/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6fa71a20-c86d-4cc4-84ef-39fb689224f8/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6fa71a20-c86d-4cc4-84ef-39fb689224f8/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6fa71a20-c86d-4cc4-84ef-39fb689224f8" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5094b4-2dc0-47c3-a32c-309579532bb6" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e5094b4-2dc0-47c3-a32c-309579532bb6", | |
| "uuid" : "7e5094b4-2dc0-47c3-a32c-309579532bb6", | |
| "name" : "Parliament Now, February 15, 2011", | |
| "handle" : "123456789/24081", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Hill Times Publishing", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T17:54:10Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T17:54:10Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2011/02/15", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "Canada’s premier daily information service about Parliament and the federal government", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3B56D562", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This material can be used for non-commercial educational, research, teaching and personal uses, including use in scholarly publications as permitted under copyright legislation, and discussion or presentation of such research or publications at academic conferences.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Canada--Parliament--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Parliament Now, February 15, 2011", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:06.369+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5094b4-2dc0-47c3-a32c-309579532bb6/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5094b4-2dc0-47c3-a32c-309579532bb6/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5094b4-2dc0-47c3-a32c-309579532bb6/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5094b4-2dc0-47c3-a32c-309579532bb6/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5094b4-2dc0-47c3-a32c-309579532bb6/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5094b4-2dc0-47c3-a32c-309579532bb6/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5094b4-2dc0-47c3-a32c-309579532bb6/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5094b4-2dc0-47c3-a32c-309579532bb6/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5094b4-2dc0-47c3-a32c-309579532bb6/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5094b4-2dc0-47c3-a32c-309579532bb6" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "d360c496-3918-4711-952c-c461df387840", | |
| "uuid" : "d360c496-3918-4711-952c-c461df387840", | |
| "name" : "021511_parliamentnow.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:04:06Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "021511_parliamentnow.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3181, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "790a73cb3d2be9d64351dc42bb13ab77" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/d360c496-3918-4711-952c-c461df387840/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/d360c496-3918-4711-952c-c461df387840/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/d360c496-3918-4711-952c-c461df387840/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/d360c496-3918-4711-952c-c461df387840/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/d360c496-3918-4711-952c-c461df387840" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5136f1-57f7-4dcd-8b4a-ee0720df4502" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e5136f1-57f7-4dcd-8b4a-ee0720df4502", | |
| "uuid" : "7e5136f1-57f7-4dcd-8b4a-ee0720df4502", | |
| "name" : "Disc 48 Tory, 1-28, 10, 1 ventral", | |
| "handle" : "123456789/37565", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Jennifer Papineau", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T07:16:00Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T07:16:00Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2008-08-12", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-bff7-n755", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "flake", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "lithic debitage", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Disc 48 Tory, 1-28, 10, 1 ventral", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:10.603+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5136f1-57f7-4dcd-8b4a-ee0720df4502/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5136f1-57f7-4dcd-8b4a-ee0720df4502/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5136f1-57f7-4dcd-8b4a-ee0720df4502/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5136f1-57f7-4dcd-8b4a-ee0720df4502/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5136f1-57f7-4dcd-8b4a-ee0720df4502/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5136f1-57f7-4dcd-8b4a-ee0720df4502/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5136f1-57f7-4dcd-8b4a-ee0720df4502/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5136f1-57f7-4dcd-8b4a-ee0720df4502/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5136f1-57f7-4dcd-8b4a-ee0720df4502/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5136f1-57f7-4dcd-8b4a-ee0720df4502" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "d4d36f00-f706-426b-81e8-97ef0372bee7", | |
| "uuid" : "d4d36f00-f706-426b-81e8-97ef0372bee7", | |
| "name" : "1970-008-036_v_v 001.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:04:10Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1970-008-036_v_v 001.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4601, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "da385f5f4e107452d2c4bc8cbc92b3d4" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/d4d36f00-f706-426b-81e8-97ef0372bee7/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/d4d36f00-f706-426b-81e8-97ef0372bee7/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/d4d36f00-f706-426b-81e8-97ef0372bee7/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/d4d36f00-f706-426b-81e8-97ef0372bee7/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/d4d36f00-f706-426b-81e8-97ef0372bee7" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e52bc66-6aa5-40ea-b9ef-baa56ad26589" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e52bc66-6aa5-40ea-b9ef-baa56ad26589", | |
| "uuid" : "7e52bc66-6aa5-40ea-b9ef-baa56ad26589", | |
| "name" : "Education in health research methodology: Use of a wiki for knowledge translation.", | |
| "handle" : "123456789/34468", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Scott, S. D.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Moher, D.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Klassen, T. P.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Hartling, L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Hamm, M. P.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T22:20:31Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T22:20:31Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2013", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "Introduction A research-practice gap exists between what is known about conducting methodologically rigorous randomized controlled trials (RCTs) and what is done. Evidence consistently shows that pediatric RCTs are susceptible to high risk of bias; therefore novel methods of influencing the design and conduct of trials are required. The objective of this study was to develop and pilot test a wiki designed to educate pediatric trialists and trainees in the principles involved in minimizing risk of bias in RCTs. The focus was on preliminary usability testing of the wiki. Methods The wiki was developed through adaptation of existing knowledge translation strategies and through tailoring the site to the identified needs of the end-users. The wiki was evaluated for usability and user preferences regarding the content and formatting. Semi-structured interviews were conducted with 15 trialists and systematic reviewers, representing varying levels of experience with risk of bias or the conduct of trials. Data were analyzed using content analysis. Results Participants found the wiki to be well organized, easy to use, and straightforward to navigate. Suggestions for improvement tended to focus on clarification of the text or on esthetics, rather than on the content or format. Participants liked the additional features of the site that were supplementary to the text, such as the interactive examples, and the components that focused on practical applications, adding relevance to the theory presented. While the site could be used by both trialists and systematic reviewers, the lack of a clearly defined target audience caused some confusion among participants. Conclusions Participants were supportive of using a wiki as a novel educational tool. The results of this pilot test will be used to refine the risk of bias wiki, which holds promise as a knowledge translation intervention for education in medical research methodology.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3000042M", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.relation.isversionof" : [ { | |
| "value" : "Hamm, M. P., Klassen, T. P., Scott, S. D., Moher, D., & Hartling, L. (2013). Education in health research methodology: Use of a wiki for knowledge translation. PloS One, 8(5), e64922.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc/3.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Research design", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Biomedical research", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Health care delivery", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Randomized controlled trials", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Education in health research methodology: Use of a wiki for knowledge translation.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_6501 http://purl.org/coar/version/c_970fb48d4fbd8a85", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:11.233+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e52bc66-6aa5-40ea-b9ef-baa56ad26589/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e52bc66-6aa5-40ea-b9ef-baa56ad26589/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e52bc66-6aa5-40ea-b9ef-baa56ad26589/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e52bc66-6aa5-40ea-b9ef-baa56ad26589/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e52bc66-6aa5-40ea-b9ef-baa56ad26589/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e52bc66-6aa5-40ea-b9ef-baa56ad26589/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e52bc66-6aa5-40ea-b9ef-baa56ad26589/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e52bc66-6aa5-40ea-b9ef-baa56ad26589/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e52bc66-6aa5-40ea-b9ef-baa56ad26589/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e52bc66-6aa5-40ea-b9ef-baa56ad26589" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "1d54db2a-0459-45e8-86aa-994d394f6004", | |
| "uuid" : "1d54db2a-0459-45e8-86aa-994d394f6004", | |
| "name" : "PLOS_2013_8_5.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:04:11Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "PLOS_2013_8_5.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 6452, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "51255c30e7e2c4f2236338c3d9751242" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/1d54db2a-0459-45e8-86aa-994d394f6004/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/1d54db2a-0459-45e8-86aa-994d394f6004/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/1d54db2a-0459-45e8-86aa-994d394f6004/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/1d54db2a-0459-45e8-86aa-994d394f6004/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/1d54db2a-0459-45e8-86aa-994d394f6004" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e532d58-65a0-4b9e-8c7e-e4cde5b6e768" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e532d58-65a0-4b9e-8c7e-e4cde5b6e768", | |
| "uuid" : "7e532d58-65a0-4b9e-8c7e-e4cde5b6e768", | |
| "name" : "Preparation and properties of some cyclic hydroxylamines", | |
| "handle" : "123456789/61697", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "El-Hawari, Abdel-Monaem M. K.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-06T17:43:34Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-06T17:43:34Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1974", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-yb2g-g231", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This thesis is made available by the University of Alberta Libraries with permission of the copyright owner solely for the purpose of private, scholarly or scientific research. This thesis, or any portion thereof, may not otherwise be copied or reproduced without the written consent of the copyright owner, except to the extent permitted by Canadian copyright law.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Hydroxylamine. Research.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Preparation and properties of some cyclic hydroxylamines", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_46ec", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.grantor" : [ { | |
| "value" : "http://id.loc.gov/authorities/names/n79058482", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.level" : [ { | |
| "value" : "Doctoral", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.name" : [ { | |
| "value" : "Doctor of Philosophy", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.date.graduation" : [ { | |
| "value" : "1974", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.department" : [ { | |
| "value" : "Faculty of Pharmacy and Pharmaceutical Sciences", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:12.378+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e532d58-65a0-4b9e-8c7e-e4cde5b6e768/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e532d58-65a0-4b9e-8c7e-e4cde5b6e768/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e532d58-65a0-4b9e-8c7e-e4cde5b6e768/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e532d58-65a0-4b9e-8c7e-e4cde5b6e768/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e532d58-65a0-4b9e-8c7e-e4cde5b6e768/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e532d58-65a0-4b9e-8c7e-e4cde5b6e768/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e532d58-65a0-4b9e-8c7e-e4cde5b6e768/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e532d58-65a0-4b9e-8c7e-e4cde5b6e768/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e532d58-65a0-4b9e-8c7e-e4cde5b6e768/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e532d58-65a0-4b9e-8c7e-e4cde5b6e768" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "8aa9d267-5f38-4d45-a71f-061033564424", | |
| "uuid" : "8aa9d267-5f38-4d45-a71f-061033564424", | |
| "name" : "NK21025.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:04:12Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "NK21025.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 7161, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "9e62cbecc0c08eefcf0e92c1858e1250" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/8aa9d267-5f38-4d45-a71f-061033564424/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/8aa9d267-5f38-4d45-a71f-061033564424/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/8aa9d267-5f38-4d45-a71f-061033564424/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/8aa9d267-5f38-4d45-a71f-061033564424/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/8aa9d267-5f38-4d45-a71f-061033564424" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5476a5-0aa0-459c-9b1f-21141d277d01" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e5476a5-0aa0-459c-9b1f-21141d277d01", | |
| "uuid" : "7e5476a5-0aa0-459c-9b1f-21141d277d01", | |
| "name" : "Daily Record, Friday, May 5, 2006", | |
| "handle" : "123456789/8023", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Toronto Stock Exchange", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T02:44:24Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T02:44:24Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2006/05/05", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3TD9NF6F", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Use of this product is restricted to current faculty, staff, and students of the University. It is the responsibility of each user to ensure that he or she uses this product for individual, non-commercial educational or research purposes only, and does not systematically download or retain substantial portions of information. Users may not reproduce or redistribute unprocessed/raw data portions of the data to any third party, or otherwise engage in the systematic retransmission or commercialization of the data.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Toronto Stock Exchange--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Stock exchanges--Canada--Tables--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Daily Record, Friday, May 5, 2006", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:12.772+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5476a5-0aa0-459c-9b1f-21141d277d01/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5476a5-0aa0-459c-9b1f-21141d277d01/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5476a5-0aa0-459c-9b1f-21141d277d01/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5476a5-0aa0-459c-9b1f-21141d277d01/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5476a5-0aa0-459c-9b1f-21141d277d01/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5476a5-0aa0-459c-9b1f-21141d277d01/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5476a5-0aa0-459c-9b1f-21141d277d01/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5476a5-0aa0-459c-9b1f-21141d277d01/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5476a5-0aa0-459c-9b1f-21141d277d01/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5476a5-0aa0-459c-9b1f-21141d277d01" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "dcdb0cd9-8249-419a-9fc6-07e3c5115e9c", | |
| "uuid" : "dcdb0cd9-8249-419a-9fc6-07e3c5115e9c", | |
| "name" : "20060505Daily_Record_.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:04:12Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "20060505Daily_Record_.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 6442, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "f77dc6b43f4e8f5b8faabe3cfd76d9ce" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/dcdb0cd9-8249-419a-9fc6-07e3c5115e9c/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/dcdb0cd9-8249-419a-9fc6-07e3c5115e9c/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/dcdb0cd9-8249-419a-9fc6-07e3c5115e9c/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/dcdb0cd9-8249-419a-9fc6-07e3c5115e9c/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/dcdb0cd9-8249-419a-9fc6-07e3c5115e9c" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5506c7-33a9-43ef-bb41-e400020a945b" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e5506c7-33a9-43ef-bb41-e400020a945b", | |
| "uuid" : "7e5506c7-33a9-43ef-bb41-e400020a945b", | |
| "name" : "Daily Record, Tuesday, June 9, 2009", | |
| "handle" : "123456789/11038", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Toronto Stock Exchange", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T05:49:11Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T05:49:11Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2009/06/09", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3743J", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Use of this product is restricted to current faculty, staff, and students of the University. It is the responsibility of each user to ensure that he or she uses this product for individual, non-commercial educational or research purposes only, and does not systematically download or retain substantial portions of information. Users may not reproduce or redistribute unprocessed/raw data portions of the data to any third party, or otherwise engage in the systematic retransmission or commercialization of the data.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Toronto Stock Exchange--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Stock exchanges--Canada--Tables--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Daily Record, Tuesday, June 9, 2009", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:13.245+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5506c7-33a9-43ef-bb41-e400020a945b/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5506c7-33a9-43ef-bb41-e400020a945b/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5506c7-33a9-43ef-bb41-e400020a945b/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5506c7-33a9-43ef-bb41-e400020a945b/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5506c7-33a9-43ef-bb41-e400020a945b/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5506c7-33a9-43ef-bb41-e400020a945b/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5506c7-33a9-43ef-bb41-e400020a945b/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5506c7-33a9-43ef-bb41-e400020a945b/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5506c7-33a9-43ef-bb41-e400020a945b/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5506c7-33a9-43ef-bb41-e400020a945b" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "ffcc8037-424f-4b54-b437-3577fdf4f541", | |
| "uuid" : "ffcc8037-424f-4b54-b437-3577fdf4f541", | |
| "name" : "20090609DailyRecord.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:04:13Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "20090609DailyRecord.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 6411, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "b8809fb6410e124b0a2b4057fb98113c" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/ffcc8037-424f-4b54-b437-3577fdf4f541/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/ffcc8037-424f-4b54-b437-3577fdf4f541/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/ffcc8037-424f-4b54-b437-3577fdf4f541/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/ffcc8037-424f-4b54-b437-3577fdf4f541/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/ffcc8037-424f-4b54-b437-3577fdf4f541" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e56448b-78f3-48e8-a92b-76b6f3220f78" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e56448b-78f3-48e8-a92b-76b6f3220f78", | |
| "uuid" : "7e56448b-78f3-48e8-a92b-76b6f3220f78", | |
| "name" : "Parent-child interaction: a comparison of linguistic strategies used by fathers and mothers", | |
| "handle" : "123456789/62592", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Banarsee-Hopkinson, Shirley A.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-06T18:53:12Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-06T18:53:12Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1982", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3H41JS1P", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This thesis is made available by the University of Alberta Libraries with permission of the copyright owner solely for non-commercial purposes. This thesis, or any portion thereof, may not otherwise be copied or reproduced without the written consent of the copyright owner, except to the extent permitted by Canadian copyright law.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Father and child", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Mother and child", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Parent and child", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Parent-child interaction: a comparison of linguistic strategies used by fathers and mothers", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_46ec", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.grantor" : [ { | |
| "value" : "http://id.loc.gov/authorities/names/n79058482", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.level" : [ { | |
| "value" : "Master's", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.name" : [ { | |
| "value" : "Master of Education", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.date.graduation" : [ { | |
| "value" : "1982", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.department" : [ { | |
| "value" : "Department of Elementary Education", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:14.924+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e56448b-78f3-48e8-a92b-76b6f3220f78/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e56448b-78f3-48e8-a92b-76b6f3220f78/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e56448b-78f3-48e8-a92b-76b6f3220f78/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e56448b-78f3-48e8-a92b-76b6f3220f78/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e56448b-78f3-48e8-a92b-76b6f3220f78/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e56448b-78f3-48e8-a92b-76b6f3220f78/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e56448b-78f3-48e8-a92b-76b6f3220f78/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e56448b-78f3-48e8-a92b-76b6f3220f78/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e56448b-78f3-48e8-a92b-76b6f3220f78/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e56448b-78f3-48e8-a92b-76b6f3220f78" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "a3a6d150-fe3e-4956-bf87-32165c67b62c", | |
| "uuid" : "a3a6d150-fe3e-4956-bf87-32165c67b62c", | |
| "name" : "MK60392.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:04:14Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "MK60392.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 6496, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "89c337dbee0db9d517946ad8d95d4da1" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a3a6d150-fe3e-4956-bf87-32165c67b62c/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a3a6d150-fe3e-4956-bf87-32165c67b62c/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a3a6d150-fe3e-4956-bf87-32165c67b62c/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a3a6d150-fe3e-4956-bf87-32165c67b62c/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a3a6d150-fe3e-4956-bf87-32165c67b62c" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e582f20-3e6e-40cf-826a-85f8138d8739" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e582f20-3e6e-40cf-826a-85f8138d8739", | |
| "uuid" : "7e582f20-3e6e-40cf-826a-85f8138d8739", | |
| "name" : "Dorsal view of a plainware rim sherd dorsal", | |
| "handle" : "123456789/36157", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Meghan Ward", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T06:18:35Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T06:18:35Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2007-07-18T00:00:00+00:00", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-je1e-ze57", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "ceramics", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "sherd", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Dorsal view of a plainware rim sherd dorsal", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:18.936+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e582f20-3e6e-40cf-826a-85f8138d8739/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e582f20-3e6e-40cf-826a-85f8138d8739/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e582f20-3e6e-40cf-826a-85f8138d8739/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e582f20-3e6e-40cf-826a-85f8138d8739/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e582f20-3e6e-40cf-826a-85f8138d8739/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e582f20-3e6e-40cf-826a-85f8138d8739/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e582f20-3e6e-40cf-826a-85f8138d8739/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e582f20-3e6e-40cf-826a-85f8138d8739/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e582f20-3e6e-40cf-826a-85f8138d8739/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e582f20-3e6e-40cf-826a-85f8138d8739" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "afe1c96c-4e0e-4280-8a9e-2af3b055951d", | |
| "uuid" : "afe1c96c-4e0e-4280-8a9e-2af3b055951d", | |
| "name" : "1967-025-001_d_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:04:18Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1967-025-001_d_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4894, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "ff86ca3016de9d137320ba7776013ced" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/afe1c96c-4e0e-4280-8a9e-2af3b055951d/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/afe1c96c-4e0e-4280-8a9e-2af3b055951d/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/afe1c96c-4e0e-4280-8a9e-2af3b055951d/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/afe1c96c-4e0e-4280-8a9e-2af3b055951d/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/afe1c96c-4e0e-4280-8a9e-2af3b055951d" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5c219d-bfd3-44d1-8c10-ee091ce089e5" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e5c219d-bfd3-44d1-8c10-ee091ce089e5", | |
| "uuid" : "7e5c219d-bfd3-44d1-8c10-ee091ce089e5", | |
| "name" : "Acoustic absement files", | |
| "handle" : "123456789/42069", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Matthew C. Kelley", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Benjamin V. Tucker", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T18:25:14Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T18:25:14Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2021-01-01", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "These files contain acoustic absement and acoustic distinctiveness calculations for the words in the Massive Auditory Lexical Decision database. These files accompany the \"Using acoustic distance and acoustic absement to quantify lexical competition\" article in the Journal of The Acoustical Society of America. The article can be found at https://doi.org/10.1121/10.0009584, and we request that anyone who uses this data set in their publications cite that article.\n\nThe files are named to describe the comparisons that were made; \"ym\" means \"young man\", \"yw\" means \"young woman\", and \"om\" means \"older man\". The speakers on the right of the \"2\" are the speakers that formed the template the young man's speech was compared to.\n\nThe absement comparisons are contained in each of the corresponding zip files. They take the form of matrices indexed by a given word pair, and each cell of the matrix contains the relevant comparison. These matrices are large because there are 26005^2 comparisons present. They are symmetric and could be read in as symmetric matrices in appropriate programming environments to save resources if desired. As a form of data compression to prevent the files from being even larger than they are, the absement values were rounded to 4 decimal points. This should not significantly affect a study using these values, but it does mean that the exact acoustic distinctiveness values also included in this repository cannot be completely recalculated using the provided absement values. Anyone who requires in more precise absement values should employ the methods in the associated paper.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-mekk-5635", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by/4.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "phonetics", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "linguistics", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "spoken word recognition", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "lexical competition", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "acoustic distance", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "acoustic absement", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Acoustic absement files", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_1843", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:20.013+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5c219d-bfd3-44d1-8c10-ee091ce089e5/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5c219d-bfd3-44d1-8c10-ee091ce089e5/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5c219d-bfd3-44d1-8c10-ee091ce089e5/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5c219d-bfd3-44d1-8c10-ee091ce089e5/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5c219d-bfd3-44d1-8c10-ee091ce089e5/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5c219d-bfd3-44d1-8c10-ee091ce089e5/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5c219d-bfd3-44d1-8c10-ee091ce089e5/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5c219d-bfd3-44d1-8c10-ee091ce089e5/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5c219d-bfd3-44d1-8c10-ee091ce089e5/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5c219d-bfd3-44d1-8c10-ee091ce089e5" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : null, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5f2855-13db-415c-b5bb-4f1a8c8d620c" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e5f2855-13db-415c-b5bb-4f1a8c8d620c", | |
| "uuid" : "7e5f2855-13db-415c-b5bb-4f1a8c8d620c", | |
| "name" : "An Examination of the Effect of Diluent on Microbial Dynamics in Oil Sands Tailings and the Mechanistic Insight on Carbon Dioxide-mediated Turbidity Reduction in Oil Sands Surface Water", | |
| "handle" : "123456789/59966", | |
| "metadata" : { | |
| "dc.contributor.advisor" : [ { | |
| "value" : "Ulrich, Ania (Civil and Environmental Engineering)", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.author" : [ { | |
| "value" : "Poon, Ho Yin", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-06T16:12:11Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-06T16:12:11Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2019-11", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description.abstract" : [ { | |
| "value" : "Oil sands fluid fine tailings (FFT) are comprised of sand, silt, clay, residual organics, salt, trace metals and process-affected water (OSPW). In order to accommodate and remediate large amounts of FFT, a full-scale demonstration pit lake, where FFT was capped with a mixture of OSPW and fresh water, was constructed and named Base Mine Lake (BML). This strategy allows FFT to dewater and the water cap to gradually develop into a permanent wet-landscape with the expectation of an aquatic ecosystem development. However, high BML surface water turbidity has been observed, which hinders aquatic ecosystem development. The residual organics in the tailings have been shown to stimulate microbial activity thus generating CH4 and H2S in tailings. Ebullition of these biogenic gases could contribute to turbidity observed in BML, as well as transporting the residual organics to the surface water. \nThe impact of naphtha diluent (at 0.2, 0.8 and 1.5%) on microbial activity resulting in biogenic gases generation were investigated. In our anaerobic mesocosm study, H2S production preceded CH4 generation, and the amount gases producted increased linearly with increasing naphtha diluent concentration. The SRB communities were stimulated week 0-5, as an increase of relative abundance for Desulfobulbaceae (580%) and Desulfomicrobiaceae (505%) observed in MFT-PW-0.8% mesocosms. Consistent with the chemical data, an increase for Methanoregulaceae (380%) and Methanotrichaceae (360%) were observed in MFT-PW-0.8% mesocosms at week 11. Furthermore, Anaerolinealeaceae and Synergistaceae families were detected, suggesting competitive and syntrophic relationships. Organics from the naphtha diluent were fermented by members of Anaerolinealeaceae and Synergistaceae to generate fatty acids and H2, which serve as substrates for SRB and methanogens. \nThe ebullition of these biogenic gases from the FFT could transport BTEX compounds, which are a component of naphtha diluent. Thus, the changes of benzene and toluene concentrations in the headspace was monitored in these mesocosms. The highest benzene release rate was 1.1 g/mL MFT/d (week 4-6), coincided with the H2S emission in week 6. The highest toluene release rate was 0.35 g/mL MFT/d (week 11-15), corresponded with the CH4 emission in week 11. These data suggest the correlation between biogenic gas emissions and the transport of benzene and toluene from tailings to the surface water. Therefore, removing the BTEX compounds from the surface water may reduce biogenic gases production. Expanded graphite (EG) has large surface area, strong adsorption and electrical properties. As a result, the adsorption capacity of each BTEX compound was tested on EG and BioLargo’s advanced oxidation system (AOS). EG and AOS showed adsorption preference for BTEX compounds with higher hydrophobicity. In a batch experiment, ~37% of p-xylene and ~29% of ethylbenzene compared to 12% benzene and 17% were adsorbed using 500 mg EG. Electricity application further enhanced removal in AOS system for p-xylene (99%) and ethylbenzene (38%). These results showed that AOS system can only effectively removal p-xylene amongst BTEX compounds. \nSeveral previous studies showed dissolved CO2 improves FFT dewatering/densification and reduces surface water turbidity, but the mechanism is not well understood. The effect of CO2-mediated carbonate dissolution on BML water turbidity reduction was examined. Greater than 98% turbidity reduction was observed in columns receiving CO2-treatment and calcite compared to ~95% turbidity reduction with CO2 treatment alone. Despite turbidity reduction, the Ca2+ concentration was (4X) below the theoretically equilibrium concentration. Since OSPW contains high sulfate concentration, the inhibitory effect on calcite dissolution was tested on synthetic BML water. A 23% reduction on calcite dissolution rate was calculated for the 400 mg/L SO42- column compared to the 50 mg/L SO42- column. These results demonstrated the high SO42- concentration reduce the calcite dissolution rate. Dolomite and siderite minerals were identified from previous oil sands tailings studies. As a result, CO2-mediated dissolution of calcite and dolomite mixture (100%, 50%, 25%, 0% dolomite) was tested. A mathematical (DLVO) model was constructed to determine suspended FFT stability. A reduction in energy barrier below 20 kT was calculated for all columns received carbonate minerals (100% to 0% dolomite) and CO2-treatment. Interestingly, an inverse correlation was observed between the amount of dolomite present and energy barrier values at day 42 of the experiment, with a difference of 3.2 kT for 100% dolomite and 100% calcite columns. These results suggest CO2-mediated calcite dissolution provides an optimal condition for suspended FFT to settle.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-fek4-7t49", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Permission is hereby granted to the University of Alberta Libraries to reproduce single copies of this thesis and to lend or sell such copies for private, scholarly or scientific research purposes only. Where the thesis is converted to, or otherwise made available in digital form, the University of Alberta will advise potential users of the thesis of these terms. The author reserves all other publication and other rights in association with the copyright in the thesis and, except as herein before provided, neither the thesis nor any substantial portion thereof may be printed or otherwise reproduced in any material form whatsoever without the author's prior written permission.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Base Mine Lake", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Calcite Dissolution", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Turbidity", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Oil Sands", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Carbon Dioxide", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "An Examination of the Effect of Diluent on Microbial Dynamics in Oil Sands Tailings and the Mechanistic Insight on Carbon Dioxide-mediated Turbidity Reduction in Oil Sands Surface Water", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_46ec", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.discipline" : [ { | |
| "value" : "Environmental Science", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.grantor" : [ { | |
| "value" : "http://id.loc.gov/authorities/names/n79058482", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.level" : [ { | |
| "value" : "Doctoral", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.name" : [ { | |
| "value" : "Doctor of Philosophy", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.date.graduation" : [ { | |
| "value" : "Fall 2019", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.department" : [ { | |
| "value" : "Department of Civil and Environmental Engineering", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:21.177+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5f2855-13db-415c-b5bb-4f1a8c8d620c/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5f2855-13db-415c-b5bb-4f1a8c8d620c/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5f2855-13db-415c-b5bb-4f1a8c8d620c/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5f2855-13db-415c-b5bb-4f1a8c8d620c/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5f2855-13db-415c-b5bb-4f1a8c8d620c/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5f2855-13db-415c-b5bb-4f1a8c8d620c/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5f2855-13db-415c-b5bb-4f1a8c8d620c/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5f2855-13db-415c-b5bb-4f1a8c8d620c/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5f2855-13db-415c-b5bb-4f1a8c8d620c/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e5f2855-13db-415c-b5bb-4f1a8c8d620c" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "044b2d62-1bbd-4ee5-82a8-300f6cacc5e0", | |
| "uuid" : "044b2d62-1bbd-4ee5-82a8-300f6cacc5e0", | |
| "name" : "Poon_Ho_Yin_201904_PhD.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:04:21Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Poon_Ho_Yin_201904_PhD.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 2801, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "aed69124d0e9e3799862b5da438d44d9" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/044b2d62-1bbd-4ee5-82a8-300f6cacc5e0/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/044b2d62-1bbd-4ee5-82a8-300f6cacc5e0/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/044b2d62-1bbd-4ee5-82a8-300f6cacc5e0/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/044b2d62-1bbd-4ee5-82a8-300f6cacc5e0/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/044b2d62-1bbd-4ee5-82a8-300f6cacc5e0" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e60ebad-5a16-4a42-bad8-0a5f2aaf8438" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e60ebad-5a16-4a42-bad8-0a5f2aaf8438", | |
| "uuid" : "7e60ebad-5a16-4a42-bad8-0a5f2aaf8438", | |
| "name" : "Daily Record, Thursday, March 28, 2013", | |
| "handle" : "123456789/7694", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Toronto Stock Exchange", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T02:35:47Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T02:35:47Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2013/03/28", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3XW47Z3M", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Use of this product is restricted...", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Toronto Stock Exchange--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Stock exchanges--Canada--Tables--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Daily Record, Thursday, March 28, 2013", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:21.626+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e60ebad-5a16-4a42-bad8-0a5f2aaf8438/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e60ebad-5a16-4a42-bad8-0a5f2aaf8438/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e60ebad-5a16-4a42-bad8-0a5f2aaf8438/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e60ebad-5a16-4a42-bad8-0a5f2aaf8438/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e60ebad-5a16-4a42-bad8-0a5f2aaf8438/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e60ebad-5a16-4a42-bad8-0a5f2aaf8438/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e60ebad-5a16-4a42-bad8-0a5f2aaf8438/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e60ebad-5a16-4a42-bad8-0a5f2aaf8438/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e60ebad-5a16-4a42-bad8-0a5f2aaf8438/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e60ebad-5a16-4a42-bad8-0a5f2aaf8438" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "6991915e-62fe-4e79-bab9-a207acb66d59", | |
| "uuid" : "6991915e-62fe-4e79-bab9-a207acb66d59", | |
| "name" : "20130328-2000-00-00.0DailyRecordNon-Pro.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:04:21Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "20130328-2000-00-00.0DailyRecordNon-Pro.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 6342, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "3fcdc3d8fff54b52f86f58cae71461bd" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6991915e-62fe-4e79-bab9-a207acb66d59/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6991915e-62fe-4e79-bab9-a207acb66d59/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6991915e-62fe-4e79-bab9-a207acb66d59/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6991915e-62fe-4e79-bab9-a207acb66d59/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/6991915e-62fe-4e79-bab9-a207acb66d59" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e610b92-cab0-47a7-9532-d357591634aa" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e610b92-cab0-47a7-9532-d357591634aa", | |
| "uuid" : "7e610b92-cab0-47a7-9532-d357591634aa", | |
| "name" : "Addressing Pre- and Post-Deployment Support of Wireless Sensor Networks", | |
| "handle" : "123456789/62727", | |
| "metadata" : { | |
| "dc.contributor.advisor" : [ { | |
| "value" : "Nikolaidis, Ioanis (Computing Science)", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.author" : [ { | |
| "value" : "Ganev, Veselin S", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Harms, Janelle (Computing Science)", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Basu, Anup (Computing Science)", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-06T19:05:08Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-06T19:05:08Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2016-06", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description.abstract" : [ { | |
| "value" : "In this work we address the challenges arising when developing, testing and deploying software for Wireless Sensor Networks. We investigate both pre-deployment software design, as well as efficient post-deployment updates. We present a combined pre-deployment framework that simulates the network as it would be deployed to help in the testing, evaluation and fine-tuning of the system. Additionally, we address the need for post-deployment remote updates of the running code in an efficient and reliable manner. We also describe a real-world application that has motivated our work: the Smart Condo™ project, a system for monitoring patient activities in assisted living environments.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3HQ3S89B", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This thesis is made available by the University of Alberta Libraries with permission of the copyright owner solely for non-commercial purposes. This thesis, or any portion thereof, may not otherwise be copied or reproduced without the written consent of the copyright owner, except to the extent permitted by Canadian copyright law.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Smart Condo", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Embedded software", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Assisted living technology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "MQTT", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Energy efficiency", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "Code updates", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| }, { | |
| "value" : "Wireless Sensor Networks", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 6 | |
| }, { | |
| "value" : "Simulations", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 7 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Addressing Pre- and Post-Deployment Support of Wireless Sensor Networks", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_46ec", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.grantor" : [ { | |
| "value" : "http://id.loc.gov/authorities/names/n79058482", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.level" : [ { | |
| "value" : "Master's", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.name" : [ { | |
| "value" : "Master of Science", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.date.graduation" : [ { | |
| "value" : "Spring 2016", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.department" : [ { | |
| "value" : "Department of Computing Science", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:22.099+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e610b92-cab0-47a7-9532-d357591634aa/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e610b92-cab0-47a7-9532-d357591634aa/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e610b92-cab0-47a7-9532-d357591634aa/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e610b92-cab0-47a7-9532-d357591634aa/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e610b92-cab0-47a7-9532-d357591634aa/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e610b92-cab0-47a7-9532-d357591634aa/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e610b92-cab0-47a7-9532-d357591634aa/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e610b92-cab0-47a7-9532-d357591634aa/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e610b92-cab0-47a7-9532-d357591634aa/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e610b92-cab0-47a7-9532-d357591634aa" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "56d7d1f0-f83d-4fbe-82a6-57e951486602", | |
| "uuid" : "56d7d1f0-f83d-4fbe-82a6-57e951486602", | |
| "name" : "Ganev_Veselin_S_201604_MSc.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:04:22Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Ganev_Veselin_S_201604_MSc.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 2409, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "eb2141bbaf1dc3a654e05859232db729" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/56d7d1f0-f83d-4fbe-82a6-57e951486602/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/56d7d1f0-f83d-4fbe-82a6-57e951486602/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/56d7d1f0-f83d-4fbe-82a6-57e951486602/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/56d7d1f0-f83d-4fbe-82a6-57e951486602/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/56d7d1f0-f83d-4fbe-82a6-57e951486602" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e615c31-1430-44c4-a308-71d0df753ade" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e615c31-1430-44c4-a308-71d0df753ade", | |
| "uuid" : "7e615c31-1430-44c4-a308-71d0df753ade", | |
| "name" : "A dorsal view of a triangular biface dorsal", | |
| "handle" : "123456789/39753", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Lindsey Commandeur", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Ami, Dr. H. M.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T09:59:02Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T09:59:02Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2011-11-29", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-vjh3-zr36", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "lithic tools", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "biface", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "A dorsal view of a triangular biface dorsal", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:24.207+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e615c31-1430-44c4-a308-71d0df753ade/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e615c31-1430-44c4-a308-71d0df753ade/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e615c31-1430-44c4-a308-71d0df753ade/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e615c31-1430-44c4-a308-71d0df753ade/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e615c31-1430-44c4-a308-71d0df753ade/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e615c31-1430-44c4-a308-71d0df753ade/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e615c31-1430-44c4-a308-71d0df753ade/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e615c31-1430-44c4-a308-71d0df753ade/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e615c31-1430-44c4-a308-71d0df753ade/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e615c31-1430-44c4-a308-71d0df753ade" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "09f27bfd-ae74-445d-abb7-7fd2c9e22c5e", | |
| "uuid" : "09f27bfd-ae74-445d-abb7-7fd2c9e22c5e", | |
| "name" : "1996-001-513_d_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:04:24Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1996-001-513_d_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4751, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "84ffcff6a58e5e62ad40e287f3547555" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/09f27bfd-ae74-445d-abb7-7fd2c9e22c5e/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/09f27bfd-ae74-445d-abb7-7fd2c9e22c5e/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/09f27bfd-ae74-445d-abb7-7fd2c9e22c5e/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/09f27bfd-ae74-445d-abb7-7fd2c9e22c5e/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/09f27bfd-ae74-445d-abb7-7fd2c9e22c5e" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e61d942-8a75-4836-b595-7bf76a74912f" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e61d942-8a75-4836-b595-7bf76a74912f", | |
| "uuid" : "7e61d942-8a75-4836-b595-7bf76a74912f", | |
| "name" : "1996-001-975 dorsal", | |
| "handle" : "123456789/47667", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "University of Alberta Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Ami, Dr. H. M.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-03T03:15:01Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-03T03:15:01Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2015-08-17T00:00:00+00:00", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-vzjh-cy73", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "scraper", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "lithic tools", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1996-001-975 dorsal", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:28.459+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e61d942-8a75-4836-b595-7bf76a74912f/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e61d942-8a75-4836-b595-7bf76a74912f/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e61d942-8a75-4836-b595-7bf76a74912f/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e61d942-8a75-4836-b595-7bf76a74912f/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e61d942-8a75-4836-b595-7bf76a74912f/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e61d942-8a75-4836-b595-7bf76a74912f/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e61d942-8a75-4836-b595-7bf76a74912f/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e61d942-8a75-4836-b595-7bf76a74912f/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e61d942-8a75-4836-b595-7bf76a74912f/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e61d942-8a75-4836-b595-7bf76a74912f" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "e4617232-4cd3-4bb4-88cf-703d33192dd7", | |
| "uuid" : "e4617232-4cd3-4bb4-88cf-703d33192dd7", | |
| "name" : "1996-001-975_d_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:04:28Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1996-001-975_d_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3886, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "bf0f864318f7f42b66a8595d5c7d73fd" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/e4617232-4cd3-4bb4-88cf-703d33192dd7/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/e4617232-4cd3-4bb4-88cf-703d33192dd7/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/e4617232-4cd3-4bb4-88cf-703d33192dd7/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/e4617232-4cd3-4bb4-88cf-703d33192dd7/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/e4617232-4cd3-4bb4-88cf-703d33192dd7" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e641e75-3a49-4719-ae1a-9b2f0f65b5fe" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e641e75-3a49-4719-ae1a-9b2f0f65b5fe", | |
| "uuid" : "7e641e75-3a49-4719-ae1a-9b2f0f65b5fe", | |
| "name" : "LIS 598 Information Policy - Winter 2017 - Lecture 1 - Slide 14 audio", | |
| "handle" : "123456789/17676", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "McNally, Michael B", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T12:22:03Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T12:22:03Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2017/11/11", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "These are the underlying files (PowerPoint and audio) for Lecture 1 of LIS 598 Information Policy, Winter 2017. These files are provided for alternative access, and to allow adoption and resuse by others.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3W669C98", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by/4.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Information Policy", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "LIS 598 - Information Policy - Winter 2017", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "LIS 598 Information Policy - Winter 2017 - Lecture 1 - Slide 14 audio", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_e059", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-01T12:22:03.917+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e641e75-3a49-4719-ae1a-9b2f0f65b5fe/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e641e75-3a49-4719-ae1a-9b2f0f65b5fe/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e641e75-3a49-4719-ae1a-9b2f0f65b5fe/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e641e75-3a49-4719-ae1a-9b2f0f65b5fe/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e641e75-3a49-4719-ae1a-9b2f0f65b5fe/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e641e75-3a49-4719-ae1a-9b2f0f65b5fe/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e641e75-3a49-4719-ae1a-9b2f0f65b5fe/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e641e75-3a49-4719-ae1a-9b2f0f65b5fe/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e641e75-3a49-4719-ae1a-9b2f0f65b5fe/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e641e75-3a49-4719-ae1a-9b2f0f65b5fe" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : null, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e645fab-3078-4f08-a675-fbf05d88697c" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e645fab-3078-4f08-a675-fbf05d88697c", | |
| "uuid" : "7e645fab-3078-4f08-a675-fbf05d88697c", | |
| "name" : "Detecting Visually Similar Web Pages: Application to Phishing Detection", | |
| "handle" : "123456789/62201", | |
| "metadata" : { | |
| "dc.contributor.advisor" : [ { | |
| "value" : "Scott Dick (Electrical and Computer Engineering)", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "James Miller (Electrical and Computer Engineering)", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.contributor.author" : [ { | |
| "value" : "Teh-Chung, Chen", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Jens Weber (Software Engineering, University of Victoria)", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Osmar Zaiane (Computing Science)", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Vicky Zhao (Electrical and Computer Engineering)", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-06T18:20:59Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-06T18:20:59Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2011-06", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description.abstract" : [ { | |
| "value" : "We propose a novel approach for detecting visual similarity between two web pages. The proposed approach applies Gestalt theory and considers a webpage as a single indivisible entity. The concept of supersignals, as a realization of Gestalt principles, supports our contention that web pages must be treated as indivisible entities. We objectify, and directly compare, these indivisible supersignals using algorithmic complexity theory. We apply our new approach to the domain of anti-Phishing technologies, which at once gives us both a reasonable ground truth for the concept of “visually similar,” and a high-value application of our proposed approach. Phishing attacks involve sophisticated, fraudulent websites that are realistic enough to fool a significant number of victims into providing their account credentials. There is a constant tug-of-war between anti-Phishing researchers who create new schemes to detect Phishing scams, and Phishers who create countermeasures. Our approach to Phishing detection is based on one major signature of Phishing webpage which can not be easily changed by those con artists –Visual Similarity. The only way to fool this significant characteristic appears to be to make a visually dissimilar Phishing webpage, which also reduces the successful rate of the Phishing scams or their criminal profits dramatically. For this reason, our application appears to be quite robust against a variety of common countermeasures Phishers have employed. To verify the practicality of our proposed method, we perform a large-scale, real-world case study, based on “live” Phish captured from the Internet. Compression algorithms (as a practical operational realization of algorithmic complexity theory) are a critical component of our approach. Out of the vast number of compression techniques in the literature, we must determine which compression technique is best suited for our visual similarity problem. We therefore perform a comparison of nine compressors (including both 1-dimensional string compressors and 2-dimensional image compressors). We finally determine that the LZMA algorithm performs best for our problem. With this determination made, we test the LZMA-based similarity technique in a realistic anti-Phishing scenario. We construct a whitelist of protected sites, and compare the performance of our similarity technique when presented with a) some of the most popular legitimate sites, and b) live Phishing sites targeting the protected sites. We found that the accuracy of our technique is extremely high in this test; the true positive and false positive rates reached 100% and 0.8%, respectively. We finally undertake a more detailed investigation of the LZMA compression technique. Other authors have argued that compression techniques map objects to an implicit feature space consisting of the dictionary elements generated by the compressor. In testing this possibility on live Phishing data, we found that derived variables computed directly from the dictionary elements were indeed excellent predictors. In fact, by taking advantage of the specific characteristic of dictionary compression algorithm, we slightly improve on our accuracy when using a modified/refined LZMA algorithm for our already perfect NCD classification application.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3NT4J", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This thesis is made available by the University of Alberta Libraries with permission of the copyright owner solely for non-commercial purposes. This thesis, or any portion thereof, may not otherwise be copied or reproduced without the written consent of the copyright owner, except to the extent permitted by Canadian copyright law.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Webpage similarity", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Phishing", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Computer security", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Detecting Visually Similar Web Pages: Application to Phishing Detection", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_46ec", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.grantor" : [ { | |
| "value" : "http://id.loc.gov/authorities/names/n79058482", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.level" : [ { | |
| "value" : "Doctoral", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "thesis.degree.name" : [ { | |
| "value" : "Doctor of Philosophy", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.date.graduation" : [ { | |
| "value" : "Spring 2011", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.department" : [ { | |
| "value" : "Department of Electrical and Computer Engineering", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:28.788+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e645fab-3078-4f08-a675-fbf05d88697c/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e645fab-3078-4f08-a675-fbf05d88697c/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e645fab-3078-4f08-a675-fbf05d88697c/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e645fab-3078-4f08-a675-fbf05d88697c/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e645fab-3078-4f08-a675-fbf05d88697c/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e645fab-3078-4f08-a675-fbf05d88697c/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e645fab-3078-4f08-a675-fbf05d88697c/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e645fab-3078-4f08-a675-fbf05d88697c/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e645fab-3078-4f08-a675-fbf05d88697c/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e645fab-3078-4f08-a675-fbf05d88697c" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "7bfb28e1-d413-4f33-87c4-05fc8c5c1167", | |
| "uuid" : "7bfb28e1-d413-4f33-87c4-05fc8c5c1167", | |
| "name" : "Teh-Chung_Chen_Spring2011.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:04:28Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Teh-Chung_Chen_Spring2011.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3553, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "2feca372b2284076dda58c08047d4226" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7bfb28e1-d413-4f33-87c4-05fc8c5c1167/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7bfb28e1-d413-4f33-87c4-05fc8c5c1167/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7bfb28e1-d413-4f33-87c4-05fc8c5c1167/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7bfb28e1-d413-4f33-87c4-05fc8c5c1167/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7bfb28e1-d413-4f33-87c4-05fc8c5c1167" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65052d-436d-4ad8-8e84-33f627bf9df4" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e65052d-436d-4ad8-8e84-33f627bf9df4", | |
| "uuid" : "7e65052d-436d-4ad8-8e84-33f627bf9df4", | |
| "name" : "Preserved Long-Toed Salamander Specimen, Whole Specimen", | |
| "handle" : "123456789/3025", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "University of Alberta, Department of Biological Sciences", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T01:39:34Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T01:39:34Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2018", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "This is an image of a Long-toed Salamander Specimen. This specimen is observed in Survey of Vertebrates, Zoology 224. This image was created as part of the University of Alberta OER image database project in Biological Sciences. Identifier 2003I.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-vd4d-sa71", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by/4.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Long-Toed Salamander", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Ambystoma Macrodactylum", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Amphibian", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Salamander", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Ambistomaditae", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "Vertebrate", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| }, { | |
| "value" : "Animal", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 6 | |
| }, { | |
| "value" : "Body", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 7 | |
| }, { | |
| "value" : "Adult", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 8 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Preserved Long-Toed Salamander Specimen, Whole Specimen", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title.alternative" : [ { | |
| "value" : "Ambistomaditae Adult tiger salamander", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:29.701+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65052d-436d-4ad8-8e84-33f627bf9df4/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65052d-436d-4ad8-8e84-33f627bf9df4/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65052d-436d-4ad8-8e84-33f627bf9df4/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65052d-436d-4ad8-8e84-33f627bf9df4/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65052d-436d-4ad8-8e84-33f627bf9df4/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65052d-436d-4ad8-8e84-33f627bf9df4/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65052d-436d-4ad8-8e84-33f627bf9df4/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65052d-436d-4ad8-8e84-33f627bf9df4/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65052d-436d-4ad8-8e84-33f627bf9df4/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65052d-436d-4ad8-8e84-33f627bf9df4" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "96ddbb93-e4f1-4675-ac35-42ef474d2974", | |
| "uuid" : "96ddbb93-e4f1-4675-ac35-42ef474d2974", | |
| "name" : "SCI_1620.jpg.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:04:29Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "SCI_1620.jpg.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4350, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "943fdeb8b3d38a2ba1319debe0837538" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/96ddbb93-e4f1-4675-ac35-42ef474d2974/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/96ddbb93-e4f1-4675-ac35-42ef474d2974/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/96ddbb93-e4f1-4675-ac35-42ef474d2974/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/96ddbb93-e4f1-4675-ac35-42ef474d2974/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/96ddbb93-e4f1-4675-ac35-42ef474d2974" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65f1d1-4eb5-432a-a98e-433e554a3bfe" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e65f1d1-4eb5-432a-a98e-433e554a3bfe", | |
| "uuid" : "7e65f1d1-4eb5-432a-a98e-433e554a3bfe", | |
| "name" : "PD and PA Presentation - Cantonese", | |
| "handle" : "123456789/3433", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Wong, Janice J.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T01:47:02Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T01:47:02Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2012/1/18", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "This is an audio recording of the PD and PA presentation. <br><br> Additional resources are available at: <br><br><a href=\"http://www.qp.alberta.ca/documents/Acts/p06.pdf\" target=\\\"_blank\\\">- Personal Directives Act, RSA 2000 c P-6</a><br><a href=\"http://www.qp.alberta.ca/documents/acts/p20.pdf\" target=\\\"_blank\\\">- Powers of Attorney Act, RSA 2000 c P-20</a>", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3X34MT5D", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "zh", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc/3.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Law", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Powers of attorney", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Personal directives", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "PD and PA Presentation - Cantonese", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/R60J-J5BD", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-01T01:47:02.468+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65f1d1-4eb5-432a-a98e-433e554a3bfe/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65f1d1-4eb5-432a-a98e-433e554a3bfe/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65f1d1-4eb5-432a-a98e-433e554a3bfe/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65f1d1-4eb5-432a-a98e-433e554a3bfe/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65f1d1-4eb5-432a-a98e-433e554a3bfe/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65f1d1-4eb5-432a-a98e-433e554a3bfe/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65f1d1-4eb5-432a-a98e-433e554a3bfe/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65f1d1-4eb5-432a-a98e-433e554a3bfe/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65f1d1-4eb5-432a-a98e-433e554a3bfe/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e65f1d1-4eb5-432a-a98e-433e554a3bfe" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : null, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e67e7a9-0d2a-4e79-a14f-a95e22001761" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e67e7a9-0d2a-4e79-a14f-a95e22001761", | |
| "uuid" : "7e67e7a9-0d2a-4e79-a14f-a95e22001761", | |
| "name" : "The Hill Times, Monday, April 13, 2015", | |
| "handle" : "123456789/31916", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Hill Times Publishing", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T21:19:19Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T21:19:19Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2015/04/13", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "The newspaper of Parliament", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3SF2MP90", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This material can be used for non-commercial educational, research, teaching and personal uses, including use in scholarly publications as permitted under copyright legislation, and discussion or presentation of such research or publications at academic conferences.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Canada--Parliament--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Canada--Politics and government--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "The Hill Times, Monday, April 13, 2015", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:30.225+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e67e7a9-0d2a-4e79-a14f-a95e22001761/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e67e7a9-0d2a-4e79-a14f-a95e22001761/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e67e7a9-0d2a-4e79-a14f-a95e22001761/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e67e7a9-0d2a-4e79-a14f-a95e22001761/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e67e7a9-0d2a-4e79-a14f-a95e22001761/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e67e7a9-0d2a-4e79-a14f-a95e22001761/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e67e7a9-0d2a-4e79-a14f-a95e22001761/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e67e7a9-0d2a-4e79-a14f-a95e22001761/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e67e7a9-0d2a-4e79-a14f-a95e22001761/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e67e7a9-0d2a-4e79-a14f-a95e22001761" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "bceb31cb-a6b9-4258-9dc7-2eef02443a09", | |
| "uuid" : "bceb31cb-a6b9-4258-9dc7-2eef02443a09", | |
| "name" : "041315_ht.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:04:30Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "041315_ht.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 8589, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "25f2a59ab810270854426571fbf3dcbc" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/bceb31cb-a6b9-4258-9dc7-2eef02443a09/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/bceb31cb-a6b9-4258-9dc7-2eef02443a09/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/bceb31cb-a6b9-4258-9dc7-2eef02443a09/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/bceb31cb-a6b9-4258-9dc7-2eef02443a09/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/bceb31cb-a6b9-4258-9dc7-2eef02443a09" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6b778f-d9ed-4cef-a5ff-bf81600b71e6" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e6b778f-d9ed-4cef-a5ff-bf81600b71e6", | |
| "uuid" : "7e6b778f-d9ed-4cef-a5ff-bf81600b71e6", | |
| "name" : "Music at Convocation Hall - Martin Riseley, violin; Craig Jonathan, viola; Tanya Prochazka, cello; Stéphane Lemelin, piano", | |
| "handle" : "123456789/43789", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Riseley, Martin", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T18:56:25Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T18:56:25Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1996-03-15", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-e84h-v146", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.relation" : [ { | |
| "value" : "https://era-av.library.ualberta.ca/media_objects/avalon:26529", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This audiovisual content is being provided solely for educational use and research, pursuant to exceptions in the Canadian Copyright Act. Further reproduction or distribution or other use may require additional permissions.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Instrumental music", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Music at Convocation Hall - Martin Riseley, violin; Craig Jonathan, viola; Tanya Prochazka, cello; Stéphane Lemelin, piano", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_1843", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:31.902+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6b778f-d9ed-4cef-a5ff-bf81600b71e6/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6b778f-d9ed-4cef-a5ff-bf81600b71e6/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6b778f-d9ed-4cef-a5ff-bf81600b71e6/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6b778f-d9ed-4cef-a5ff-bf81600b71e6/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6b778f-d9ed-4cef-a5ff-bf81600b71e6/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6b778f-d9ed-4cef-a5ff-bf81600b71e6/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6b778f-d9ed-4cef-a5ff-bf81600b71e6/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6b778f-d9ed-4cef-a5ff-bf81600b71e6/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6b778f-d9ed-4cef-a5ff-bf81600b71e6/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6b778f-d9ed-4cef-a5ff-bf81600b71e6" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "fcaee0a8-b4e3-49bb-9f35-59e367a42208", | |
| "uuid" : "fcaee0a8-b4e3-49bb-9f35-59e367a42208", | |
| "name" : "1996-03-15.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:04:31Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1996-03-15.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5598, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "85075c4bd65620d302aa20980d9a0084" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/fcaee0a8-b4e3-49bb-9f35-59e367a42208/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/fcaee0a8-b4e3-49bb-9f35-59e367a42208/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/fcaee0a8-b4e3-49bb-9f35-59e367a42208/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/fcaee0a8-b4e3-49bb-9f35-59e367a42208/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/fcaee0a8-b4e3-49bb-9f35-59e367a42208" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9257-4e3c-4977-b56e-0f24e17e0df2" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e6d9257-4e3c-4977-b56e-0f24e17e0df2", | |
| "uuid" : "7e6d9257-4e3c-4977-b56e-0f24e17e0df2", | |
| "name" : "Busy scene at campsite with several men, one with rifle, women, children, dogs, skidoo, Honda, canoe and tent in background - Nunavut [NWT]-1142", | |
| "handle" : "123456789/21330", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Halpern, Joel Martin", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Canada--Nunavut [NWT]-- [Arviat [Eskimo Point]]", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T16:24:39Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T16:24:39Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1982/06/01", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3BZ5H", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc/3.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Tents", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "People", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Camps", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Vehicles", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Busy scene at campsite with several men, one with rifle, women, children, dogs, skidoo, Honda, canoe and tent in background - Nunavut [NWT]-1142", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:32.103+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9257-4e3c-4977-b56e-0f24e17e0df2/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9257-4e3c-4977-b56e-0f24e17e0df2/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9257-4e3c-4977-b56e-0f24e17e0df2/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9257-4e3c-4977-b56e-0f24e17e0df2/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9257-4e3c-4977-b56e-0f24e17e0df2/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9257-4e3c-4977-b56e-0f24e17e0df2/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9257-4e3c-4977-b56e-0f24e17e0df2/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9257-4e3c-4977-b56e-0f24e17e0df2/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9257-4e3c-4977-b56e-0f24e17e0df2/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9257-4e3c-4977-b56e-0f24e17e0df2" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "b0e10f84-7ece-4e33-970b-a9c6e18fbd23", | |
| "uuid" : "b0e10f84-7ece-4e33-970b-a9c6e18fbd23", | |
| "name" : "81_133c.jpg.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:04:32Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "81_133c.jpg.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4772, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "2ad5116e995ef955c78cd8001b4e4c9f" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b0e10f84-7ece-4e33-970b-a9c6e18fbd23/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b0e10f84-7ece-4e33-970b-a9c6e18fbd23/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b0e10f84-7ece-4e33-970b-a9c6e18fbd23/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b0e10f84-7ece-4e33-970b-a9c6e18fbd23/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b0e10f84-7ece-4e33-970b-a9c6e18fbd23" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9b78-3ce7-442b-a185-4a5bcb24bb7a" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e6d9b78-3ce7-442b-a185-4a5bcb24bb7a", | |
| "uuid" : "7e6d9b78-3ce7-442b-a185-4a5bcb24bb7a", | |
| "name" : "An overview assessment of in situ development in the Athabasca deposit", | |
| "handle" : "123456789/44008", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Humphreys, R. D.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Canada, Alberta, Fort McMurray", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T19:16:51Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T19:16:51Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1979", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "The purpose of this project is to provide AOSERP with a preliminary understanding of the state of the art of in situ bitumen recovery technology, the most probable application and rate of application of that technology to the Athabasca deposit, and the resultant implications for the environment and people of the area. This overview is aimed at providing Insight and general direction to research managers and scientists regarding in situ oil sands development. The report outlines oil sands deposits in Alberta in general and in the AOSERP study area in particular that are relevant to in situ technology and development. Current and proposed methods for in situ recovery are discussed including the technology, potential environmental affects, and the likelihood of commercial use. A possible development scenario is explored and an environmental impact matrix is used to assess the possible effects of this development scenario on Land, Air, Water, and Human systems in the region. The report has been reviewed and, although the conclusions do not necessarily reflect the views of Alberta Environment or Fisheries and Environment Canada, it is the impression of AOSERP management that the researchers have provided a reasonable prediction of in situ development. The mention of trade names for commercial products does not constitute an endorsement or recommendation for use.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R33J3923H", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This material is provided under educational reproduction permissions included in Alberta Environment and Sustainable Resource Development's Copyright and Disclosure Statement, see terms at http://www.environment.alberta.ca/copyright.html. This Statement requires the following identification: \\\"The source of the materials is Alberta Environment and Sustainable Resource Development http://www.environment.gov.ab.ca/. The use of these materials by the end user is done without any affiliation with or endorsement by the Government of Alberta. Reliance upon the end user's use of these materials is at the risk of the end user.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Oil Sands", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "AOSERP", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "In-situ", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Oil sands", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Tar Sands", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "Technology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| }, { | |
| "value" : "Alberta", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 6 | |
| }, { | |
| "value" : "AOSERP L-46", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 7 | |
| }, { | |
| "value" : "Tar sands", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 8 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "An overview assessment of in situ development in the Athabasca deposit", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:33.819+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9b78-3ce7-442b-a185-4a5bcb24bb7a/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9b78-3ce7-442b-a185-4a5bcb24bb7a/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9b78-3ce7-442b-a185-4a5bcb24bb7a/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9b78-3ce7-442b-a185-4a5bcb24bb7a/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9b78-3ce7-442b-a185-4a5bcb24bb7a/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9b78-3ce7-442b-a185-4a5bcb24bb7a/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9b78-3ce7-442b-a185-4a5bcb24bb7a/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9b78-3ce7-442b-a185-4a5bcb24bb7a/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9b78-3ce7-442b-a185-4a5bcb24bb7a/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6d9b78-3ce7-442b-a185-4a5bcb24bb7a" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "a43c949c-77e1-4531-9a8c-0d67bc898b5d", | |
| "uuid" : "a43c949c-77e1-4531-9a8c-0d67bc898b5d", | |
| "name" : "AOSERP-20L-46.PDF.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:04:33Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "AOSERP-20L-46.PDF.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 2823, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "eab3fe1bc61eb01d3a31108eae3f7ba3" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a43c949c-77e1-4531-9a8c-0d67bc898b5d/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a43c949c-77e1-4531-9a8c-0d67bc898b5d/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a43c949c-77e1-4531-9a8c-0d67bc898b5d/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a43c949c-77e1-4531-9a8c-0d67bc898b5d/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a43c949c-77e1-4531-9a8c-0d67bc898b5d" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6f489a-3852-4b01-9ade-2e532ab24543" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e6f489a-3852-4b01-9ade-2e532ab24543", | |
| "uuid" : "7e6f489a-3852-4b01-9ade-2e532ab24543", | |
| "name" : "Ventral view of lithic shatter ventral", | |
| "handle" : "123456789/41590", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Meghan Ward", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T13:35:04Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T13:35:04Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2007-08-13", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-jmj4-2657", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "lithic debitage", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "shatter", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Ventral view of lithic shatter ventral", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:37.895+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6f489a-3852-4b01-9ade-2e532ab24543/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6f489a-3852-4b01-9ade-2e532ab24543/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6f489a-3852-4b01-9ade-2e532ab24543/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6f489a-3852-4b01-9ade-2e532ab24543/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6f489a-3852-4b01-9ade-2e532ab24543/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6f489a-3852-4b01-9ade-2e532ab24543/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6f489a-3852-4b01-9ade-2e532ab24543/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6f489a-3852-4b01-9ade-2e532ab24543/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6f489a-3852-4b01-9ade-2e532ab24543/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e6f489a-3852-4b01-9ade-2e532ab24543" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "a525beb5-43a4-4954-b773-56f46121d9fc", | |
| "uuid" : "a525beb5-43a4-4954-b773-56f46121d9fc", | |
| "name" : "1973-005-023_v_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:04:37Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1973-005-023_v_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5850, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "823bd7edfc2874e5e5f5bcc14a21bd7b" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a525beb5-43a4-4954-b773-56f46121d9fc/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a525beb5-43a4-4954-b773-56f46121d9fc/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a525beb5-43a4-4954-b773-56f46121d9fc/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a525beb5-43a4-4954-b773-56f46121d9fc/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/a525beb5-43a4-4954-b773-56f46121d9fc" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e70b2c1-4fa5-4ac5-8796-01c6c183e267" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e70b2c1-4fa5-4ac5-8796-01c6c183e267", | |
| "uuid" : "7e70b2c1-4fa5-4ac5-8796-01c6c183e267", | |
| "name" : "1996-001-260 dorsal", | |
| "handle" : "123456789/38816", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Curtis Scally", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Ami, Dr. H. M.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T08:38:50Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T08:38:50Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2010-03-19T00:00:00+00:00", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-fpee-f623", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "lithic tools", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "scraper", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1996-001-260 dorsal", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:39.283+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e70b2c1-4fa5-4ac5-8796-01c6c183e267/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e70b2c1-4fa5-4ac5-8796-01c6c183e267/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e70b2c1-4fa5-4ac5-8796-01c6c183e267/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e70b2c1-4fa5-4ac5-8796-01c6c183e267/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e70b2c1-4fa5-4ac5-8796-01c6c183e267/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e70b2c1-4fa5-4ac5-8796-01c6c183e267/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e70b2c1-4fa5-4ac5-8796-01c6c183e267/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e70b2c1-4fa5-4ac5-8796-01c6c183e267/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e70b2c1-4fa5-4ac5-8796-01c6c183e267/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e70b2c1-4fa5-4ac5-8796-01c6c183e267" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "41e67ac8-5384-4185-a2ed-c087a1f26073", | |
| "uuid" : "41e67ac8-5384-4185-a2ed-c087a1f26073", | |
| "name" : "1996-001-260_d_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:04:39Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1996-001-260_d_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4937, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "3ec5b6a9dda7993fec883cdade115738" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/41e67ac8-5384-4185-a2ed-c087a1f26073/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/41e67ac8-5384-4185-a2ed-c087a1f26073/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/41e67ac8-5384-4185-a2ed-c087a1f26073/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/41e67ac8-5384-4185-a2ed-c087a1f26073/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/41e67ac8-5384-4185-a2ed-c087a1f26073" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e74ff78-0269-44dd-926e-8718f7f6b34c" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e74ff78-0269-44dd-926e-8718f7f6b34c", | |
| "uuid" : "7e74ff78-0269-44dd-926e-8718f7f6b34c", | |
| "name" : "A Study of Image Indexing Techniques for Multimedia Database Systems", | |
| "handle" : "123456789/31151", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Niu, Youping", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Ozsu, M. Tamer", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Li, Xiaobo", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T21:12:51Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T21:12:51Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1995", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "Technical report TR95-19. The role of indexing in query optimization is well-understood in the database community. Indexes enable efficient access to a subset of a database. There have been many studies on indexing within the context of relational database management systems (RDBMS). The most popular indexing techniques are based on B-trees. However, these index structures do not apply for images in Multimedia Database Systems (MMDBS). Some novel index structures to retrieve images have been proposed. In this report, we discuss some issues concerning these advanced indexing techniques, and report the results. | TRID-ID TR95-19", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3HX15V2F", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by/3.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "MMDBS", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Multimedia Database systems", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Image indexing", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "A Study of Image Indexing Techniques for Multimedia Database Systems", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-01T21:12:51.504+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e74ff78-0269-44dd-926e-8718f7f6b34c/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e74ff78-0269-44dd-926e-8718f7f6b34c/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e74ff78-0269-44dd-926e-8718f7f6b34c/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e74ff78-0269-44dd-926e-8718f7f6b34c/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e74ff78-0269-44dd-926e-8718f7f6b34c/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e74ff78-0269-44dd-926e-8718f7f6b34c/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e74ff78-0269-44dd-926e-8718f7f6b34c/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e74ff78-0269-44dd-926e-8718f7f6b34c/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e74ff78-0269-44dd-926e-8718f7f6b34c/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e74ff78-0269-44dd-926e-8718f7f6b34c" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : null, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7675b3-533b-45bf-9bb3-23e2c8388cc2" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e7675b3-533b-45bf-9bb3-23e2c8388cc2", | |
| "uuid" : "7e7675b3-533b-45bf-9bb3-23e2c8388cc2", | |
| "name" : "Ventral view of a teardrop-shaped biface ventral", | |
| "handle" : "123456789/36882", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Meghan Ward", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T06:43:22Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T06:43:22Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2007-09-21", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-0ycs-hb20", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "biface", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "lithic tools", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Ventral view of a teardrop-shaped biface ventral", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:43.283+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7675b3-533b-45bf-9bb3-23e2c8388cc2/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7675b3-533b-45bf-9bb3-23e2c8388cc2/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7675b3-533b-45bf-9bb3-23e2c8388cc2/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7675b3-533b-45bf-9bb3-23e2c8388cc2/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7675b3-533b-45bf-9bb3-23e2c8388cc2/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7675b3-533b-45bf-9bb3-23e2c8388cc2/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7675b3-533b-45bf-9bb3-23e2c8388cc2/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7675b3-533b-45bf-9bb3-23e2c8388cc2/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7675b3-533b-45bf-9bb3-23e2c8388cc2/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7675b3-533b-45bf-9bb3-23e2c8388cc2" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "c730cc47-4586-4374-a9d9-3045fdda128c", | |
| "uuid" : "c730cc47-4586-4374-a9d9-3045fdda128c", | |
| "name" : "1969-050-001_v_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:04:43Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1969-050-001_v_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4533, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "e19aa8b826b939bbca787aa3e97eea66" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/c730cc47-4586-4374-a9d9-3045fdda128c/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/c730cc47-4586-4374-a9d9-3045fdda128c/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/c730cc47-4586-4374-a9d9-3045fdda128c/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/c730cc47-4586-4374-a9d9-3045fdda128c/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/c730cc47-4586-4374-a9d9-3045fdda128c" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76afc6-e343-4b9f-abd4-af78a236de49" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e76afc6-e343-4b9f-abd4-af78a236de49", | |
| "uuid" : "7e76afc6-e343-4b9f-abd4-af78a236de49", | |
| "name" : "Dorsal view of a monochrome rim sherd", | |
| "handle" : "123456789/47486", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Ward, Meghan", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Bryan, Alan L., Dr.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Andes", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Ecuador, Manabí", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-03T02:57:12Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-03T02:57:12Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1970", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3599Z32T", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Sherd", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Ceramics", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Dorsal view of a monochrome rim sherd", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:47.438+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76afc6-e343-4b9f-abd4-af78a236de49/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76afc6-e343-4b9f-abd4-af78a236de49/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76afc6-e343-4b9f-abd4-af78a236de49/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76afc6-e343-4b9f-abd4-af78a236de49/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76afc6-e343-4b9f-abd4-af78a236de49/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76afc6-e343-4b9f-abd4-af78a236de49/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76afc6-e343-4b9f-abd4-af78a236de49/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76afc6-e343-4b9f-abd4-af78a236de49/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76afc6-e343-4b9f-abd4-af78a236de49/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76afc6-e343-4b9f-abd4-af78a236de49" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "62e3e5d1-69d6-4ee2-8cb6-0ebe166fca1d", | |
| "uuid" : "62e3e5d1-69d6-4ee2-8cb6-0ebe166fca1d", | |
| "name" : "1970-097-011_d_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:04:47Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1970-097-011_d_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5117, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "e4ca34049d6d0b921ad55285fc5f777a" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/62e3e5d1-69d6-4ee2-8cb6-0ebe166fca1d/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/62e3e5d1-69d6-4ee2-8cb6-0ebe166fca1d/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/62e3e5d1-69d6-4ee2-8cb6-0ebe166fca1d/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/62e3e5d1-69d6-4ee2-8cb6-0ebe166fca1d/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/62e3e5d1-69d6-4ee2-8cb6-0ebe166fca1d" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76bd00-9e84-451e-bb5c-e21efa881b2c" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e76bd00-9e84-451e-bb5c-e21efa881b2c", | |
| "uuid" : "7e76bd00-9e84-451e-bb5c-e21efa881b2c", | |
| "name" : "Apparent Survival of Male Ovenbirds in Fragmented and Forested Boreal Landscapes", | |
| "handle" : "123456789/15785", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Bayne, E. M.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Hobson, K. A.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T12:01:20Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T12:01:20Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2002", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "From 1996 to 1999, apparent annual survival of male Ovenbirds (Seiurus aurocapillus) was compared in forest fragments created by forestry (n = 3) and agriculture (n = 14) to plots in continuous boreal forest of central Saskatchewan (n = 3). For 398 male Ovenbirds, Cormack-Jolly-Seber models indicated that apparent annual survival was lower (34%) in small forest fragments (< 15 ha) in the agricultural landscape than in forestry fragments (56%) or continuous forest (62%). Our results suggested that lower nesting and pairing success in small forest fragments caused individuals to permanently disperse in search of new territories, rather than fragmentation increasing mortality. Regardless of the mechanism, increased turnover of adult males altered the age structure of the population in small forest fragments, as more males were first-time breeders in fragments in the agricultural landscape (59%) than in forestry fragments (47%) or continuous forest (45%). Males recruited into fragments in the agricultural landscape were more likely (90%) to be first-time breeders than in forestry fragments (74%) or continuous forest (64%). Our results suggest that adult dispersal differs with the amount and type of fragmentation and may play an important role in the population dynamics of boreal forest songbird populations.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3PG1HN6W", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.relation.isversionof" : [ { | |
| "value" : "Bayne, E. M., & Hobson, K. A. (2002). Apparent Survival of Male Ovenbirds in Fragmented and Forested Boreal Landscapes. Ecology, 83(5), 1307-1316. DOI: 10.2307/3071945.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© 2002 Ecological Society of America. This version of this article is open access and can be downloaded and shared. The original author(s) and source must be cited.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Saskatchewan, Canada", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Age structure", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Ovenbird", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Dispersal", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Fragmentation", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "Nest success", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| }, { | |
| "value" : "Seiurus-aurocapillus", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 6 | |
| }, { | |
| "value" : "Boreal forests", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 7 | |
| }, { | |
| "value" : "Adult survival", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 8 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Apparent Survival of Male Ovenbirds in Fragmented and Forested Boreal Landscapes", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_6501 http://purl.org/coar/version/c_970fb48d4fbd8a85", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:04:48.846+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76bd00-9e84-451e-bb5c-e21efa881b2c/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76bd00-9e84-451e-bb5c-e21efa881b2c/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76bd00-9e84-451e-bb5c-e21efa881b2c/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76bd00-9e84-451e-bb5c-e21efa881b2c/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76bd00-9e84-451e-bb5c-e21efa881b2c/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76bd00-9e84-451e-bb5c-e21efa881b2c/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76bd00-9e84-451e-bb5c-e21efa881b2c/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76bd00-9e84-451e-bb5c-e21efa881b2c/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76bd00-9e84-451e-bb5c-e21efa881b2c/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e76bd00-9e84-451e-bb5c-e21efa881b2c" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "0eb50d47-fea7-449d-accd-7c352ea96545", | |
| "uuid" : "0eb50d47-fea7-449d-accd-7c352ea96545", | |
| "name" : "Ecology_83_2002_1307.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:04:48Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Ecology_83_2002_1307.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5713, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "2b4991b522d6373f549a87076eeedd11" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/0eb50d47-fea7-449d-accd-7c352ea96545/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/0eb50d47-fea7-449d-accd-7c352ea96545/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/0eb50d47-fea7-449d-accd-7c352ea96545/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/0eb50d47-fea7-449d-accd-7c352ea96545/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/0eb50d47-fea7-449d-accd-7c352ea96545" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e77a4d8-72e8-467f-9fea-2f1369212be6" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e77a4d8-72e8-467f-9fea-2f1369212be6", | |
| "uuid" : "7e77a4d8-72e8-467f-9fea-2f1369212be6", | |
| "name" : "1996-001-932 dorsal", | |
| "handle" : "123456789/39553", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "University of Alberta Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Ami, Dr. H. M.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T09:40:24Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T09:40:24Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2015-09-05", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-jcbj-7t22", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "lithic tools", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "burin", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1996-001-932 dorsal", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-08T07:12:57.516+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e77a4d8-72e8-467f-9fea-2f1369212be6/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e77a4d8-72e8-467f-9fea-2f1369212be6/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e77a4d8-72e8-467f-9fea-2f1369212be6/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e77a4d8-72e8-467f-9fea-2f1369212be6/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e77a4d8-72e8-467f-9fea-2f1369212be6/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e77a4d8-72e8-467f-9fea-2f1369212be6/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e77a4d8-72e8-467f-9fea-2f1369212be6/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e77a4d8-72e8-467f-9fea-2f1369212be6/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e77a4d8-72e8-467f-9fea-2f1369212be6/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e77a4d8-72e8-467f-9fea-2f1369212be6" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "b6853616-cefd-4937-9590-6bae9dba1d4d", | |
| "uuid" : "b6853616-cefd-4937-9590-6bae9dba1d4d", | |
| "name" : "1996-001-932_d_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-08T07:12:57Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1996-001-932_d_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3076, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "d8b4abe1c2bac37408408445c9751d76" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b6853616-cefd-4937-9590-6bae9dba1d4d/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b6853616-cefd-4937-9590-6bae9dba1d4d/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b6853616-cefd-4937-9590-6bae9dba1d4d/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b6853616-cefd-4937-9590-6bae9dba1d4d/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b6853616-cefd-4937-9590-6bae9dba1d4d" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7a6f51-4cb1-4630-9ce9-45a38884926e" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e7a6f51-4cb1-4630-9ce9-45a38884926e", | |
| "uuid" : "7e7a6f51-4cb1-4630-9ce9-45a38884926e", | |
| "name" : "Dorsal view of a drilled flake dorsal", | |
| "handle" : "123456789/37560", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Meghan Ward", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Bryan, Dr. Alan L.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T07:15:44Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T07:15:44Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2007-08-14", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-a5ds-9221", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "lithic debitage", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "flake", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Dorsal view of a drilled flake dorsal", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-08T07:13:01.395+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7a6f51-4cb1-4630-9ce9-45a38884926e/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7a6f51-4cb1-4630-9ce9-45a38884926e/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7a6f51-4cb1-4630-9ce9-45a38884926e/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7a6f51-4cb1-4630-9ce9-45a38884926e/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7a6f51-4cb1-4630-9ce9-45a38884926e/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7a6f51-4cb1-4630-9ce9-45a38884926e/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7a6f51-4cb1-4630-9ce9-45a38884926e/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7a6f51-4cb1-4630-9ce9-45a38884926e/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7a6f51-4cb1-4630-9ce9-45a38884926e/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7a6f51-4cb1-4630-9ce9-45a38884926e" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "1f5186b7-be41-4af7-8ac4-e7bf2795c51b", | |
| "uuid" : "1f5186b7-be41-4af7-8ac4-e7bf2795c51b", | |
| "name" : "1988-003-009_d_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-08T07:13:01Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1988-003-009_d_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 5252, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "183eafc0c1e2ee2721abfa975acedca3" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/1f5186b7-be41-4af7-8ac4-e7bf2795c51b/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/1f5186b7-be41-4af7-8ac4-e7bf2795c51b/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/1f5186b7-be41-4af7-8ac4-e7bf2795c51b/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/1f5186b7-be41-4af7-8ac4-e7bf2795c51b/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/1f5186b7-be41-4af7-8ac4-e7bf2795c51b" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7acf06-1dbf-49e1-8847-d944e2d77d40" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e7acf06-1dbf-49e1-8847-d944e2d77d40", | |
| "uuid" : "7e7acf06-1dbf-49e1-8847-d944e2d77d40", | |
| "name" : "970.34.18 ventral", | |
| "handle" : "123456789/41046", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Crisfield, Melanie", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Bryan, Alan L., Dr.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Southern Cone", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Chile, Antofagasta", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T12:22:14Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T12:22:14Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1970", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3TC4M", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Chopper", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Lithic tools", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "970.34.18 ventral", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:05:01.523+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7acf06-1dbf-49e1-8847-d944e2d77d40/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7acf06-1dbf-49e1-8847-d944e2d77d40/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7acf06-1dbf-49e1-8847-d944e2d77d40/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7acf06-1dbf-49e1-8847-d944e2d77d40/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7acf06-1dbf-49e1-8847-d944e2d77d40/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7acf06-1dbf-49e1-8847-d944e2d77d40/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7acf06-1dbf-49e1-8847-d944e2d77d40/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7acf06-1dbf-49e1-8847-d944e2d77d40/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7acf06-1dbf-49e1-8847-d944e2d77d40/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7acf06-1dbf-49e1-8847-d944e2d77d40" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "10a4083f-5e42-4c90-a297-78befc6a016c", | |
| "uuid" : "10a4083f-5e42-4c90-a297-78befc6a016c", | |
| "name" : "1970-034-018_v_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:05:01Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1970-034-018_v_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4553, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "cee6b2d4be42e72bfab13e85f9324c6e" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/10a4083f-5e42-4c90-a297-78befc6a016c/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/10a4083f-5e42-4c90-a297-78befc6a016c/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/10a4083f-5e42-4c90-a297-78befc6a016c/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/10a4083f-5e42-4c90-a297-78befc6a016c/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/10a4083f-5e42-4c90-a297-78befc6a016c" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7ca02f-cbf6-44e3-a8cc-2553fb1506e3" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e7ca02f-cbf6-44e3-a8cc-2553fb1506e3", | |
| "uuid" : "7e7ca02f-cbf6-44e3-a8cc-2553fb1506e3", | |
| "name" : "A model for the frequency of long periods of drought at forested sites in Canada", | |
| "handle" : "123456789/18530", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Harrington, J.B.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Flannigan, M.D.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Canada", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T12:28:50Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T12:28:50Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1993", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "Long dry spells (sequences of dry days) are rare events, but they are important because they correlate significantly with the area burned during bad wildfire years. Previous attempts to model the frequency of dry spells have been successful for spells of short duration, but have failed for prolonged dry spells. In the current study, an empirical method has been developed that yields a realistic estimate of the probability of a spell of any duration. The theoretical framework proposes that the data can be explained partly by the dichotomy of weather into blocked and nonblocked westerly flows. A bimodal distribution of dry consecutive days in a consequence of this dichotomy. The transitional probability of a dry day following k dry days generally peaks at k = 1, declines to a shoulder for small k values, and then rises slowly to an asymptotic value that must be estimated from sparse and highly irregular data.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3BC3T08P", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.relation.isversionof" : [ { | |
| "value" : "Harrington, J.B. and Flannigan, M.D. (1993). A model for the frequency of long periods of drought at forested sites in Canada. Journal of Applied Meteorology, 32(11), 1708-1716.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© 1993 American Meteorological Society. This version of this article is open access and can be downloaded and shared. The original author(s) and source must be cited.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Drought", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Forests", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "A model for the frequency of long periods of drought at forested sites in Canada", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_6501 http://purl.org/coar/version/c_970fb48d4fbd8a85", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:05:02.039+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7ca02f-cbf6-44e3-a8cc-2553fb1506e3/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7ca02f-cbf6-44e3-a8cc-2553fb1506e3/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7ca02f-cbf6-44e3-a8cc-2553fb1506e3/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7ca02f-cbf6-44e3-a8cc-2553fb1506e3/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7ca02f-cbf6-44e3-a8cc-2553fb1506e3/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7ca02f-cbf6-44e3-a8cc-2553fb1506e3/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7ca02f-cbf6-44e3-a8cc-2553fb1506e3/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7ca02f-cbf6-44e3-a8cc-2553fb1506e3/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7ca02f-cbf6-44e3-a8cc-2553fb1506e3/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7ca02f-cbf6-44e3-a8cc-2553fb1506e3" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "7ea556c9-b0e5-46de-b47e-10dde42afed4", | |
| "uuid" : "7ea556c9-b0e5-46de-b47e-10dde42afed4", | |
| "name" : "JAM_32_1993_1708.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:05:02Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "JAM_32_1993_1708.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 6919, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "7111e93e925744283b59558d8b0ac6ab" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7ea556c9-b0e5-46de-b47e-10dde42afed4/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7ea556c9-b0e5-46de-b47e-10dde42afed4/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7ea556c9-b0e5-46de-b47e-10dde42afed4/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7ea556c9-b0e5-46de-b47e-10dde42afed4/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7ea556c9-b0e5-46de-b47e-10dde42afed4" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7cc5f8-8e6f-4529-9d71-e69c0ede90fc" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e7cc5f8-8e6f-4529-9d71-e69c0ede90fc", | |
| "uuid" : "7e7cc5f8-8e6f-4529-9d71-e69c0ede90fc", | |
| "name" : "Paleozoic reactivation structures in the Appalachian-Ouachita-Marathon foreland: Far-field deformation across Pangea", | |
| "handle" : "123456789/16703", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Porter, Ryan", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Malone, David H.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Day, James E.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| }, { | |
| "value" : "Craddock, John P.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 3 | |
| }, { | |
| "value" : "Luczaj, John", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 4 | |
| }, { | |
| "value" : "Konstantinou, Alex", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 5 | |
| }, { | |
| "value" : "Johnston, Stephen T.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 6 | |
| }, { | |
| "value" : "Compton, John", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 7 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T12:13:59Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T12:13:59Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2017/04/03", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "The Proterozoic Grenville orogeny (~ 1300–980 Ma) reactivated the Archean-hosted Kapuskasing suture in Laurentia which then propagated west and south initiating the Keweenaw rift (1141–1085 Ma) which closed by thrust shortening at 1060 Ma. Late Proterozoic-Paleozoic sediments were then deformed in association with the amalgamation of Pangea in the late Paleozoic causing ~ 30 km of thrust shortening along this 4000 km paired (inverted) fault system, preserved by numerous 2nd and 3rd order footwall structures in adjacent basement and Paleozoic cover rocks. We present the descriptions of twenty field sites of deformed Paleozoic sediments in the Appalachian-Ouachita-Marathon foreland to further document the subtleties of far-field tectonic stress transmission in the midcontinent of North America. Field observations are also complimented with 63 new foreland calcite twinning strain results and, when compiled with 260 older twinning strain results, document a complex Paleozoic far-field stress-strain field. Appalachian-Ouachita-Marathon orogenic fluid pulses in the foreland were also complex, namely the so-called Mississippi Valley type (MVT) Pb-Zn ore deposits, and mineralization is constrained by thrust faulted highlands with occasional fluid sourcing from underlying Precambrian basement. The amalgamation of Pangea was a complex process in the late Paleozoic involving oblique convergence along the Gondwana margin and a central Laurussian collisional belt where far-field stresses initiated inversion structures in the centers of the African and N. American cratons, including the Kiri and Keweenaw-Kapuskasing uplifts, respectively.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3P55DX6N", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.relation" : [ { | |
| "value" : "https://doi.org/10.1016/j.earscirev.2017.04.002", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.relation.isversionof" : [ { | |
| "value" : "Craddock, J. P., Malone, D. H., Porter, R., Compton, J., Luczaj, J., Konstantinou, A., Day, J. E., & Johnston, S. T. (2017). Paleozoic reactivation structures in the Appalachian-Ouachita-Marathon foreland: Far-field deformation across Pangea. Earth-Science Reviews, 169, 1-34. doi: 10.1016/j.earscirev.2017.04.002", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc-nd/4.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Earth Sciences", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Paleozoic reactivation structures in the Appalachian-Ouachita-Marathon foreland: Far-field deformation across Pangea", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_6501 http://purl.org/coar/version/c_71e4c1898caa6e32 http://purl.org/coar/version/c_b1a7d7d4d402bcce", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:05:02.501+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7cc5f8-8e6f-4529-9d71-e69c0ede90fc/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7cc5f8-8e6f-4529-9d71-e69c0ede90fc/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7cc5f8-8e6f-4529-9d71-e69c0ede90fc/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7cc5f8-8e6f-4529-9d71-e69c0ede90fc/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7cc5f8-8e6f-4529-9d71-e69c0ede90fc/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7cc5f8-8e6f-4529-9d71-e69c0ede90fc/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7cc5f8-8e6f-4529-9d71-e69c0ede90fc/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7cc5f8-8e6f-4529-9d71-e69c0ede90fc/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7cc5f8-8e6f-4529-9d71-e69c0ede90fc/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7cc5f8-8e6f-4529-9d71-e69c0ede90fc" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "75c66779-c641-4b16-a031-7beb9b88be36", | |
| "uuid" : "75c66779-c641-4b16-a031-7beb9b88be36", | |
| "name" : "ESR_169_June_1.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:05:02Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "ESR_169_June_1.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4378, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "2bb1c36780adf2843cd29c8efe4c5646" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/75c66779-c641-4b16-a031-7beb9b88be36/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/75c66779-c641-4b16-a031-7beb9b88be36/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/75c66779-c641-4b16-a031-7beb9b88be36/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/75c66779-c641-4b16-a031-7beb9b88be36/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/75c66779-c641-4b16-a031-7beb9b88be36" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7d1854-b49c-4f39-aaa8-8508980f05f7" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e7d1854-b49c-4f39-aaa8-8508980f05f7", | |
| "uuid" : "7e7d1854-b49c-4f39-aaa8-8508980f05f7", | |
| "name" : "Concert Choir", | |
| "handle" : "123456789/43775", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "University of Alberta Concert Choir", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T18:56:06Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T18:56:06Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1989-04-07", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-vvjv-8g18", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.relation" : [ { | |
| "value" : "https://era-av.library.ualberta.ca/media_objects/avalon:25879", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This audiovisual content is being provided solely for educational use and research, pursuant to exceptions in the Canadian Copyright Act. Further reproduction or distribution or other use may require additional permissions.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Vocal music", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Concert Choir", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_1843", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:05:04.772+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7d1854-b49c-4f39-aaa8-8508980f05f7/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7d1854-b49c-4f39-aaa8-8508980f05f7/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7d1854-b49c-4f39-aaa8-8508980f05f7/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7d1854-b49c-4f39-aaa8-8508980f05f7/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7d1854-b49c-4f39-aaa8-8508980f05f7/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7d1854-b49c-4f39-aaa8-8508980f05f7/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7d1854-b49c-4f39-aaa8-8508980f05f7/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7d1854-b49c-4f39-aaa8-8508980f05f7/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7d1854-b49c-4f39-aaa8-8508980f05f7/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7d1854-b49c-4f39-aaa8-8508980f05f7" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "635cbdcb-55f1-491f-bcd5-4043d18ad5e1", | |
| "uuid" : "635cbdcb-55f1-491f-bcd5-4043d18ad5e1", | |
| "name" : "1989-04-07.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:05:04Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1989-04-07.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 6404, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "b971a9b82c8292e7f553933de89fdb8c" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/635cbdcb-55f1-491f-bcd5-4043d18ad5e1/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/635cbdcb-55f1-491f-bcd5-4043d18ad5e1/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/635cbdcb-55f1-491f-bcd5-4043d18ad5e1/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/635cbdcb-55f1-491f-bcd5-4043d18ad5e1/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/635cbdcb-55f1-491f-bcd5-4043d18ad5e1" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7e2675-cb2d-4dee-b755-cfd6435526df" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e7e2675-cb2d-4dee-b755-cfd6435526df", | |
| "uuid" : "7e7e2675-cb2d-4dee-b755-cfd6435526df", | |
| "name" : "Parliament Now, April 21, 2015", | |
| "handle" : "123456789/24125", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Hill Times Publishing", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T17:54:43Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T17:54:43Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2015/04/21", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "Canada’s premier daily information service about Parliament and the federal government.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3M90294B", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "This material can be used for non-commercial educational, research, teaching and personal uses, including use in scholarly publications as permitted under copyright legislation, and discussion or presentation of such research or publications at academic conferences.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Canada--Parliament--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Parliament Now, April 21, 2015", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:05:05.163+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7e2675-cb2d-4dee-b755-cfd6435526df/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7e2675-cb2d-4dee-b755-cfd6435526df/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7e2675-cb2d-4dee-b755-cfd6435526df/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7e2675-cb2d-4dee-b755-cfd6435526df/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7e2675-cb2d-4dee-b755-cfd6435526df/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7e2675-cb2d-4dee-b755-cfd6435526df/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7e2675-cb2d-4dee-b755-cfd6435526df/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7e2675-cb2d-4dee-b755-cfd6435526df/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7e2675-cb2d-4dee-b755-cfd6435526df/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e7e2675-cb2d-4dee-b755-cfd6435526df" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "7ee779b5-96f1-44fb-aed6-2e39eedbd8e0", | |
| "uuid" : "7ee779b5-96f1-44fb-aed6-2e39eedbd8e0", | |
| "name" : "042115_parliamentnow_17440b97-872b-41aa-9f5b-ef57124ed34d.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:05:05Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "042115_parliamentnow_17440b97-872b-41aa-9f5b-ef57124ed34d.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3512, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "7a49a203b2bb804244375d848cb9f03d" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7ee779b5-96f1-44fb-aed6-2e39eedbd8e0/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7ee779b5-96f1-44fb-aed6-2e39eedbd8e0/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7ee779b5-96f1-44fb-aed6-2e39eedbd8e0/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7ee779b5-96f1-44fb-aed6-2e39eedbd8e0/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7ee779b5-96f1-44fb-aed6-2e39eedbd8e0" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e808eb6-bbb9-491f-b25a-d776248b88b1" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e808eb6-bbb9-491f-b25a-d776248b88b1", | |
| "uuid" : "7e808eb6-bbb9-491f-b25a-d776248b88b1", | |
| "name" : "Daily Record, Tuesday, September 29, 2015", | |
| "handle" : "123456789/9669", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Toronto Stock Exchange", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T04:01:23Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T04:01:23Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2015/09/29", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3BZ6191T", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Use of this product is restricted to current faculty, staff, and students of the University. It is the responsibility of each user to ensure that he or she uses this product for individual, non-commercial educational or research purposes only, and does not systematically download or retain substantial portions of information. Users may not reproduce or redistribute unprocessed/raw data portions of the data to any third party, or otherwise engage in the systematic retransmission or commercialization of the data.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Toronto Stock Exchange--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Stock exchanges--Canada--Tables--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Daily Record, Tuesday, September 29, 2015", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:05:05.654+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e808eb6-bbb9-491f-b25a-d776248b88b1/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e808eb6-bbb9-491f-b25a-d776248b88b1/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e808eb6-bbb9-491f-b25a-d776248b88b1/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e808eb6-bbb9-491f-b25a-d776248b88b1/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e808eb6-bbb9-491f-b25a-d776248b88b1/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e808eb6-bbb9-491f-b25a-d776248b88b1/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e808eb6-bbb9-491f-b25a-d776248b88b1/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e808eb6-bbb9-491f-b25a-d776248b88b1/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e808eb6-bbb9-491f-b25a-d776248b88b1/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e808eb6-bbb9-491f-b25a-d776248b88b1" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "b177321b-5c67-4907-b7f2-e6a28dec6b0d", | |
| "uuid" : "b177321b-5c67-4907-b7f2-e6a28dec6b0d", | |
| "name" : "20150929-2000-00-00.0DailyRecordNon-Pro.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:05:05Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "20150929-2000-00-00.0DailyRecordNon-Pro.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 6367, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "889633f9ba7b45fe3c403a7b45cd80aa" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b177321b-5c67-4907-b7f2-e6a28dec6b0d/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b177321b-5c67-4907-b7f2-e6a28dec6b0d/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b177321b-5c67-4907-b7f2-e6a28dec6b0d/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b177321b-5c67-4907-b7f2-e6a28dec6b0d/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/b177321b-5c67-4907-b7f2-e6a28dec6b0d" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8227c8-f8ce-448f-9261-83c445c980f3" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e8227c8-f8ce-448f-9261-83c445c980f3", | |
| "uuid" : "7e8227c8-f8ce-448f-9261-83c445c980f3", | |
| "name" : "Ventral view of a polyhedral core", | |
| "handle" : "123456789/37422", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Ward, Meghan", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.contributor.other" : [ { | |
| "value" : "Gruhn, Dr. Ruth", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Bryan, Alan L., Dr.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Guatemala, Quiché, Patzité", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Mesoamerica", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T07:08:22Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T07:08:22Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1969", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.description" : [ { | |
| "value" : "1 original", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R38N18", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "© University of Alberta, Department of Anthropology", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Core", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Lithic cores", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Ventral view of a polyhedral core", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:05:09.912+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8227c8-f8ce-448f-9261-83c445c980f3/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8227c8-f8ce-448f-9261-83c445c980f3/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8227c8-f8ce-448f-9261-83c445c980f3/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8227c8-f8ce-448f-9261-83c445c980f3/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8227c8-f8ce-448f-9261-83c445c980f3/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8227c8-f8ce-448f-9261-83c445c980f3/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8227c8-f8ce-448f-9261-83c445c980f3/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8227c8-f8ce-448f-9261-83c445c980f3/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8227c8-f8ce-448f-9261-83c445c980f3/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8227c8-f8ce-448f-9261-83c445c980f3" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "2ef0eea8-fd36-474b-9c04-8bb58952c2da", | |
| "uuid" : "2ef0eea8-fd36-474b-9c04-8bb58952c2da", | |
| "name" : "1969-075-008_v_v00.tif.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:05:09Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "1969-075-008_v_v00.tif.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 3836, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "84f231d1db8c1cb9ac1381ae8d8a3cfd" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/2ef0eea8-fd36-474b-9c04-8bb58952c2da/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/2ef0eea8-fd36-474b-9c04-8bb58952c2da/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/2ef0eea8-fd36-474b-9c04-8bb58952c2da/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/2ef0eea8-fd36-474b-9c04-8bb58952c2da/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/2ef0eea8-fd36-474b-9c04-8bb58952c2da" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e838938-f38f-4b72-afc7-4f4c19ada836" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e838938-f38f-4b72-afc7-4f4c19ada836", | |
| "uuid" : "7e838938-f38f-4b72-afc7-4f4c19ada836", | |
| "name" : "Cadbury Case Study: Retaining leadership position in the confectionery market", | |
| "handle" : "123456789/5574", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Datamonitor", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T02:10:10Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T02:10:10Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2009", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3HX15R04", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Use of the products in this collection is restricted to current faculty, staff, and students of the University. It is the responsibility of each user to ensure that he or she uses these products for individual, non-commercial educational or research purposes only, and does not systematically download or retain substantial portions of information. Users may not reproduce or redistribute unprocessed/raw data portions of the data to any third party, or otherwise engage in the systematic retransmission or commercialization of the data.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Industrial management--Case studies", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Corporate governance--Case studies", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Corporations--Case studies", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Cadbury Case Study: Retaining leadership position in the confectionery market", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:05:10.279+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e838938-f38f-4b72-afc7-4f4c19ada836/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e838938-f38f-4b72-afc7-4f4c19ada836/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e838938-f38f-4b72-afc7-4f4c19ada836/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e838938-f38f-4b72-afc7-4f4c19ada836/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e838938-f38f-4b72-afc7-4f4c19ada836/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e838938-f38f-4b72-afc7-4f4c19ada836/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e838938-f38f-4b72-afc7-4f4c19ada836/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e838938-f38f-4b72-afc7-4f4c19ada836/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e838938-f38f-4b72-afc7-4f4c19ada836/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e838938-f38f-4b72-afc7-4f4c19ada836" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "97fcbe98-9b48-4276-9016-5dbc0bf474f9", | |
| "uuid" : "97fcbe98-9b48-4276-9016-5dbc0bf474f9", | |
| "name" : "CSCM0277.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:05:10Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "CSCM0277.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4600, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "5ec479f6ad4dd6c2a7ae8402ba5e923d" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/97fcbe98-9b48-4276-9016-5dbc0bf474f9/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/97fcbe98-9b48-4276-9016-5dbc0bf474f9/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/97fcbe98-9b48-4276-9016-5dbc0bf474f9/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/97fcbe98-9b48-4276-9016-5dbc0bf474f9/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/97fcbe98-9b48-4276-9016-5dbc0bf474f9" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e83dfbb-2ec7-489b-a25a-6934c4556895" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e83dfbb-2ec7-489b-a25a-6934c4556895", | |
| "uuid" : "7e83dfbb-2ec7-489b-a25a-6934c4556895", | |
| "name" : "Workshop Proceedings: Aquatic research: Knowledge Transfer Workshop", | |
| "handle" : "123456789/5339", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Sustainable Forest Management Network", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T02:09:09Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T02:09:09Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2000/10", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3ZC7RX82", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc/3.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Sustainable Forest Management Network", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Workshops", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Workshop Proceedings: Aquatic research: Knowledge Transfer Workshop", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:05:10.630+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e83dfbb-2ec7-489b-a25a-6934c4556895/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e83dfbb-2ec7-489b-a25a-6934c4556895/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e83dfbb-2ec7-489b-a25a-6934c4556895/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e83dfbb-2ec7-489b-a25a-6934c4556895/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e83dfbb-2ec7-489b-a25a-6934c4556895/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e83dfbb-2ec7-489b-a25a-6934c4556895/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e83dfbb-2ec7-489b-a25a-6934c4556895/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e83dfbb-2ec7-489b-a25a-6934c4556895/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e83dfbb-2ec7-489b-a25a-6934c4556895/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e83dfbb-2ec7-489b-a25a-6934c4556895" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "5196875e-093b-41f3-8d2b-85a168e6bfc7", | |
| "uuid" : "5196875e-093b-41f3-8d2b-85a168e6bfc7", | |
| "name" : "WS_2001-1.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:05:10Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "WS_2001-1.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 4303, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "1348f3d7e1c52b5f5872ceee1406e717" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/5196875e-093b-41f3-8d2b-85a168e6bfc7/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/5196875e-093b-41f3-8d2b-85a168e6bfc7/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/5196875e-093b-41f3-8d2b-85a168e6bfc7/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/5196875e-093b-41f3-8d2b-85a168e6bfc7/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/5196875e-093b-41f3-8d2b-85a168e6bfc7" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e84df9a-d2f3-4cdb-a943-0a75a3bebcb7" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e84df9a-d2f3-4cdb-a943-0a75a3bebcb7", | |
| "uuid" : "7e84df9a-d2f3-4cdb-a943-0a75a3bebcb7", | |
| "name" : "Boardex Reports - Director Network UK - 2021 November", | |
| "handle" : "123456789/34873", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Boardex Relationship Capital Management", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-02T05:31:13Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-02T05:31:13Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2021", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/r3-x6je-g824", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "PLEASE NOTE: BY VIEWING OR DOWNLOADING BOARDEX CONTENT, YOU ARE AGREEING TO THE FOLLOWING TERMS AND CONDITIONS:\n1. Use of this product is restricted to current faculty, staff, and students of the University of Alberta.\n2. Authorized user is granted a non-exclusive, non-transferable, and non-sublicensable right to use, reproduce and analyze the products, solely for the user’s internal research and educational purposes.\n3. Authorized user shall not use any deep-link, page-scrape, spider, robot, index, internet agent or other automatic device, program, algorithm or any other technology which does the same actions, to use, access, copy, acquire, input or store any products or information from the platform, or to search, generate searches or monitor any portion of the products.\n4. Authorized user shall not resell or re-license, share in any way, or reverse engineer the product or licensed data, or develop or attempt to develop any competing products or services.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Companies", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Executive compensation", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Corporate governance", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Boardex Reports - Director Network UK - 2021 November", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_ddb1", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-02T05:31:13.444+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e84df9a-d2f3-4cdb-a943-0a75a3bebcb7/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e84df9a-d2f3-4cdb-a943-0a75a3bebcb7/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e84df9a-d2f3-4cdb-a943-0a75a3bebcb7/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e84df9a-d2f3-4cdb-a943-0a75a3bebcb7/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e84df9a-d2f3-4cdb-a943-0a75a3bebcb7/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e84df9a-d2f3-4cdb-a943-0a75a3bebcb7/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e84df9a-d2f3-4cdb-a943-0a75a3bebcb7/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e84df9a-d2f3-4cdb-a943-0a75a3bebcb7/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e84df9a-d2f3-4cdb-a943-0a75a3bebcb7/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e84df9a-d2f3-4cdb-a943-0a75a3bebcb7" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : null, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e852fa7-9999-4149-949b-045b43860053" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e852fa7-9999-4149-949b-045b43860053", | |
| "uuid" : "7e852fa7-9999-4149-949b-045b43860053", | |
| "name" : "Daily Record, Wednesday, June 8, 2005", | |
| "handle" : "123456789/8731", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Toronto Stock Exchange", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T03:10:33Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T03:10:33Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "2005/06/08", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R34X54H0P", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "en", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights" : [ { | |
| "value" : "Use of this product is restricted to current faculty, staff, and students of the University. It is the responsibility of each user to ensure that he or she uses this product for individual, non-commercial educational or research purposes only, and does not systematically download or retain substantial portions of information. Users may not reproduce or redistribute unprocessed/raw data portions of the data to any third party, or otherwise engage in the systematic retransmission or commercialization of the data.", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Toronto Stock Exchange--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Stock exchanges--Canada--Tables--Periodicals", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Daily Record, Wednesday, June 8, 2005", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_93fc", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/authenticated", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:05:11.043+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e852fa7-9999-4149-949b-045b43860053/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e852fa7-9999-4149-949b-045b43860053/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e852fa7-9999-4149-949b-045b43860053/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e852fa7-9999-4149-949b-045b43860053/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e852fa7-9999-4149-949b-045b43860053/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e852fa7-9999-4149-949b-045b43860053/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e852fa7-9999-4149-949b-045b43860053/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e852fa7-9999-4149-949b-045b43860053/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e852fa7-9999-4149-949b-045b43860053/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e852fa7-9999-4149-949b-045b43860053" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "7d78c303-6c10-49ed-8b0c-b9051d4d7f0a", | |
| "uuid" : "7d78c303-6c10-49ed-8b0c-b9051d4d7f0a", | |
| "name" : "20050608Daily_Record_.pdf.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.PDFBoxThumbnail on 2025-05-07T14:05:11Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "20050608Daily_Record_.pdf.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 6339, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "0fb7ec69269dc4a16b3d60259ef170e3" | |
| }, | |
| "sequenceId" : 3, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7d78c303-6c10-49ed-8b0c-b9051d4d7f0a/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7d78c303-6c10-49ed-8b0c-b9051d4d7f0a/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7d78c303-6c10-49ed-8b0c-b9051d4d7f0a/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7d78c303-6c10-49ed-8b0c-b9051d4d7f0a/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/7d78c303-6c10-49ed-8b0c-b9051d4d7f0a" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "restricted", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8554b5-890d-4cba-86c5-22a89c04af73" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e8554b5-890d-4cba-86c5-22a89c04af73", | |
| "uuid" : "7e8554b5-890d-4cba-86c5-22a89c04af73", | |
| "name" : "Sculptor carving with little girl on step, caribou skin and blankets in background - Nunavut [NWT]-1152", | |
| "handle" : "123456789/22655", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Halpern, Joel Martin", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Canada--Nunavut [NWT]-- [Arviat [Eskimo Point]]", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T16:51:42Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T16:51:42Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1982/06/01", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3G15TD17", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.language.iso" : [ { | |
| "value" : "No linguistic content", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.rights.uri" : [ { | |
| "value" : "http://creativecommons.org/licenses/by-nc/3.0/", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.subject" : [ { | |
| "value" : "Children", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| }, { | |
| "value" : "Men", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 1 | |
| }, { | |
| "value" : "Stone carvings", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 2 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "Sculptor carving with little girl on step, caribou skin and blankets in background - Nunavut [NWT]-1152", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.type" : [ { | |
| "value" : "http://purl.org/coar/resource_type/c_c513", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "ual.jupiterAccess" : [ { | |
| "value" : "http://terms.library.ualberta.ca/public", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "inArchive" : true, | |
| "discoverable" : true, | |
| "withdrawn" : false, | |
| "lastModified" : "2025-05-07T14:05:11.343+00:00", | |
| "entityType" : null, | |
| "type" : "item", | |
| "_links" : { | |
| "accessStatus" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8554b5-890d-4cba-86c5-22a89c04af73/accessStatus" | |
| }, | |
| "bundles" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8554b5-890d-4cba-86c5-22a89c04af73/bundles" | |
| }, | |
| "identifiers" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8554b5-890d-4cba-86c5-22a89c04af73/identifiers" | |
| }, | |
| "mappedCollections" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8554b5-890d-4cba-86c5-22a89c04af73/mappedCollections" | |
| }, | |
| "owningCollection" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8554b5-890d-4cba-86c5-22a89c04af73/owningCollection" | |
| }, | |
| "relationships" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8554b5-890d-4cba-86c5-22a89c04af73/relationships" | |
| }, | |
| "version" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8554b5-890d-4cba-86c5-22a89c04af73/version" | |
| }, | |
| "templateItemOf" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8554b5-890d-4cba-86c5-22a89c04af73/templateItemOf" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8554b5-890d-4cba-86c5-22a89c04af73/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e8554b5-890d-4cba-86c5-22a89c04af73" | |
| } | |
| }, | |
| "_embedded" : { | |
| "thumbnail" : { | |
| "id" : "fb0aaa17-c57f-4c83-bb15-e742dc36db1c", | |
| "uuid" : "fb0aaa17-c57f-4c83-bb15-e742dc36db1c", | |
| "name" : "81_137a.jpg.jpg", | |
| "handle" : null, | |
| "metadata" : { | |
| "dc.description" : [ { | |
| "value" : "Generated Thumbnail", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.source" : [ { | |
| "value" : "Written by FormatFilter org.dspace.app.mediafilter.JPEGFilter on 2025-05-07T14:05:11Z (GMT).", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.title" : [ { | |
| "value" : "81_137a.jpg.jpg", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ] | |
| }, | |
| "bundleName" : "THUMBNAIL", | |
| "sizeBytes" : 6135, | |
| "checkSum" : { | |
| "checkSumAlgorithm" : "MD5", | |
| "value" : "c1d6a5cbb36c704365dde262adc1613a" | |
| }, | |
| "sequenceId" : 2, | |
| "type" : "bitstream", | |
| "_links" : { | |
| "content" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/fb0aaa17-c57f-4c83-bb15-e742dc36db1c/content" | |
| }, | |
| "bundle" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/fb0aaa17-c57f-4c83-bb15-e742dc36db1c/bundle" | |
| }, | |
| "format" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/fb0aaa17-c57f-4c83-bb15-e742dc36db1c/format" | |
| }, | |
| "thumbnail" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/fb0aaa17-c57f-4c83-bb15-e742dc36db1c/thumbnail" | |
| }, | |
| "self" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/bitstreams/fb0aaa17-c57f-4c83-bb15-e742dc36db1c" | |
| } | |
| } | |
| }, | |
| "accessStatus" : { | |
| "status" : "open.access", | |
| "type" : "accessStatus" | |
| } | |
| } | |
| } | |
| } | |
| }, { | |
| "hitHighlights" : null, | |
| "type" : "discover", | |
| "_links" : { | |
| "indexableObject" : { | |
| "href" : "https://ualberta.scholaris.ca/server/api/core/items/7e85afd3-8bf2-4264-8455-d2f8640695d7" | |
| } | |
| }, | |
| "_embedded" : { | |
| "indexableObject" : { | |
| "id" : "7e85afd3-8bf2-4264-8455-d2f8640695d7", | |
| "uuid" : "7e85afd3-8bf2-4264-8455-d2f8640695d7", | |
| "name" : "Library inside research lab - Nunavut [NWT]-547", | |
| "handle" : "123456789/22951", | |
| "metadata" : { | |
| "dc.contributor.author" : [ { | |
| "value" : "Halpern, Joel Martin", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.coverage.spatial" : [ { | |
| "value" : "Canada--Nunavut [NWT]--Igloolik", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.accessioned" : [ { | |
| "value" : "2025-05-01T17:02:06Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.available" : [ { | |
| "value" : "2025-05-01T17:02:06Z", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.date.issued" : [ { | |
| "value" : "1981/05/29", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc.identifier.doi" : [ { | |
| "value" : "https://doi.org/10.7939/R3VD6P49F", | |
| "language" : null, | |
| "authority" : null, | |
| "confidence" : -1, | |
| "place" : 0 | |
| } ], | |
| "dc. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment