{"rowid": 832, "dataset_title": "Passengers in History", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2016-06-28T00:52:30.371967", "dataset_modified": "2021-09-08T23:20:52.626089", "dataset_description": "_Passengers in History_ brings together two wonderful resources:\n

\nA passengers data base developed by the SA Maritime Museum,\nA list of ships\u2019 logs and diaries, titled Log of Logs.\n

\nThe passengers data base was produced by staff and volunteers at the South Australian Maritime Museum over 20 years. It includes entries for 328,000 passengers and 20,000 voyages to South Australia between 1836 and 1961.\n

\nThis data set is presented as a search index that can expose most open data formats.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/ffa75eb8-475a-460b-91d1-714f269016d5", "start_date": "1836-01-01", "end_date": "1961-01-01", "file_title": "Passengers in History Search Index", "download_url": "https://data.history.sa.gov.au:8983/solr/passengers/select", "format": "API", "file_description": "#Passengers in History API Documentation#\nThe Passengers in History data endpoint has been provided using an Apache Solr index (see https://lucene.apache.org/solr/) that uses a Drupal Solr 4.x schema (see https://www.drupal.org/project/search_api_solr). See [https://wiki.apache.org/solr/QueryParametersIndex](https://wiki.apache.org/solr/QueryParametersIndex) for more detail surrounding the query syntax.\n
\nAn example of a basic implementation can be viewed at https://data.history.sa.gov.au/gallery_pih.php?type=vessel&startindex=0\n
\nReplace the type parameter with any of the types listed below to return associated images eg. https://data.history.sa.gov.au/gallery_pih.php?type=passenger&startindex=0\n
\nThe example code can be downloaded from https://data.history.sa.gov.au/gallery_pih.php.txt\n
\nThe open_data index contains 7 different types of content:\n
\n* voyage\n* passenger\n* vessel\n* master\n* port\n* source\n* organisation\n
\nAdditionally, the photo index (photo_index) can be used to retrieve photos (specify the index using the index_id query parameter).\n
\nA voyage is centric to most other content types contains references to passengers, vessels and ports. A join query should be used to get information about related content (see https://wiki.apache.org/solr/Join for information surrounding the query syntax for joins). \nThe is_nid field is the unique identifier.\n
\nThe number of rows per query is limited to 999 so the start and rows query parameters would need to be used to iterate over the entire result set.\n
\nThere are many response formats available (see https://cwiki.apache.org/confluence/display/solr/Response+Writers). Just add the parameter 'wt' to the query and select the response format eg. json or csv. The default is xml.\n##Examples##\nA typical workflow might be:\n
\nGet the voyage/s that arrived in 1836:\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data AND is_field_voyage_year:1836](https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data AND is_field_voyage_year:1836)\n

\nUse a join to get the passengers for one of the voyages (use the voyage is_nid field)\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?start=0&rows=50&q={!join from=im_field_passengers to=is_nid}index_id:open_data AND is_nid:944632](https://data.history.sa.gov.au:8983/solr/passengers/select?start=0&rows=50&q={!join from=im_field_passengers%20to=is_nid}index_id:open_data AND is_nid:944632)\n

\nUse a join to find the origin and destination of a particular voyage:\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_origin to=is_nid}index_id:open_data AND is_nid:944632](https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_origin to=is_nid}index_id:open_data AND is_nid:944632)\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_destination to=is_nid}index_id:open_data AND is_nid:944632](https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_destination to=is_nid}index_id:open_data AND is_nid:944632)\n

\nUse a join to find the vessel for the voyage:\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_vessel to=is_nid}index_id:open_data AND is_nid:944632](https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_vessel to=is_nid}index_id:open_data AND is_nid:944632)\n

\nUse a join to find photos of the vessel (using the vessel is_nid):\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:photo_index AND im_file_usage_list:920026](https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:photo_index AND im_file_usage_list:920026)\n

\nUse a join to find out where a vessel was built (using the vessel is_nid):\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_built_where to=is_nid}index_id:open_data AND is_nid:923958](https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_built_where to=is_nid}index_id:open_data AND is_nid:923958)\n

\nUse a join to find the built by organisation for a particular vessel:\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_field_built_by to=is_nid}index_id:open_data AND is_nid:923958](https://data.history.sa.gov.au:8983/solr/passengers/select?q={!join%20from=is_field_built_by%20to=is_nid}index_id:open_data%20AND%20is_nid:923958)\n

\nGet organisation details (using the organisation is_nid):\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data AND ss_type:organisation AND is_nid:916199](https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data%20AND%20ss_type:organisation%20AND%20is_nid:916199)\n

\nOr find all vessels built by the organisation (using the organisation is_nid):\n
\n[https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data AND is_field_built_by:916199](https://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data%20AND%20is_field_built_by:916199)\n

\n##Other Useful Queries\nFind all photos that are attached to a passenger:\n
\ndata.history.sa.gov.au:8983/solr/passengers/select?q={!join from=is_nid to=im_file_usage_list}ss_type:(passenger OR image)\n

\nOr find all passengers that have a photo attached (the reverse):\n
\ndata.history.sa.gov.au:8983/solr/passengers/select?q={!join from=im_file_usage_list to=is_nid}ss_type:(passenger OR image)\n

\nAll fields are searchable (see listing below). There are many search options using the Apache Solr query syntax. For instance to find all vessels that have the word \u2018Adelaide\u2019 in their tm_title field but not the word \u2018port\u2019:\n
\ndata.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data AND ss_type:vessel AND tm_title:(adelaide -port)\n
\nIn this case ss_type is specifically set to be \u2018vessel\u2019. The \u2013 represents negation of the term. There are many more options \u2013 refer to a good blog here [https://yonik.com/solr/query-syntax/](https://yonik.com/solr/query-syntax/)\n

\nFacet search on the voyage destination for a date range between 1834 and 1836:\n
\nhttps://data.history.sa.gov.au:8983/solr/passengers/select?rows=0&q={!join%20from=is_nid%20to=is_field_destination}index_id:open_data&fq=ds_field_depart_date:[1834-01-01T00:00:00Z%20TO%201836-12-31T12:59:59Z]&facet=on&facet.field=is_field_destination\n
\nIn this case use a port search by node to get the titles of the ports eg.(using the first facet):\n
\nhttps://data.history.sa.gov.au:8983/solr/passengers/select?q=index_id:open_data%20AND%20is_nid:887339\n
\nThe answer is most likely to be Sydney!\n

\n##Content Type Fields##\n###Passenger \n
\n* is_nid\n* ss_type\n* tm_field_occupation\n* tm_field_surname\n* tm_field_firstname\n* is_field_age\n* is_arrival_year\n
\n###Voyage\n
\n* is_nid\n* ss_type\n* ds_field_depart_date\n* is_field_destination\n* tm_field_master\n* is_field_origin\n* is_field_vessel\n* is_field_voyage_year\n* tm_title\n
\n###Vessel\n
\n* is_nid\n* ss_type\n* tm_title\n* tm_field_services\n* im_field_sources\n* is_field_year_end\n* is_field_year_start\n* is_field_built_by\n* is_field_built_where\n* is_field_built_year\n* tm_field_demise\n* tm_field_rig\n* tm_field_dimensions\n* tm_field_tonnage\n
\n###Source\n
\n* is_nid\n* ss_type\n* tm_title\n* tm_field_location\n* tm_field_reference\n
\n###Port\n
\n* is_nid\n* ss_type\n* tm_title\n
\n###Organisation\n
\n* is_nid\n* ss_type\n* tm_title\n
\n###Photos\n
\n* is_fid: Unique ID for a file\n* tm_field_citation: Includes copyright information\n* tm_field_file_image_title_text: Image title\n* tm_field_location: Location of the image\n* tm_field_source: Source of the image\n* is_file_usage_count: Number of times this file is used in passengersinhistory.sa.gov.au\n* im_file_usage_list: List of content that uses this file\n* ss_url: Url to the file\n", "file_created": "2016-06-28T10:54:22.341773", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 839, "dataset_title": "Community History Live Stream", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2015-05-15T01:26:37.366511", "dataset_modified": "2017-06-27T02:08:43.727429", "dataset_description": "The community history website is a place for community organisations, historical groups and individuals to come together to share their interests in and explore South Australia's community history.\n\nThis dataset provides access to organisations, events, news and blogs that are displayed on the website. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/2ce2ab30-d17f-4902-b344-314e4b34538a", "start_date": "2011-04-01", "end_date": "2015-05-31", "file_title": "Community History Live Stream", "download_url": "https://data.history.sa.gov.au/communityhistory/", "format": "API", "file_description": "**Community History Endpoints**\n\n**Organisations**\n\nhttp://data.history.sa.gov.au/communityhistory/organisations\n\n**News**\n\nhttp://data.history.sa.gov.au/communityhistory/news\n\n**Events**\n\nhttp://data.history.sa.gov.au/communityhistory/events\n\n**Blogs**\n\nhttp://data.history.sa.gov.au/communityhistory/blogs\n\n**Article Detail**\n\nThe nid field on each of the items (listed using any of the above endpoints) can be used to get specific detail using the following endpoint:\n\nhttp://data.history.sa.gov.au/communityhistory/{nid} \n\nReplace {nid} with the nid obtained from one of the above endpoints.\n\n**Files**\n\nThe nid field on each of the events (listed using any of the above endpoints) can be used to get associated files (including base64 values) using the following endpoint:\n\nhttp://data.history.sa.gov.au/communityhistory/{nid}/files \n\nReplace {nid} with the nid obtained from one of the above endpoints.\n\n**Taxonomy**\n\nhttp://data.history.sa.gov.au/communityhistory/taxonomy/{id}\n\nReplace {id} with the taxonomy term id (represented by target_id throughout content)", "file_created": "2015-05-15T11:33:00.199640", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 845, "dataset_title": "History Festival Archive", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2015-05-14T07:15:48.169739", "dataset_modified": "2017-06-27T02:07:34.579520", "dataset_description": "The History Festival is held every year in May. This dataset contains an archive of festival events for 2013, 2014, 2015 and 2016.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/8606923a-8c21-4a2a-b31b-925f6fee4616", "start_date": "2013-05-01", "end_date": "2015-05-31", "file_title": "History Festival Events", "download_url": "https://data.history.sa.gov.au/abouttime/", "format": "API", "file_description": "**History Festival Endpoints**\n\n**Events**\n\nhttp://data.history.sa.gov.au/abouttime/events/{year}\n\nReplace {year} with 2013, 2014 or 2015\n\n**Event Detail**\n\nThe nid field on each of the events (listed using the 'Events' endpoint) can be used to get event specific detail using the following endpoint:\n\nhttp://data.history.sa.gov.au/abouttime/event/{year}/{nid} \n\nReplace {year} with 2013, 2014, 2015 or 2016\nReplace {nid} with the nid obtained from one of the events listing.\n\n**Event Images**\n\nThe nid field on each of the events (listed using the 'Events' endpoint) can be used to get event images (including base64 values) using the following endpoint:\n\nhttp://data.history.sa.gov.au/abouttime/event/{year}/{nid}/files \n\nReplace {year} with 2013, 2014, 2015 or 2016\nReplace {nid} with the nid obtained from one of the events listing.", "file_created": "2015-05-14T17:18:33.373635", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 838, "dataset_title": "State History Collection (features)", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2017-06-27T02:05:38.344832", "dataset_modified": "2017-07-27T23:54:53.357526", "dataset_description": "The History Trust of South Australia is responsible for the State History Collection, a collection of objects relevant to the history of South Australia. Strengths of this collection reflect the collecting areas of our three museums: the Migration Museum, the South Australian Maritime Museum and the National Motor Museum.\nThis dataset is a small feature selection of around 200 museum objects from across the organisation and will grow as we continue our digitisation program.\n\nPlease note that the license selected on this dataset it is not a blanket CC-BY-NC as there are some items that have different and possible more restrictive copyright. These license conditions are specified in the metadata under the Copyright, License and Usage Restrictions fields. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/a6457e37-6d36-4277-9318-dfe63ff28358", "start_date": "1836-01-01", "end_date": "1970-01-01", "file_title": "State History Collection", "download_url": "https://data.history.sa.gov.au/collection", "format": "API", "file_description": "Instructions are provided in the primary URL\n\nAn example of a basic implementation can be viewed at http://data.history.sa.gov.au/gallery.php?collection=collection&startindex=0\n\nThe example code can be downloaded from http://data.history.sa.gov.au/gallery.php.txt", "file_created": "2017-06-27T12:06:29.400254", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution-NonCommercial"} {"rowid": 835, "dataset_title": "Bond Studios Glass Negative Collection", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2017-06-27T01:57:42.716364", "dataset_modified": "2017-07-28T07:37:33.822683", "dataset_description": "The collection comprises 2,558 glass negatives from Bond Studios in Port Adelaide. AE Bond was listed as a photographer in Commercial Road, Port Adelaide from 1901, although state collections include photographs credited to Bond that date back to 1867. In the 1930s the business shifted to St Vincent Street. The negatives are studio portraits of generations of Portonians. They capture individual rites of passage such as weddings, graduations, debuts, birthdays, and soldiers and sailors departing for war. Most of the negatives are labeled with surnames so it is possible to identify the subjects with further research.\nA collection description can be found here: http://maritime.history.sa.gov.au/collections/bond-studios-glass-negative-collection", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/94fb167a-65a2-491b-ab3e-c40f96351882", "start_date": "1867-01-01", "end_date": "1930-01-01", "file_title": "Bond Studios Glass Negative Collection", "download_url": "https://data.history.sa.gov.au/bondstudio", "format": "API", "file_description": "Instructions are provided in the primary URL\n\nAn example of a basic implementation can be viewed at http://data.history.sa.gov.au/gallery.php?collection=bondstudio&startindex=0\n\nThe example code can be downloaded from http://data.history.sa.gov.au/gallery.php.txt", "file_created": "2017-06-27T11:59:58.825973", "file_modified": "", "file_size": "", "licence": "Other (Open)"} {"rowid": 836, "dataset_title": "South Australian Government Photographic Collection", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2017-06-23T06:53:25.398879", "dataset_modified": "2017-07-28T07:36:38.007416", "dataset_description": "The collection broadly documents sixty-seven years of government activities, state celebrations, and the growth of industry, trade and townships between 1890 and 1957. The collection of 15,000 images includes 288 Frank Hurley images showcasing the state as part of its 1936 Centenary celebrations, as well as images of country shows and field days, educational institutions, hospitals and nursing, railway stations and infrastructure, shipping and ports, and the River Murray. The original glass plates are held by State Records of South Australia. The History Trust of South Australia holds the catalogue and digitised copy set of the collection. \nIt is important to note that this is a historical collection and original information and photographic titles have been retained for research purposes in many instances. Some language used in the past by Government Departments may cause offence today but as a research collection we have maintained the original titles and language used to document this collection. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c5a3374b-bc28-41a5-9f7b-14d9b92e7350", "start_date": "", "end_date": "", "file_title": "South Australian Government Photographic Collection API", "download_url": "https://data.history.sa.gov.au/sagpc", "format": "API", "file_description": "Refer to main page for information surrounding the end points. Meta data and images can be accessed through the API.\n\nAn example of a basic implementation can be viewed at http://data.history.sa.gov.au/gallery.php?collection=sagpc&startindex=0\n\nThe example code can be downloaded from http://data.history.sa.gov.au/gallery.php.txt", "file_created": "2017-06-23T16:55:54.382324", "file_modified": "", "file_size": "", "licence": "Other (Open)"} {"rowid": 837, "dataset_title": "South Australian Government Photographic Collection", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2017-06-23T06:53:25.398879", "dataset_modified": "2017-07-28T07:36:38.007416", "dataset_description": "The collection broadly documents sixty-seven years of government activities, state celebrations, and the growth of industry, trade and townships between 1890 and 1957. The collection of 15,000 images includes 288 Frank Hurley images showcasing the state as part of its 1936 Centenary celebrations, as well as images of country shows and field days, educational institutions, hospitals and nursing, railway stations and infrastructure, shipping and ports, and the River Murray. The original glass plates are held by State Records of South Australia. The History Trust of South Australia holds the catalogue and digitised copy set of the collection. \nIt is important to note that this is a historical collection and original information and photographic titles have been retained for research purposes in many instances. Some language used in the past by Government Departments may cause offence today but as a research collection we have maintained the original titles and language used to document this collection. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c5a3374b-bc28-41a5-9f7b-14d9b92e7350", "start_date": "", "end_date": "", "file_title": "SA Government Photographic Collection", "download_url": "https://developers.sa.gov.au/docs/services/597822927515ee1398090666/operations/597a82807515ee0f204443b5", "format": "API", "file_description": "Developer Portal.", "file_created": "2017-07-28T17:36:38.052331", "file_modified": "", "file_size": "", "licence": "Other (Open)"} {"rowid": 840, "dataset_title": "SA History Hub", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2015-07-02T05:59:59.012059", "dataset_modified": "2017-06-27T02:08:18.983918", "dataset_description": "The SA History Hub website is an interactive way of engaging with the history of our state. This site is built on stories of South Australia's people, places and events, the city streets and the buildings and monuments that line them, and the events that enliven them. \n\nThis data set presents places, things, organisations and events as geojson.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/53b4d7c2-a1b0-4b59-b7e0-28ee57db546e", "start_date": "1836-01-01", "end_date": "Current", "file_title": "Historical Places", "download_url": "https://data.history.sa.gov.au/sahistoryhub/place", "format": "GeoJSON", "file_description": "#SA History Hub GEOJSON Endpoint \n\n\nhttp://data.history.sa.gov.au/sahistoryhub/{type} \n\n\nReplace {type} with any of the following types to obtain the current geojson for places, things or organisations stored on the SA History Hub website (http://sahistoryhub.com.au):\n\n\n* place\n* thing\n* organisation\n* event", "file_created": "2015-07-02T16:03:37.435850", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 841, "dataset_title": "SA History Hub", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2015-07-02T05:59:59.012059", "dataset_modified": "2017-06-27T02:08:18.983918", "dataset_description": "The SA History Hub website is an interactive way of engaging with the history of our state. This site is built on stories of South Australia's people, places and events, the city streets and the buildings and monuments that line them, and the events that enliven them. \n\nThis data set presents places, things, organisations and events as geojson.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/53b4d7c2-a1b0-4b59-b7e0-28ee57db546e", "start_date": "1836-01-01", "end_date": "Current", "file_title": "Historical Things", "download_url": "https://data.history.sa.gov.au/sahistoryhub/thing", "format": "GeoJSON", "file_description": "#SA History Hub GEOJSON Endpoint \n\n\nhttp://data.history.sa.gov.au/sahistoryhub/{type} \n\n\nReplace {type} with any of the following types to obtain the current geojson for places, things or organisations stored on the SA History Hub website (http://sahistoryhub.com.au):\n\n\n* place\n* thing\n* organisation\n* event", "file_created": "2015-07-02T16:06:51.936296", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 842, "dataset_title": "SA History Hub", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2015-07-02T05:59:59.012059", "dataset_modified": "2017-06-27T02:08:18.983918", "dataset_description": "The SA History Hub website is an interactive way of engaging with the history of our state. This site is built on stories of South Australia's people, places and events, the city streets and the buildings and monuments that line them, and the events that enliven them. \n\nThis data set presents places, things, organisations and events as geojson.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/53b4d7c2-a1b0-4b59-b7e0-28ee57db546e", "start_date": "1836-01-01", "end_date": "Current", "file_title": "Historical Organisations", "download_url": "https://data.history.sa.gov.au/sahistoryhub/organisation", "format": "GeoJSON", "file_description": "#SA History Hub GEOJSON Endpoint \n\n\nhttp://data.history.sa.gov.au/sahistoryhub/{type} \n\n\nReplace {type} with any of the following types to obtain the current geojson for places, things or organisations stored on the SA History Hub website (http://sahistoryhub.com.au):\n\n\n* place\n* thing\n* organisation\n* event", "file_created": "2015-07-02T16:08:28.752458", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 843, "dataset_title": "SA History Hub", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2015-07-02T05:59:59.012059", "dataset_modified": "2017-06-27T02:08:18.983918", "dataset_description": "The SA History Hub website is an interactive way of engaging with the history of our state. This site is built on stories of South Australia's people, places and events, the city streets and the buildings and monuments that line them, and the events that enliven them. \n\nThis data set presents places, things, organisations and events as geojson.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/53b4d7c2-a1b0-4b59-b7e0-28ee57db546e", "start_date": "1836-01-01", "end_date": "Current", "file_title": "Historical Events", "download_url": "https://data.history.sa.gov.au/sahistoryhub/event", "format": "GeoJSON", "file_description": "#SA History Hub GEOJSON Endpoint \n\n\nhttp://data.history.sa.gov.au/sahistoryhub/{type} \n\n\nReplace {type} with any of the following types to obtain the current geojson for places, things or organisations stored on the SA History Hub website (http://sahistoryhub.com.au):\n\n\n* place\n* thing\n* organisation\n* event", "file_created": "2015-07-02T16:09:11.644509", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 844, "dataset_title": "Interned: Torrens Island, 1914-1915", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2015-05-29T06:26:23.281710", "dataset_modified": "2017-06-27T02:07:59.361209", "dataset_description": "##Interned: Torrens Island, 1914-1915\n\nIn August 1914 war broke out across Europe. Within days \u2018enemy subjects\u2019 in Australia were required to register with the authorities. Most gave their \u2018parole\u2019 and went on with their lives in the community, but internment started with sailors taken off enemy ships and enemy reservists, and went on to include enemy subjects suspected of \u2018disloyal or unsatisfactory\u2019 behaviour. Later, some naturalised British subjects and even natural-born British subjects were interned. In the course of the war over 6,000 enemy subjects were interned across Australia. \n\nThis dataset contains information about individuals interned during the First World War from South Australia (Military District 4). Most of those interned between October 1914 and August 1915, some 400 men, were held on Torrens Island, in the Port River estuary, north-west of Adelaide. The data set also includes those from South Australia who were interned in New South Wales after Torrens Island internment camp closed in August 1915.\n\nThe data was compiled by History SA staff from two archival series in the National Archives of Australia: A367 C18000 Part 1, War Internees and Deportees 1914-1919 and D2286, Nominal Roll of prisoners of war interned at Torrens Island concentration camp 1915. Data fields include: Name, Also recorded as (alternative name), Date interned, Interned (at), Nationality, Date of birth/age, Remarks, and Notes. The data has been produced by identifying individuals who appear in both series and combining information from both series into this data set, using the A367 data as the primary series. This involved interpreting the data, in particular, making an assessment of whether or not entries in the two series with similar names represent the same person. Further research may reveal some of these assessments to be inaccurate.\n\nThe dataset was produced as part of research for an exhibition at the Migration Museum and the Wakefield Press publication Interned: Torrens Island, 1914-15.\nhttp://migration.historysa.com.au/events/2014/interned-torrens-island-1914-1915\nhttp://www.wakefieldpress.com.au/product.php?productid=1201\n\n\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/eb04171a-1a75-4549-820d-fd20a1d434be", "start_date": "1939-01-01", "end_date": "1946-01-01", "file_title": "Internee Data", "download_url": "https://interned.historysa.com.au/js/data.js", "format": "JS", "file_description": "Information surrounding internees sourced from http://www.wakefieldpress.com.au/product.php?productid=1201 and National Australian Archives", "file_created": "2015-05-29T16:29:30.924997", "file_modified": "2015-01-28T00:45:42", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 834, "dataset_title": "Women\u2019s Suffrage Petition 1894 (South Australia)", "publisher": "History Trust of South Australia", "author": "History Trust of South Australia", "dataset_issued": "2019-04-04T01:50:27.805462", "dataset_modified": "2019-04-10T07:44:25.748567", "dataset_description": "On 23 August 1894 George Hawker, member for North Adelaide, presented to the South Australian House of Assembly a petition in favour of women\u2019s suffrage. It was signed by approximately 11,600 men and women. Members of the Women\u2019s Suffrage League, Woman\u2019s Christian Temperance Union, and the Working Women\u2019s Trade Union were primarily responsible for collecting the signatures from metropolitan and country areas.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/3f6fab54-8cc8-4732-9c1e-fb3f73df53b0", "start_date": "1894-01-01", "end_date": "", "file_title": "Suffrage125 Petition", "download_url": "https://data.sa.gov.au/data/dataset/3f6fab54-8cc8-4732-9c1e-fb3f73df53b0/resource/68036d75-1ea2-4bb7-9efe-71ea7115227c/download/suffrage125_petition.json", "format": "JSON", "file_description": "", "file_created": "2019-04-04T02:17:13.619366", "file_modified": "2019-04-04T02:17:13.572653", "file_size": "", "licence": "Other (Open)"} {"rowid": 794, "dataset_title": "Mount Gambier Destitute Register", "publisher": "Mount Gambier Library", "author": "Mount Gambier Library", "dataset_issued": "2016-07-04T01:13:31.122992", "dataset_modified": "2016-07-04T01:14:58.244849", "dataset_description": "Destitute records from Mount Gambier, including information on applicants such as ship and arrival date, infirmity, circumstances, family, means of subsistence.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/f475bf72-2aac-4893-a162-aaa5343a490d", "start_date": "1883-01-01", "end_date": "1894-01-01", "file_title": "Mount Gambier Destitute Records", "download_url": "https://data.sa.gov.au/data/dataset/f475bf72-2aac-4893-a162-aaa5343a490d/resource/ac6e4cb9-d3bd-461f-bdd0-25a92a9d2019/download/clientirecord-setsdestitute-records.xlsx", "format": "XLSX", "file_description": "", "file_created": "2016-07-04T11:14:57.627256", "file_modified": "2016-07-04T01:14:57.542684", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 917, "dataset_title": "South Australian Museum Terrestrial Invertebrate Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2013-03-21T05:57:20.220041", "dataset_modified": "2016-07-05T03:45:43.422359", "dataset_description": "The collection has Australia-wide and Indo-Pacific representation, plus some world specimens for comparative purposes. The collection comprises 1200000 pinned specimens, 450000 specimens in spirit and 20000 slides. There are 8670 holotypes, of which 5000 are from the A.M. Lea beetle collection. There are 23000 other types. In summary, the entomological collections Class Insecta comprise 662 Australian families and 85,961 known Australian species. \nThe arachnological collections comprise spiders (50000 specimens in alcohol), mites (25000 slide mounts and 20000 specimens in alcohol), scorpions (5000 specimens in alcohol) and myriapods. \nImages from this collection are available on the Atlas of Living Australia.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/a81870be-82eb-4868-81e9-0a8d11622675", "start_date": "1860-2014", "end_date": "", "file_title": "Type Specimen images from the South Australian Museum Terrestrial Invertebrates collection", "download_url": "https://biocache.ala.org.au/occurrence/search?q=data_resource_uid:dr742", "format": "", "file_description": "The South Australian Museum has been photographing the Type specimens in the Terrestrial Invertebrates collection. These images, of over 3500 specimens, can be accessed on the Atlas of Living Australia.", "file_created": "2016-06-28T11:25:21.631431", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 866, "dataset_title": "South Australian Museum - Complaints", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:04:04.497286", "dataset_modified": "2019-12-15T23:58:26.137371", "dataset_description": "Data detailing complaints for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e", "start_date": "", "end_date": "", "file_title": "Complaints - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e/resource/ca0e43ac-ec66-49ef-94c2-c5fd79559ae0/download/2018-19-complaints.csv", "format": "CSV", "file_description": "Complaints data from 2018-18 Annual Report", "file_created": "2019-09-04T23:32:04.277036", "file_modified": "2019-09-04T23:32:28.358032", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 867, "dataset_title": "South Australian Museum - Complaints", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:04:04.497286", "dataset_modified": "2019-12-15T23:58:26.137371", "dataset_description": "Data detailing complaints for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e", "start_date": "", "end_date": "", "file_title": "Complaints - 2017-18", "download_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e/resource/0bea76d3-4393-4652-ba31-f02ad7f912ba/download/south-australian-museum_complaints_2017-18.csv", "format": "CSV", "file_description": "Data regarding complaints for 2017-18.", "file_created": "2019-08-15T04:04:32.157485", "file_modified": "2019-08-15T04:04:32.119917", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 868, "dataset_title": "South Australian Museum - Complaints", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:04:04.497286", "dataset_modified": "2019-12-15T23:58:26.137371", "dataset_description": "Data detailing complaints for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e", "start_date": "", "end_date": "", "file_title": "Complaints - 2016-17", "download_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e/resource/a0fd9bd2-5c37-4419-8ec9-975110b96179/download/2016-17-complaints.csv", "format": "CSV", "file_description": "Complaints data from 2016-17 Annual Report", "file_created": "2019-09-04T04:18:05.816378", "file_modified": "2019-09-04T04:18:05.770575", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 869, "dataset_title": "South Australian Museum - Complaints", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:04:04.497286", "dataset_modified": "2019-12-15T23:58:26.137371", "dataset_description": "Data detailing complaints for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e", "start_date": "", "end_date": "", "file_title": "Complaints - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e/resource/10f2d0da-debc-473b-b613-5fa6e17a9eee/download/2015-16-complaints.csv", "format": "CSV", "file_description": "Complaints data from 2015-16 Annual Report", "file_created": "2019-09-04T04:16:19.128276", "file_modified": "2019-09-04T04:16:19.031655", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 870, "dataset_title": "South Australian Museum - Complaints", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:04:04.497286", "dataset_modified": "2019-12-15T23:58:26.137371", "dataset_description": "Data detailing complaints for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e", "start_date": "", "end_date": "", "file_title": "Complaints - 2014-15", "download_url": "https://data.sa.gov.au/data/dataset/c39fe206-a5b4-4df5-805e-7095aaf6d04e/resource/1774895d-6589-4571-88e0-b3a2dc0eea90/download/2014-15-complaints.csv", "format": "CSV", "file_description": "Complaints data from 2014-15 Annual Report", "file_created": "2019-09-04T04:14:04.171986", "file_modified": "2019-09-04T04:14:04.108871", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 871, "dataset_title": "South Australian Museum - Consultants", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:56:41.725035", "dataset_modified": "2019-12-09T01:09:25.753421", "dataset_description": "Data regarding consultants for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd", "start_date": "", "end_date": "", "file_title": "Consultants - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd/resource/d1bf3695-13bb-440c-8749-ead505e808af/download/2018-19-consultants.csv", "format": "CSV", "file_description": "Consultants data from 2018-19 Annual Report", "file_created": "2019-09-04T23:38:26.634663", "file_modified": "2019-09-04T23:38:26.585714", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 872, "dataset_title": "South Australian Museum - Consultants", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:56:41.725035", "dataset_modified": "2019-12-09T01:09:25.753421", "dataset_description": "Data regarding consultants for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd", "start_date": "", "end_date": "", "file_title": "Consultants - 2017-18", "download_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd/resource/bd0706c6-5c53-4484-9fdf-a172fd0d1bd9/download/south-australian-museum_consultants_2017-18.csv", "format": "CSV", "file_description": "Data regarding consultants for 2017-18.", "file_created": "2019-08-15T03:57:12.167061", "file_modified": "2019-08-15T03:57:12.130205", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 873, "dataset_title": "South Australian Museum - Consultants", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:56:41.725035", "dataset_modified": "2019-12-09T01:09:25.753421", "dataset_description": "Data regarding consultants for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd", "start_date": "", "end_date": "", "file_title": "Consultants - 2016-17", "download_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd/resource/4d99a8c0-19b0-4a37-a856-7514273d3240/download/2016-17-consultants.csv", "format": "CSV", "file_description": "Consultants data from 2016-17 Annual Report", "file_created": "2019-09-04T04:29:16.674702", "file_modified": "2019-09-04T04:29:16.628739", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 874, "dataset_title": "South Australian Museum - Consultants", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:56:41.725035", "dataset_modified": "2019-12-09T01:09:25.753421", "dataset_description": "Data regarding consultants for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd", "start_date": "", "end_date": "", "file_title": "Consultants - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd/resource/99ead73b-d1e6-4c6e-a010-dbb7eb74d4a8/download/2015-16-consultants.csv", "format": "CSV", "file_description": "Consultants data from 2015-16 Annual Report", "file_created": "2019-09-04T04:29:59.787875", "file_modified": "2019-09-04T04:29:59.743965", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 875, "dataset_title": "South Australian Museum - Consultants", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:56:41.725035", "dataset_modified": "2019-12-09T01:09:25.753421", "dataset_description": "Data regarding consultants for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd", "start_date": "", "end_date": "", "file_title": "Consultants - 2014-15", "download_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd/resource/5d841545-6241-4a26-ba75-3fb2cc6e8515/download/2014-15-consultants.csv", "format": "CSV", "file_description": "Consultants data from 2014-15 Annual Report", "file_created": "2019-09-04T04:30:52.002997", "file_modified": "2019-09-04T04:30:51.954220", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 876, "dataset_title": "South Australian Museum - Consultants", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:56:41.725035", "dataset_modified": "2019-12-09T01:09:25.753421", "dataset_description": "Data regarding consultants for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd", "start_date": "", "end_date": "", "file_title": "Consultants - 2013-14", "download_url": "https://data.sa.gov.au/data/dataset/c0217995-614f-4724-849a-3d5f032da0dd/resource/dfa2d2a2-85e6-4dec-a1cf-66843d278c65/download/2013-14-consultants.csv", "format": "CSV", "file_description": "Consultants data from 2013-14 Annual Report", "file_created": "2019-09-04T04:31:24.342931", "file_modified": "2019-09-04T04:31:24.294353", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 877, "dataset_title": "South Australian Museum - Contractors", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:58:27.191500", "dataset_modified": "2019-12-09T01:09:06.088144", "dataset_description": "Data detailing contractors for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b", "start_date": "", "end_date": "", "file_title": "Contractors - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b/resource/2cbf09d0-f358-485c-aaa7-e6551a596eae/download/2018-19-contractors.csv", "format": "CSV", "file_description": "Contractors data from 2018-19 Annual Report", "file_created": "2019-09-04T23:42:35.167567", "file_modified": "2019-09-04T23:42:35.100491", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 878, "dataset_title": "South Australian Museum - Contractors", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:58:27.191500", "dataset_modified": "2019-12-09T01:09:06.088144", "dataset_description": "Data detailing contractors for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b", "start_date": "", "end_date": "", "file_title": "Contractors - 2017-18", "download_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b/resource/3e548f01-f2bf-4110-b061-595b0d8545cf/download/south-australian-museum_contractors_2017-18.csv", "format": "CSV", "file_description": "Data regarding contractors for 2017-18.", "file_created": "2019-08-15T03:59:09.056241", "file_modified": "2019-08-15T03:59:09.004337", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 879, "dataset_title": "South Australian Museum - Contractors", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:58:27.191500", "dataset_modified": "2019-12-09T01:09:06.088144", "dataset_description": "Data detailing contractors for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b", "start_date": "", "end_date": "", "file_title": "Contractors - 2016-17", "download_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b/resource/3cfed485-8160-4aec-9abd-905bcc2eda64/download/2016-17-contractors.csv", "format": "CSV", "file_description": "Contractors data from 2016-17 Annual Report", "file_created": "2019-09-04T04:26:01.108966", "file_modified": "2019-09-04T04:26:01.060874", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 880, "dataset_title": "South Australian Museum - Contractors", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:58:27.191500", "dataset_modified": "2019-12-09T01:09:06.088144", "dataset_description": "Data detailing contractors for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b", "start_date": "", "end_date": "", "file_title": "Contractors - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b/resource/939306e3-4d84-432a-a9f2-2659b1bde202/download/2015-16-contractors.csv", "format": "CSV", "file_description": "Contractors data from 2015-16 Annual Report", "file_created": "2019-09-04T04:26:43.223202", "file_modified": "2019-09-04T04:26:43.156338", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 881, "dataset_title": "South Australian Museum - Contractors", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:58:27.191500", "dataset_modified": "2019-12-09T01:09:06.088144", "dataset_description": "Data detailing contractors for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b", "start_date": "", "end_date": "", "file_title": "Contractors - 2014-15", "download_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b/resource/0298a2c0-0f91-4513-aa4b-5dfe97177abb/download/2014-15-contractors.csv", "format": "CSV", "file_description": "Contractors data from 2014-15 Annual Report", "file_created": "2019-09-04T04:27:22.235852", "file_modified": "2019-09-04T04:27:22.156934", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 882, "dataset_title": "South Australian Museum - Contractors", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:58:27.191500", "dataset_modified": "2019-12-09T01:09:06.088144", "dataset_description": "Data detailing contractors for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b", "start_date": "", "end_date": "", "file_title": "Contractors - 2013-14", "download_url": "https://data.sa.gov.au/data/dataset/93b403e1-2660-4678-ad59-225f9c06081b/resource/ac7a1df2-e5bc-4858-ba9c-b0e6cd3cf162/download/2013-14-contractors.csv", "format": "CSV", "file_description": "Contractors data from 2013-14 Annual Report", "file_created": "2019-09-04T04:28:01.372509", "file_modified": "2019-09-04T04:28:01.300110", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 883, "dataset_title": "South Australian Museum - Executive Employment", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:53:56.674169", "dataset_modified": "2019-12-09T01:08:44.186137", "dataset_description": "Data detailing executive employment at the South Australian Museum.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c", "start_date": "", "end_date": "", "file_title": "Executive Employment - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c/resource/85809f7d-3ffc-4bfd-aacc-b1ad63a2718a/download/2018-19-executives.csv", "format": "CSV", "file_description": "Executive Employment data from 2018-19 Annual Report", "file_created": "2019-09-04T23:46:00.607610", "file_modified": "2019-09-04T23:46:00.534359", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 884, "dataset_title": "South Australian Museum - Executive Employment", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:53:56.674169", "dataset_modified": "2019-12-09T01:08:44.186137", "dataset_description": "Data detailing executive employment at the South Australian Museum.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c", "start_date": "", "end_date": "", "file_title": "Executive Employment - 2017-18", "download_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c/resource/6900330b-21b1-4f08-b370-2de303d53b8b/download/south-australian-museum_executive-employment-in-the-agency_2017-18.csv", "format": "CSV", "file_description": "Data regarding Executive Employment for 2017-18.", "file_created": "2019-08-15T03:54:34.903947", "file_modified": "2019-08-15T03:54:34.859781", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 885, "dataset_title": "South Australian Museum - Executive Employment", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:53:56.674169", "dataset_modified": "2019-12-09T01:08:44.186137", "dataset_description": "Data detailing executive employment at the South Australian Museum.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c", "start_date": "", "end_date": "", "file_title": "Executive Employment - 2016-17", "download_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c/resource/cb59cc00-3d2a-4a64-b034-5b225effdeb2/download/2016-17-executives.csv", "format": "CSV", "file_description": "Executive Employment data from 2016-17 Annual Report", "file_created": "2019-09-04T04:32:27.127445", "file_modified": "2019-09-04T04:32:27.062435", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 886, "dataset_title": "South Australian Museum - Executive Employment", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:53:56.674169", "dataset_modified": "2019-12-09T01:08:44.186137", "dataset_description": "Data detailing executive employment at the South Australian Museum.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c", "start_date": "", "end_date": "", "file_title": "Executive Employment - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c/resource/c0b9c64f-f8b5-4e56-8376-1822ee396982/download/2015-16-executives.csv", "format": "CSV", "file_description": "Executive Employment data from 2015-16 Annual Report", "file_created": "2019-09-04T04:32:56.480809", "file_modified": "2019-09-04T04:32:56.429536", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 887, "dataset_title": "South Australian Museum - Executive Employment", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:53:56.674169", "dataset_modified": "2019-12-09T01:08:44.186137", "dataset_description": "Data detailing executive employment at the South Australian Museum.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c", "start_date": "", "end_date": "", "file_title": "Executive Employment - 2014-15", "download_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c/resource/5be643b0-b40e-4bb8-aa83-595fba003615/download/2014-15-executives.csv", "format": "CSV", "file_description": "Executive Employment data from 2014-15 Annual Report", "file_created": "2019-09-04T04:33:27.848636", "file_modified": "2019-09-04T04:33:27.800232", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 888, "dataset_title": "South Australian Museum - Executive Employment", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T03:53:56.674169", "dataset_modified": "2019-12-09T01:08:44.186137", "dataset_description": "Data detailing executive employment at the South Australian Museum.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c", "start_date": "", "end_date": "", "file_title": "Executive Employment - 2013-14", "download_url": "https://data.sa.gov.au/data/dataset/1acd777b-4877-452f-ac3a-36e3ef8d404c/resource/c44ecc60-659d-43c6-a9fe-8120b86501e9/download/2013-14-executives.csv", "format": "CSV", "file_description": "Executive Employment data from 2013-14 Annual Report", "file_created": "2019-09-04T04:34:02.328217", "file_modified": "2019-09-04T04:34:02.255162", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 889, "dataset_title": "South Australian Museum - Whistle Blowers", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:02:36.377113", "dataset_modified": "2019-12-09T01:08:18.617465", "dataset_description": "Data detailing whistle blowers for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f", "start_date": "", "end_date": "", "file_title": "Whistle Blowers - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f/resource/3967db76-7d60-44dc-a896-a9200184d853/download/2018-19-whistle-blowers.csv", "format": "CSV", "file_description": "Whistle Blowers data from 2018-19 Annual Report", "file_created": "2019-09-04T23:50:44.326883", "file_modified": "2019-09-04T23:50:44.259824", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 890, "dataset_title": "South Australian Museum - Whistle Blowers", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:02:36.377113", "dataset_modified": "2019-12-09T01:08:18.617465", "dataset_description": "Data detailing whistle blowers for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f", "start_date": "", "end_date": "", "file_title": "Whistle Blowers - 2017-18", "download_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f/resource/09ede3c5-85f0-450f-831a-109dc2ae378b/download/south-australian-museum_whistle-blowers_2017-18.csv", "format": "CSV", "file_description": "Data regarding whistle blowers for 2017-18.", "file_created": "2019-08-15T04:03:02.133735", "file_modified": "2019-08-15T04:03:02.078403", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 891, "dataset_title": "South Australian Museum - Whistle Blowers", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:02:36.377113", "dataset_modified": "2019-12-09T01:08:18.617465", "dataset_description": "Data detailing whistle blowers for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f", "start_date": "", "end_date": "", "file_title": "Whistle Blowers - 2016-17", "download_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f/resource/3576e95f-c5f3-4ac7-b8a5-b517cae37c91/download/2016-17-whistle-blowers.csv", "format": "CSV", "file_description": "Whistle Blowers data from 2016-17 Annual Report", "file_created": "2019-09-04T04:19:57.696860", "file_modified": "2019-09-04T04:19:57.630354", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 892, "dataset_title": "South Australian Museum - Whistle Blowers", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:02:36.377113", "dataset_modified": "2019-12-09T01:08:18.617465", "dataset_description": "Data detailing whistle blowers for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f", "start_date": "", "end_date": "", "file_title": "Whistle Blowers - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f/resource/33e04ca7-3509-40de-b3c6-44dc92b2d81b/download/2015-16-whistle-blowers.csv", "format": "CSV", "file_description": "Whistle Blowers data from 2015-16 Annual Report", "file_created": "2019-09-04T04:20:37.102007", "file_modified": "2019-09-04T04:20:37.057670", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 893, "dataset_title": "South Australian Museum - Whistle Blowers", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:02:36.377113", "dataset_modified": "2019-12-09T01:08:18.617465", "dataset_description": "Data detailing whistle blowers for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f", "start_date": "", "end_date": "", "file_title": "Whistle Blowers - 2014-15", "download_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f/resource/934f66cb-d4ad-4fa9-b345-0b2a6d698982/download/2014-15-whistle-blowers.csv", "format": "CSV", "file_description": "Whistle Blowers data from 2014-15 Annual Report", "file_created": "2019-09-04T04:21:18.705174", "file_modified": "2019-09-04T04:21:18.630661", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 894, "dataset_title": "South Australian Museum - Whistle Blowers", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:02:36.377113", "dataset_modified": "2019-12-09T01:08:18.617465", "dataset_description": "Data detailing whistle blowers for the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f", "start_date": "", "end_date": "", "file_title": "Whistle Blowers - 2013-14", "download_url": "https://data.sa.gov.au/data/dataset/ad435283-7254-4467-b4bc-0afa4fc54b1f/resource/bc89f1f8-d762-45cb-b6a5-bc9861c85a31/download/2013-14-whistle-blowers.csv", "format": "CSV", "file_description": "Whistle Blowers data from 2013-14 Annual Report", "file_created": "2019-09-04T04:22:03.593544", "file_modified": "2019-09-04T04:22:03.518510", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 895, "dataset_title": "South Australian Museum - Work Health and Safety", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T02:02:11.516432", "dataset_modified": "2019-12-09T01:07:54.505235", "dataset_description": "Data detailing workplace injury claims, work health and safety regulations and return to work costs for the South Australian Museum", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b", "start_date": "", "end_date": "", "file_title": "Workplace Health and Safety - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b/resource/63b0efba-4015-44ab-a179-7d56d0af0dc2/download/2018-19-whs.csv", "format": "CSV", "file_description": "Workplace Health and Safety data from 2018-19 Annual Report", "file_created": "2019-09-05T00:07:24.041894", "file_modified": "2019-09-05T00:07:23.987951", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 896, "dataset_title": "South Australian Museum - Work Health and Safety", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T02:02:11.516432", "dataset_modified": "2019-12-09T01:07:54.505235", "dataset_description": "Data detailing workplace injury claims, work health and safety regulations and return to work costs for the South Australian Museum", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b", "start_date": "", "end_date": "", "file_title": "Workplace Health and Safety (Workers Compensation) - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b/resource/8509ea49-d3cd-4a1d-bb59-e12211b61836/download/2018-19-whs-workers-compensation.csv", "format": "CSV", "file_description": "Workplace Health and Safety (Workers Compensation) data from 2018-19 Annual Report", "file_created": "2019-09-05T00:08:29.240565", "file_modified": "2019-09-05T00:08:29.188469", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 897, "dataset_title": "South Australian Museum - Work Health and Safety", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T02:02:11.516432", "dataset_modified": "2019-12-09T01:07:54.505235", "dataset_description": "Data detailing workplace injury claims, work health and safety regulations and return to work costs for the South Australian Museum", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b", "start_date": "", "end_date": "", "file_title": "Workplace Health and Safety - 2017-18", "download_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b/resource/ad7475a2-515c-42e8-a913-51b9681da769/download/south-australian-museum_work-health-and-safety-and-return-to-work-performance_2017-18.csv", "format": "CSV", "file_description": "Data regarding Work Health and Safety and Return to Work Performance for 2017-18.", "file_created": "2019-08-15T03:48:19.066304", "file_modified": "2019-08-15T03:48:19.010996", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 898, "dataset_title": "South Australian Museum - Work Health and Safety", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T02:02:11.516432", "dataset_modified": "2019-12-09T01:07:54.505235", "dataset_description": "Data detailing workplace injury claims, work health and safety regulations and return to work costs for the South Australian Museum", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b", "start_date": "", "end_date": "", "file_title": "Workplace Health and Safety (Workers Compensation) - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b/resource/1417008e-25c6-4807-ac28-707411ac6048/download/2015-16-whs-workers-comp.csv", "format": "CSV", "file_description": "Workplace Health and Safety (Workers Compensation) data from 2015-16 Annual Report", "file_created": "2019-09-04T04:35:39.186891", "file_modified": "2019-09-04T04:35:39.119550", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 899, "dataset_title": "South Australian Museum - Work Health and Safety", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T02:02:11.516432", "dataset_modified": "2019-12-09T01:07:54.505235", "dataset_description": "Data detailing workplace injury claims, work health and safety regulations and return to work costs for the South Australian Museum", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b", "start_date": "", "end_date": "", "file_title": "Workplace Health and Safety (Injuries) - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b/resource/173c13f1-3108-4327-828c-03cf1933d6dd/download/2015-16-whs-injuries.csv", "format": "CSV", "file_description": "Workplace Health and Safety (Injuries) data from 2015-16 Annual Report", "file_created": "2019-09-04T04:37:34.631468", "file_modified": "2019-09-05T00:10:45.255593", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 900, "dataset_title": "South Australian Museum - Work Health and Safety", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T02:02:11.516432", "dataset_modified": "2019-12-09T01:07:54.505235", "dataset_description": "Data detailing workplace injury claims, work health and safety regulations and return to work costs for the South Australian Museum", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b", "start_date": "", "end_date": "", "file_title": "Workplace Health and Safety - 2014-15", "download_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b/resource/82a59b6e-cb4e-42d7-a3e5-f74dc463f8e6/download/2014-15-whs.csv", "format": "CSV", "file_description": "Workplace Health and Safety data from 2014-15 Annual Report", "file_created": "2019-09-04T04:38:18.193067", "file_modified": "2019-09-04T04:38:18.144963", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 901, "dataset_title": "South Australian Museum - Work Health and Safety", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T02:02:11.516432", "dataset_modified": "2019-12-09T01:07:54.505235", "dataset_description": "Data detailing workplace injury claims, work health and safety regulations and return to work costs for the South Australian Museum", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b", "start_date": "", "end_date": "", "file_title": "Workplace Health and Safety - 2013-14", "download_url": "https://data.sa.gov.au/data/dataset/779c678d-6dc6-4ae4-b25a-ea5bf39c9a2b/resource/0395866a-a30d-47af-8f18-5093efd19844/download/2013-14-whs.csv", "format": "CSV", "file_description": "Workplace Health and Safety data from 2013-14 Annual Report", "file_created": "2019-09-04T04:39:05.788999", "file_modified": "2019-09-04T04:39:05.738395", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 902, "dataset_title": "South Australian Museum - Fraud", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:00:51.826093", "dataset_modified": "2019-12-09T01:07:21.373770", "dataset_description": "Data detailing fraud detected at the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231", "start_date": "", "end_date": "", "file_title": "Fraud - 2018-19", "download_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231/resource/13fbe0bd-6663-4d36-a54c-7c20c756a152/download/2018-19-fraud.csv", "format": "CSV", "file_description": "Fraud data from 2018-19 Annual Report", "file_created": "2019-09-04T23:48:11.199165", "file_modified": "2019-09-04T23:48:11.146340", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 903, "dataset_title": "South Australian Museum - Fraud", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:00:51.826093", "dataset_modified": "2019-12-09T01:07:21.373770", "dataset_description": "Data detailing fraud detected at the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231", "start_date": "", "end_date": "", "file_title": "Fraud - 2017-18", "download_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231/resource/470ec3ea-9bd1-4192-b15e-993a61fea4bd/download/south-australian-museum_fraud_2017-18.csv", "format": "CSV", "file_description": "Data regarding instances of fraud for 2017-18.", "file_created": "2019-08-15T04:01:18.561705", "file_modified": "2019-08-15T04:01:18.509959", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 904, "dataset_title": "South Australian Museum - Fraud", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:00:51.826093", "dataset_modified": "2019-12-09T01:07:21.373770", "dataset_description": "Data detailing fraud detected at the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231", "start_date": "", "end_date": "", "file_title": "Fraud - 2016-17", "download_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231/resource/ce102f86-6098-42fd-afca-c7510d20bd21/download/2016-17-fraud.csv", "format": "CSV", "file_description": "Fraud data from 2016-17 Annual Report", "file_created": "2019-09-04T04:23:11.555572", "file_modified": "2019-09-04T04:23:11.496419", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 905, "dataset_title": "South Australian Museum - Fraud", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:00:51.826093", "dataset_modified": "2019-12-09T01:07:21.373770", "dataset_description": "Data detailing fraud detected at the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231", "start_date": "", "end_date": "", "file_title": "Fraud - 2015-16", "download_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231/resource/0c566d20-b869-4a1d-9fdd-14f07067f96c/download/2015-16-fraud.csv", "format": "CSV", "file_description": "Fraud data from 2015-16 Annual Report", "file_created": "2019-09-04T04:23:49.248313", "file_modified": "2019-09-04T04:23:49.180734", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 906, "dataset_title": "South Australian Museum - Fraud", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:00:51.826093", "dataset_modified": "2019-12-09T01:07:21.373770", "dataset_description": "Data detailing fraud detected at the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231", "start_date": "", "end_date": "", "file_title": "Fraud - 2014-15", "download_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231/resource/9411ff83-9410-48ed-97d8-dbe0a0338518/download/2014-15-fraud.csv", "format": "CSV", "file_description": "Fraud data from 2014-15 Annual Report", "file_created": "2019-09-04T04:24:25.334175", "file_modified": "2019-09-04T04:24:25.289244", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 907, "dataset_title": "South Australian Museum - Fraud", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2019-08-15T04:00:51.826093", "dataset_modified": "2019-12-09T01:07:21.373770", "dataset_description": "Data detailing fraud detected at the South Australian Museum. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231", "start_date": "", "end_date": "", "file_title": "Fraud - 2013-14", "download_url": "https://data.sa.gov.au/data/dataset/e50f5de4-1568-4bf9-880a-b481edfc9231/resource/20fc7862-ee78-43cf-b434-2bb64ec721a5/download/2013-14-fraud.csv", "format": "CSV", "file_description": "Fraud data from 2013-14 Annual Report", "file_created": "2019-09-04T04:25:02.864610", "file_modified": "2019-09-04T04:25:02.797084", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 908, "dataset_title": "South Australian Museum Marine Invertebrates collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2016-07-05T03:33:27.070432", "dataset_modified": "2017-05-08T02:34:29.724267", "dataset_description": "The Marine invertebrates collection is currently represented by 23 phyla and holds more than one million specimen lots including 1,700 holotypes, 11,300 secondary types, 33,000 registered lots and 1,400 microscope slide preparations. Specimens include molluscs, crustaceans, worms, sponges, jellyfish, corals and sea anemones, sea stars and sea urchins.\n\nOf these specimens about 5,500 have been databased and are accessible through the Atlas of Living Australia, more than 1500 of them with digital images of the specimen and label.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nThe Museum has also been using the ALA's Online Volunteer Digitisation Portal, [DIGIVOL](https://volunteer.ala.org.au/) to digitise the data for Marine Invertebrate specimens. To facilitate this a large quantity of specimens have been imaged.\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c82dc4f6-85d7-4999-b5d5-6eeb97dfef85", "start_date": "1880-01-01", "end_date": "2016-01-01", "file_title": "South Australian Museum Marine Invertebrates Collection", "download_url": "https://biocache.ala.org.au/occurrences/search?q=collection_uid:co165", "format": "HTML", "file_description": "The South Australian Museum Marine Invertebrates Collection data available through the Atlas of Living Australia", "file_created": "2016-07-05T13:34:15.892177", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 909, "dataset_title": "South Australian Museum Marine Invertebrates collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2016-07-05T03:33:27.070432", "dataset_modified": "2017-05-08T02:34:29.724267", "dataset_description": "The Marine invertebrates collection is currently represented by 23 phyla and holds more than one million specimen lots including 1,700 holotypes, 11,300 secondary types, 33,000 registered lots and 1,400 microscope slide preparations. Specimens include molluscs, crustaceans, worms, sponges, jellyfish, corals and sea anemones, sea stars and sea urchins.\n\nOf these specimens about 5,500 have been databased and are accessible through the Atlas of Living Australia, more than 1500 of them with digital images of the specimen and label.\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nThe Museum has also been using the ALA's Online Volunteer Digitisation Portal, [DIGIVOL](https://volunteer.ala.org.au/) to digitise the data for Marine Invertebrate specimens. To facilitate this a large quantity of specimens have been imaged.\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/c82dc4f6-85d7-4999-b5d5-6eeb97dfef85", "start_date": "1880-01-01", "end_date": "2016-01-01", "file_title": "Specimen images from the South Australian Museum Marine Invertebrates collection", "download_url": "https://biocache.ala.org.au/occurrences/search?q=collection_uid%3Aco165&fq=multimedia%3A%22Image%22#tab_recordImages", "format": "HTML", "file_description": "The records from the South Australian Museum Marine Invertebrates collection which are accompanied by images.", "file_created": "2016-07-05T13:35:25.650675", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 848, "dataset_title": "South Australian Museum - Australian Helminthological Collection", "publisher": "South Australian Museum", "author": "collectionsdata@samuseum.sa.gov.au", "dataset_issued": "2013-05-25T04:34:09.962514", "dataset_modified": "2022-03-21T01:24:16.064650", "dataset_description": "The Australian Helminthological Collection (AHC) of the South Australian Museum includes approximately 42,000 registered lots of helminths (e.g. nematodes, tapeworms, and other parasitic flatworms). Most helminths in the collection are from Australian native vertebrates, but there is material from Australian domestic and zoo animals, livestock and humans and from hosts collected overseas. Many of the worms in this collection were donated by one of Australia\u2019s most famous parasitologists and zoologists, Professor T. Harvey Johnston. Some of Johnston\u2019s specimens were collected when he travelled to Antarctica as Chief Zoologist with Sir Douglas Mawson in 1929 as part of the British, Australian and New Zealand Antarctic Research Expeditions. \nMaterial is either kept in bottles of ethanol or mounted on microscope slides. The AHC is used frequently by researchers and students, nationally and internationally, for taxonomic and biodiversity studies.\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/f47e5aea-fbcc-49b8-b1b3-b48dca31ec79", "start_date": "1860", "end_date": "2022", "file_title": "Information about parasitology at the South Australian Museum", "download_url": "https://www.samuseum.sa.gov.au/collections/biological-sciences/parasites", "format": "HTML", "file_description": "The SA Museum manages this dataset using the KE EMu collection management system. In the future these data will be accessible online through the Atlas of Living Australia (www.ala.org.au). At present, the full dataset is published on data.sa.gov.au as a .csv file. ", "file_created": "2014-06-04T07:40:09.281280", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution-NonCommercial"} {"rowid": 912, "dataset_title": "South Australian Museum Minerals Collection", "publisher": "South Australian Museum", "author": "Alexis Tindall", "dataset_issued": "2013-05-25T04:48:34.200039", "dataset_modified": "2016-07-08T02:32:04.460744", "dataset_description": "This collection includes approximately 33000 registered mineral specimens representing the range of minerals found in South Australia. More than 1500 species are represented, providing good coverage of the species and localities from across South Australia. The museum holds significant collections such as the Francis Collection, a comprehensive collection of the minerals of the Precambrian iron formations of the Middleback Ranges, quartz crystals from Mount Lofty Ranges White Rock Quarry, the Hall and Dunstan Collections, including secondary minerals of Broken Hill, and the O\u2019Neill Collection, representing the Olympic Dam copper-gold-uranium deposit. The collection includes specimens from historically significant copper mines in Burra, Moonta and Wallaroo, and from South Australian opal fields. The data includes information about mineral species, varieties, localities from which specimens were collected and information about their acquisition.\n\nThe South Australian Museum manages this dataset using the KE EMu collection management system. The full dataset is published on data.sa.gov.au as a .csv file.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/fe72a51c-def3-4229-b58c-cf9fef5d30ba", "start_date": "1865-2014", "end_date": "", "file_title": "Information about minerals at the South Australian Museum", "download_url": "https://www.samuseum.sa.gov.au/collections/mineral-sciences/minerals-meteorites-rocks", "format": "HTML", "file_description": "Information about minerals at the South Australian Museum.", "file_created": "2014-06-04T07:27:17.745289", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution-NonCommercial"} {"rowid": 865, "dataset_title": "South Australian Museum Arachnology Collection", "publisher": "South Australian Museum", "author": "South Australian Museum", "dataset_issued": "2016-06-24T05:00:45.749753", "dataset_modified": "2020-02-18T01:13:20.998657", "dataset_description": "The Arachnology Collection at the South Australian Museum contains around 300,000 arachnids as well as many centipedes and millipedes (Myriapoda). Of these around 56,000 have been databased.\n\nSpider specimens make up the largest component, with some 200,000 specimens stored in alcohol. The Sparassidae (huntsman spiders) are particularly well represented in the collection with over 2000 Australasian specimens.\n\nThe collection also houses a significant mite (Acarina) collection (about 45,000 specimens) in alcohol or on glass microscope slides, approximately 5000 scorpion (Scorpiones) specimens and a smaller number of Myriapoda specimens (about 3600).\n\nThe SA Museum manages this dataset using the KE EMu collection management system. It is interpreted into the [Darwin Core](http://rs.tdwg.org/dwc/index.htm) metadata schema (DwC) and semi-regularly exported to the [Atlas of Living Australia](http://www.ala.org.au/) (ALA) and the [Online Zoological Collections of Australian Museums](http://www.ozcam.org.au/) (OZCAM). \n\nData sourced from Australian museums on both the ALA and OZCAM should be identical, but on ALA they are combined with observational data from citizen science initiatives and other sources. Both of those sites make it possible to combine, interrogate and analyse data through web services such as the [Spatial Analysis Portal](http://spatial.ala.org.au/). In the Spatial Portal ALA data can be combined with meteorological and other environmental data sourced from and made accessible by relevant government agencies.\n\nThe ALA also has a fully documented [API](http://api.ala.org.au/)\n\nData about endangered species are either withheld from online publication, or coordinates or other data are obscured on the ALA and OZCAM. In those circumstances more specific information is available directly from SA Museum collection managers if it is genuinely required for research purposes.\n\nSA Museum data can be downloaded in full from the Atlas of Living Australia, or broken down into discipline specific parts (e.g. Herpetology, Mammalogy etc). On download the ALA will request an email address (not mandatory) and a reason for download (mandatory) \u2013 this is required to track usage of the ALA data to help data providers determine priorities for upload and improvement. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/6812c858-5ff1-4188-9997-befffbc42dbe", "start_date": "1880-01-01", "end_date": "2016-01-01", "file_title": "South Australian Museum Arachnology collection on the Atlas of Living Australia", "download_url": "https://collections.ala.org.au/public/show/co202", "format": "Mixed Formats", "file_description": "The Atlas of Living Australia page for the South Australian Museum Arachnology collection. \n\nAs an alternative to downloading the entire dataset the ALA also provides [an API](http://api.ala.org.au/)", "file_created": "2016-06-24T15:02:39.155583", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 660, "dataset_title": "19th Century Photographs by Captain Samuel Sweet", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2014-06-10T13:51:09.849031", "dataset_modified": "2022-01-24T04:24:02.651995", "dataset_description": "These photographs (approximately 920) were taken by Captain Samuel Sweet, sea captain and photographer of colonial South Australia. Sweet began working as a photographer in Adelaide in 1867. In 1875 he retired from the sea and established his own photographic studio in Adelaide. He took photographs around South Australia, developing them in a horse-drawn darkroom. Sweet is known as the colony's foremost landscape photographer of the 1870s. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/28baf505-4c5f-4e45-9fae-2605ee1cf7c1", "start_date": "1865-01-01", "end_date": "1902-12-31", "file_title": "19th Century Photographs by Captain Samuel Sweet", "download_url": "https://data.sa.gov.au/data/dataset/28baf505-4c5f-4e45-9fae-2605ee1cf7c1/resource/63aaa2e1-b689-4cc9-8835-95d76dd19e74/download/sweetphotographs.csv", "format": "CSV", "file_description": "**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20223389\"\n- **URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer\n- **TITLE** : Title of photograph\n- **Dates/publication details** : Date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2017-07-06T15:53:39.871109", "file_modified": "2017-07-06T05:53:39.717475", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 662, "dataset_title": "19th Century Photographs by Captain Samuel Sweet", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2014-06-10T13:51:09.849031", "dataset_modified": "2022-01-24T04:24:02.651995", "dataset_description": "These photographs (approximately 920) were taken by Captain Samuel Sweet, sea captain and photographer of colonial South Australia. Sweet began working as a photographer in Adelaide in 1867. In 1875 he retired from the sea and established his own photographic studio in Adelaide. He took photographs around South Australia, developing them in a horse-drawn darkroom. Sweet is known as the colony's foremost landscape photographer of the 1870s. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/28baf505-4c5f-4e45-9fae-2605ee1cf7c1", "start_date": "1865-01-01", "end_date": "1902-12-31", "file_title": "19th Century Photographs by Captain Samuel Sweet", "download_url": "https://data.sa.gov.au/data/dataset/28baf505-4c5f-4e45-9fae-2605ee1cf7c1/resource/e442f543-24bd-48be-b0a2-1510210f73c8/download/sweetphotographs.csv", "format": "CSV", "file_description": "Compiled 2016. This data set has been superseded by an updated version at the top of this Data and Resources list.\n", "file_created": "2016-07-01T13:47:00.730719", "file_modified": "2016-07-01T03:47:00.594638", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 664, "dataset_title": "19th Century Photographs by Captain Samuel Sweet", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2014-06-10T13:51:09.849031", "dataset_modified": "2022-01-24T04:24:02.651995", "dataset_description": "These photographs (approximately 920) were taken by Captain Samuel Sweet, sea captain and photographer of colonial South Australia. Sweet began working as a photographer in Adelaide in 1867. In 1875 he retired from the sea and established his own photographic studio in Adelaide. He took photographs around South Australia, developing them in a horse-drawn darkroom. Sweet is known as the colony's foremost landscape photographer of the 1870s. ", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/28baf505-4c5f-4e45-9fae-2605ee1cf7c1", "start_date": "1865-01-01", "end_date": "1902-12-31", "file_title": "19th Century Photographs by Captain Samuel Sweet", "download_url": "https://data.sa.gov.au/data/dataset/28baf505-4c5f-4e45-9fae-2605ee1cf7c1/resource/11263fd8-c13d-409e-b31a-ce8366a6b675/download/sweetphotos.csv", "format": "CSV", "file_description": "Compiled 2015. This data set has been superseded by an updated version at the top of this Data and Resources list.", "file_created": "2015-07-02T15:10:21.575727", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 670, "dataset_title": "Libraries Board of South Australia Annual Report data", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2017-11-08T23:22:10.102294", "dataset_modified": "2020-10-21T22:39:06.054568", "dataset_description": "Statistical data that appears in the Libraries Board of South Australia Annual Reports.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/3070a7b7-f76d-432d-8c9a-f9daf6077efa", "start_date": "2015-07-01", "end_date": "2019-06-30", "file_title": "Libraries Board of South Australia 2019-2020", "download_url": "https://data.sa.gov.au/data/dataset/3070a7b7-f76d-432d-8c9a-f9daf6077efa/resource/8a585e71-ae7c-427b-9b44-1bbcd0887c24/download/libraries-board-of-south-austr2019-annual-report-data_datasa.csv", "format": "CSV", "file_description": "Libraries Board Annual Report Data for 2019-20 also includes data for 2016-2020", "file_created": "2020-10-21T22:32:15.975530", "file_modified": "2020-10-21T22:32:15.904518", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 687, "dataset_title": "Old Colonists photographs", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2019-06-17T04:23:32.034128", "dataset_modified": "2019-08-29T04:44:14.837878", "dataset_description": "Portrait photographs of 'Old Colonists' \u2013 settlers who arrived in the colony of South Australia before 1841. The men Old Colonists were invited to attend a banquet held by businessman Emanuel Solomon on 28 December 1871 to commemorate 35 years since European colonisation. Photographs are sourced from two composite or 'mosaic' photographs, one of men and one of women.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/9f1775b6-9c4f-4e27-819b-33c83d0601f9", "start_date": "1856-01-01", "end_date": "1885-12-31", "file_title": "Old Colonists Men", "download_url": "https://data.sa.gov.au/data/dataset/9f1775b6-9c4f-4e27-819b-33c83d0601f9/resource/982e89d4-066c-467d-a078-e8cf39228d7d/download/old_colonists_men.csv", "format": "CSV", "file_description": "515 photographs\n\n**Explanation of fields**\n\n- **RECORD #(BIBLIO)** : SLSA unique identifier eg \"b31236881\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **RECORD XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer\n- **TITLE** : Title of photograph\n- **DATES/PUBLICATION DETAILS** : Date of the photograph\n- **DESCRIPTION/QUANTITY** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **SERIES/COLLECTION** : Images may be aggregated as a collection\n- **IMAGE URL** : URL of the web image\n- **MOSAIC URL** : URL of the composite photograph of all portraits", "file_created": "2019-06-17T04:26:30.618656", "file_modified": "2019-06-17T04:26:30.557168", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 689, "dataset_title": "Old Colonists photographs", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2019-06-17T04:23:32.034128", "dataset_modified": "2019-08-29T04:44:14.837878", "dataset_description": "Portrait photographs of 'Old Colonists' \u2013 settlers who arrived in the colony of South Australia before 1841. The men Old Colonists were invited to attend a banquet held by businessman Emanuel Solomon on 28 December 1871 to commemorate 35 years since European colonisation. Photographs are sourced from two composite or 'mosaic' photographs, one of men and one of women.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/9f1775b6-9c4f-4e27-819b-33c83d0601f9", "start_date": "1856-01-01", "end_date": "1885-12-31", "file_title": "Old Colonists Women", "download_url": "https://data.sa.gov.au/data/dataset/9f1775b6-9c4f-4e27-819b-33c83d0601f9/resource/88b20768-1d58-4879-8ffd-631119c11d1c/download/old_colonists_women.csv", "format": "CSV", "file_description": "600 photographs\n\n**Explanation of fields**\n\n- **RECORD #(BIBLIO)** : SLSA unique identifier eg \"b2074769x\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **RECORD XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer\n- **TITLE** : Title of photograph\n- **DATES/PUBLICATION DETAILS** : Date of the photograph\n- **DESCRIPTION/QUANTITY** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **SERIES/COLLECTION** : Images may be aggregated as a collection\n- **IMAGE URL** : URL of the web image\n- **MOSAIC URL** : URL of the composite photograph of all portraits", "file_created": "2019-06-17T05:19:00.981788", "file_modified": "2019-06-17T05:19:00.884090", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 691, "dataset_title": "Newspaper Articles relating to Sir Ross Smith", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2019-06-24T02:47:32.528709", "dataset_modified": "2019-08-29T04:43:40.630658", "dataset_description": "Newspaper articles relating to Sir Ross Smith and the 1919 Epic Flight from England to Australia. Datasets are divided into themes of prelude to the epic flight, the epic flight and death and funeral of Sir Ross Smith. Articles are sourced from South Australian newspapers *The Advertiser*, *Daily Herald*, *The Observer* and *The Register*.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1338ff17-9b2f-43b9-ae6c-711fc3644d34", "start_date": "1918-01-01", "end_date": "1922-12-31", "file_title": "Prelude to the epic flight", "download_url": "https://data.sa.gov.au/data/dataset/1338ff17-9b2f-43b9-ae6c-711fc3644d34/resource/b23219af-64ca-4e26-8342-68f9ed3454e8/download/prelude_to_the_epic_flight.csv", "format": "CSV", "file_description": "23 articles\n\n**Explanation of fields**\n\n- **Heading** : Article heading\n- **Category** : Trove's categorisation of the type of newspaper content\n- **Title** : Newspaper title\n- **Page** : The number of the page on which the article appears\n- **Date** : Publication date\n- **TroveUrl** : URL of the article\n- **TrovePageUrl** : URL of the entire page containing the article\n- **Illustrated** : Yes or no\n- **WordCount** : Number of words in the article\n- **Relevance** : Trove's ranking of the article's relevance to the search term 'Ross Smith'", "file_created": "2019-06-24T02:48:58.462035", "file_modified": "2019-06-24T02:48:58.400413", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 693, "dataset_title": "Newspaper Articles relating to Sir Ross Smith", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2019-06-24T02:47:32.528709", "dataset_modified": "2019-08-29T04:43:40.630658", "dataset_description": "Newspaper articles relating to Sir Ross Smith and the 1919 Epic Flight from England to Australia. Datasets are divided into themes of prelude to the epic flight, the epic flight and death and funeral of Sir Ross Smith. Articles are sourced from South Australian newspapers *The Advertiser*, *Daily Herald*, *The Observer* and *The Register*.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1338ff17-9b2f-43b9-ae6c-711fc3644d34", "start_date": "1918-01-01", "end_date": "1922-12-31", "file_title": "The Epic Flight", "download_url": "https://data.sa.gov.au/data/dataset/1338ff17-9b2f-43b9-ae6c-711fc3644d34/resource/9ee013bb-ae93-4de8-99ed-74f75aab74c5/download/the_epic_flight.csv", "format": "CSV", "file_description": "856 articles\n\n**Explanation of fields**\n\n- **Heading** : Article heading\n- **Category** : Trove's categorisation of the type of newspaper content\n- **Title** : Newspaper title\n- **Page** : The number of the page on which the article appears\n- **Date** : Publication date\n- **TroveUrl** : URL of the article\n- **TrovePageUrl** : URL of the entire page containing the article\n- **Illustrated** : Yes or no\n- **WordCount** : Number of words in the article\n- **Relevance** : Trove's ranking of the article's relevance to the search term 'Ross Smith'", "file_created": "2019-06-24T02:50:14.529743", "file_modified": "2019-06-24T02:50:14.463004", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 695, "dataset_title": "Newspaper Articles relating to Sir Ross Smith", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2019-06-24T02:47:32.528709", "dataset_modified": "2019-08-29T04:43:40.630658", "dataset_description": "Newspaper articles relating to Sir Ross Smith and the 1919 Epic Flight from England to Australia. Datasets are divided into themes of prelude to the epic flight, the epic flight and death and funeral of Sir Ross Smith. Articles are sourced from South Australian newspapers *The Advertiser*, *Daily Herald*, *The Observer* and *The Register*.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/1338ff17-9b2f-43b9-ae6c-711fc3644d34", "start_date": "1918-01-01", "end_date": "1922-12-31", "file_title": "Death and Funeral", "download_url": "https://data.sa.gov.au/data/dataset/1338ff17-9b2f-43b9-ae6c-711fc3644d34/resource/cd19b95a-093f-453a-b3a0-42427e231486/download/death_and_funeral.csv", "format": "CSV", "file_description": "336 articles\n\n**Explanation of fields**\n\n- **Heading** : Article heading\n- **Category** : Trove's categorisation of the type of newspaper content\n- **Title** : Newspaper title\n- **Page** : The number of the page on which the article appears\n- **Date** : Publication date\n- **TroveUrl** : URL of the article\n- **TrovePageUrl** : URL of the entire page containing the article\n- **Illustrated** : Yes or no\n- **WordCount** : Number of words in the article\n- **Relevance** : Trove's ranking of the article's relevance to the search term 'Ross Smith'", "file_created": "2019-06-24T02:51:27.130577", "file_modified": "2019-06-24T02:51:27.061884", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 697, "dataset_title": "19th Century Photographs by Townsend Duryea", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2014-06-10T12:57:32.375370", "dataset_modified": "2019-08-29T04:40:29.655895", "dataset_description": "The photographs (approximately 165) were taken by Townsend Duryea, a noted photographer of colonial South Australia. Duryea was active in South Australia 1855-1875. He and his brother were the first known photographers to work in areas of South Australia outside Adelaide. Duryea is particularly known for his panoramas of Adelaide and portraits of surviving original European colonists of South Australia.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/97f60b3e-9b50-4cc2-9960-73288d076c51", "start_date": "1856-01-01", "end_date": "1887-12-31", "file_title": "19th Century Photographs by Townsend Duryea", "download_url": "https://data.sa.gov.au/data/dataset/97f60b3e-9b50-4cc2-9960-73288d076c51/resource/f9c75608-0939-4439-ae4d-15e28476bb74/download/duryeaphotographs.csv", "format": "CSV", "file_description": "**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20223389\"\n- **URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer\n- **TITLE** : Title of photograph\n- **Dates/publication details** : Date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2017-07-06T16:15:59.980827", "file_modified": "2017-07-06T06:15:59.875068", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 699, "dataset_title": "19th Century Photographs by Townsend Duryea", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2014-06-10T12:57:32.375370", "dataset_modified": "2019-08-29T04:40:29.655895", "dataset_description": "The photographs (approximately 165) were taken by Townsend Duryea, a noted photographer of colonial South Australia. Duryea was active in South Australia 1855-1875. He and his brother were the first known photographers to work in areas of South Australia outside Adelaide. Duryea is particularly known for his panoramas of Adelaide and portraits of surviving original European colonists of South Australia.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/97f60b3e-9b50-4cc2-9960-73288d076c51", "start_date": "1856-01-01", "end_date": "1887-12-31", "file_title": "19th Century Photographs by Townsend Duryea", "download_url": "https://data.sa.gov.au/data/dataset/97f60b3e-9b50-4cc2-9960-73288d076c51/resource/0122114c-c751-49b0-b09b-1d13ed336a31/download/duryeaphotographs.csv", "format": "CSV", "file_description": "Compiled 2016. This data set has been superseded by an updated version at the top of this Data and Resources list.", "file_created": "2016-07-01T14:30:03.433168", "file_modified": "2016-07-01T04:30:03.322060", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 701, "dataset_title": "19th Century Photographs by Townsend Duryea", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2014-06-10T12:57:32.375370", "dataset_modified": "2019-08-29T04:40:29.655895", "dataset_description": "The photographs (approximately 165) were taken by Townsend Duryea, a noted photographer of colonial South Australia. Duryea was active in South Australia 1855-1875. He and his brother were the first known photographers to work in areas of South Australia outside Adelaide. Duryea is particularly known for his panoramas of Adelaide and portraits of surviving original European colonists of South Australia.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/97f60b3e-9b50-4cc2-9960-73288d076c51", "start_date": "1856-01-01", "end_date": "1887-12-31", "file_title": "19th Century Photographs by Townsend Duryea.", "download_url": "https://data.sa.gov.au/data/dataset/97f60b3e-9b50-4cc2-9960-73288d076c51/resource/fd8121b6-7529-4d29-b2d0-1a293154b9a6/download/duryeaphotos.csv", "format": "CSV", "file_description": "Compiled 2015. This data set has been superseded by an updated version at the top of this Data and Resources list.", "file_created": "2015-07-02T14:33:58.129673", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 703, "dataset_title": "South Australian Photographs World War 1 1914-1929", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-05-31T07:08:43.848160", "dataset_modified": "2019-08-29T04:37:07.788643", "dataset_description": "This dataset is an extract from the photographic collections of the State Library of South Australia and is related to World War 1.The set includes individual photographs and those that were collected in albums. \nContent includes portraits of soldiers, marches, camps, group shots, on location in the Dardanelles, and Western front, activities on the home front eg Cheer Up Societies, memorial dedications, captured albums eg captured German and Turkish images.\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/49266c9b-ae27-47bc-8e23-866a2d027403", "start_date": "", "end_date": "", "file_title": "South Australian Photographs World War 1 - 1914-1929", "download_url": "https://data.sa.gov.au/data/dataset/49266c9b-ae27-47bc-8e23-866a2d027403/resource/7b89d80d-c74e-4647-bfa7-d1538b068a94/download/wwi_photographs.csv", "format": "CSV", "file_description": "2153 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **Dates/Publication Details** : Includes the date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image\n", "file_created": "2018-06-18T06:16:35.979137", "file_modified": "2018-06-18T06:16:35.677045", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 705, "dataset_title": "South Australian Photographs World War 1 1914-1929", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-05-31T07:08:43.848160", "dataset_modified": "2019-08-29T04:37:07.788643", "dataset_description": "This dataset is an extract from the photographic collections of the State Library of South Australia and is related to World War 1.The set includes individual photographs and those that were collected in albums. \nContent includes portraits of soldiers, marches, camps, group shots, on location in the Dardanelles, and Western front, activities on the home front eg Cheer Up Societies, memorial dedications, captured albums eg captured German and Turkish images.\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/49266c9b-ae27-47bc-8e23-866a2d027403", "start_date": "", "end_date": "", "file_title": "South Australian Photographs World War 1 - 1914-1929", "download_url": "https://data.sa.gov.au/data/dataset/49266c9b-ae27-47bc-8e23-866a2d027403/resource/ef4c0c93-2bdb-4fe2-ad26-fea2f0161551/download/saphotographswwi.csv", "format": "CSV", "file_description": "Compiled 2017. This data set has been superseded by an updated version above in this Data and Resources list.\n\n2103 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **Dates/Publication Details** : Includes the date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image\n", "file_created": "2017-07-07T12:28:57.610553", "file_modified": "2017-07-07T02:28:57.490338", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 707, "dataset_title": "South Australian Photographs World War 1 1914-1929", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-05-31T07:08:43.848160", "dataset_modified": "2019-08-29T04:37:07.788643", "dataset_description": "This dataset is an extract from the photographic collections of the State Library of South Australia and is related to World War 1.The set includes individual photographs and those that were collected in albums. \nContent includes portraits of soldiers, marches, camps, group shots, on location in the Dardanelles, and Western front, activities on the home front eg Cheer Up Societies, memorial dedications, captured albums eg captured German and Turkish images.\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/49266c9b-ae27-47bc-8e23-866a2d027403", "start_date": "", "end_date": "", "file_title": "South Australian Photographs World War 1 - 1914-1929", "download_url": "https://data.sa.gov.au/data/dataset/49266c9b-ae27-47bc-8e23-866a2d027403/resource/76026372-d2f7-4257-b14b-fa6d2d4e5b95/download/saphotographswwi.csv", "format": "CSV", "file_description": "Compiled 2016. This data set has been superseded by an updated version at the top of this Data and Resources list.\n\n1769 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **Dates/Publication Details** : Includes the date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2016-07-01T17:35:16.663786", "file_modified": "2016-07-01T07:35:16.542996", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 709, "dataset_title": "South Australian Photographs World War 1 1914-1929", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-05-31T07:08:43.848160", "dataset_modified": "2019-08-29T04:37:07.788643", "dataset_description": "This dataset is an extract from the photographic collections of the State Library of South Australia and is related to World War 1.The set includes individual photographs and those that were collected in albums. \nContent includes portraits of soldiers, marches, camps, group shots, on location in the Dardanelles, and Western front, activities on the home front eg Cheer Up Societies, memorial dedications, captured albums eg captured German and Turkish images.\n", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/49266c9b-ae27-47bc-8e23-866a2d027403", "start_date": "", "end_date": "", "file_title": "South Australian Photographs World War 1 - 1914-1929", "download_url": "https://data.sa.gov.au/data/dataset/49266c9b-ae27-47bc-8e23-866a2d027403/resource/dd77a290-b868-444c-bd3d-6d1ba565577e/download/slsaphotosworldwar1.csv", "format": "CSV", "file_description": "Compiled 2015. This data set has been superseded by an updated version at the top of this Data and Resources list.\n\nThis data set is an extract from the photographic collections of the State Library of South Australia and is related to World War 1. The set will include individual photographs and those that were collected in albums. Content includes portraits of soldiers, marches, camps, group shots, on location in the Dardanelles, and Western front, activities on the home front e.g. Cheer Up Societies, memorial dedications, captured albums e.g. captured German and Turkish images.", "file_created": "2015-07-01T11:38:47.920554", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 710, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: pre 1900", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/61902aba-81a5-49ff-b9dd-b91ce20bc7b5/download/sa_photographs_pre-1900.csv", "format": "CSV", "file_description": "22277 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **RECORD XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **DATES** : Includes the date of the photograph\n- **DESCRIPTION** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **SERIES** : Images may be aggregated as a collection\n- **IMAGE URL** : URL of the location of the web image", "file_created": "2019-08-28T04:35:38.250806", "file_modified": "2019-08-28T04:35:38.126945", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 711, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: 1900 - 1919", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/989fb22e-56f1-4b5f-a5d6-d2c600585338/download/sa_photographs_1900-1919.csv", "format": "CSV", "file_description": "36597 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **RECORD XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **DATES** : Includes the date of the photograph\n- **DESCRIPTION** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **SERIES** : Images may be aggregated as a collection\n- **IMAGE URL** : URL of the location of the web image", "file_created": "2019-08-28T04:58:50.350261", "file_modified": "2019-08-28T04:58:50.224947", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 712, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: 1920 - 1949", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/c569d0c5-9174-4db4-8164-d85d9924d612/download/sa_photographs_1920-1949.csv", "format": "CSV", "file_description": "41279 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **RECORD XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **DATES** : Includes the date of the photograph\n- **DESCRIPTION** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **SERIES** : Images may be aggregated as a collection\n- **IMAGE URL** : URL of the location of the web image", "file_created": "2019-08-28T05:01:14.474948", "file_modified": "2019-08-28T05:01:14.351825", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 713, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: 1950 onwards", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/0543bdc5-faf4-4d1d-af91-a639b5443d53/download/sa_photographs_1950-onwards.csv", "format": "CSV", "file_description": "12840 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **RECORD XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **DATES** : Includes the date of the photograph\n- **DESCRIPTION** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **SERIES** : Images may be aggregated as a collection\n- **IMAGE URL** : URL of the location of the web image", "file_created": "2019-08-28T05:03:11.917871", "file_modified": "2019-08-28T05:03:11.760690", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 718, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: pre 1900", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/e6daaa58-dd5a-43cb-8a72-92c10a5041ad/download/sa_photographs_pre-1900.csv", "format": "CSV", "file_description": "Compiled 2018. This data set has been superseded by an updated version above in this Data and Resources list.\n\n19585 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **Dates/Publication Details** : Includes the date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image\n", "file_created": "2018-06-18T05:56:26.517099", "file_modified": "2018-06-18T05:56:26.344271", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 719, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: 1900 - 1919", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/5961a2f4-e5a0-4046-b205-d22f09ab0029/download/sa_photographs_1900-1919.csv", "format": "CSV", "file_description": "Compiled 2018. This data set has been superseded by an updated version above in this Data and Resources list.\n\n34412 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **Dates/Publication Details** : Includes the date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image\n", "file_created": "2018-06-18T05:57:41.313198", "file_modified": "2018-06-18T05:57:41.026916", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 720, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: 1920 - 1949", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/176e5c9d-559a-4d63-85b4-2caaf05c8ba0/download/sa_photographs_1920-1949.csv", "format": "CSV", "file_description": "Compiled 2018. This data set has been superseded by an updated version above in this Data and Resources list.\n\n42555 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **Dates/Publication Details** : Includes the date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2018-06-18T05:58:54.031442", "file_modified": "2018-06-18T05:58:53.906041", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 721, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: 1950 onwards", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/f783f22d-eff4-4312-bcc2-dd69dee374d5/download/sa_photographs_1950_onwards.csv", "format": "CSV", "file_description": "Compiled 2018. This data set has been superseded by an updated version above in this Data and Resources list.\n\n15162 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **Dates/Publication Details** : Includes the date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2018-06-18T05:59:58.434704", "file_modified": "2018-06-18T05:59:58.221042", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 726, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: pre 1900", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/2f9d49ec-69c2-4895-97f9-a08f374e32fe/download/saphotographspre-1900.csv", "format": "CSV", "file_description": "Compiled 2017. This data set has been superseded by an updated version above in this Data and Resources list.\n\n18469 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **Dates/Publication Details** : Includes the date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2017-07-06T17:17:00.560194", "file_modified": "2017-07-06T07:17:00.449342", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 727, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: 1900 - 1919", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/3089639f-dd73-4b55-8599-37859b67e161/download/saphotographs1900-1919.csv", "format": "CSV", "file_description": "Compiled 2017. This data set has been superseded by an updated version above in this Data and Resources list.\n\n33146 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **Dates/Publication Details** : Includes the date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2017-07-06T17:18:07.314244", "file_modified": "2017-07-06T07:18:07.064681", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 728, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: 1920 - 1949", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/f215310f-e88c-41fc-9534-9930d493f13b/download/saphotographs1920-1949.csv", "format": "CSV", "file_description": "Compiled 2017. This data set has been superseded by an updated version above in this Data and Resources list.\n\n37953 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **Dates/Publication Details** : Includes the date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2017-07-06T17:19:02.654659", "file_modified": "2017-07-06T07:19:02.409997", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 729, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: 1950 onwards", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/6047b3d8-51b2-4720-9134-229eca06e0b2/download/saphotographs1950onwards.csv", "format": "CSV", "file_description": "Compiled 2017. This data set has been superseded by an updated version above in this Data and Resources list.\n\n11797 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **Dates/Publication Details** : Includes the date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2017-07-06T17:19:49.720416", "file_modified": "2017-07-06T07:19:49.596738", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 734, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: pre 1900", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/dd50de39-280d-45e4-a21f-143f73fb7f1f/download/saphotographspre-1900.csv", "format": "CSV", "file_description": "Compiled 2016. This data set has been superseded by an updated version at the top of this Data and Resources list.\n\n19622 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **Dates/Publication Details** : Includes the date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2016-07-01T17:06:36.429408", "file_modified": "2016-07-01T07:06:36.290705", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 735, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: 1900 - 1919", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/60df5002-fe0c-4d8d-a8c5-1affabe8cd90/download/saphotographs1900-1919.csv", "format": "CSV", "file_description": "Compiled 2016. This data set has been superseded by an updated version at the top of this Data and Resources list.\n\n34287 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **Dates/Publication Details** : Includes the date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2016-07-01T17:07:52.540823", "file_modified": "2016-07-01T07:07:52.311544", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 736, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: 1920 - 1949", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/8e0c9bd6-966f-4f6c-8ebf-bc8340d4b25c/download/saphotographs1920-1949.csv", "format": "CSV", "file_description": "Compiled 2016. This data set has been superseded by an updated version at the top of this Data and Resources list.\n\n42474 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **Dates/Publication Details** : Includes the date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2016-07-01T17:09:32.090719", "file_modified": "2016-07-01T07:09:31.912118", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 737, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: 1950 onwards", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/88426df2-1f04-4397-8fd0-9b267e1ac2e0/download/saphotographs1950onwards.csv", "format": "CSV", "file_description": "Compiled 2016. This data set has been superseded by an updated version at the top of this Data and Resources list.\n\n14392 images.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20691051\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer if known\n- **TITLE** : Title of photograph\n- **Dates/Publication Details** : Includes the date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2016-07-01T17:12:21.938444", "file_modified": "2016-07-01T07:12:21.791961", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 742, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: pre 1900", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/d1375c32-fd80-4534-8147-d8c5f8795a42/download/slsaphotospre1900.csv", "format": "CSV", "file_description": "Compiled 2015. This data set has been superseded by an updated version at the top of this Data and Resources list.", "file_created": "2015-07-02T15:50:10.781914", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 743, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: 1900 - 1919", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/7774cd59-c88b-4576-b8f1-86e5d0c4bcbc/download/slsaphotos19001919.csv", "format": "CSV", "file_description": "Compiled 2015. This data set has been superseded by an updated version at the top of this Data and Resources list.", "file_created": "2015-07-02T16:07:10.369999", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 744, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: 1920 - 1949", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/ec3051c0-d61b-44a3-9538-639d676cf8b0/download/slsaphotos19201949.csv", "format": "CSV", "file_description": "Compiled 2015. This data set has been superseded by an updated version at the top of this Data and Resources list.", "file_created": "2015-07-02T16:09:11.345535", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 745, "dataset_title": "South Australian Photographs", "publisher": "State Library of South Australia", "author": "Andrew Piper", "dataset_issued": "2013-03-07T14:40:31.091907", "dataset_modified": "2019-08-29T04:36:26.010768", "dataset_description": "Photographs relating to South Australia feature localities across the state, houses and buildings, portraits, social and historical events, industry, farming, transport and more.\n\nDivided into four time periods:\n\n- pre 1900\n- 1900 - 1919\n- 1920 - 1949\n- 1950 onwards", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455", "start_date": "1800-01-01", "end_date": "2019-05-20", "file_title": "South Australian Photographs: 1950 onwards", "download_url": "https://data.sa.gov.au/data/dataset/62c4e993-8d5b-48a4-9d11-9e9dd4708455/resource/490d47bc-a9db-434b-8064-b46c7c60b07e/download/slsaphotos1950onwards.csv", "format": "CSV", "file_description": "Compiled 2015. This data set has been superseded by an updated version at the top of this Data and Resources list.", "file_created": "2015-07-02T16:10:50.592692", "file_modified": "", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 746, "dataset_title": "Ship Photographs", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2016-06-29T06:44:18.959542", "dataset_modified": "2019-08-29T04:35:07.834064", "dataset_description": "This dataset includes 5,799 selected photographs related to ships and shipping.\n\nNote that images in copyright might not be viewable outside the State Library of South Australia.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e52b0259-2b57-4121-8e04-be333025fb3b", "start_date": "1802-01-01", "end_date": "2014-12-31", "file_title": "Ship Photographs", "download_url": "https://data.sa.gov.au/data/dataset/e52b0259-2b57-4121-8e04-be333025fb3b/resource/2666b0aa-52fe-49ca-adfa-7fee117a46b8/download/ship_photographs.csv", "format": "CSV", "file_description": "**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20223389\"\n- **RECORD URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer\n- **TITLE** : Title of photograph\n- **Dates/publication details** : Date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2018-06-18T05:05:42.533217", "file_modified": "2018-06-18T05:05:42.455851", "file_size": "", "licence": "Creative Commons Attribution"} {"rowid": 748, "dataset_title": "Ship Photographs", "publisher": "State Library of South Australia", "author": "State Library of South Australia", "dataset_issued": "2016-06-29T06:44:18.959542", "dataset_modified": "2019-08-29T04:35:07.834064", "dataset_description": "This dataset includes 5,799 selected photographs related to ships and shipping.\n\nNote that images in copyright might not be viewable outside the State Library of South Australia.", "source": "data.sa.gov.au", "info_url": "https://data.sa.gov.au/data/dataset/e52b0259-2b57-4121-8e04-be333025fb3b", "start_date": "1802-01-01", "end_date": "2014-12-31", "file_title": "Ship Photographs", "download_url": "https://data.sa.gov.au/data/dataset/e52b0259-2b57-4121-8e04-be333025fb3b/resource/ab6cb1a4-44cc-4514-a38f-eac5c50d5aa1/download/shipphotographs.csv", "format": "CSV", "file_description": "Compiled 2017. This data set of 5672 photographs has been superseded by an updated version at the top of this Data and Resources list.\n\n**Explanation of fields**\n\n- **RECORD #** : SLSA unique identifier eg \"b20223389\"\n- **URL** : URL to the catalogue record in our database\n- **XML** : URL to the XML version of the catalogue record\n- **NAME** : Name of photographer\n- **TITLE** : Title of photograph\n- **Dates/publication details** : Date of the photograph\n- **Description/Quantity** : Format and dimensions of the original image\n- **SUMMARY** : Summary information about the image, its content and context\n- **SUBJECT** : Subject headings assigned by the Library to assist searching\n- **Series/Collection** : Images may be aggregated as a collection\n- **IMAGE** : URL of the location of the web image", "file_created": "2017-07-06T16:46:20.810689", "file_modified": "2017-07-06T06:46:20.707799", "file_size": "", "licence": "Creative Commons Attribution"}