diff --git a/Cargo.lock b/Cargo.lock index de65c5ed..1d5c96d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -242,6 +242,12 @@ version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + [[package]] name = "bit-set" version = "0.5.3" @@ -347,7 +353,7 @@ dependencies = [ "anstream", "anstyle", "clap_lex", - "strsim", + "strsim 0.11.0", ] [[package]] @@ -418,6 +424,51 @@ dependencies = [ "typenum", ] +[[package]] +name = "darling" +version = "0.20.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.20.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.10.0", + "syn 2.0.55", +] + +[[package]] +name = "darling_macro" +version = "0.20.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f" +dependencies = [ + "darling_core", + "quote", + "syn 2.0.55", +] + +[[package]] +name = "deranged" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" +dependencies = [ + "powerfmt", + "serde", +] + [[package]] name = "difflib" version = "0.4.0" @@ -493,8 +544,10 @@ dependencies = [ "hyper", "log", "nonempty", + "regex", "serde", "serde_json", + "serde_with", "serde_yaml", "sophia", "thiserror", @@ -689,7 +742,7 @@ checksum = "e57c79b24c24fcabd8aaf00ccb2ab4e5d4145b935ede0be53d3ebb434decd56c" dependencies = [ "hcl-edit", "hcl-primitives", - "indexmap", + "indexmap 2.2.6", "itoa", "serde", "vecmap-rs", @@ -713,6 +766,12 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + [[package]] name = "http" version = "1.1.0" @@ -823,6 +882,12 @@ dependencies = [ "cc", ] +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + [[package]] name = "idna" version = "0.5.0" @@ -833,6 +898,17 @@ dependencies = [ "unicode-normalization", ] +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", + "serde", +] + [[package]] name = "indexmap" version = "2.2.6" @@ -1032,6 +1108,12 @@ dependencies = [ "winapi", ] +[[package]] +name = "num-conv" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" + [[package]] name = "num-traits" version = "0.2.19" @@ -1235,6 +1317,12 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + [[package]] name = "predicates" version = "3.1.0" @@ -1526,13 +1614,43 @@ dependencies = [ "serde", ] +[[package]] +name = "serde_with" +version = "3.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cecfa94848272156ea67b2b1a53f20fc7bc638c4a46d2f8abde08f05f4b857" +dependencies = [ + "base64 0.22.1", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.2.6", + "serde", + "serde_derive", + "serde_json", + "serde_with_macros", + "time", +] + +[[package]] +name = "serde_with_macros" +version = "3.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8fee4991ef4f274617a51ad4af30519438dacb2f56ac773b08a1922ff743350" +dependencies = [ + "darling", + "proc-macro2", + "quote", + "syn 2.0.55", +] + [[package]] name = "serde_yaml" version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "indexmap", + "indexmap 2.2.6", "itoa", "ryu", "serde", @@ -1715,6 +1833,12 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" +[[package]] +name = "strsim" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" + [[package]] name = "strsim" version = "0.11.0" @@ -1791,6 +1915,37 @@ dependencies = [ "once_cell", ] +[[package]] +name = "time" +version = "0.3.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" +dependencies = [ + "deranged", + "itoa", + "num-conv", + "powerfmt", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" + +[[package]] +name = "time-macros" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" +dependencies = [ + "num-conv", + "time-core", +] + [[package]] name = "tinyvec" version = "1.6.0" @@ -1883,7 +2038,7 @@ version = "0.22.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "278f3d518e152219c994ce877758516bca5e118eaed6996192a774fb9fbf0788" dependencies = [ - "indexmap", + "indexmap 2.2.6", "serde", "serde_spanned", "toml_datetime", diff --git a/Cargo.toml b/Cargo.toml index d8d8a12d..9d895ff6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,6 +30,7 @@ log = "0.4.20" # logging facade once_cell = "1.19.0" pid1 = "0.1.1" serde = { version = "1", features = ["derive"] } +serde_with = "3.9.0" serde_json = "1" # JSON serialization serde_yaml = "0.9" nonempty = { version = "0.10.0", features = ["serialize"] } @@ -37,8 +38,9 @@ valico = "4.0.0" tokio = { version = "1", features = ["rt", "macros", "rt-multi-thread"] } tokio-test = "0.4.2" tower = "0.4.13" -tower-http = { version = "0.5.0", features = ["trace", "fs"] } +tower-http = { version = "0.5.0", features = ["trace", "fs", "cors"] } hyper = "1.0.1" +regex = "1.5.4" thiserror = "1.0.56" tracing = "0.1" tracing-subscriber = { version = "0.3", features = [ diff --git a/Dockerfile b/Dockerfile index ae2c24bd..7296910b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM rust:1-slim-bookworm as builder-rs +FROM rust:1-slim-bookworm AS builder-rs WORKDIR /dsp-meta COPY . . RUN cargo install --path ./dsp-meta-cmd -FROM node:21-bookworm-slim as builder-node +FROM node:21-bookworm-slim AS builder-node WORKDIR /dsp-meta COPY . . RUN cd web-frontend && yarn install && yarn run build diff --git a/data/add_status.py b/data/add_status.py new file mode 100644 index 00000000..78f690c6 --- /dev/null +++ b/data/add_status.py @@ -0,0 +1,79 @@ +import os +import json + +# List of ongoing shortcodes +ongoing_shortcodes = [ + "0102", + "0103", + "0105", + "0106", + "0107", + "0112", + "0114", + "0116", + "0118", + "0119", + "0121", + "0801", + "0804", + "0805", + "0806", + "0807", + "080C", + "080E", + "0810", + "0812", + "0813", + "0816", + "081B", + "0820", + "0827", + "082B", + "082C", + "0836", + "0838", + "083A", + "083B", + "083C", + "083E", + "0843", + "0844", + "0849", + "084A", + "084E" +] + +def update_json_files(folder_path): + print(ongoing_shortcodes) + # Iterate through all files in the given folder + for filename in os.listdir(folder_path): + # Check if the file is a JSON file + if filename.endswith(".json"): + file_path = os.path.join(folder_path, filename) + + # Read the JSON file + with open(file_path, 'r', encoding='utf-8') as file: + data = json.load(file) + + # Check if the "project" and "shortcode" keys exist + if "project" in data and "shortcode" in data["project"]: + shortcode = data["project"]["shortcode"] + + # Determine the status based on the shortcode + print (shortcode) + print (shortcode in ongoing_shortcodes) + if shortcode in ongoing_shortcodes: + status = "ongoing" + else: + status = "finished" + + # Add or update the "status" property + data["project"]["status"] = status + + # Write the updated JSON back to the file + with open(file_path, 'w', encoding='utf-8') as file: + json.dump(data, file, indent=4, ensure_ascii=False) + else: + print(f"File {filename} does not contain the expected structure.") + +update_json_files('./json/') \ No newline at end of file diff --git a/data/json/Rome.json b/data/json/Rome.json index d4e3a38d..328311ff 100644 --- a/data/json/Rome.json +++ b/data/json/Rome.json @@ -1,478 +1,481 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-REMA-project", - "__type": "Project", - "__createdAt": "1657709544615698000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Croci, C., Quadri, I, Gianandrea, M., Romano, S., Tosti, E., Chiaraella, M., Ventura, D., Rivoal, M., 2022, Rome in the Early Middle Ages: Arts and Culture [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0118", - "teaserText": "The project addresses the visual culture of the city of Rome (Vth-XIth ct.) by means of an interdisciplinary approach (art history, architecture, archaeology archaeometry, liturgy, epigraphy).", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-REMA-dataset-000" - ], - "alternativeNames": [ - { - "fr": "rome-siecles-obscurs" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-REMA-person-000", - "dataManagementPlan": { - "__type": "DataManagementPlan", - "available": true - }, - "description": { - "en": "The project addresses the visual culture of the city of Rome (Vth-XIth ct.) by means of an interdisciplinary approach (art history, architecture, archaeology archaeometry, liturgy, epigraphy)." - }, - "disciplines": [ - { - "en": "10402 Archaeology" - }, - { - "en": "10404 Visual arts and Art history" - } - ], - "endDate": "2023-08-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-REMA-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-REMA-grant-000" - ], - "keywords": [ - { - "en": "painting" - }, - { - "en": "mosaic" - }, - { - "en": "visual culture" - }, - { - "en": "iconography" - }, - { - "en": "style" - }, - { - "en": "archaeometry" - }, - { - "en": "epigraphy" - }, - { - "en": "archaeology" - }, - { - "en": "historiography" - }, - { - "en": "papacy" - }, - { - "en": "Rome" - }, - { - "en": "artistic geography" - }, - { - "en": "early Middle Ages" - }, - { - "en": "Goths" - }, - { - "en": "Byzantines" - }, - { - "en": "Carolingians" - }, - { - "en": "Ottonians" - } - ], - "name": "Rome in the Early Middle Ages: Arts and Culture", - "shortcode": "0118", - "spatialCoverage": [ - { - "__type": "URL", - "type": "URL", - "url": "http://vocab.getty.edu/page/tgn/7000874", - "text": "Rome (inhabited place)" - } - ], - "startDate": "2020-09-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/ZkwNN4oimUDM", - "text": "Middle Ages, 500-1500" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/0118", - "text": "Discover Project Data" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-REMA-project", + "__type": "Project", + "__createdAt": "1657709544615698000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Croci, C., Quadri, I, Gianandrea, M., Romano, S., Tosti, E., Chiaraella, M., Ventura, D., Rivoal, M., 2022, Rome in the Early Middle Ages: Arts and Culture [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0118", + "teaserText": "The project addresses the visual culture of the city of Rome (Vth-XIth ct.) by means of an interdisciplinary approach (art history, architecture, archaeology archaeometry, liturgy, epigraphy).", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-REMA-dataset-000" + ], + "alternativeNames": [ + { + "fr": "rome-siecles-obscurs" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-REMA-person-000", + "dataManagementPlan": { + "__type": "DataManagementPlan", + "available": true + }, + "description": { + "en": "The project addresses the visual culture of the city of Rome (Vth-XIth ct.) by means of an interdisciplinary approach (art history, architecture, archaeology archaeometry, liturgy, epigraphy)." + }, + "disciplines": [ + { + "en": "10402 Archaeology" + }, + { + "en": "10404 Visual arts and Art history" + } + ], + "endDate": "2023-08-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-REMA-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-REMA-grant-000" + ], + "keywords": [ + { + "en": "painting" + }, + { + "en": "mosaic" + }, + { + "en": "visual culture" + }, + { + "en": "iconography" + }, + { + "en": "style" + }, + { + "en": "archaeometry" + }, + { + "en": "epigraphy" + }, + { + "en": "archaeology" + }, + { + "en": "historiography" + }, + { + "en": "papacy" + }, + { + "en": "Rome" + }, + { + "en": "artistic geography" + }, + { + "en": "early Middle Ages" + }, + { + "en": "Goths" + }, + { + "en": "Byzantines" + }, + { + "en": "Carolingians" + }, + { + "en": "Ottonians" + } + ], + "name": "Rome in the Early Middle Ages: Arts and Culture", + "shortcode": "0118", + "spatialCoverage": [ + { + "__type": "URL", + "type": "URL", + "url": "http://vocab.getty.edu/page/tgn/7000874", + "text": "Rome (inhabited place)" + } + ], + "startDate": "2020-09-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/ZkwNN4oimUDM", + "text": "Middle Ages, 500-1500" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/0118", + "text": "Discover Project Data" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-REMA-dataset-000", + "__type": "Dataset", + "__createdAt": "1657709546374431000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-REMA-dataset-000", - "__type": "Dataset", - "__createdAt": "1657709546374431000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The ontology of the database comprises three main classes, making it possible to describe paintings and mosaics in the buildings where they are found. The class “Oggetto” (i.e.: mosaic, painting) falls under the class “Cappella” and/or the class “Edificio”. Each of these three classes contains properties (custom controlled vocabularies and text fields), making it possible to characterize the building, chapel, paintings or mosaic using names, location, description, state of preservation, analysis, dating, patrons, inscriptions, sources, critical commentary, bibliography. Illustrations can be added to the three main categories using two further classes, ‘Illustrazioni’ and ‘Illustrazioni ad accesso limitato’, whose properties (also text fields and controlled vocabularies) include information on the type of image and photograph credits." - } - ], - "alternativeTitles": [ - { - "fr": "rome-siecles-obscurs" - } - ], - "accessConditions": "restricted", - "howToCite": "Croci, C., Quadri, I, Gianandrea, M., Romano, S., Tosti, E., Chiaraella, M., Ventura, D., Rivoal, M., 2022, Rome in the Early Middle Ages: Arts and Culture [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0118", - "languages": [ - { - "en": "Italian", - "de": "Italienisch", - "fr": "italien" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2022-07-13", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0/", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-000", - "roles": [ - "Project Leader" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-001", - "roles": [ - "Project Leader" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-006", - "roles": [ - "Project Member" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-005", - "roles": [ - "Project Member" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-004", - "roles": [ - "Data Collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-003", - "roles": [ - "Data Collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-007", - "roles": [ - "Data Collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-002", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-008", - "roles": [ - "Data Collector" - ] - } - ], - "status": "Ongoing", - "title": "Database of the project Rome in the Early Middle Ages: Arts and Culture", - "typeOfData": [ - "Image", - "Text" - ] + "en": "The ontology of the database comprises three main classes, making it possible to describe paintings and mosaics in the buildings where they are found. The class “Oggetto” (i.e.: mosaic, painting) falls under the class “Cappella” and/or the class “Edificio”. Each of these three classes contains properties (custom controlled vocabularies and text fields), making it possible to characterize the building, chapel, paintings or mosaic using names, location, description, state of preservation, analysis, dating, patrons, inscriptions, sources, critical commentary, bibliography. Illustrations can be added to the three main categories using two further classes, ‘Illustrazioni’ and ‘Illustrazioni ad accesso limitato’, whose properties (also text fields and controlled vocabularies) include information on the type of image and photograph credits." } - ], - "persons": [ + ], + "alternativeTitles": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-001", - "__type": "Person", - "__createdAt": "1657709547134209000", - "__createdBy": "dsp-metadata-gui", - "email": "Irene.Quadri@unil.ch", - "familyNames": [ - "Quadri" - ], - "givenNames": [ - "Irene" - ], - "jobTitles": [ - "Post-doctoral researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" - ] - }, + "fr": "rome-siecles-obscurs" + } + ], + "accessConditions": "restricted", + "howToCite": "Croci, C., Quadri, I, Gianandrea, M., Romano, S., Tosti, E., Chiaraella, M., Ventura, D., Rivoal, M., 2022, Rome in the Early Middle Ages: Arts and Culture [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0118", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-002", - "__type": "Person", - "__createdAt": "1657709547134310000", - "__createdBy": "dsp-metadata-gui", - "email": "Marion.Rivoal@unil.ch", - "familyNames": [ - "Rivoal" - ], - "givenNames": [ - "Marion" - ], - "jobTitles": [ - "Research Manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" - ] - }, + "en": "Italian", + "de": "Italienisch", + "fr": "italien" + } + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-003", - "__type": "Person", - "__createdAt": "1657709547134410000", - "__createdBy": "dsp-metadata-gui", - "email": "mariaelena.chiarella@unil.ch", - "familyNames": [ - "Chiarella" - ], - "givenNames": [ - "Maria Elena" - ], - "jobTitles": [ - "PhD Student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" - ] - }, + "__type": "License", + "date": "2022-07-13", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-004", - "__type": "Person", - "__createdAt": "1657709547134507000", - "__createdBy": "dsp-metadata-gui", - "email": "Eleonora.tosti@unil.ch", - "familyNames": [ - "Tosti" - ], - "givenNames": [ - "Eleonora" - ], - "jobTitles": [ - "Post-doctoral researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-000", + "roles": [ + "Project Leader" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-005", - "__type": "Person", - "__createdAt": "1657709547134588000", - "__createdBy": "dsp-metadata-gui", - "email": "Serena.Romano@unil.ch", - "familyNames": [ - "Romano" - ], - "givenNames": [ - "Serena" - ], - "jobTitles": [ - "Professor Emeritus" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-001", + "roles": [ + "Project Leader" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-006", - "__type": "Person", - "__createdAt": "1657709547134672000", - "__createdBy": "dsp-metadata-gui", - "email": "Manuela.Gianandrea@unil.ch", - "familyNames": [ - "Gianandrea" - ], - "givenNames": [ - "Manuela" - ], - "jobTitles": [ - "Associate Professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-REMA-organization-000", - "http://ns.dasch.swiss/repository#dsp-REMA-organization-002" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-006", + "roles": [ + "Project Member" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-007", - "__type": "Person", - "__createdAt": "1657709547134778000", - "__createdBy": "dsp-metadata-gui", - "email": "mimmoventura74@gmail.com", - "familyNames": [ - "Ventura" - ], - "givenNames": [ - "Domenico" - ], - "jobTitles": [ - "Freelance photographer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-005", + "roles": [ + "Project Member" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-000", - "__type": "Person", - "__createdAt": "1657709547134887000", - "__createdBy": "dsp-metadata-gui", - "email": "Chiara.Croci@unil.ch", - "familyNames": [ - "Croci" - ], - "givenNames": [ - "Chiara" - ], - "jobTitles": [ - "Post-doctoral researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-004", + "roles": [ + "Data Collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-008", - "__type": "Person", - "email": "Cassandre.Lejosne@unil.ch", - "familyNames": [ - "Cassandre" - ], - "givenNames": [ - "Lejosne" - ], - "jobTitles": [ - "PhD student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" - ] - } - ], - "organizations": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-REMA-organization-002", - "__type": "Organization", - "__createdAt": "1657709547135008000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "", - "postalCode": "", - "locality": "Sapienza", - "country": "Italy" - }, - "name": "University of Rome" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-003", + "roles": [ + "Data Collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-REMA-organization-001", - "__type": "Organization", - "__createdAt": "1657709547222387000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3 Postfach", - "postalCode": "3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-007", + "roles": [ + "Data Collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-REMA-organization-000", - "__type": "Organization", - "__createdAt": "1657709547268009000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Unicentre", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "name": "University of Lausanne", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.unil.ch", - "text": "www.unil.ch" - } - } - ], - "grants": [ + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-002", + "roles": [ + "Data Curator" + ] + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-REMA-grant-000", - "__type": "Grant", - "__createdAt": "1657709547313726000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-REMA-organization-001" - ], - "name": "Project funding", - "number": "192854", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/192854", - "text": "https://data.snf.ch/grants/grant/192854" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-REMA-person-008", + "roles": [ + "Data Collector" + ] } - ] -} + ], + "status": "Ongoing", + "title": "Database of the project Rome in the Early Middle Ages: Arts and Culture", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-001", + "__type": "Person", + "__createdAt": "1657709547134209000", + "__createdBy": "dsp-metadata-gui", + "email": "Irene.Quadri@unil.ch", + "familyNames": [ + "Quadri" + ], + "givenNames": [ + "Irene" + ], + "jobTitles": [ + "Post-doctoral researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-002", + "__type": "Person", + "__createdAt": "1657709547134310000", + "__createdBy": "dsp-metadata-gui", + "email": "Marion.Rivoal@unil.ch", + "familyNames": [ + "Rivoal" + ], + "givenNames": [ + "Marion" + ], + "jobTitles": [ + "Research Manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-003", + "__type": "Person", + "__createdAt": "1657709547134410000", + "__createdBy": "dsp-metadata-gui", + "email": "mariaelena.chiarella@unil.ch", + "familyNames": [ + "Chiarella" + ], + "givenNames": [ + "Maria Elena" + ], + "jobTitles": [ + "PhD Student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-004", + "__type": "Person", + "__createdAt": "1657709547134507000", + "__createdBy": "dsp-metadata-gui", + "email": "Eleonora.tosti@unil.ch", + "familyNames": [ + "Tosti" + ], + "givenNames": [ + "Eleonora" + ], + "jobTitles": [ + "Post-doctoral researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-005", + "__type": "Person", + "__createdAt": "1657709547134588000", + "__createdBy": "dsp-metadata-gui", + "email": "Serena.Romano@unil.ch", + "familyNames": [ + "Romano" + ], + "givenNames": [ + "Serena" + ], + "jobTitles": [ + "Professor Emeritus" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-006", + "__type": "Person", + "__createdAt": "1657709547134672000", + "__createdBy": "dsp-metadata-gui", + "email": "Manuela.Gianandrea@unil.ch", + "familyNames": [ + "Gianandrea" + ], + "givenNames": [ + "Manuela" + ], + "jobTitles": [ + "Associate Professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-REMA-organization-000", + "http://ns.dasch.swiss/repository#dsp-REMA-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-007", + "__type": "Person", + "__createdAt": "1657709547134778000", + "__createdBy": "dsp-metadata-gui", + "email": "mimmoventura74@gmail.com", + "familyNames": [ + "Ventura" + ], + "givenNames": [ + "Domenico" + ], + "jobTitles": [ + "Freelance photographer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-000", + "__type": "Person", + "__createdAt": "1657709547134887000", + "__createdBy": "dsp-metadata-gui", + "email": "Chiara.Croci@unil.ch", + "familyNames": [ + "Croci" + ], + "givenNames": [ + "Chiara" + ], + "jobTitles": [ + "Post-doctoral researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-REMA-person-008", + "__type": "Person", + "__createdAt": "1657709547134887000", + "__createdBy": "dsp-metadata-gui", + "email": "Cassandre.Lejosne@unil.ch", + "familyNames": [ + "Cassandre" + ], + "givenNames": [ + "Lejosne" + ], + "jobTitles": [ + "PhD student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-REMA-organization-000" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-REMA-organization-002", + "__type": "Organization", + "__createdAt": "1657709547135008000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "", + "postalCode": "", + "locality": "Sapienza", + "country": "Italy" + }, + "name": "University of Rome" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-REMA-organization-001", + "__type": "Organization", + "__createdAt": "1657709547222387000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3 Postfach", + "postalCode": "3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-REMA-organization-000", + "__type": "Organization", + "__createdAt": "1657709547268009000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Unicentre", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "name": "University of Lausanne", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.unil.ch", + "text": "www.unil.ch" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-REMA-grant-000", + "__type": "Grant", + "__createdAt": "1657709547313726000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-REMA-organization-001" + ], + "name": "Project funding", + "number": "192854", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/192854", + "text": "https://data.snf.ch/grants/grant/192854" + } + } + ] +} \ No newline at end of file diff --git a/data/json/_bilddatenbank.json b/data/json/_bilddatenbank.json deleted file mode 100644 index 187fb628..00000000 --- a/data/json/_bilddatenbank.json +++ /dev/null @@ -1,203 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-project", - "__type": "Project", - "__createdAt": "1630601402366019000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "https://geoarchI-GEOARCHive.dasch.swiss", - "teaserText": "The „I-GEOARCHive“ image database of thin section scans (and corresponding microscope photos) makes the collection digitally accessible to the public and in particular to research and teaching.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0838-dataset-001" - ], - "alternativeNames": [ - { - "en": "I-GEOARCHive" - }, - { - "en": "geoarch" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0838-person-001", - "description": { - "en": "D: Die geoarchäologische Sammlung am IPNA (Integrative Prähistorische und Naturwissenschaftliche Archäologie) der Universität Basel umfasst u.a. Block- und Sedimentproben von natürlichen Böden sowie archäologischen Schichten, ferner auch Gesteinen, Silices, Keramik etc. Diese Sammlung kann dank der „I-GEOARCHive“ Bilddatenbank in Form von Fotografien und Dünnschliffscans (mit entsprechenden Mikroskopfotos) einer breiten Öffentlichkeit und insbesondere der Forschung und Lehre zugänglich gemacht werden. Die frei zugängliche „I-GEOARCHive“ ermöglicht den Nutzer*innen das Beschlagworten, Analysieren, Publizieren und Archivieren geoarchäologischer Proben. Darüber hinaus sind mikromorphologische Befunde mit den Dünnschliffscans und dadurch mit den Blockproben und Profilen verknüpft. Durch diese Vernetzung wird eine multidimensionale Publikation und Archivierung mikromorphologischer Bilddaten und ihr Bezug zum originalen Feldbefund möglich.\n\nE: The geoarchaeological collection of the IPAS (Integrative Prehistory and Archaeological Science) at the University of Basel includes block and sediment samples of soils and archaeological deposits as well as rocks, flints, ceramics etc. The „I-GEOARCHive“ image database of thin section scans (and corresponding microscope photos) makes the collection digitally accessible to the public and in particular to research and teaching. The freely accessible „I-GEOARCHive“ database enables users to keyword, analyse, publish and archive geoarchaeological samples. Furthermore, micromorphological observations are linked to the thin section scans and thus to the block samples and profiles. This cross-linking enables multidimensional publication and archiving of micromorphological image data and their relation to original archaeological features." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/2506/html", - "text": "Geology" - } - ], - "endDate": "2021-12-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0838-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0838-grant-001" - ], - "keywords": [ - { - "de": "Dünnschliff" - }, - { - "en": "Geoarchaeology", - "de": "Geoarchäologie" - }, - { - "de": "Geologie", - "en": "Geology" - }, - { - "en": "Micromorphology", - "de": "Mikromorphologie" - }, - { - "en": "Microphoto", - "de": "Mikrofoto" - }, - { - "de": "Petrographie", - "en": "Petrography" - }, - { - "en": "Thin Section" - }, - { - "fr": "anthropogene Materialien", - "en": "anthropogenic material" - }, - { - "en": "archaeological deposit", - "de": "archäologische Schicht" - } - ], - "name": "Bilddatenbank Geoarchäologie", - "shortcode": "0838", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/switzerland.html", - "text": "Switzerland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2802361/kingdom-of-belgium.html", - "text": "Belgium" - } - ], - "startDate": "1900-01-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "http://chronontology.dainst.org/period/JMHQs1UHRe3a", - "text": "Palaeolithic" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://ark.dasch.swiss/ark:/72163/1/0838", - "text": "https://ark.dasch.swiss/ark:/72163/1/0838" - } - }, - "datasets": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-dataset-001", - "__type": "Dataset", - "__createdAt": "1630601410775611000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "de": "D: Die geoarchäologische Sammlung am IPNA (Integrative Prähistorische und Naturwissenschaftliche Archäologie) der Universität Basel umfasst u.a. Block- und Sedimentproben von natürlichen Böden sowie archäologischen Schichten, ferner auch Gesteinen, Silices, Keramik etc. Diese Sammlung kann dank der „I-GEOARCHive“ Bilddatenbank in Form von Fotografien und Dünnschliffscans (mit entsprechenden Mikroskopfotos) einer breiten Öffentlichkeit und insbesondere der Forschung und Lehre zugänglich gemacht werden. Die frei zugängliche „I-GEOARCHive“ ermöglicht den Nutzer*innen das Beschlagworten, Analysieren, Publizieren und Archivieren geoarchäologischer Proben. Darüber hinaus sind mikromorphologische Befunde mit den Dünnschliffscans und dadurch mit den Blockproben und Profilen verknüpft. Durch diese Vernetzung wird eine multidimensionale Publikation und Archivierung mikromorphologischer Bilddaten und ihr Bezug zum originalen Feldbefund möglich." - }, - { - "en": "E: The geoarchaeological collection of the IPAS (Integrative Prehistory and Archaeological Science) at the University of Basel includes block and sediment samples of soils and archaeological deposits as well as rocks, flints, ceramics etc. The „I-GEOARCHive“ image database of thin section scans (and corresponding microscope photos) makes the collection digitally accessible to the public and in particular to research and teaching. The freely accessible „I-GEOARCHive“ database enables users to keyword, analyse, publish and archive geoarchaeological samples. Furthermore, micromorphological observations are linked to the thin section scans and thus to the block samples and profiles. This cross-linking enables multidimensional publication and archiving of micromorphological image data and their relation to original archaeological features." - } - ], - "accessConditions": "open", - "dateModified": "2021-01-01", - "datePublished": "2021-01-01", - "howToCite": "https://geoarchI-GEOARCHive.dasch.swiss", - "languages": [ - { - "de": "Deutsch" - }, - { - "de": "Englisch" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "URL", - "url": "https://creativecommons.org/licenses/by-nc-sa/3.0/", - "text": "https://creativecommons.org/licenses/by-nc-sa/3.0/" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0838-person-001", - "roles": [ - "Researcher" - ] - } - ], - "status": "Ongoing", - "title": "I-GEOARCHive", - "typeOfData": [ - "Image", - "Text" - ] - } - ], - "persons": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-person-001", - "__type": "Person", - "__createdAt": "1630601412118677000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Butterfly" - ], - "givenNames": [ - "John" - ], - "jobTitles": [ - "Postdoc" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0838-organization-001" - ] - } - ], - "organizations": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-organization-001", - "__type": "Organization", - "__createdAt": "1630601412118797000", - "__createdBy": "dsp-metadata-gui", - "name": "Departement für Umweltwissenschaften der Universität Basel" - } - ], - "grants": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-grant-001", - "__type": "Grant", - "__createdAt": "1630601412118862000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0838-organization-001" - ] - } - ] -} diff --git a/data/json/_dssl.json b/data/json/_dssl.json deleted file mode 100644 index 88f61f85..00000000 --- a/data/json/_dssl.json +++ /dev/null @@ -1,360 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0824-project", - "__type": "Project", - "__createdAt": "1630601370424772000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "https://dssl.dasch.swiss", - "teaserText": "Die Datenbank umfasst etwa 55'000 Einträge mit Sekundärliteratur zu sumerischen Lexemen.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0824-dataset-001" - ], - "alternativeNames": [ - { - "en": "DSSL" - }, - { - "en": "SumSekLit" - } - ], - "description": { - "de": "Die Datenbank umfasst etwa 55'000 Einträge mit Sekundärliteratur zu sumerischen Lexemen. Jeder Eintrag basiert auf einer Hauptzeichenabfolge mit möglichen Lesungen und unorthografischen Schreibungen. Für jedes Lexem wird die Sekundärliteratur erfasst und nicht selten werden die in den Beiträgen vorgeschlagenen Bedeutungen wiedergegeben. \nF: La base de données comporte environ 55'000 entrées enregistrant la littérature secondaire consacrée à un lexème sumérien. Chaque entrée est constituée d'une séquence de signes principale et de leurs lectures possibles, avec le plus souvent renvoi aux graphies non-standards. Pour chaque lexème, la littérature secondaire est saisie, avec pas rarement indication des significations proposées. \n\nE: The database comprises about 55'000 entries listing the secondary literature on Sumerian lexemes. Each entry consists of a main sign sequence with its possible readings and includes references to unorthographical writings. Each lexeme is provided with a list of secondary literature, often indicating the meanings suggested therein." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/550510/html", - "text": "Philology " - } - ], - "endDate": "2022-01-01", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0824-organization-001", - "http://ns.dasch.swiss/repository#dsp-0824-organization-002" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0824-grant-002" - ], - "keywords": [ - { - "en": "Akkadian", - "de": "Akkadisch", - "fr": "akkadien" - }, - { - "de": "Altorientalistik" - }, - { - "de": "Assyriologie", - "en": "Assyriology" - }, - { - "de": "Keilschrift" - }, - { - "en": "Mesopotamia", - "de": "Mesopotamien", - "fr": "Mésopotamie" - }, - { - "de": "Sekundärliteratur", - "fr": "littérature secondaire", - "en": "secondary literature" - }, - { - "en": "Sumerian", - "de": "Sumerisch", - "fr": "Sumérien" - }, - { - "en": "cuneiform", - "fr": "cunéiforme" - } - ], - "name": "Datenbank der sumerischen Sekundärliteratur", - "shortcode": "0824", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/99237/republic-of-iraq.html", - "text": "Iraq" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6255147/asia.html", - "text": "Asia" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/298795/republic-of-turkey.html", - "text": "Turkey" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/130758/islamic-republic-of-iran.html", - "text": "Iran" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/163843/syrian-arab-republic.html", - "text": "Syria" - } - ], - "startDate": "2014-10-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "http://chronontology.dainst.org/period/ZAxRV9WoxlrI", - "text": "4th millenium BCE" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://ark.dasch.swiss/ark:/72163/1/0824", - "text": "https://ark.dasch.swiss/ark:/72163/1/0824" - }, - "secondaryURL": { - "__type": "URL", - "type": "URL", - "url": "https://dssl.dasch.swiss", - "text": "https://dssl.dasch.swiss" - } - }, - "datasets": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0824-dataset-001", - "__type": "Dataset", - "__createdAt": "1630601380264741000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "de": "D: Die Datenbank umfasst etwa 55'000 Einträge mit Sekundärliteratur zu sumerischen Lexemen. Jeder Eintrag basiert auf einer Hauptzeichenabfolge mit möglichen Lesungen und unorthografischen Schreibungen. Für jedes Lexem wird die Sekundärliteratur erfasst und nicht selten werden die in den Beiträgen vorgeschlagenen Bedeutungen wiedergegeben." - }, - { - "en": "E: The database comprises about 55'000 entries listing the secondary literature on Sumerian lexemes. Each entry consists of a main sign sequence with its possible readings and includes references to unorthographical writings. Each lexeme is provided with a list of secondary literature, often indicating the meanings suggested therein." - }, - { - "fr": "F: La base de données comporte environ 55'000 entrées enregistrant la littérature secondaire consacrée à un lexème sumérien. Chaque entrée est constituée d'une séquence de signes principale et de leurs lectures possibles, avec le plus souvent renvoi aux graphies non-standards. Pour chaque lexème, la littérature secondaire est saisie, avec pas rarement indication des significations proposées." - } - ], - "accessConditions": "open", - "datePublished": "2022-01-01", - "howToCite": "https://dssl.dasch.swiss", - "languages": [ - { - "de": "Akkadisch" - }, - { - "de": "Deutsch" - }, - { - "de": "Englisch" - }, - { - "de": "Französisch" - }, - { - "de": "Sumerisch" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "URL", - "url": "https://creativecommons.org/licenses/by-nc-nd/4.0/", - "text": "https://creativecommons.org/licenses/by-nc-nd/4.0/" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0824-person-001", - "roles": [ - "Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0824-person-004", - "roles": [ - "Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0824-person-005", - "roles": [ - "Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0824-person-002", - "roles": [ - "Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0824-person-003", - "roles": [ - "Contributor" - ] - } - ], - "status": "Ongoing", - "title": "Dataset of Datenbank der sumerischen Sekundärliteratur", - "typeOfData": [ - "Text" - ] - } - ], - "persons": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0824-person-001", - "__type": "Person", - "__createdAt": "1630601383452566000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Attinger" - ], - "givenNames": [ - "Pascal" - ], - "jobTitles": [ - "Researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0824-organization-003" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0824-person-002", - "__type": "Person", - "__createdAt": "1630601383452679000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Deubelbeiss" - ], - "givenNames": [ - "Irene" - ], - "jobTitles": [ - "Researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0824-organization-003" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0824-person-003", - "__type": "Person", - "__createdAt": "1630601383452788000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Ecklin" - ], - "givenNames": [ - "Sabine" - ], - "jobTitles": [ - "Researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0824-organization-003" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0824-person-004", - "__type": "Person", - "__createdAt": "1630601383452896000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Mittermayer" - ], - "givenNames": [ - "Catherine" - ], - "jobTitles": [ - "Researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0824-organization-003" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0824-person-005", - "__type": "Person", - "__createdAt": "1630601383453004000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Novák" - ], - "givenNames": [ - "Mirko" - ], - "jobTitles": [ - "Researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0824-organization-003" - ] - } - ], - "organizations": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0824-organization-001", - "__type": "Organization", - "__createdAt": "1630601383453137000", - "__createdBy": "dsp-metadata-gui", - "name": "Schweizerische Akademie der Geisteswissenschaften (SAGW)" - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0824-organization-002", - "__type": "Organization", - "__createdAt": "1630601383453190000", - "__createdBy": "dsp-metadata-gui", - "name": "Schweizerischer Nationalfonds (SNSF)" - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0824-organization-003", - "__type": "Organization", - "__createdAt": "1630601383453248000", - "__createdBy": "dsp-metadata-gui", - "name": "Université de Genève" - } - ], - "grants": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0824-grant-001", - "__type": "Grant", - "__createdAt": "1630601383453310000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0824-organization-001" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0824-grant-002", - "__type": "Grant", - "__createdAt": "1630601383453350000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0824-organization-002" - ] - } - ] -} diff --git a/data/json/_rosetta.json b/data/json/_rosetta.json deleted file mode 100644 index 387ed995..00000000 --- a/data/json/_rosetta.json +++ /dev/null @@ -1,194 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-082E-project", - "__type": "Project", - "__createdAt": "1630601349756338000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "DaSCH (2021): Rosetta, DaSCH. https://ark.dasch.swiss/ark:/72163/1/082E/", - "teaserText": "Rosetta is the sample project of DaSCH.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-082E-dataset-000" - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-082E-organization-000", - "description": { - "en": "Rosetta is the sample project of DaSCH. It contains texts, objects, documents and images from different cultures and times. In the future the sample project will be enriched with new types of data such as audio, video and 3D-images. The downloadable file rosetta.zip contains the data model (json-file), the data itself (xml.file) as well as some documentation (pdf and csv-files). You can use these files to start creating your own data model." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/570107", - "text": "Language and literature" - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/620303", - "text": "Decorative arts" - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/550501", - "text": "Archaeology" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-082E-organization-000" - ], - "keywords": [ - { - "en": "archaeology" - }, - { - "en": "art" - }, - { - "en": "literature" - } - ], - "name": "Rosetta", - "shortcode": "082E", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6255146", - "text": "Africa" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6255147", - "text": "Asia" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6255148", - "text": "Europe" - } - ], - "startDate": "2020-12-21", - "temporalCoverage": [ - { - "en": "3rd millennium BCE to modern time" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "http://app.test.dasch.swiss", - "text": "app.test.dasch.swiss" - } - }, - "datasets": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-082E-dataset-000", - "__type": "Dataset", - "__createdAt": "1630601352826155000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "Rosetta is the sample project of DaSCH. It contains texts, objects, documents and images from different cultures and times. In the future the sample project will be enriched with new types of data such as audio, video and 3D-images. The downloadable file rosetta.zip contains the data model (json-file), the data itself (xml.file) as well as some documentation (pdf and csv-files). You can use these files to start creating your own data model." - } - ], - "accessConditions": "open", - "additional": [ - { - "en": "Added as zip-file to project (rosetta.zip)" - } - ], - "howToCite": "DaSCH (2021): Rosetta, DaSCH. https://ark.dasch.swiss/ark:/72163/1/082E/", - "languages": [ - { - "en": "Akkadian" - }, - { - "en": "Arabic" - }, - { - "en": "Egyptian" - }, - { - "de": "Englisch", - "en": "English", - "fr": "anglais" - }, - { - "en": "French", - "de": "Französisch", - "fr": "français" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - }, - { - "en": "Greek" - }, - { - "en": "Hebrew" - }, - { - "en": "Russian" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by/4.0", - "text": "CC BY 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082E-organization-000", - "roles": [ - "creator" - ] - } - ], - "status": "Ongoing", - "title": "Rosetta", - "typeOfData": [ - "Audio", - "Image", - "Video", - "Text", - "XML" - ] - } - ], - "organizations": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-082E-organization-000", - "__type": "Organization", - "__createdAt": "1630601357302088000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Gewerbestrasse 24", - "postalCode": "4123", - "locality": "Allschwil", - "country": "Switzerland" - }, - "email": "info@dasch.swiss", - "name": "Data and Service Center for the Humanities DaSCH", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.dasch.swiss", - "text": "www.dasch.swiss" - } - } - ] -} diff --git a/data/json/aura-effizienz.json b/data/json/aura-effizienz.json index d8482a49..aec6dfd3 100644 --- a/data/json/aura-effizienz.json +++ b/data/json/aura-effizienz.json @@ -1,320 +1,321 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0846-project", - "__type": "Project", - "__createdAt": "1686169801639341000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Jael Bollag, Katharina Wolf, Hubert Thüring (2018-2023). Aura und Effizienz [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0846.", - "teaserText": "Das Projekt untersucht die diskursiven und praktischen Wechselwirkungen zwischen Materialisierung und Spiritualisierung in der deutschsprachigen Literatur der 1920-30er Jahre.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0846-dataset-000" - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0846-person-000", - "dataManagementPlan": { - "__type": "DataManagementPlan", - "available": true - }, - "description": { - "de": "Nach dem Ersten Weltkrieg formiert sich in den wissenschaftlichen, ökonomischen und medialen Diskursen und Praktiken im Zeichen der Leistung eine Doppelstrategie der wechselweisen Materialisierung und Spiritualisierung von körperlichen und seelisch-geistigen Funktionen und Prozessen. Das Projekt hat untersucht, wie diese Doppelstrategie in der Literatur der 1920-30er-Jahre thematisiert, performiert und reflektiert wird." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/62/htm", - "text": "Science of Arts and Letters" - } - ], - "endDate": "2023-04-30", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0846-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0846-grant-000" - ], - "keywords": [ - { - "de": "Arbeit" - }, - { - "de": "Aura" - }, - { - "en": "Charisma" - }, - { - "de": "Effizienz" - }, - { - "de": "Gefängnis" - }, - { - "de": "Geist" - }, - { - "de": "Körper" - }, - { - "de": "Leistung" - }, - { - "de": "Materialisierung" - }, - { - "de": "Medien" - }, - { - "de": "Messianismus" - }, - { - "de": "Neoreligiosität" - }, - { - "de": "Okkultismus" - }, - { - "de": "Optimierung" - }, - { - "de": "Psychiatrie" - }, - { - "de": "Spiritismus" - }, - { - "de": "Spiritualisierung" - }, - { - "de": "Taylorismus" - }, - { - "de": "Transzendenz" - }, - { - "de": "Ökonomie" - } - ], - "name": "Aura und Effizienz. Leistungsorientierte Materialisierung und Spiritualisierung in der Literatur der 1920-30er-Jahre: Emmy Hennings, Marieluise Fleisser, Friedrich Glauser und Bruno Goetz", - "publications": [ - { - "text": "Bollag, Jael: „‚Das Brutale kann man nicht bezaubern‘. Emmy Hennings’ literarische Genealogie der Strafe“, in: Hubert Thüring, Ulrich Weber (Hg.): Literatur und Institutionen – Deutschschweizer Literatur zwischen Heteronomie und Autonomie. Zürich: Chronos 2023, S. 27-44." - }, - { - "text": "Bollag, Jael; Thüring, Hubert; Wolf, Katharina (Hg.): Aura und Effizienz. Materialisierung und Spiritualisierung in literarischen Texten von 1900-1939. München: Fink [2024]." - }, - { - "text": "Bollag, Jael: „Zum Verhältnis von Materialisierung und Spiritualisierung bei Emmy Hennings“, in: Bollag, Thüring, Wolf (Hg.): Aura und Effizienz [2024]." - }, - { - "text": "Thüring, Hubert: “Literatur und Arbeit in der Merkwelt der Moderne. Meinrad Inglins Grand Hotel Excelsior und Walter Benjamins Modernetheorien im Licht von Hannah Arendts ‚Vita activa‘“, in: Bollag, Thüring, Wolf (Hg.): Aura und Effizienz [2024]." - }, - { - "text": "Wolf, Katharina: „Zwischen Alchemie und Radioaktivität. Charisma und Leistungsdenken bei Bruno Goetz“, in: Bollag, Thüring, Wolf (Hg.): Aura und Effizienz [2024]." - }, - { - "text": "Wolf, Katharina: „Bruno Goetz’ Ästhetik der Selbstüberschreitung – ein vergessener Kreuzungspunkt expressionistischen Schreibens“. In: Eichhorn, Kristin / Lorenzen, Johannes S. (Hg.): Internationaler Expressionismus – gestern und heute, Berlin: Neofelis 2023." - }, - { - "text": "Wolf, Katharina: „Der Künstler und die Zeitkrankheit“. In: Wolfinger, Kay (Hg.): Hugo Ball Handbuch, Stuttgart: Metzler [2024]." - } - ], - "shortcode": "0846", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2921044/federal-republic-of-germany.html", - "text": "Germany" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/switzerland.html", - "text": "Switzerland" - } - ], - "startDate": "2018-05-01", - "temporalCoverage": [ - { - "de": "1900-1939", - "en": "1900-1939", - "fr": "1900-1939" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/5hWMpIIlQSysoKSJxZpZSA", - "text": "Discover Project Data" - }, - "secondaryURL": { - "__type": "URL", - "type": "URL", - "url": "https://germanistik.philhist.unibas.ch/de/aura-und-effizienz", - "text": "External Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0846-project", + "__type": "Project", + "__createdAt": "1686169801639341000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Jael Bollag, Katharina Wolf, Hubert Thüring (2018-2023). Aura und Effizienz [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0846.", + "teaserText": "Das Projekt untersucht die diskursiven und praktischen Wechselwirkungen zwischen Materialisierung und Spiritualisierung in der deutschsprachigen Literatur der 1920-30er Jahre.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0846-dataset-000" + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0846-person-000", + "dataManagementPlan": { + "__type": "DataManagementPlan", + "available": true + }, + "description": { + "de": "Nach dem Ersten Weltkrieg formiert sich in den wissenschaftlichen, ökonomischen und medialen Diskursen und Praktiken im Zeichen der Leistung eine Doppelstrategie der wechselweisen Materialisierung und Spiritualisierung von körperlichen und seelisch-geistigen Funktionen und Prozessen. Das Projekt hat untersucht, wie diese Doppelstrategie in der Literatur der 1920-30er-Jahre thematisiert, performiert und reflektiert wird." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/62/htm", + "text": "Science of Arts and Letters" + } + ], + "endDate": "2023-04-30", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0846-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0846-grant-000" + ], + "keywords": [ + { + "de": "Arbeit" + }, + { + "de": "Aura" + }, + { + "en": "Charisma" + }, + { + "de": "Effizienz" + }, + { + "de": "Gefängnis" + }, + { + "de": "Geist" + }, + { + "de": "Körper" + }, + { + "de": "Leistung" + }, + { + "de": "Materialisierung" + }, + { + "de": "Medien" + }, + { + "de": "Messianismus" + }, + { + "de": "Neoreligiosität" + }, + { + "de": "Okkultismus" + }, + { + "de": "Optimierung" + }, + { + "de": "Psychiatrie" + }, + { + "de": "Spiritismus" + }, + { + "de": "Spiritualisierung" + }, + { + "de": "Taylorismus" + }, + { + "de": "Transzendenz" + }, + { + "de": "Ökonomie" + } + ], + "name": "Aura und Effizienz. Leistungsorientierte Materialisierung und Spiritualisierung in der Literatur der 1920-30er-Jahre: Emmy Hennings, Marieluise Fleisser, Friedrich Glauser und Bruno Goetz", + "publications": [ + { + "text": "Bollag, Jael: „‚Das Brutale kann man nicht bezaubern‘. Emmy Hennings’ literarische Genealogie der Strafe“, in: Hubert Thüring, Ulrich Weber (Hg.): Literatur und Institutionen – Deutschschweizer Literatur zwischen Heteronomie und Autonomie. Zürich: Chronos 2023, S. 27-44." + }, + { + "text": "Bollag, Jael; Thüring, Hubert; Wolf, Katharina (Hg.): Aura und Effizienz. Materialisierung und Spiritualisierung in literarischen Texten von 1900-1939. München: Fink [2024]." + }, + { + "text": "Bollag, Jael: „Zum Verhältnis von Materialisierung und Spiritualisierung bei Emmy Hennings“, in: Bollag, Thüring, Wolf (Hg.): Aura und Effizienz [2024]." + }, + { + "text": "Thüring, Hubert: “Literatur und Arbeit in der Merkwelt der Moderne. Meinrad Inglins Grand Hotel Excelsior und Walter Benjamins Modernetheorien im Licht von Hannah Arendts ‚Vita activa‘“, in: Bollag, Thüring, Wolf (Hg.): Aura und Effizienz [2024]." + }, + { + "text": "Wolf, Katharina: „Zwischen Alchemie und Radioaktivität. Charisma und Leistungsdenken bei Bruno Goetz“, in: Bollag, Thüring, Wolf (Hg.): Aura und Effizienz [2024]." + }, + { + "text": "Wolf, Katharina: „Bruno Goetz’ Ästhetik der Selbstüberschreitung – ein vergessener Kreuzungspunkt expressionistischen Schreibens“. In: Eichhorn, Kristin / Lorenzen, Johannes S. (Hg.): Internationaler Expressionismus – gestern und heute, Berlin: Neofelis 2023." + }, + { + "text": "Wolf, Katharina: „Der Künstler und die Zeitkrankheit“. In: Wolfinger, Kay (Hg.): Hugo Ball Handbuch, Stuttgart: Metzler [2024]." + } + ], + "shortcode": "0846", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2921044/federal-republic-of-germany.html", + "text": "Germany" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/switzerland.html", + "text": "Switzerland" + } + ], + "startDate": "2018-05-01", + "temporalCoverage": [ + { + "de": "1900-1939", + "en": "1900-1939", + "fr": "1900-1939" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/5hWMpIIlQSysoKSJxZpZSA", + "text": "Discover Project Data" + }, + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://germanistik.philhist.unibas.ch/de/aura-und-effizienz", + "text": "External Project Website" + }, + "status": "finished" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0846-dataset-000", + "__type": "Dataset", + "__createdAt": "1686169805380009000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0846-dataset-000", - "__type": "Dataset", - "__createdAt": "1686169805380009000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "de": "Seminar: „Effizienz. Leistung und Literatur (1900-1930)“, Power Point mit Text, Bild, Audios, exportiert als mp4-Dateien. Vorlesung: „Arbeit. Praktiken und Ökonomien des Alltags in der Literatur 1900-1945“, Word-Datei als pdf und PPP-Datei als pdf." - } - ], - "accessConditions": "open", - "dateCreated": "2023-06-05", - "howToCite": "Jael Bollag, Katharina Wolf, Hubert Thüring (2018-2023). Aura und Effizienz [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0846.", - "languages": [ - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2023-06-07", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", - "text": "CC BY-NC-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0846-person-000", - "roles": [ - "Projektleitung, creator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0846-person-001", - "roles": [ - "creator" - ] - } - ], - "status": "Finished", - "title": "Aura und Effizienz. Leistungsorientierte Materialisierung und Spiritualisierung in der Literatur der 1920-30er-Jahre: Emmy Hennings, Marieluise Fleisser, Friedrich Glauser und Bruno Goetz", - "typeOfData": [ - "Image", - "Video", - "Text" - ] + "de": "Seminar: „Effizienz. Leistung und Literatur (1900-1930)“, Power Point mit Text, Bild, Audios, exportiert als mp4-Dateien. Vorlesung: „Arbeit. Praktiken und Ökonomien des Alltags in der Literatur 1900-1945“, Word-Datei als pdf und PPP-Datei als pdf." } - ], - "persons": [ + ], + "accessConditions": "open", + "dateCreated": "2023-06-05", + "howToCite": "Jael Bollag, Katharina Wolf, Hubert Thüring (2018-2023). Aura und Effizienz [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0846.", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0846-person-001", - "__type": "Person", - "__createdAt": "1686169805666932000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Bollag" - ], - "givenNames": [ - "Jael" - ], - "jobTitles": [ - "M.A." - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0846-organization-000" - ] - }, + "de": "Deutsch", + "en": "German", + "fr": "allemand" + } + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0846-person-000", - "__type": "Person", - "__createdAt": "1686169805667000000", - "__createdBy": "dsp-metadata-gui", - "email": "hubert.thuering@unibas.ch", - "familyNames": [ - "Thüring" - ], - "givenNames": [ - "Hubert" - ], - "jobTitles": [ - "Prof. Dr. / Universitätsdozent und Titularprofessor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0846-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://germanistik.philhist.unibas.ch/de/personen/hubert-thuering", - "text": "https://germanistik.philhist.unibas.ch/de/personen/hubert-thuering" - } - ] + "__type": "License", + "date": "2023-06-07", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", + "text": "CC BY-NC-SA 4.0" + } } - ], - "organizations": [ + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0846-organization-001", - "__type": "Organization", - "__createdAt": "1686169805667069000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3", - "postalCode": "3001", - "locality": "Berne", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://snf.ch/", - "text": "https://snf.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0846-person-000", + "roles": [ + "Projektleitung, creator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0846-organization-000", - "__type": "Organization", - "__createdAt": "1686169806007833000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Nadelberg 4", - "postalCode": "4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "hubert.thuering@unibas.ch", - "name": "Universität Basel" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0846-person-001", + "roles": [ + "creator" + ] } - ], - "grants": [ + ], + "status": "Finished", + "title": "Aura und Effizienz. Leistungsorientierte Materialisierung und Spiritualisierung in der Literatur der 1920-30er-Jahre: Emmy Hennings, Marieluise Fleisser, Friedrich Glauser und Bruno Goetz", + "typeOfData": [ + "Image", + "Video", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0846-person-001", + "__type": "Person", + "__createdAt": "1686169805666932000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Bollag" + ], + "givenNames": [ + "Jael" + ], + "jobTitles": [ + "M.A." + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0846-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0846-person-000", + "__type": "Person", + "__createdAt": "1686169805667000000", + "__createdBy": "dsp-metadata-gui", + "email": "hubert.thuering@unibas.ch", + "familyNames": [ + "Thüring" + ], + "givenNames": [ + "Hubert" + ], + "jobTitles": [ + "Prof. Dr. / Universitätsdozent und Titularprofessor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0846-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0846-grant-000", - "__type": "Grant", - "__createdAt": "1686169806088744000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0846-organization-001" - ], - "name": "Project funding", - "number": "179010", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/179010", - "text": "https://data.snf.ch/grants/grant/179010" - } + "__type": "URL", + "type": "URL", + "url": "https://germanistik.philhist.unibas.ch/de/personen/hubert-thuering", + "text": "https://germanistik.philhist.unibas.ch/de/personen/hubert-thuering" } - ] -} + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0846-organization-001", + "__type": "Organization", + "__createdAt": "1686169805667069000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3", + "postalCode": "3001", + "locality": "Berne", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://snf.ch/", + "text": "https://snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0846-organization-000", + "__type": "Organization", + "__createdAt": "1686169806007833000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Nadelberg 4", + "postalCode": "4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "hubert.thuering@unibas.ch", + "name": "Universität Basel" + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0846-grant-000", + "__type": "Grant", + "__createdAt": "1686169806088744000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0846-organization-001" + ], + "name": "Project funding", + "number": "179010", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/179010", + "text": "https://data.snf.ch/grants/grant/179010" + } + } + ] +} \ No newline at end of file diff --git a/data/json/awg.json b/data/json/awg.json index de1c32f4..d7550a83 100644 --- a/data/json/awg.json +++ b/data/json/awg.json @@ -1,776 +1,777 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-project", - "__type": "Project", - "__createdAt": "1630601301674969000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "See https://www.anton-webern.ch/index.php?id=85", - "teaserText": "The Anton Webern Gesamtausgabe (AWG) is a critical-historical edition which aims to make Webern’s entire oeuvre accessible to musical scholarship and practice in a scholarly form.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0806-dataset-000" - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0806-organization-000", - "dataManagementPlan": { - "__type": "DataManagementPlan", - "available": true - }, - "description": { - "en": "The Anton Webern Gesamtausgabe (AWG) is a critical-historical edition which aims to make Webern’s entire oeuvre accessible to musical scholarship and practice in a scholarly form. The edition includes not only all the works Webern himself had forwarded to be printed but also their unpublished variants. It also includes compositions that were never made public in his lifetime, works from his youth and student years, as well as fragments, sketches, arrangements and revisions of his and other scores." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/620201", - "text": "Criticism of texts" - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/620306", - "text": "Music, musicology " - } - ], - "endDate": "2024-12-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0806-organization-003", - "http://ns.dasch.swiss/repository#dsp-0806-organization-004", - "http://ns.dasch.swiss/repository#dsp-0806-organization-005" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0806-grant-000", - "http://ns.dasch.swiss/repository#dsp-0806-grant-001", - "http://ns.dasch.swiss/repository#dsp-0806-grant-002", - "http://ns.dasch.swiss/repository#dsp-0806-grant-003", - "http://ns.dasch.swiss/repository#dsp-0806-grant-004", - "http://ns.dasch.swiss/repository#dsp-0806-grant-005", - "http://ns.dasch.swiss/repository#dsp-0806-grant-006", - "http://ns.dasch.swiss/repository#dsp-0806-grant-007" - ], - "keywords": [ - { - "de": "Anton Webern" - }, - { - "de": "Gesamtausgabe" - }, - { - "en": "Viennese school" - }, - { - "en": "critical edition" - }, - { - "en": "digital music edition" - }, - { - "en": "musicology" - }, - { - "en": "philology" - }, - { - "en": "semantic web" - }, - { - "en": "source studies" - }, - { - "en": "textual criticism" - } - ], - "name": "Anton Webern Gesamtausgabe", - "publications": [ - { - "text": "See", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.anton-webern.ch/index.php?id=87", - "text": "https://www.anton-webern.ch/index.php?id=87" - } - ] - } - ], - "shortcode": "0806", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/SK/slovakia.html", - "text": "Slovakia" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/CH/switzerland.html", - "text": "Switzerland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/US/united-states.html", - "text": "United States" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/HR/croatia.html", - "text": "Croatia" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/SI/slovenia.html", - "text": "Slovenia" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/FR/france.html", - "text": "France" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/ES/spain.html", - "text": "Spain" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/GB/united-kingdom.html", - "text": "United Kingdom" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/PL/poland.html", - "text": "Poland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/DE/germany.html", - "text": "Germany" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/AT/austria.html", - "text": "Austria" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/CZ/czechia.html", - "text": "Czechia" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/IT/italy.html", - "text": "Italy" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/HU/hungary.html", - "text": "Hungary" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/12217934/baltic-states.html", - "text": "Baltic States" - } - ], - "startDate": "2006-10-01", - "temporalCoverage": [ - { - "en": "1850–today" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/ot7I2nU-SdeXIf17LX_h3g", - "text": "Discover Project Data" - }, - "secondaryURL": { + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-project", + "__type": "Project", + "__createdAt": "1630601301674969000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "See https://www.anton-webern.ch/index.php?id=85", + "teaserText": "The Anton Webern Gesamtausgabe (AWG) is a critical-historical edition which aims to make Webern’s entire oeuvre accessible to musical scholarship and practice in a scholarly form.", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0806-dataset-000" + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0806-organization-000", + "dataManagementPlan": { + "__type": "DataManagementPlan", + "available": true + }, + "description": { + "en": "The Anton Webern Gesamtausgabe (AWG) is a critical-historical edition which aims to make Webern’s entire oeuvre accessible to musical scholarship and practice in a scholarly form. The edition includes not only all the works Webern himself had forwarded to be printed but also their unpublished variants. It also includes compositions that were never made public in his lifetime, works from his youth and student years, as well as fragments, sketches, arrangements and revisions of his and other scores." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/620201", + "text": "Criticism of texts" + }, + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/620306", + "text": "Music, musicology " + } + ], + "endDate": "2024-12-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0806-organization-003", + "http://ns.dasch.swiss/repository#dsp-0806-organization-004", + "http://ns.dasch.swiss/repository#dsp-0806-organization-005" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0806-grant-000", + "http://ns.dasch.swiss/repository#dsp-0806-grant-001", + "http://ns.dasch.swiss/repository#dsp-0806-grant-002", + "http://ns.dasch.swiss/repository#dsp-0806-grant-003", + "http://ns.dasch.swiss/repository#dsp-0806-grant-004", + "http://ns.dasch.swiss/repository#dsp-0806-grant-005", + "http://ns.dasch.swiss/repository#dsp-0806-grant-006", + "http://ns.dasch.swiss/repository#dsp-0806-grant-007" + ], + "keywords": [ + { + "de": "Anton Webern" + }, + { + "de": "Gesamtausgabe" + }, + { + "en": "Viennese school" + }, + { + "en": "critical edition" + }, + { + "en": "digital music edition" + }, + { + "en": "musicology" + }, + { + "en": "philology" + }, + { + "en": "semantic web" + }, + { + "en": "source studies" + }, + { + "en": "textual criticism" + } + ], + "name": "Anton Webern Gesamtausgabe", + "publications": [ + { + "text": "See", + "url": [ + { "__type": "URL", "type": "URL", - "url": "https://www.anton-webern.ch", - "text": "External Project Website" - } + "url": "https://www.anton-webern.ch/index.php?id=87", + "text": "https://www.anton-webern.ch/index.php?id=87" + } + ] + } + ], + "shortcode": "0806", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/SK/slovakia.html", + "text": "Slovakia" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/CH/switzerland.html", + "text": "Switzerland" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/US/united-states.html", + "text": "United States" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/HR/croatia.html", + "text": "Croatia" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/SI/slovenia.html", + "text": "Slovenia" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/FR/france.html", + "text": "France" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/ES/spain.html", + "text": "Spain" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/GB/united-kingdom.html", + "text": "United Kingdom" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/PL/poland.html", + "text": "Poland" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/DE/germany.html", + "text": "Germany" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/AT/austria.html", + "text": "Austria" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/CZ/czechia.html", + "text": "Czechia" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/IT/italy.html", + "text": "Italy" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/HU/hungary.html", + "text": "Hungary" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/12217934/baltic-states.html", + "text": "Baltic States" + } + ], + "startDate": "2006-10-01", + "temporalCoverage": [ + { + "en": "1850–today" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/ot7I2nU-SdeXIf17LX_h3g", + "text": "Discover Project Data" }, - "datasets": [ + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://www.anton-webern.ch", + "text": "External Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-dataset-000", + "__type": "Dataset", + "__createdAt": "1630601309235590000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-dataset-000", - "__type": "Dataset", - "__createdAt": "1630601309235590000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The Anton Webern Gesamtausgabe (AWG) is a critical-historical edition of Anton Webern’s oeuvre. This edition makes his work freely accessible to the public in a form that is academically appropriate and serves musical practice. The edition includes not only the works that Webern himself brought to print, but also currently unpublished variants of his works, as well as compositions unpublished during his lifetime, fragments, sketches and arrangements. The AWG will be published in hybrid form. The printed volumes will be published by Universal Edition, Vienna, while the components and databases accessible online will be presented in a dedicated web application, as well as within the generic web application developed by DaSCH - Swiss National Data and Service Center for the Humanities with the aim of securing direct long-term access to the data. The AWG is also working on a documentation of the composer's biography, as well as the history of the creation, publication and performance of his works. To achieve this, information of various kinds has been archived and linked in the database, reflecting a chronology that describes Webern’s private and professional life in detail. The documentation of the development of his works is verified by references to material evidence (e.g. correspondence as archived in the letters section). Furthermore, brief, keyword-based information on relevant persons serves to provide a better overview of the composer’s contacts and social environment." - } - ], - "accessConditions": "restricted", - "howToCite": "See https://www.anton-webern.ch/index.php?id=85", - "languages": [ - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0/deed.de", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0806-person-000", - "roles": [ - "Project manager", - "Member of the editorial management" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0806-person-001", - "roles": [ - "Member of the editorial management" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0806-person-002", - "roles": [ - "Member of the editorial management", - "Creator", - "Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0806-person-003", - "roles": [ - "Creator", - "Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0806-person-004", - "roles": [ - "Creator", - "Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0806-person-005", - "roles": [ - "Creator", - "Contributor" - ] - } - ], - "status": "Ongoing", - "title": "Anton Webern Gesamtausgabe", - "typeOfData": [ - "Image", - "Text", - "XML" - ] + "en": "The Anton Webern Gesamtausgabe (AWG) is a critical-historical edition of Anton Webern’s oeuvre. This edition makes his work freely accessible to the public in a form that is academically appropriate and serves musical practice. The edition includes not only the works that Webern himself brought to print, but also currently unpublished variants of his works, as well as compositions unpublished during his lifetime, fragments, sketches and arrangements. The AWG will be published in hybrid form. The printed volumes will be published by Universal Edition, Vienna, while the components and databases accessible online will be presented in a dedicated web application, as well as within the generic web application developed by DaSCH - Swiss National Data and Service Center for the Humanities with the aim of securing direct long-term access to the data. The AWG is also working on a documentation of the composer's biography, as well as the history of the creation, publication and performance of his works. To achieve this, information of various kinds has been archived and linked in the database, reflecting a chronology that describes Webern’s private and professional life in detail. The documentation of the development of his works is verified by references to material evidence (e.g. correspondence as archived in the letters section). Furthermore, brief, keyword-based information on relevant persons serves to provide a better overview of the composer’s contacts and social environment." } - ], - "persons": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-person-001", - "__type": "Person", - "__createdAt": "1630601309721380000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Münsterplatz 4", - "postalCode": "CH-4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "simon.obert@unibas.ch", - "familyNames": [ - "Obert" - ], - "givenNames": [ - "Simon" - ], - "jobTitles": [ - "Curator", - "Member of the editorial management", - "Research associate (PSS)" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0806-organization-000", - "http://ns.dasch.swiss/repository#dsp-0806-organization-002" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "GND", - "url": "http://d-nb.info/gnd/102645249X", - "text": "GND URL: http://d-nb.info/gnd/102645249X" - } - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-person-000", - "__type": "Person", - "__createdAt": "1630601309753367000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Petersgraben 27/29", - "postalCode": "CH-4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "matthias.schmidt@unibas.ch", - "familyNames": [ - "Schmidt" - ], - "givenNames": [ - "Matthias" - ], - "jobTitles": [ - "Full professor", - "Member of the editorial management", - "Project manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0806-organization-000", - "http://ns.dasch.swiss/repository#dsp-0806-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "GND", - "url": "http://d-nb.info/gnd/12307195X", - "text": "GND URL: http://d-nb.info/gnd/12307195X" - } - ] - }, + ], + "accessConditions": "restricted", + "howToCite": "See https://www.anton-webern.ch/index.php?id=85", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-person-003", - "__type": "Person", - "__createdAt": "1630601309786974000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Petersgraben 27/29", - "postalCode": "CH-4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "barbara.schingnitz@unibas.ch", - "familyNames": [ - "Schingnitz" - ], - "givenNames": [ - "Barbara" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0806-organization-000", - "http://ns.dasch.swiss/repository#dsp-0806-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "GND", - "url": "http://d-nb.info/gnd/130219827", - "text": "GND URL: http://d-nb.info/gnd/130219827" - } - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-person-004", - "__type": "Person", - "__createdAt": "1630601309820423000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Petersgraben 27/29", - "postalCode": "CH-4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "michael.matter@unibas.ch", - "familyNames": [ - "Matter" - ], - "givenNames": [ - "Michael" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0806-organization-000", - "http://ns.dasch.swiss/repository#dsp-0806-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "GND", - "url": "http://d-nb.info/gnd/1069569267", - "text": "GND URL: http://d-nb.info/gnd/1069569267" - } - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-person-005", - "__type": "Person", - "__createdAt": "1630601309852943000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Petersgraben 27/29", - "postalCode": "CH-4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "stefan.muennich@unibas.ch", - "familyNames": [ - "Münnich" - ], - "givenNames": [ - "Stefan" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0806-organization-000", - "http://ns.dasch.swiss/repository#dsp-0806-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-0744-5374", - "text": "ORCID URL: https://orcid.org/0000-0002-0744-5374" - } - ] - }, + "de": "Deutsch", + "en": "German", + "fr": "allemand" + } + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-person-002", - "__type": "Person", - "__createdAt": "1630601309885202000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Petersgraben 27/29", - "postalCode": "CH-4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "thomas.ahrend@unibas.ch", - "familyNames": [ - "Ahrend" - ], - "givenNames": [ - "Thomas" - ], - "jobTitles": [ - "Member of the editorial management", - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0806-organization-000", - "http://ns.dasch.swiss/repository#dsp-0806-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "GND", - "url": "http://d-nb.info/gnd/129772429", - "text": "GND URL: http://d-nb.info/gnd/129772429" - } - ] + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/deed.de", + "text": "CC BY-SA 4.0" + } } - ], - "organizations": [ + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-organization-002", - "__type": "Organization", - "__createdAt": "1630601309917803000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Münsterplatz 4", - "postalCode": "CH-4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "office-pss@unibas.ch", - "name": "Paul Sacher Stiftung", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://paul-sacher-stiftung.ch", - "text": "https://paul-sacher-stiftung.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0806-person-000", + "roles": [ + "Project manager", + "Member of the editorial management" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-organization-004", - "__type": "Organization", - "__createdAt": "1630601309950441000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Laupenstrasse 7 (Postfach)", - "postalCode": "CH-3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "sagw@sagw.ch", - "name": "Schweizerische Akademie der Geistes- und Sozialwissenschaften", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://sagw.ch/", - "text": "https://sagw.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0806-person-001", + "roles": [ + "Member of the editorial management" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-organization-005", - "__type": "Organization", - "__createdAt": "1630601309983770000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Landis + Gyr-Strasse 1", - "postalCode": "CH-6300", - "locality": "Zug", - "country": "Switzerland" - }, - "email": "rossnagl@evs-musikstiftung.ch", - "name": "Ernst von Siemens Musikstiftung", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.evs-musikstiftung.ch", - "text": "https://www.evs-musikstiftung.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0806-person-002", + "roles": [ + "Member of the editorial management", + "Creator", + "Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-organization-001", - "__type": "Organization", - "__createdAt": "1630601310016567000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Petersgraben 27/29", - "postalCode": "CH-4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "sekretariat-mws@unibas.ch", - "name": "Musikwissenschaftliches Seminar der Universität Basel", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://mws.unibas.ch/", - "text": "https://mws.unibas.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0806-person-003", + "roles": [ + "Creator", + "Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-organization-003", - "__type": "Organization", - "__createdAt": "1630601310049769000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3 (Postfach)", - "postalCode": "CH-3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch", - "text": "http://www.snf.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0806-person-004", + "roles": [ + "Creator", + "Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-organization-000", - "__type": "Organization", - "__createdAt": "1630601310082589000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Petersgraben 27/29", - "postalCode": "CH-4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "info-awg@unibas.ch", - "name": "Anton Webern Gesamtausgabe", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.anton-webern.ch", - "text": "https://www.anton-webern.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0806-person-005", + "roles": [ + "Creator", + "Contributor" + ] } - ], - "grants": [ + ], + "status": "Ongoing", + "title": "Anton Webern Gesamtausgabe", + "typeOfData": [ + "Image", + "Text", + "XML" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-person-001", + "__type": "Person", + "__createdAt": "1630601309721380000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Münsterplatz 4", + "postalCode": "CH-4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "simon.obert@unibas.ch", + "familyNames": [ + "Obert" + ], + "givenNames": [ + "Simon" + ], + "jobTitles": [ + "Curator", + "Member of the editorial management", + "Research associate (PSS)" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0806-organization-000", + "http://ns.dasch.swiss/repository#dsp-0806-organization-002" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-000", - "__type": "Grant", - "__createdAt": "1630601310115281000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0806-organization-004" - ], - "name": "Editionen [2021–2024]" - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-001", - "__type": "Grant", - "__createdAt": "1630601310115368000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0806-organization-003" - ], - "name": "Editions", - "number": "157968", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/157968", - "text": "https://data.snf.ch/grants/grant/157968" - } - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-002", - "__type": "Grant", - "__createdAt": "1630601310115574000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0806-organization-003" - ], - "name": "Project funding", - "number": "162871", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/162871", - "text": "https://data.snf.ch/grants/grant/162871" - } - }, + "__type": "URL", + "type": "GND", + "url": "http://d-nb.info/gnd/102645249X", + "text": "GND URL: http://d-nb.info/gnd/102645249X" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-person-000", + "__type": "Person", + "__createdAt": "1630601309753367000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Petersgraben 27/29", + "postalCode": "CH-4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "matthias.schmidt@unibas.ch", + "familyNames": [ + "Schmidt" + ], + "givenNames": [ + "Matthias" + ], + "jobTitles": [ + "Full professor", + "Member of the editorial management", + "Project manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0806-organization-000", + "http://ns.dasch.swiss/repository#dsp-0806-organization-001" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-003", - "__type": "Grant", - "__createdAt": "1630601310115774000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0806-organization-003" - ], - "name": "Project funding", - "number": "143565", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/143565", - "text": "https://data.snf.ch/grants/grant/143565" - } - }, + "__type": "URL", + "type": "GND", + "url": "http://d-nb.info/gnd/12307195X", + "text": "GND URL: http://d-nb.info/gnd/12307195X" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-person-003", + "__type": "Person", + "__createdAt": "1630601309786974000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Petersgraben 27/29", + "postalCode": "CH-4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "barbara.schingnitz@unibas.ch", + "familyNames": [ + "Schingnitz" + ], + "givenNames": [ + "Barbara" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0806-organization-000", + "http://ns.dasch.swiss/repository#dsp-0806-organization-001" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-004", - "__type": "Grant", - "__createdAt": "1630601310115969000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0806-organization-003" - ], - "name": "Project funding", - "number": "126789", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/126789", - "text": "https://data.snf.ch/grants/grant/126789" - } - }, + "__type": "URL", + "type": "GND", + "url": "http://d-nb.info/gnd/130219827", + "text": "GND URL: http://d-nb.info/gnd/130219827" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-person-004", + "__type": "Person", + "__createdAt": "1630601309820423000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Petersgraben 27/29", + "postalCode": "CH-4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "michael.matter@unibas.ch", + "familyNames": [ + "Matter" + ], + "givenNames": [ + "Michael" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0806-organization-000", + "http://ns.dasch.swiss/repository#dsp-0806-organization-001" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-005", - "__type": "Grant", - "__createdAt": "1630601310116164000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0806-organization-003" - ], - "name": "Project funding", - "number": "113769", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/113769", - "text": "https://data.snf.ch/grants/grant/113769" - } - }, + "__type": "URL", + "type": "GND", + "url": "http://d-nb.info/gnd/1069569267", + "text": "GND URL: http://d-nb.info/gnd/1069569267" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-person-005", + "__type": "Person", + "__createdAt": "1630601309852943000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Petersgraben 27/29", + "postalCode": "CH-4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "stefan.muennich@unibas.ch", + "familyNames": [ + "Münnich" + ], + "givenNames": [ + "Stefan" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0806-organization-000", + "http://ns.dasch.swiss/repository#dsp-0806-organization-001" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-006", - "__type": "Grant", - "__createdAt": "1630601310116358000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0806-organization-005" - ], - "name": "[2014–2016]", - "number": "E13_1003", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.old.evs-musikstiftung.ch/de/preise/preise/foerderprojekte/symposienpublikationen/anton-webern-briefwechsel-mit-der-universal-0", - "text": "https://www.old.evs-musikstiftung.ch/de/preise/preise/foerderprojekte/symposienpublikationen/anton-webern-briefwechsel-mit-der-universal-0" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-0744-5374", + "text": "ORCID URL: https://orcid.org/0000-0002-0744-5374" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-person-002", + "__type": "Person", + "__createdAt": "1630601309885202000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Petersgraben 27/29", + "postalCode": "CH-4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "thomas.ahrend@unibas.ch", + "familyNames": [ + "Ahrend" + ], + "givenNames": [ + "Thomas" + ], + "jobTitles": [ + "Member of the editorial management", + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0806-organization-000", + "http://ns.dasch.swiss/repository#dsp-0806-organization-001" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-007", - "__type": "Grant", - "__createdAt": "1630601310116553000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0806-organization-005" - ], - "name": "[2010–2012]", - "number": "E09_471", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.old.evs-musikstiftung.ch/de/preise/preise/archiv/foerderprojekte/2011/publikationentagungen/historisch-kritische-gesamtausgabe", - "text": "https://www.old.evs-musikstiftung.ch/de/preise/preise/archiv/foerderprojekte/2011/publikationentagungen/historisch-kritische-gesamtausgabe" - } + "__type": "URL", + "type": "GND", + "url": "http://d-nb.info/gnd/129772429", + "text": "GND URL: http://d-nb.info/gnd/129772429" } - ] -} + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-organization-002", + "__type": "Organization", + "__createdAt": "1630601309917803000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Münsterplatz 4", + "postalCode": "CH-4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "office-pss@unibas.ch", + "name": "Paul Sacher Stiftung", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://paul-sacher-stiftung.ch", + "text": "https://paul-sacher-stiftung.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-organization-004", + "__type": "Organization", + "__createdAt": "1630601309950441000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Laupenstrasse 7 (Postfach)", + "postalCode": "CH-3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "sagw@sagw.ch", + "name": "Schweizerische Akademie der Geistes- und Sozialwissenschaften", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://sagw.ch/", + "text": "https://sagw.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-organization-005", + "__type": "Organization", + "__createdAt": "1630601309983770000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Landis + Gyr-Strasse 1", + "postalCode": "CH-6300", + "locality": "Zug", + "country": "Switzerland" + }, + "email": "rossnagl@evs-musikstiftung.ch", + "name": "Ernst von Siemens Musikstiftung", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.evs-musikstiftung.ch", + "text": "https://www.evs-musikstiftung.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-organization-001", + "__type": "Organization", + "__createdAt": "1630601310016567000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Petersgraben 27/29", + "postalCode": "CH-4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "sekretariat-mws@unibas.ch", + "name": "Musikwissenschaftliches Seminar der Universität Basel", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://mws.unibas.ch/", + "text": "https://mws.unibas.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-organization-003", + "__type": "Organization", + "__createdAt": "1630601310049769000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3 (Postfach)", + "postalCode": "CH-3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch", + "text": "http://www.snf.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-organization-000", + "__type": "Organization", + "__createdAt": "1630601310082589000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Petersgraben 27/29", + "postalCode": "CH-4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "info-awg@unibas.ch", + "name": "Anton Webern Gesamtausgabe", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.anton-webern.ch", + "text": "https://www.anton-webern.ch" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-000", + "__type": "Grant", + "__createdAt": "1630601310115281000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0806-organization-004" + ], + "name": "Editionen [2021–2024]" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-001", + "__type": "Grant", + "__createdAt": "1630601310115368000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0806-organization-003" + ], + "name": "Editions", + "number": "157968", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/157968", + "text": "https://data.snf.ch/grants/grant/157968" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-002", + "__type": "Grant", + "__createdAt": "1630601310115574000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0806-organization-003" + ], + "name": "Project funding", + "number": "162871", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/162871", + "text": "https://data.snf.ch/grants/grant/162871" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-003", + "__type": "Grant", + "__createdAt": "1630601310115774000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0806-organization-003" + ], + "name": "Project funding", + "number": "143565", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/143565", + "text": "https://data.snf.ch/grants/grant/143565" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-004", + "__type": "Grant", + "__createdAt": "1630601310115969000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0806-organization-003" + ], + "name": "Project funding", + "number": "126789", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/126789", + "text": "https://data.snf.ch/grants/grant/126789" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-005", + "__type": "Grant", + "__createdAt": "1630601310116164000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0806-organization-003" + ], + "name": "Project funding", + "number": "113769", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/113769", + "text": "https://data.snf.ch/grants/grant/113769" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-006", + "__type": "Grant", + "__createdAt": "1630601310116358000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0806-organization-005" + ], + "name": "[2014–2016]", + "number": "E13_1003", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.old.evs-musikstiftung.ch/de/preise/preise/foerderprojekte/symposienpublikationen/anton-webern-briefwechsel-mit-der-universal-0", + "text": "https://www.old.evs-musikstiftung.ch/de/preise/preise/foerderprojekte/symposienpublikationen/anton-webern-briefwechsel-mit-der-universal-0" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0806-grant-007", + "__type": "Grant", + "__createdAt": "1630601310116553000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0806-organization-005" + ], + "name": "[2010–2012]", + "number": "E09_471", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.old.evs-musikstiftung.ch/de/preise/preise/archiv/foerderprojekte/2011/publikationentagungen/historisch-kritische-gesamtausgabe", + "text": "https://www.old.evs-musikstiftung.ch/de/preise/preise/archiv/foerderprojekte/2011/publikationentagungen/historisch-kritische-gesamtausgabe" + } + } + ] +} \ No newline at end of file diff --git a/data/json/beol.json b/data/json/beol.json index 0b4a73bf..90ea7b57 100644 --- a/data/json/beol.json +++ b/data/json/beol.json @@ -1,622 +1,623 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-project", - "__type": "Project", - "__createdAt": "1630601412179086000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Bernoulli-Euler Online (BEOL), 2019, DaSCH. https://beol.dasch.swiss", - "teaserText": "The project Bernoulli-Euler Online (BEOL) focuses on the mathematics influenced by the Bernoulli dynasty and Leonhard Euler and presents these materials to the public and researchers.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0801-dataset-000", - "http://ns.dasch.swiss/repository#dsp-0801-dataset-001", - "http://ns.dasch.swiss/repository#dsp-0801-dataset-002", - "http://ns.dasch.swiss/repository#dsp-0801-dataset-003" - ], - "alternativeNames": [ - { - "en": "BEOL" - } - ], - "description": { - "en": "The project Bernoulli-Euler Online (BEOL) integrates the two edition projects Basler Edition der Bernoulli-Briefwechsel (BEBB) and Leonhardi Euleri Opera Omnia (LEOO) into one digital platform available on the web. In addition, Jacob Bernoulli's scientific notebook Meditationes - a document of outstanding significance for the history of mathematics at its turning point around 1700 - is published for the first time in its entirety on the BEOL platform as a region-based multilayer interactive digital edition providing access to facsimiles, transcriptions, translations, indices, and commentaries. Besides being an edition platform, BEOL is a virtual research environment for the study of early modern mathematics and science as a data graph using sophisticated analysis tools. Currently BEOL is connected to two third-party repositories: The Newton Project and the Briefportal Leibniz, initiating the formation of a network of digital editions of the early modern scientific correspondence data. The goal of BEOL is thus twofold: it focuses on the mathematics influenced by the Bernoulli dynasty and Leonhard Euler and undertakes a methodological effort to present these materials to the public and researchers in a highly functional way." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/12", - "text": "Mathematics" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0801-organization-000", - "http://ns.dasch.swiss/repository#dsp-0801-organization-002" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0801-grant-000", - "http://ns.dasch.swiss/repository#dsp-0801-grant-001" - ], - "keywords": [ - { - "en": "Bernoulli" - }, - { - "en": "Condorcet" - }, - { - "en": "Euler" - }, - { - "en": "Goldbach" - }, - { - "de": "Leibniz" - }, - { - "en": "Mathematics" - }, - { - "en": "Newton" - }, - { - "en": "Science" - }, - { - "en": "Turgot" - }, - { - "en": "history of mathematics" - }, - { - "en": "history of science" - } - ], - "name": "Bernoulli-Euler Online (BEOL)", - "shortcode": "0801", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3175395", - "text": "Italy" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6255148", - "text": "Europe" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/11961320", - "text": "European Russia" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434", - "text": "Switzerland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2921044", - "text": "Germany" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3017382", - "text": "France" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2635167", - "text": "United Kingdom" - } - ], - "startDate": "2016-07-01", - "temporalCoverage": [ - { - "en": "17th century and18th century CE" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/yTerZGyxjZVqFMNNKXCDPF", - "text": "Discover Project Data" - }, - "secondaryURL": { - "__type": "URL", - "type": "URL", - "url": "https://beol.dasch.swiss/", - "text": "Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-project", + "__type": "Project", + "__createdAt": "1630601412179086000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Bernoulli-Euler Online (BEOL), 2019, DaSCH. https://beol.dasch.swiss", + "teaserText": "The project Bernoulli-Euler Online (BEOL) focuses on the mathematics influenced by the Bernoulli dynasty and Leonhard Euler and presents these materials to the public and researchers.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0801-dataset-000", + "http://ns.dasch.swiss/repository#dsp-0801-dataset-001", + "http://ns.dasch.swiss/repository#dsp-0801-dataset-002", + "http://ns.dasch.swiss/repository#dsp-0801-dataset-003" + ], + "alternativeNames": [ + { + "en": "BEOL" + } + ], + "description": { + "en": "The project Bernoulli-Euler Online (BEOL) integrates the two edition projects Basler Edition der Bernoulli-Briefwechsel (BEBB) and Leonhardi Euleri Opera Omnia (LEOO) into one digital platform available on the web. In addition, Jacob Bernoulli's scientific notebook Meditationes - a document of outstanding significance for the history of mathematics at its turning point around 1700 - is published for the first time in its entirety on the BEOL platform as a region-based multilayer interactive digital edition providing access to facsimiles, transcriptions, translations, indices, and commentaries. Besides being an edition platform, BEOL is a virtual research environment for the study of early modern mathematics and science as a data graph using sophisticated analysis tools. Currently BEOL is connected to two third-party repositories: The Newton Project and the Briefportal Leibniz, initiating the formation of a network of digital editions of the early modern scientific correspondence data. The goal of BEOL is thus twofold: it focuses on the mathematics influenced by the Bernoulli dynasty and Leonhard Euler and undertakes a methodological effort to present these materials to the public and researchers in a highly functional way." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/12", + "text": "Mathematics" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0801-organization-000", + "http://ns.dasch.swiss/repository#dsp-0801-organization-002" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0801-grant-000", + "http://ns.dasch.swiss/repository#dsp-0801-grant-001" + ], + "keywords": [ + { + "en": "Bernoulli" + }, + { + "en": "Condorcet" + }, + { + "en": "Euler" + }, + { + "en": "Goldbach" + }, + { + "de": "Leibniz" + }, + { + "en": "Mathematics" + }, + { + "en": "Newton" + }, + { + "en": "Science" + }, + { + "en": "Turgot" + }, + { + "en": "history of mathematics" + }, + { + "en": "history of science" + } + ], + "name": "Bernoulli-Euler Online (BEOL)", + "shortcode": "0801", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3175395", + "text": "Italy" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/6255148", + "text": "Europe" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/11961320", + "text": "European Russia" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434", + "text": "Switzerland" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2921044", + "text": "Germany" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3017382", + "text": "France" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2635167", + "text": "United Kingdom" + } + ], + "startDate": "2016-07-01", + "temporalCoverage": [ + { + "en": "17th century and18th century CE" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/yTerZGyxjZVqFMNNKXCDPF", + "text": "Discover Project Data" + }, + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://beol.dasch.swiss/", + "text": "Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-dataset-000", + "__type": "Dataset", + "__createdAt": "1630601418280016000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ + { + "__type": "URL", + "type": "URL", + "url": "https://ark.dasch.swiss/ark:/72163/1/0801/18ngnZB9Sgy2PlOl71OJxgl.20191028T094314789Z", + "text": "Read the full abstract here" + } + ], + "accessConditions": "open", + "howToCite": "Bernoulli-Euler Online (BEOL), 2019, DaSCH. https://beol.dasch.swiss", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-dataset-000", - "__type": "Dataset", - "__createdAt": "1630601418280016000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "__type": "URL", - "type": "URL", - "url": "https://ark.dasch.swiss/ark:/72163/1/0801/18ngnZB9Sgy2PlOl71OJxgl.20191028T094314789Z", - "text": "Read the full abstract here" - } - ], - "accessConditions": "open", - "howToCite": "Bernoulli-Euler Online (BEOL), 2019, DaSCH. https://beol.dasch.swiss", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "en": "French", - "de": "Französisch", - "fr": "français" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - }, - { - "en": "Latin", - "de": "Latein", - "fr": "latin" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", - "text": "CC BY-NC-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0801-person-000", - "roles": [ - "author" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0801-person-001", - "roles": [ - "author" - ] - } - ], - "status": "Finished", - "title": "Briefwechsel von Leonhard Euler mit Christian Goldbach", - "typeOfData": [ - "Image", - "Text", - "XML" - ] + "en": "English", + "de": "Englisch", + "fr": "anglais" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-dataset-001", - "__type": "Dataset", - "__createdAt": "1630601418365017000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "__type": "URL", - "type": "URL", - "url": "https://ark.dasch.swiss/ark:/72163/1/0801/4UDRwNHCQZWhJZdL=JfBSAt.20191028T094815009Z", - "text": "Read the full abstract here" - } - ], - "alternativeTitles": [ - { - "en": "Condorcet-Turgot" - } - ], - "accessConditions": "open", - "howToCite": "Bernoulli-Euler Online (BEOL), 2019, DaSCH. https://beol.dasch.swiss", - "languages": [ - { - "en": "French", - "de": "Französisch", - "fr": "français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", - "text": "CC BY-NC-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0801-person-004", - "roles": [ - "author" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0801-person-005", - "roles": [ - "author" - ] - } - ], - "status": "Finished", - "title": "Briefwechsel von Euler mit Condoret und Turgot", - "typeOfData": [ - "Image", - "Text", - "XML" - ] + "en": "French", + "de": "Französisch", + "fr": "français" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-dataset-002", - "__type": "Dataset", - "__createdAt": "1630601418882265000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "Edition of Jacob Bernoulli's Scientific Notebook (Meditationes)." - } - ], - "alternativeTitles": [ - { - "en": "Meditationes" - } - ], - "accessConditions": "open", - "howToCite": "Bernoulli-Euler Online (BEOL), 2019, DaSCH. https://beol.dasch.swiss", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - }, - { - "en": "Latin", - "de": "Latein", - "fr": "latin" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", - "text": "CC BY-NC-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0801-person-000", - "roles": [ - "author" - ] - } - ], - "status": "Finished", - "title": "Jacob Bernoulli's Scientific Notebook (Meditationes)", - "typeOfData": [ - "Image", - "Text", - "XML" - ] + "de": "Deutsch", + "en": "German", + "fr": "allemand" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-dataset-003", - "__type": "Dataset", - "__createdAt": "1630601419755717000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "__type": "URL", - "type": "URL", - "url": "https://bez.unibas.ch/de/basler-edition-der-bernoulli-briefwechsel/", - "text": "Read the full abstract here" - } - ], - "alternativeTitles": [ - { - "de": "BEBB" - } - ], - "accessConditions": "open", - "dateCreated": "2018-01-01", - "dateModified": "2018-01-01", - "datePublished": "2018-01-01", - "howToCite": "Bernoulli-Euler Online (BEOL), 2019, DaSCH. https://beol.dasch.swiss", - "languages": [ - { - "en": "French", - "de": "Französisch", - "fr": "français" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - }, - { - "en": "Latin", - "de": "Latein", - "fr": "latin" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", - "text": "CC BY-NC-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0801-person-002", - "roles": [ - "author" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0801-person-003", - "roles": [ - "author" - ] - } - ], - "status": "Ongoing", - "title": "Basler Edition der Bernoulli-Briefwechsel", - "typeOfData": [ - "Image", - "Text" - ] + "en": "Latin", + "de": "Latein", + "fr": "latin" } - ], - "persons": [ + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-person-001", - "__type": "Person", - "__createdAt": "1630601420163858000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Lemmermeyer" - ], - "givenNames": [ - "Franz" - ], - "jobTitles": [ - "Mathematiker" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0801-organization-003" - ] - }, + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", + "text": "CC BY-NC-SA 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-person-002", - "__type": "Person", - "__createdAt": "1630601420163929000", - "__createdBy": "dsp-metadata-gui", - "email": "fritz.nagel@unibas.ch", - "familyNames": [ - "Nagel" - ], - "givenNames": [ - "Fritz" - ], - "jobTitles": [ - "Leiter Bernoulli-Archiv" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0801-organization-003" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0801-person-000", + "roles": [ + "author" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-person-003", - "__type": "Person", - "__createdAt": "1630601420164011000", - "__createdBy": "dsp-metadata-gui", - "email": "sulamith.gehr@unibas.ch", - "familyNames": [ - "Gehr" - ], - "givenNames": [ - "Sulamith" - ], - "jobTitles": [ - "Wissenschaftliche Mitarbeiterin" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0801-organization-003" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0801-person-001", + "roles": [ + "author" + ] + } + ], + "status": "Finished", + "title": "Briefwechsel von Leonhard Euler mit Christian Goldbach", + "typeOfData": [ + "Image", + "Text", + "XML" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-dataset-001", + "__type": "Dataset", + "__createdAt": "1630601418365017000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ + { + "__type": "URL", + "type": "URL", + "url": "https://ark.dasch.swiss/ark:/72163/1/0801/4UDRwNHCQZWhJZdL=JfBSAt.20191028T094815009Z", + "text": "Read the full abstract here" + } + ], + "alternativeTitles": [ + { + "en": "Condorcet-Turgot" + } + ], + "accessConditions": "open", + "howToCite": "Bernoulli-Euler Online (BEOL), 2019, DaSCH. https://beol.dasch.swiss", + "languages": [ + { + "en": "French", + "de": "Französisch", + "fr": "français" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", + "text": "CC BY-NC-SA 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0801-person-004", + "roles": [ + "author" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-person-004", - "__type": "Person", - "__createdAt": "1630601420164092000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Gilan" - ], - "givenNames": [ - "Christian" - ], - "jobTitles": [ - "Professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0801-organization-003" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0801-person-005", + "roles": [ + "author" + ] + } + ], + "status": "Finished", + "title": "Briefwechsel von Euler mit Condoret und Turgot", + "typeOfData": [ + "Image", + "Text", + "XML" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-dataset-002", + "__type": "Dataset", + "__createdAt": "1630601418882265000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ + { + "en": "Edition of Jacob Bernoulli's Scientific Notebook (Meditationes)." + } + ], + "alternativeTitles": [ + { + "en": "Meditationes" + } + ], + "accessConditions": "open", + "howToCite": "Bernoulli-Euler Online (BEOL), 2019, DaSCH. https://beol.dasch.swiss", + "languages": [ + { + "en": "English", + "de": "Englisch", + "fr": "anglais" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-person-005", - "__type": "Person", - "__createdAt": "1630601420164156000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Hug" - ], - "givenNames": [ - "Vanja" - ], - "jobTitles": [ - "Dr. phil. Historikerin" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0801-organization-003" - ] + "de": "Deutsch", + "en": "German", + "fr": "allemand" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-person-000", - "__type": "Person", - "__createdAt": "1630601420164221000", - "__createdBy": "dsp-metadata-gui", - "email": "martin.mattmueller@unibas.ch", - "familyNames": [ - "Mattmüller" - ], - "givenNames": [ - "Martin" - ], - "jobTitles": [ - "Wissenschaftlicher Mitarbeiter" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0801-organization-003" - ] + "en": "Latin", + "de": "Latein", + "fr": "latin" } - ], - "organizations": [ + ], + "licenses": [ + { + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", + "text": "CC BY-NC-SA 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-organization-000", - "__type": "Organization", - "__createdAt": "1630601420164329000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3, Postfach", - "postalCode": "3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0801-person-000", + "roles": [ + "author" + ] + } + ], + "status": "Finished", + "title": "Jacob Bernoulli's Scientific Notebook (Meditationes)", + "typeOfData": [ + "Image", + "Text", + "XML" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-dataset-003", + "__type": "Dataset", + "__createdAt": "1630601419755717000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ + { + "__type": "URL", + "type": "URL", + "url": "https://bez.unibas.ch/de/basler-edition-der-bernoulli-briefwechsel/", + "text": "Read the full abstract here" + } + ], + "alternativeTitles": [ + { + "de": "BEBB" + } + ], + "accessConditions": "open", + "dateCreated": "2018-01-01", + "dateModified": "2018-01-01", + "datePublished": "2018-01-01", + "howToCite": "Bernoulli-Euler Online (BEOL), 2019, DaSCH. https://beol.dasch.swiss", + "languages": [ + { + "en": "French", + "de": "Französisch", + "fr": "français" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-organization-002", - "__type": "Organization", - "__createdAt": "1630601420195745000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Haus der Akademien, Postfach", - "postalCode": "3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "sagw@sagw.ch", - "name": "Schweizerische Akademie der Geisteswissenschaften (SAGW)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://sagw.ch/", - "text": "https://sagw.ch/" - } + "de": "Deutsch", + "en": "German", + "fr": "allemand" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-organization-003", - "__type": "Organization", - "__createdAt": "1630601420228994000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Universitätsbibliothek, Schönbeinstrasse 18-20", - "postalCode": "4056", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "bez@unibas.ch", - "name": "Bernoulli-Euler-Zentrum", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.bez.unibas.ch", - "text": "https://www.bez.unibas.ch" - } + "en": "Latin", + "de": "Latein", + "fr": "latin" } - ], - "grants": [ + ], + "licenses": [ + { + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", + "text": "CC BY-NC-SA 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-grant-000", - "__type": "Grant", - "__createdAt": "1630601420262951000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0801-organization-000" - ], - "name": "Project funding", - "number": "166072", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/166072", - "text": "https://data.snf.ch/grants/grant/166072" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0801-person-002", + "roles": [ + "author" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0801-grant-001", - "__type": "Grant", - "__createdAt": "1630601420263165000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0801-organization-002" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0801-person-003", + "roles": [ + "author" + ] } - ] -} + ], + "status": "Ongoing", + "title": "Basler Edition der Bernoulli-Briefwechsel", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-person-001", + "__type": "Person", + "__createdAt": "1630601420163858000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Lemmermeyer" + ], + "givenNames": [ + "Franz" + ], + "jobTitles": [ + "Mathematiker" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0801-organization-003" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-person-002", + "__type": "Person", + "__createdAt": "1630601420163929000", + "__createdBy": "dsp-metadata-gui", + "email": "fritz.nagel@unibas.ch", + "familyNames": [ + "Nagel" + ], + "givenNames": [ + "Fritz" + ], + "jobTitles": [ + "Leiter Bernoulli-Archiv" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0801-organization-003" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-person-003", + "__type": "Person", + "__createdAt": "1630601420164011000", + "__createdBy": "dsp-metadata-gui", + "email": "sulamith.gehr@unibas.ch", + "familyNames": [ + "Gehr" + ], + "givenNames": [ + "Sulamith" + ], + "jobTitles": [ + "Wissenschaftliche Mitarbeiterin" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0801-organization-003" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-person-004", + "__type": "Person", + "__createdAt": "1630601420164092000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Gilan" + ], + "givenNames": [ + "Christian" + ], + "jobTitles": [ + "Professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0801-organization-003" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-person-005", + "__type": "Person", + "__createdAt": "1630601420164156000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Hug" + ], + "givenNames": [ + "Vanja" + ], + "jobTitles": [ + "Dr. phil. Historikerin" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0801-organization-003" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-person-000", + "__type": "Person", + "__createdAt": "1630601420164221000", + "__createdBy": "dsp-metadata-gui", + "email": "martin.mattmueller@unibas.ch", + "familyNames": [ + "Mattmüller" + ], + "givenNames": [ + "Martin" + ], + "jobTitles": [ + "Wissenschaftlicher Mitarbeiter" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0801-organization-003" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-organization-000", + "__type": "Organization", + "__createdAt": "1630601420164329000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3, Postfach", + "postalCode": "3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-organization-002", + "__type": "Organization", + "__createdAt": "1630601420195745000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Haus der Akademien, Postfach", + "postalCode": "3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "sagw@sagw.ch", + "name": "Schweizerische Akademie der Geisteswissenschaften (SAGW)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://sagw.ch/", + "text": "https://sagw.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-organization-003", + "__type": "Organization", + "__createdAt": "1630601420228994000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Universitätsbibliothek, Schönbeinstrasse 18-20", + "postalCode": "4056", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "bez@unibas.ch", + "name": "Bernoulli-Euler-Zentrum", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.bez.unibas.ch", + "text": "https://www.bez.unibas.ch" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-grant-000", + "__type": "Grant", + "__createdAt": "1630601420262951000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0801-organization-000" + ], + "name": "Project funding", + "number": "166072", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/166072", + "text": "https://data.snf.ch/grants/grant/166072" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0801-grant-001", + "__type": "Grant", + "__createdAt": "1630601420263165000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0801-organization-002" + ] + } + ] +} \ No newline at end of file diff --git a/data/json/beyondthetext.json b/data/json/beyondthetext.json index 46089497..4dbbd21c 100644 --- a/data/json/beyondthetext.json +++ b/data/json/beyondthetext.json @@ -7,7 +7,9 @@ "__createdBy": "dsp-metadata-gui", "howToCite": "Beyond the Text (BT), University of Basel, 2026", "teaserText": "Philological and archaeological project exploring the emergence and evolution of the funerary literature of the Graeco-Roman Period", - "datasets": ["http://ns.dasch.swiss/repository#dsp-083A-dataset-000"], + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-083A-dataset-000" + ], "alternativeNames": [ { "fr": "Au-delà du texte. Les nouvelles compositions funéraires d’époque gréco-romaine : textualités et archéologie à Thèbes" @@ -28,8 +30,12 @@ } ], "endDate": "2026-01-31", - "funders": ["http://ns.dasch.swiss/repository#dsp-083A-organization-000"], - "grants": ["http://ns.dasch.swiss/repository#dsp-083A-grant-000"], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-083A-organization-000" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-083A-grant-000" + ], "keywords": [ { "de": "Archäologie" @@ -182,7 +188,8 @@ "type": "URL", "url": "https://beyondthetext.ch/", "text": "External Project Website" - } + }, + "status": "ongoing" }, "datasets": [ { @@ -235,32 +242,45 @@ { "__type": "Attribution", "agent": "http://ns.dasch.swiss/repository#dsp-083A-person-000", - "roles": ["Applicant"] + "roles": [ + "Applicant" + ] }, { "__type": "Attribution", "agent": "http://ns.dasch.swiss/repository#dsp-083A-person-001", - "roles": ["Contributor"] + "roles": [ + "Contributor" + ] }, { "__type": "Attribution", "agent": "http://ns.dasch.swiss/repository#dsp-083A-person-002", - "roles": ["Contributor"] + "roles": [ + "Contributor" + ] }, { "__type": "Attribution", "agent": "http://ns.dasch.swiss/repository#dsp-083A-person-003", - "roles": ["Contributor"] + "roles": [ + "Contributor" + ] }, { "__type": "Attribution", "agent": "http://ns.dasch.swiss/repository#dsp-083A-person-004", - "roles": ["Contributor"] + "roles": [ + "Contributor" + ] } ], "status": "Ongoing", "title": "Beyond the Text. New Funerary Compositions from the Graeco-Roman Period: Textualities and Archaeology in Thebes", - "typeOfData": ["Image", "Text"] + "typeOfData": [ + "Image", + "Text" + ] } ], "persons": [ @@ -270,9 +290,15 @@ "__createdAt": "1643068532483838000", "__createdBy": "dsp-metadata-gui", "email": "sandrine.vuilleumier@unibas.ch", - "familyNames": ["Vuilleumier"], - "givenNames": ["Sandrine"], - "jobTitles": ["Prof. Dr."], + "familyNames": [ + "Vuilleumier" + ], + "givenNames": [ + "Sandrine" + ], + "jobTitles": [ + "Prof. Dr." + ], "affiliation": [ "http://ns.dasch.swiss/repository#dsp-083A-organization-001" ], @@ -290,35 +316,60 @@ "__type": "Person", "__createdAt": "1643068532484021000", "__createdBy": "dsp-metadata-gui", - "familyNames": ["Dogaer"], - "givenNames": ["Lauren"], - "jobTitles": ["PhD"] + "familyNames": [ + "Dogaer" + ], + "givenNames": [ + "Lauren" + ], + "jobTitles": [ + "PhD" + ] }, { "__id": "http://ns.dasch.swiss/repository#dsp-083A-person-002", "__type": "Person", "__createdAt": "1643068532484084000", "__createdBy": "dsp-metadata-gui", - "familyNames": ["Fong"], - "givenNames": ["Cyprian"], - "jobTitles": ["PhD"] + "familyNames": [ + "Fong" + ], + "givenNames": [ + "Cyprian" + ], + "jobTitles": [ + "PhD" + ] }, { "__id": "http://ns.dasch.swiss/repository#dsp-083A-person-003", "__type": "Person", "__createdAt": "1643068532484145000", "__createdBy": "dsp-metadata-gui", - "familyNames": ["Roth"], - "givenNames": ["Pascale"], - "jobTitles": ["HiWi"] + "familyNames": [ + "Roth" + ], + "givenNames": [ + "Pascale" + ], + "jobTitles": [ + "HiWi" + ] }, { "__id": "http://ns.dasch.swiss/repository#dsp-083A-person-004", "__type": "Person", + "__createdAt": "1643068532484145000", "__createdBy": "dsp-metadata-gui", - "familyNames": ["Heierli"], - "givenNames": ["Sarah"], - "jobTitles": ["HiWi"] + "familyNames": [ + "Heierli" + ], + "givenNames": [ + "Sarah" + ], + "jobTitles": [ + "HiWi" + ] } ], "organizations": [ @@ -350,7 +401,9 @@ "__type": "Grant", "__createdAt": "1643068532565155000", "__createdBy": "dsp-metadata-gui", - "funders": ["http://ns.dasch.swiss/repository#dsp-083A-organization-000"], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-083A-organization-000" + ], "name": "PRIMA", "number": "193226", "url": { @@ -361,4 +414,4 @@ } } ] -} +} \ No newline at end of file diff --git a/data/json/big-data-in-agriculture.json b/data/json/big-data-in-agriculture.json index 35f2ddeb..25db7885 100644 --- a/data/json/big-data-in-agriculture.json +++ b/data/json/big-data-in-agriculture.json @@ -1,285 +1,286 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-082D-project", - "__type": "Project", - "__createdAt": "1630601339049038000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Klauser FR and Pauschinger D (2020) Big Data in Agriculture: The Making of Smart Farms.", - "teaserText": "This project contributes empirical evidence to the discussion of the opportunities and risks associated with smart farming.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-082D-dataset-001" - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-082D-person-001", - "dataManagementPlan": { - "__type": "DataManagementPlan", - "available": true - }, - "description": { - "en": "Smart technologies transform farming today. Think of autonomous tractors and weeding robots, animals and underground infrastructures with inbuilt sensors, and drones or satellites offering image analysis from the air. There are many opportunities arising from this evolution in terms of increased productivity, profitability, and sustainability. Critical issues, in turn, include techno-dependency, vulnerability and privacy.\nThis project contributes empirical evidence to the discussion of the opportunities and risks associated with smart farming. It starts from the assumption that smart farming – i.e. the management of agricultural practices and processes through techniques of data gathering, transfer and analysis – is never neutral, but shaped by all kinds of decisions and judgements built into the systems from their very elaboration. The project thus studies ‘what lies behind’ novel smart-farming solutions, looking at where, by whom and how they are produced and subsequently diffused as exemplars to follow. It does so through the investigation of two high-profile initiatives in Switzerland:\nSwiss Future Farm: An experimental and demonstration farm, set up on Agroscope’s test site in Tänikon (TG) as a joint public–private initiative, to be inaugurated on 21 September 2018.\nAgroFly’s (now with Aero41) sprayer-drone project (Sierre, VS): The first authorized drone system in Europe for the automated application of pesticides. Test sites are distributed in Switzerland and beyond.\nThis project claims that specific initiatives, anchored in specific sites of experimentation, play a fundamental role in assembling the actor networks that carry forward the evolutions around smart farming. Grounded in Actor Network Theory, the project unpacks the chain of mediations through which relevant actors, ideas and things connect and interact in the co-production of the studied initiatives, and investigates the relationships and mechanisms that tie them to each other and to other sites and initiatives. There are four interrelated research objectives that run through this investigation, relating to the collaborative, expertise-related, discursive, and spatial dimensions of learning and exemplification:\nto analyse the practices of collaboration through which novel smart-farming solutions are developed and stabilized for more normalized use through the studied sites of experimentation.\nto examine what and how specific forms of expertise become authorized to act in the different stages and chains of mediation associated with the studied sites.\nto investigate what and how specific discourses, expectations and beliefs surrounding smart technologies crystallize in and emerge from the studied initiatives.\nto explore the forces and mechanisms through which the studied sites are tied to other places and projects in the circuits of learning and exemplification that shape the field of smart farming.\nTo pursue these objectives, the project follows three methodological pathways: textual analysis of literature and reports, non-participant observation, and semi-structured interviews. This approach is exploratory in ambition and scope and leads to further, follow-up research proposals on Big Data in agriculture. On these grounds, the project studies, informs and debates innovation in the agricultural sector. It highlights the factors that favour or hinder technology innovation, diffusion and adaptation, and fosters greater understanding about the desirability or non-desirability of this. User beneficiaries include farmers and farming associations, technology" - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/540305", - "text": "Political geography" - } - ], - "endDate": "2020-06-30", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-082D-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-082D-grant-001" - ], - "keywords": [ - { - "en": "Agriculture" - }, - { - "en": "Big Data" - }, - { - "de": "Drohnen" - }, - { - "en": "Smart Farming" - }, - { - "en": "Swiss Future Farm" - } - ], - "name": "Big Data in Agriculture: The Making of Smart Farms", - "publications": [ - { - "text": "Klauser, FR.: Surveillance Farms: Towards a Research Agenda on Big Data in Agriculture, Surveillance & Society, 16(3), 370-378, 2020.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.24908/ss.v16i3.12594", - "text": "DOI: 10.24908/ss.v16i3.12594" - } - ] - }, - { - "text": "Pauschinger, D. and Klauser, F.: Räume des Experimentierens: Die Einführung von Sprühdrohnen in der digitalen Landwirtschaft, Geogr. Helv., 75, 325–336, 2020.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.5194/gh-75-325-2020", - "text": "DOI: 10.5194/gh-75-325-2020" - } - ] - } - ], - "shortcode": "082D", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/switzerland.html", - "text": "Switzerland" - } - ], - "startDate": "2018-12-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/8bGPuf5syqCD", - "text": "Swiss" - } - ], - "url": { + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-082D-project", + "__type": "Project", + "__createdAt": "1630601339049038000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Klauser FR and Pauschinger D (2020) Big Data in Agriculture: The Making of Smart Farms.", + "teaserText": "This project contributes empirical evidence to the discussion of the opportunities and risks associated with smart farming.", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-082D-dataset-001" + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-082D-person-001", + "dataManagementPlan": { + "__type": "DataManagementPlan", + "available": true + }, + "description": { + "en": "Smart technologies transform farming today. Think of autonomous tractors and weeding robots, animals and underground infrastructures with inbuilt sensors, and drones or satellites offering image analysis from the air. There are many opportunities arising from this evolution in terms of increased productivity, profitability, and sustainability. Critical issues, in turn, include techno-dependency, vulnerability and privacy.\nThis project contributes empirical evidence to the discussion of the opportunities and risks associated with smart farming. It starts from the assumption that smart farming – i.e. the management of agricultural practices and processes through techniques of data gathering, transfer and analysis – is never neutral, but shaped by all kinds of decisions and judgements built into the systems from their very elaboration. The project thus studies ‘what lies behind’ novel smart-farming solutions, looking at where, by whom and how they are produced and subsequently diffused as exemplars to follow. It does so through the investigation of two high-profile initiatives in Switzerland:\nSwiss Future Farm: An experimental and demonstration farm, set up on Agroscope’s test site in Tänikon (TG) as a joint public–private initiative, to be inaugurated on 21 September 2018.\nAgroFly’s (now with Aero41) sprayer-drone project (Sierre, VS): The first authorized drone system in Europe for the automated application of pesticides. Test sites are distributed in Switzerland and beyond.\nThis project claims that specific initiatives, anchored in specific sites of experimentation, play a fundamental role in assembling the actor networks that carry forward the evolutions around smart farming. Grounded in Actor Network Theory, the project unpacks the chain of mediations through which relevant actors, ideas and things connect and interact in the co-production of the studied initiatives, and investigates the relationships and mechanisms that tie them to each other and to other sites and initiatives. There are four interrelated research objectives that run through this investigation, relating to the collaborative, expertise-related, discursive, and spatial dimensions of learning and exemplification:\nto analyse the practices of collaboration through which novel smart-farming solutions are developed and stabilized for more normalized use through the studied sites of experimentation.\nto examine what and how specific forms of expertise become authorized to act in the different stages and chains of mediation associated with the studied sites.\nto investigate what and how specific discourses, expectations and beliefs surrounding smart technologies crystallize in and emerge from the studied initiatives.\nto explore the forces and mechanisms through which the studied sites are tied to other places and projects in the circuits of learning and exemplification that shape the field of smart farming.\nTo pursue these objectives, the project follows three methodological pathways: textual analysis of literature and reports, non-participant observation, and semi-structured interviews. This approach is exploratory in ambition and scope and leads to further, follow-up research proposals on Big Data in agriculture. On these grounds, the project studies, informs and debates innovation in the agricultural sector. It highlights the factors that favour or hinder technology innovation, diffusion and adaptation, and fosters greater understanding about the desirability or non-desirability of this. User beneficiaries include farmers and farming associations, technology" + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/540305", + "text": "Political geography" + } + ], + "endDate": "2020-06-30", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-082D-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-082D-grant-001" + ], + "keywords": [ + { + "en": "Agriculture" + }, + { + "en": "Big Data" + }, + { + "de": "Drohnen" + }, + { + "en": "Smart Farming" + }, + { + "en": "Swiss Future Farm" + } + ], + "name": "Big Data in Agriculture: The Making of Smart Farms", + "publications": [ + { + "text": "Klauser, FR.: Surveillance Farms: Towards a Research Agenda on Big Data in Agriculture, Surveillance & Society, 16(3), 370-378, 2020.", + "url": [ + { "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/082D", - "text": "Discover Project Data" - }, - "secondaryURL": { + "type": "DOI", + "url": "https://doi.org/10.24908/ss.v16i3.12594", + "text": "DOI: 10.24908/ss.v16i3.12594" + } + ] + }, + { + "text": "Pauschinger, D. and Klauser, F.: Räume des Experimentierens: Die Einführung von Sprühdrohnen in der digitalen Landwirtschaft, Geogr. Helv., 75, 325–336, 2020.", + "url": [ + { "__type": "URL", - "type": "URL", - "url": "http://www.unine.ch/geographie/en/home/recherche/--espace-et-pouvoir-a-lere-du-nu/research-projects/smart-farming.html", - "text": "External Project Website" - } + "type": "DOI", + "url": "https://doi.org/10.5194/gh-75-325-2020", + "text": "DOI: 10.5194/gh-75-325-2020" + } + ] + } + ], + "shortcode": "082D", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/switzerland.html", + "text": "Switzerland" + } + ], + "startDate": "2018-12-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/8bGPuf5syqCD", + "text": "Swiss" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/082D", + "text": "Discover Project Data" }, - "datasets": [ + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "http://www.unine.ch/geographie/en/home/recherche/--espace-et-pouvoir-a-lere-du-nu/research-projects/smart-farming.html", + "text": "External Project Website" + }, + "status": "finished" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082D-dataset-001", + "__type": "Dataset", + "__createdAt": "1630601342471769000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-082D-dataset-001", - "__type": "Dataset", - "__createdAt": "1630601342471769000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "Smart technologies transform farming today. Think of autonomous tractors and weeding robots, animals and underground infrastructures with inbuilt sensors, and drones or satellites offering image analysis from the air. There are many opportunities arising from this evolution in terms of increased productivity, profitability, and sustainability. Critical issues, in turn, include techno-dependency, vulnerability and privacy. This project contributes empirical evidence to the discussion of the opportunities and risks associated with smart farming. It starts from the assumption that smart farming – i.e. the management of agricultural practices and processes through techniques of data gathering, transfer and analysis – is never neutral, but shaped by all kinds of decisions and judgements built into the systems from their very elaboration. The project thus studies ‘what lies behind’ novel smart-farming solutions, looking at where, by whom and how they are produced and subsequently diffused as exemplars to follow. It does so through the investigation of two high-profile initiatives in Switzerland: Swiss Future Farm: An experimental and demonstration farm, set up on Agroscope’s test site in Tänikon (TG) as a joint public–private initiative, to be inaugurated on 21 September 2018. AgroFly’s (now with Aero41) sprayer-drone project (Sierre, VS): The first authorized drone system in Europe for the automated application of pesticides. Test sites are distributed in Switzerland and beyond. This project claims that specific initiatives, anchored in specific sites of experimentation, play a fundamental role in assembling the actor networks that carry forward the evolutions around smart farming. Grounded in Actor Network Theory, the project unpacks the chain of mediations through which relevant actors, ideas and things connect and interact in the co-production of the studied initiatives, and investigates the relationships and mechanisms that tie them to each other and to other sites and initiatives. There are four interrelated research objectives that run through this investigation, relating to the collaborative, expertise-related, discursive, and spatial dimensions of learning and exemplification: to analyse the practices of collaboration through which novel smart-farming solutions are developed and stabilized for more normalized use through the studied sites of experimentation. to examine what and how specific forms of expertise become authorized to act in the different stages and chains of mediation associated with the studied sites. to investigate what and how specific discourses, expectations and beliefs surrounding smart technologies crystallize in and emerge from the studied initiatives. to explore the forces and mechanisms through which the studied sites are tied to other places and projects in the circuits of learning and exemplification that shape the field of smart farming. To pursue these objectives, the project follows three methodological pathways: textual analysis of literature and reports, non-participant observation, and semi-structured interviews. This approach is exploratory in ambition and scope and leads to further, follow-up research proposals on Big Data in agriculture. On these grounds, the project studies, informs and debates innovation in the agricultural sector. It highlights the factors that favour or hinder technology innovation, diffusion and adaptation, and fosters greater understanding about the desirability or non-desirability of this. User beneficiaries include farmers and farming associations, technology" - } - ], - "accessConditions": "restricted", - "howToCite": "Klauser FR and Pauschinger D (2020) Big Data in Agriculture: The Making of Smart Farms, SNF Project Data Set.", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "en": "French", - "de": "Französisch", - "fr": "français" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "URL", - "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", - "text": "CC BY-NC-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082D-person-001", - "roles": [ - "PI" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082D-person-002", - "roles": [ - "Senior Research Fellow" - ] - } - ], - "status": "Finished", - "title": "Dataset of Big Data in Agriculture: The Making of Smart Farms", - "typeOfData": [ - "Text" - ] + "en": "Smart technologies transform farming today. Think of autonomous tractors and weeding robots, animals and underground infrastructures with inbuilt sensors, and drones or satellites offering image analysis from the air. There are many opportunities arising from this evolution in terms of increased productivity, profitability, and sustainability. Critical issues, in turn, include techno-dependency, vulnerability and privacy. This project contributes empirical evidence to the discussion of the opportunities and risks associated with smart farming. It starts from the assumption that smart farming – i.e. the management of agricultural practices and processes through techniques of data gathering, transfer and analysis – is never neutral, but shaped by all kinds of decisions and judgements built into the systems from their very elaboration. The project thus studies ‘what lies behind’ novel smart-farming solutions, looking at where, by whom and how they are produced and subsequently diffused as exemplars to follow. It does so through the investigation of two high-profile initiatives in Switzerland: Swiss Future Farm: An experimental and demonstration farm, set up on Agroscope’s test site in Tänikon (TG) as a joint public–private initiative, to be inaugurated on 21 September 2018. AgroFly’s (now with Aero41) sprayer-drone project (Sierre, VS): The first authorized drone system in Europe for the automated application of pesticides. Test sites are distributed in Switzerland and beyond. This project claims that specific initiatives, anchored in specific sites of experimentation, play a fundamental role in assembling the actor networks that carry forward the evolutions around smart farming. Grounded in Actor Network Theory, the project unpacks the chain of mediations through which relevant actors, ideas and things connect and interact in the co-production of the studied initiatives, and investigates the relationships and mechanisms that tie them to each other and to other sites and initiatives. There are four interrelated research objectives that run through this investigation, relating to the collaborative, expertise-related, discursive, and spatial dimensions of learning and exemplification: to analyse the practices of collaboration through which novel smart-farming solutions are developed and stabilized for more normalized use through the studied sites of experimentation. to examine what and how specific forms of expertise become authorized to act in the different stages and chains of mediation associated with the studied sites. to investigate what and how specific discourses, expectations and beliefs surrounding smart technologies crystallize in and emerge from the studied initiatives. to explore the forces and mechanisms through which the studied sites are tied to other places and projects in the circuits of learning and exemplification that shape the field of smart farming. To pursue these objectives, the project follows three methodological pathways: textual analysis of literature and reports, non-participant observation, and semi-structured interviews. This approach is exploratory in ambition and scope and leads to further, follow-up research proposals on Big Data in agriculture. On these grounds, the project studies, informs and debates innovation in the agricultural sector. It highlights the factors that favour or hinder technology innovation, diffusion and adaptation, and fosters greater understanding about the desirability or non-desirability of this. User beneficiaries include farmers and farming associations, technology" } - ], - "persons": [ + ], + "accessConditions": "restricted", + "howToCite": "Klauser FR and Pauschinger D (2020) Big Data in Agriculture: The Making of Smart Farms, SNF Project Data Set.", + "languages": [ + { + "en": "English", + "de": "Englisch", + "fr": "anglais" + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082D-person-002", - "__type": "Person", - "__createdAt": "1630601342828021000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Espace Tilo-Frey 1", - "postalCode": "2000", - "locality": "Neuchâtel", - "country": "Switzerland" - }, - "email": "dennis.pauschinger@unine.ch", - "familyNames": [ - "Pauschinger" - ], - "givenNames": [ - "Dennis" - ], - "jobTitles": [ - "Postdoc" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082D-organization-002" - ] + "en": "French", + "de": "Französisch", + "fr": "français" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082D-person-001", - "__type": "Person", - "__createdAt": "1630601343192727000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Espace Tilo-Frey 1", - "postalCode": "2000", - "locality": "Neuchâtel", - "country": "Switzerland" - }, - "email": "francisco.klauser@unine.ch", - "familyNames": [ - "Klauser" - ], - "givenNames": [ - "Francisco R." - ], - "jobTitles": [ - "Full professor of political geography" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082D-organization-002" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://orcid.org/0000-0003-3383-3570", - "text": "https://orcid.org/0000-0003-3383-3570" - } - ] + "de": "Deutsch", + "en": "German", + "fr": "allemand" } - ], - "organizations": [ + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-082D-organization-001", - "__type": "Organization", - "__createdAt": "1630601343404107000", - "__createdBy": "dsp-metadata-gui", - "name": "Swiss National Science Foundation (SNSF)" + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "URL", + "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", + "text": "CC BY-NC-SA 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082D-person-001", + "roles": [ + "PI" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082D-organization-002", - "__type": "Organization", - "__createdAt": "1630601343404174000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Espace Tilo-Frey 1", - "postalCode": "2000", - "locality": "Neuchâtel", - "country": "Switzerland" - }, - "email": "Secretariat.Geographie@unine.ch", - "name": "Université de Neuchâtel, Faculté des lettres et sciences humaines", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.unine.ch/geographie/home.html", - "text": "http://www.unine.ch/geographie/home.html" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082D-person-002", + "roles": [ + "Senior Research Fellow" + ] } - ], - "grants": [ + ], + "status": "Finished", + "title": "Dataset of Big Data in Agriculture: The Making of Smart Farms", + "typeOfData": [ + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082D-person-002", + "__type": "Person", + "__createdAt": "1630601342828021000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Espace Tilo-Frey 1", + "postalCode": "2000", + "locality": "Neuchâtel", + "country": "Switzerland" + }, + "email": "dennis.pauschinger@unine.ch", + "familyNames": [ + "Pauschinger" + ], + "givenNames": [ + "Dennis" + ], + "jobTitles": [ + "Postdoc" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082D-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082D-person-001", + "__type": "Person", + "__createdAt": "1630601343192727000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Espace Tilo-Frey 1", + "postalCode": "2000", + "locality": "Neuchâtel", + "country": "Switzerland" + }, + "email": "francisco.klauser@unine.ch", + "familyNames": [ + "Klauser" + ], + "givenNames": [ + "Francisco R." + ], + "jobTitles": [ + "Full professor of political geography" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082D-organization-002" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-082D-grant-001", - "__type": "Grant", - "__createdAt": "1630601343555790000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-082D-organization-001" - ], - "name": "Digital Lives", - "number": "183037", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/183037", - "text": "https://data.snf.ch/grants/grant/183037" - } + "__type": "URL", + "type": "URL", + "url": "https://orcid.org/0000-0003-3383-3570", + "text": "https://orcid.org/0000-0003-3383-3570" } - ] -} + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082D-organization-001", + "__type": "Organization", + "__createdAt": "1630601343404107000", + "__createdBy": "dsp-metadata-gui", + "name": "Swiss National Science Foundation (SNSF)" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082D-organization-002", + "__type": "Organization", + "__createdAt": "1630601343404174000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Espace Tilo-Frey 1", + "postalCode": "2000", + "locality": "Neuchâtel", + "country": "Switzerland" + }, + "email": "Secretariat.Geographie@unine.ch", + "name": "Université de Neuchâtel, Faculté des lettres et sciences humaines", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.unine.ch/geographie/home.html", + "text": "http://www.unine.ch/geographie/home.html" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082D-grant-001", + "__type": "Grant", + "__createdAt": "1630601343555790000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-082D-organization-001" + ], + "name": "Digital Lives", + "number": "183037", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/183037", + "text": "https://data.snf.ch/grants/grant/183037" + } + } + ] +} \ No newline at end of file diff --git a/data/json/biz.json b/data/json/biz.json index 915c1e5a..ddc07db8 100644 --- a/data/json/biz.json +++ b/data/json/biz.json @@ -1,962 +1,963 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-project", - "__type": "Project", - "__createdAt": "1710880820150551000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Lucien Criblez, Lea Hägi, Stefan Kessler, Christina Rothen and Thomas Ruoss (2024). Forschungsinfrastruktur «Bildung in Zahlen» [Datenbank]. DaSCH, https://ark.dasch.swiss/ark:/72163/1/0828.", - "teaserText": "Annotated historical statistics on the development and use of cantonal education programmes and the vocational education and training system in Switzerland in the 19th and 20th centuries.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0828-dataset-000" - ], - "alternativeNames": [ - { - "de": "BiZ" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0828-person-000", - "dataManagementPlan": { - "__type": "DataManagementPlan", - "available": true - }, - "description": { - "en": "As part of the “Bildung in Zahlen” (Education by numbers) project funded by the Swiss National Science Foundation, long-term statistical series on the development of cantonal education programmes and the vocational education and training system in Switzerland in the 19th and 20th centuries were being generated, annotated and contextualised between September 2010 and December 2023. The research infrastructure comprises data on all educational levels, including pre-school, compulsory school, secondary school, higher education as well as vocational and professional education and training. The statistical data provide a basis for empirical-quantitative and historical analysis of changes in education systems in Switzerland. In addition, information on the sources used to compile these series, graphs visualizing school types and educational pathways as well as chronicles containing information on normative changes in school structures allow the statistical data to be placed in the historical context of the respective (cantonal) education system." - }, - "disciplines": [ - { - "en": "10104 Education and learning sciences, subject-specific education" - }, - { - "en": "10201 Sociology" - }, - { - "en": "10302 Swiss history" - } - ], - "endDate": "2023-12-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0828-grant-000", - "http://ns.dasch.swiss/repository#dsp-0828-grant-001", - "http://ns.dasch.swiss/repository#dsp-0828-grant-002", - "http://ns.dasch.swiss/repository#dsp-0828-grant-003" - ], - "keywords": [ - { - "en": "History of education" - }, - { - "en": "Educational policy" - }, - { - "en": "Educational statistics" - }, - { - "en": "Pre-school" - }, - { - "en": "Compulsory school (primary school, lower and upper secondary school)" - }, - { - "en": "High school" - }, - { - "en": "Vocational and professional education and training" - }, - { - "en": "Teacher education" - }, - { - "en": "University" - } - ], - "name": "Bildung in Zahlen (Education by numbers)", - "shortcode": "0828", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/switzerland.html", - "text": "Switzerland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2657895/kanton-zuerich.html", - "text": "Zurich" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2661551/canton-de-berne.html", - "text": "Bern" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2659810/kanton-luzern.html", - "text": "Lucerne" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658226/kanton-uri.html", - "text": "Uri" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658664/kanton-schwyz.html", - "text": "Schwyz" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2659315/kanton-obwalden.html", - "text": "Obwalden" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2659471/kanton-nidwalden.html", - "text": "Nidwalden" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2660593/kanton-glarus.html", - "text": "Glarus" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2657907/kanton-zug.html", - "text": "Zug" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2660717/canton-de-fribourg.html", - "text": "Fribourg" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658563/kanton-solothurn.html", - "text": "Solothurn" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2661602/kanton-basel-stadt.html", - "text": "Basel-City" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2661603/kanton-basel-landschaft.html", - "text": "Basel-Landschaft" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658760/kanton-schaffhausen.html", - "text": "Schaffhausen" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2661739/kanton-appenzell-ausserrhoden.html", - "text": "Appenzell Ausserrhoden" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2661741/kanton-appenzell-innerrhoden.html", - "text": "Appenzell Innerrhoden" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658821/kanton-st-gallen.html", - "text": "Saint Gall" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2660522/kanton-graubuenden.html", - "text": "Canton Grisons" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2661876/kanton-aargau.html", - "text": "Aargau" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658372/kanton-thurgau.html", - "text": "Thurgau" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658370/ticino.html", - "text": "Ticino" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658182/canton-de-vaud.html", - "text": "Vaud" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658205/canton-du-valais.html", - "text": "Valais" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2659495/neuchatel.html", - "text": "Neuchâtel" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2660645/geneve.html", - "text": "Geneva" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2660207/jura.html", - "text": "Jura" - } - ], - "startDate": "2010-09-01", - "temporalCoverage": [ - { - "en": "19th Century" - }, - { - "en": "20th Century" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.bildungsgeschichte.uzh.ch/", - "text": "External Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-project", + "__type": "Project", + "__createdAt": "1710880820150551000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Lucien Criblez, Lea Hägi, Stefan Kessler, Christina Rothen and Thomas Ruoss (2024). Forschungsinfrastruktur «Bildung in Zahlen» [Datenbank]. DaSCH, https://ark.dasch.swiss/ark:/72163/1/0828.", + "teaserText": "Annotated historical statistics on the development and use of cantonal education programmes and the vocational education and training system in Switzerland in the 19th and 20th centuries.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0828-dataset-000" + ], + "alternativeNames": [ + { + "de": "BiZ" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0828-person-000", + "dataManagementPlan": { + "__type": "DataManagementPlan", + "available": true + }, + "description": { + "en": "As part of the “Bildung in Zahlen” (Education by numbers) project funded by the Swiss National Science Foundation, long-term statistical series on the development of cantonal education programmes and the vocational education and training system in Switzerland in the 19th and 20th centuries were being generated, annotated and contextualised between September 2010 and December 2023. The research infrastructure comprises data on all educational levels, including pre-school, compulsory school, secondary school, higher education as well as vocational and professional education and training. The statistical data provide a basis for empirical-quantitative and historical analysis of changes in education systems in Switzerland. In addition, information on the sources used to compile these series, graphs visualizing school types and educational pathways as well as chronicles containing information on normative changes in school structures allow the statistical data to be placed in the historical context of the respective (cantonal) education system." + }, + "disciplines": [ + { + "en": "10104 Education and learning sciences, subject-specific education" + }, + { + "en": "10201 Sociology" + }, + { + "en": "10302 Swiss history" + } + ], + "endDate": "2023-12-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0828-grant-000", + "http://ns.dasch.swiss/repository#dsp-0828-grant-001", + "http://ns.dasch.swiss/repository#dsp-0828-grant-002", + "http://ns.dasch.swiss/repository#dsp-0828-grant-003" + ], + "keywords": [ + { + "en": "History of education" + }, + { + "en": "Educational policy" + }, + { + "en": "Educational statistics" + }, + { + "en": "Pre-school" + }, + { + "en": "Compulsory school (primary school, lower and upper secondary school)" + }, + { + "en": "High school" + }, + { + "en": "Vocational and professional education and training" + }, + { + "en": "Teacher education" + }, + { + "en": "University" + } + ], + "name": "Bildung in Zahlen (Education by numbers)", + "shortcode": "0828", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/switzerland.html", + "text": "Switzerland" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2657895/kanton-zuerich.html", + "text": "Zurich" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2661551/canton-de-berne.html", + "text": "Bern" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2659810/kanton-luzern.html", + "text": "Lucerne" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658226/kanton-uri.html", + "text": "Uri" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658664/kanton-schwyz.html", + "text": "Schwyz" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2659315/kanton-obwalden.html", + "text": "Obwalden" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2659471/kanton-nidwalden.html", + "text": "Nidwalden" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2660593/kanton-glarus.html", + "text": "Glarus" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2657907/kanton-zug.html", + "text": "Zug" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2660717/canton-de-fribourg.html", + "text": "Fribourg" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658563/kanton-solothurn.html", + "text": "Solothurn" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2661602/kanton-basel-stadt.html", + "text": "Basel-City" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2661603/kanton-basel-landschaft.html", + "text": "Basel-Landschaft" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658760/kanton-schaffhausen.html", + "text": "Schaffhausen" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2661739/kanton-appenzell-ausserrhoden.html", + "text": "Appenzell Ausserrhoden" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2661741/kanton-appenzell-innerrhoden.html", + "text": "Appenzell Innerrhoden" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658821/kanton-st-gallen.html", + "text": "Saint Gall" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2660522/kanton-graubuenden.html", + "text": "Canton Grisons" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2661876/kanton-aargau.html", + "text": "Aargau" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658372/kanton-thurgau.html", + "text": "Thurgau" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658370/ticino.html", + "text": "Ticino" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658182/canton-de-vaud.html", + "text": "Vaud" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658205/canton-du-valais.html", + "text": "Valais" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2659495/neuchatel.html", + "text": "Neuchâtel" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2660645/geneve.html", + "text": "Geneva" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2660207/jura.html", + "text": "Jura" + } + ], + "startDate": "2010-09-01", + "temporalCoverage": [ + { + "en": "19th Century" + }, + { + "en": "20th Century" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.bildungsgeschichte.uzh.ch/", + "text": "External Project Website" + }, + "status": "finished" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-dataset-000", + "__type": "Dataset", + "__createdAt": "1710880825087252000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-dataset-000", - "__type": "Dataset", - "__createdAt": "1710880825087252000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The infrastructure comprises (1) annotated historical long-term education statistics series (data on teachers, students in training, educational qualifications, school organization and school operations), (2) contextual documentation of this data, (3) graphics and chronicles of school structure development and (4) short biographies of cantonal education directors." - } - ], - "alternativeTitles": [ - { - "en": "Research infrastructure «Bildung in Zahlen»" - } - ], - "accessConditions": "open", - "dateCreated": "2010-09-01", - "datePublished": "2023-12-31", - "howToCite": "Lucien Criblez, Lea Hägi, Stefan Kessler, Christina Rothen and Thomas Ruoss (2024). Forschungsinfrastruktur «Bildung in Zahlen» [Datenbank]. DaSCH, https://ark.dasch.swiss/ark:/72163/1/0828.", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "en": "French", - "de": "Französisch", - "fr": "français" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - }, - { - "en": "Italian", - "de": "Italienisch", - "fr": "italien" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2024-03-01", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by/4.0/", - "text": "CC BY 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-000", - "roles": [ - "Project Leader (2010–2023), Editor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-001", - "roles": [ - "Project Manager (2021–2023), Editor, Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-002", - "roles": [ - "Project Manager (2019–2023), Editor, Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-003", - "roles": [ - "Project Manager (2014–2019), Editor, Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-004", - "roles": [ - "Project Manager (2010–2018), Editor, Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-005", - "roles": [ - "Project Member (2022–2023), Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-006", - "roles": [ - "Project Member (2020–2021), Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-007", - "roles": [ - "Project Member (2014–2019), Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-008", - "roles": [ - "Project Member (2010–2013), Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-009", - "roles": [ - "Project Member (2010–2013), Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-010", - "roles": [ - "Project Member (2023), Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-011", - "roles": [ - "Project Member (2017–2022), Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-012", - "roles": [ - "Project Member (2017–2020), Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-013", - "roles": [ - "Project Member (2020–2023), Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-014", - "roles": [ - "Project Member (2010–2013), Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-015", - "roles": [ - "Project Member (2020–2023), Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-016", - "roles": [ - "Project Member (2010–2013), Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-017", - "roles": [ - "Project Member (2010–2013), Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-018", - "roles": [ - "Project Member (2014–2017), Contributor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-019", - "roles": [ - "Project Member (2018–2022), Contributor" - ] - } - ], - "status": "Finished", - "title": "Forschungsinfrastruktur «Bildung in Zahlen»", - "typeOfData": [ - "Text" - ] + "en": "The infrastructure comprises (1) annotated historical long-term education statistics series (data on teachers, students in training, educational qualifications, school organization and school operations), (2) contextual documentation of this data, (3) graphics and chronicles of school structure development and (4) short biographies of cantonal education directors." } - ], - "persons": [ + ], + "alternativeTitles": [ + { + "en": "Research infrastructure «Bildung in Zahlen»" + } + ], + "accessConditions": "open", + "dateCreated": "2010-09-01", + "datePublished": "2023-12-31", + "howToCite": "Lucien Criblez, Lea Hägi, Stefan Kessler, Christina Rothen and Thomas Ruoss (2024). Forschungsinfrastruktur «Bildung in Zahlen» [Datenbank]. DaSCH, https://ark.dasch.swiss/ark:/72163/1/0828.", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-001", - "__type": "Person", - "__createdAt": "1710880825416898000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Hägi" - ], - "givenNames": [ - "Lea" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "en": "English", + "de": "Englisch", + "fr": "anglais" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-002", - "__type": "Person", - "__createdAt": "1710880825416939000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Kessler" - ], - "givenNames": [ - "Stefan" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-0298-4827", - "text": "ORCID URL: https://orcid.org/0000-0003-0298-4827" - } - ] + "en": "French", + "de": "Französisch", + "fr": "français" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-003", - "__type": "Person", - "__createdAt": "1710880825416999000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Rothen" - ], - "givenNames": [ - "Christina" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "de": "Deutsch", + "en": "German", + "fr": "allemand" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-004", - "__type": "Person", - "__createdAt": "1710880825417032000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Ruoss" - ], - "givenNames": [ - "Thomas" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-2261-907X", - "text": "ORCID URL: https://orcid.org/0000-0002-2261-907X" - } - ] + "en": "Italian", + "de": "Italienisch", + "fr": "italien" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2024-03-01", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by/4.0/", + "text": "CC BY 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-000", + "roles": [ + "Project Leader (2010–2023), Editor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-005", - "__type": "Person", - "__createdAt": "1710880825417086000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Bertschinger" - ], - "givenNames": [ - "Romina" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-001", + "roles": [ + "Project Manager (2021–2023), Editor, Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-006", - "__type": "Person", - "__createdAt": "1710880825417119000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Erb" - ], - "givenNames": [ - "Jeannine" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-002", + "roles": [ + "Project Manager (2019–2023), Editor, Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-007", - "__type": "Person", - "__createdAt": "1710880825417151000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Flury" - ], - "givenNames": [ - "Carmen" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-003", + "roles": [ + "Project Manager (2014–2019), Editor, Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-008", - "__type": "Person", - "__createdAt": "1710880825417183000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Gebauer" - ], - "givenNames": [ - "Susann" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-004", + "roles": [ + "Project Manager (2010–2018), Editor, Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-009", - "__type": "Person", - "__createdAt": "1710880825417215000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Giudici" - ], - "givenNames": [ - "Anja" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0001-8238-7859", - "text": "ORCID URL: https://orcid.org/0000-0001-8238-7859" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-005", + "roles": [ + "Project Member (2022–2023), Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-010", - "__type": "Person", - "__createdAt": "1710880825417271000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Haymoz" - ], - "givenNames": [ - "Nives" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-006", + "roles": [ + "Project Member (2020–2021), Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-011", - "__type": "Person", - "__createdAt": "1710880825417304000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Heinzer" - ], - "givenNames": [ - "Lars" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-007", + "roles": [ + "Project Member (2014–2019), Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-012", - "__type": "Person", - "__createdAt": "1710880825417336000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Lehner-Loosli" - ], - "givenNames": [ - "Tamara" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-008", + "roles": [ + "Project Member (2010–2013), Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-013", - "__type": "Person", - "__createdAt": "1710880825417368000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Mazzarella" - ], - "givenNames": [ - "Jennifer" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-009", + "roles": [ + "Project Member (2010–2013), Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-014", - "__type": "Person", - "__createdAt": "1710880825417399000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Merz" - ], - "givenNames": [ - "Nicole" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-010", + "roles": [ + "Project Member (2023), Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-015", - "__type": "Person", - "__createdAt": "1710880825417430000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Pfiffner" - ], - "givenNames": [ - "Nathalie" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-011", + "roles": [ + "Project Member (2017–2022), Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-016", - "__type": "Person", - "__createdAt": "1710880825417462000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Probst-Schellenberg" - ], - "givenNames": [ - "Mirjam" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-012", + "roles": [ + "Project Member (2017–2020), Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-017", - "__type": "Person", - "__createdAt": "1710880825417494000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Sibilia" - ], - "givenNames": [ - "Miriam" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-013", + "roles": [ + "Project Member (2020–2023), Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-018", - "__type": "Person", - "__createdAt": "1710880825417526000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Ullmann" - ], - "givenNames": [ - "Lara" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-014", + "roles": [ + "Project Member (2010–2013), Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-019", - "__type": "Person", - "__createdAt": "1710880825417558000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "de Vries" - ], - "givenNames": [ - "Raffaela", - "Christina" - ], - "jobTitles": [ - "Project staff" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-015", + "roles": [ + "Project Member (2020–2023), Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-000", - "__type": "Person", - "__createdAt": "1710880825417590000", - "__createdBy": "dsp-metadata-gui", - "email": "lcriblez@ife.uzh.ch", - "familyNames": [ - "Criblez" - ], - "givenNames": [ - "Lucien" - ], - "jobTitles": [ - "Professor Emeritus of Historical Research in Education and Governance of the Education System" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.ife.uzh.ch/de/institut/emeritiundemeritae/criblezlucien.html", - "text": "https://www.ife.uzh.ch/de/institut/emeritiundemeritae/criblezlucien.html" - } - ] - } - ], - "organizations": [ + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-016", + "roles": [ + "Project Member (2010–2013), Contributor" + ] + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-organization-001", - "__type": "Organization", - "__createdAt": "1710880825417676000", - "__createdBy": "dsp-metadata-gui", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://snf.ch/", - "text": "https://snf.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-017", + "roles": [ + "Project Member (2010–2013), Contributor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-organization-000", - "__type": "Organization", - "__createdAt": "1710880825417708000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Freiestrasse 36", - "postalCode": "8032", - "locality": "Zürich", - "country": "Switzerland" - }, - "name": "Universität Zürich, Institut für Erziehungswissenschaft", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.ife.uzh.ch/", - "text": "https://www.ife.uzh.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-018", + "roles": [ + "Project Member (2014–2017), Contributor" + ] + }, + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0828-person-019", + "roles": [ + "Project Member (2018–2022), Contributor" + ] } - ], - "grants": [ + ], + "status": "Finished", + "title": "Forschungsinfrastruktur «Bildung in Zahlen»", + "typeOfData": [ + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-001", + "__type": "Person", + "__createdAt": "1710880825416898000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Hägi" + ], + "givenNames": [ + "Lea" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-002", + "__type": "Person", + "__createdAt": "1710880825416939000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Kessler" + ], + "givenNames": [ + "Stefan" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-grant-000", - "__type": "Grant", - "__createdAt": "1710880825472607000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-001" - ], - "name": "Project funding", - "number": "130398", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/130398", - "text": "https://data.snf.ch/grants/grant/130398" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-0298-4827", + "text": "ORCID URL: https://orcid.org/0000-0003-0298-4827" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-003", + "__type": "Person", + "__createdAt": "1710880825416999000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Rothen" + ], + "givenNames": [ + "Christina" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-004", + "__type": "Person", + "__createdAt": "1710880825417032000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Ruoss" + ], + "givenNames": [ + "Thomas" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-grant-001", - "__type": "Grant", - "__createdAt": "1710880825472665000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-001" - ], - "name": "Project funding", - "number": "146239", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/146239", - "text": "https://data.snf.ch/grants/grant/146239" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-2261-907X", + "text": "ORCID URL: https://orcid.org/0000-0002-2261-907X" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-005", + "__type": "Person", + "__createdAt": "1710880825417086000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Bertschinger" + ], + "givenNames": [ + "Romina" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-006", + "__type": "Person", + "__createdAt": "1710880825417119000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Erb" + ], + "givenNames": [ + "Jeannine" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-007", + "__type": "Person", + "__createdAt": "1710880825417151000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Flury" + ], + "givenNames": [ + "Carmen" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-008", + "__type": "Person", + "__createdAt": "1710880825417183000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Gebauer" + ], + "givenNames": [ + "Susann" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-009", + "__type": "Person", + "__createdAt": "1710880825417215000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Giudici" + ], + "givenNames": [ + "Anja" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-grant-002", - "__type": "Grant", - "__createdAt": "1710880825472716000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-001" - ], - "name": "Research Infrastructure", - "number": "170407", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/170407", - "text": "https://data.snf.ch/grants/grant/170407" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0001-8238-7859", + "text": "ORCID URL: https://orcid.org/0000-0001-8238-7859" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-010", + "__type": "Person", + "__createdAt": "1710880825417271000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Haymoz" + ], + "givenNames": [ + "Nives" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-011", + "__type": "Person", + "__createdAt": "1710880825417304000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Heinzer" + ], + "givenNames": [ + "Lars" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-012", + "__type": "Person", + "__createdAt": "1710880825417336000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Lehner-Loosli" + ], + "givenNames": [ + "Tamara" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-013", + "__type": "Person", + "__createdAt": "1710880825417368000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Mazzarella" + ], + "givenNames": [ + "Jennifer" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-014", + "__type": "Person", + "__createdAt": "1710880825417399000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Merz" + ], + "givenNames": [ + "Nicole" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-015", + "__type": "Person", + "__createdAt": "1710880825417430000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Pfiffner" + ], + "givenNames": [ + "Nathalie" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-016", + "__type": "Person", + "__createdAt": "1710880825417462000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Probst-Schellenberg" + ], + "givenNames": [ + "Mirjam" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-017", + "__type": "Person", + "__createdAt": "1710880825417494000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Sibilia" + ], + "givenNames": [ + "Miriam" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-018", + "__type": "Person", + "__createdAt": "1710880825417526000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Ullmann" + ], + "givenNames": [ + "Lara" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-019", + "__type": "Person", + "__createdAt": "1710880825417558000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "de Vries" + ], + "givenNames": [ + "Raffaela", + "Christina" + ], + "jobTitles": [ + "Project staff" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-person-000", + "__type": "Person", + "__createdAt": "1710880825417590000", + "__createdBy": "dsp-metadata-gui", + "email": "lcriblez@ife.uzh.ch", + "familyNames": [ + "Criblez" + ], + "givenNames": [ + "Lucien" + ], + "jobTitles": [ + "Professor Emeritus of Historical Research in Education and Governance of the Education System" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0828-grant-003", - "__type": "Grant", - "__createdAt": "1710880825472738000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0828-organization-001" - ], - "name": "Research Infrastructure", - "number": "198049", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/198049", - "text": "https://data.snf.ch/grants/grant/198049" - } + "__type": "URL", + "type": "URL", + "url": "https://www.ife.uzh.ch/de/institut/emeritiundemeritae/criblezlucien.html", + "text": "https://www.ife.uzh.ch/de/institut/emeritiundemeritae/criblezlucien.html" } - ] -} + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-organization-001", + "__type": "Organization", + "__createdAt": "1710880825417676000", + "__createdBy": "dsp-metadata-gui", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://snf.ch/", + "text": "https://snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-organization-000", + "__type": "Organization", + "__createdAt": "1710880825417708000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Freiestrasse 36", + "postalCode": "8032", + "locality": "Zürich", + "country": "Switzerland" + }, + "name": "Universität Zürich, Institut für Erziehungswissenschaft", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.ife.uzh.ch/", + "text": "https://www.ife.uzh.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-grant-000", + "__type": "Grant", + "__createdAt": "1710880825472607000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-001" + ], + "name": "Project funding", + "number": "130398", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/130398", + "text": "https://data.snf.ch/grants/grant/130398" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-grant-001", + "__type": "Grant", + "__createdAt": "1710880825472665000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-001" + ], + "name": "Project funding", + "number": "146239", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/146239", + "text": "https://data.snf.ch/grants/grant/146239" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-grant-002", + "__type": "Grant", + "__createdAt": "1710880825472716000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-001" + ], + "name": "Research Infrastructure", + "number": "170407", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/170407", + "text": "https://data.snf.ch/grants/grant/170407" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0828-grant-003", + "__type": "Grant", + "__createdAt": "1710880825472738000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0828-organization-001" + ], + "name": "Research Infrastructure", + "number": "198049", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/198049", + "text": "https://data.snf.ch/grants/grant/198049" + } + } + ] +} \ No newline at end of file diff --git a/data/json/bruno-manser.json b/data/json/bruno-manser.json index b7b30fdd..dbaf3d11 100644 --- a/data/json/bruno-manser.json +++ b/data/json/bruno-manser.json @@ -7,7 +7,9 @@ "__createdBy": "dsp-metadata-gui", "howToCite": "Bruno Manser/Bruno Manser Fonds", "teaserText": "Bruno Manser has left a variety of media in which he documented the nomadic life of the Penan. The project shows and annotates these documents.", - "datasets": ["http://ns.dasch.swiss/repository#dsp-0813-dataset-001"], + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0813-dataset-001" + ], "alternativeNames": [ { "en": "Annotating Bruno Manser's Diaries" @@ -30,7 +32,9 @@ "text": "Cultural anthropology" } ], - "funders": ["http://ns.dasch.swiss/repository#dsp-0813-organization-001"], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0813-organization-001" + ], "keywords": [ { "en": "Bruno Manser" @@ -82,7 +86,20 @@ "en": "1984 - 2000", "fr": "1984 - 2000" } - ] + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.dasch.swiss/bmf/", + "text": "Discover Project Data" + }, + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://www.bmf.ch/", + "text": "External Project Website" + }, + "status": "ongoing" }, "datasets": [ { @@ -128,22 +145,32 @@ { "__type": "Attribution", "agent": "http://ns.dasch.swiss/repository#dsp-0813-person-001", - "roles": ["Projektleiter"] + "roles": [ + "Projektleiter" + ] }, { "__type": "Attribution", "agent": "http://ns.dasch.swiss/repository#dsp-0813-person-002", - "roles": ["Author"] + "roles": [ + "Author" + ] }, { "__type": "Attribution", "agent": "http://ns.dasch.swiss/repository#dsp-0813-organization-001", - "roles": ["Editor"] + "roles": [ + "Editor" + ] } ], "status": "Ongoing", "title": "Annotating Media of Bruno Manser", - "typeOfData": ["Image", "Video", "Text"] + "typeOfData": [ + "Image", + "Video", + "Text" + ] } ], "persons": [ @@ -153,9 +180,15 @@ "__createdAt": "1630601338954985000", "__createdBy": "dsp-metadata-gui", "email": "erwin.zbinden@bmf.ch", - "familyNames": ["Zbinden"], - "givenNames": ["Erwin"], - "jobTitles": ["Leiter Dokumentationsstelle"], + "familyNames": [ + "Zbinden" + ], + "givenNames": [ + "Erwin" + ], + "jobTitles": [ + "Leiter Dokumentationsstelle" + ], "affiliation": [ "http://ns.dasch.swiss/repository#dsp-0813-organization-001" ] @@ -165,9 +198,15 @@ "__type": "Person", "__createdAt": "1630601338955102000", "__createdBy": "dsp-metadata-gui", - "familyNames": ["Manser"], - "givenNames": ["Bruno"], - "jobTitles": ["Creator"], + "familyNames": [ + "Manser" + ], + "givenNames": [ + "Bruno" + ], + "jobTitles": [ + "Creator" + ], "affiliation": [ "http://ns.dasch.swiss/repository#dsp-0813-organization-001" ] @@ -202,7 +241,9 @@ "__type": "Grant", "__createdAt": "1630601338985837000", "__createdBy": "dsp-metadata-gui", - "funders": ["http://ns.dasch.swiss/repository#dsp-0813-organization-001"] + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0813-organization-001" + ] } ] -} +} \ No newline at end of file diff --git a/data/json/cache.json b/data/json/cache.json index 67c8d693..12329160 100644 --- a/data/json/cache.json +++ b/data/json/cache.json @@ -1,505 +1,506 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-project", - "__type": "Project", - "__createdAt": "1630601310187914000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Gegen|Wissen, intercom: Zürich (2020)", - "teaserText": "cache is a hybrid publication tool for research groups in the humanities.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-082B-dataset-001" - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-082B-organization-002", - "description": { - "en": "cache is a hybrid publication tool for research groups in the humanities." - }, - "disciplines": [ - { - "de": "10301 Allgemeine Geschichte (ohne Ur- und Frühgeschichte)" - }, - { - "de": "10302 Schweizer Geschichte" - }, - { - "de": "10400 Ethnologie, Sozial- und Humangeographie" - }, - { - "de": "10600 Soziologie, Soziale Arbeit, Politikwissenschaften, Medien- und Kommunikationswissenschaften, Gesundheit" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-082B-organization-003" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-082B-grant-001" - ], - "keywords": [ - { - "en": "academic publishing" - }, - { - "en": "humanities" - } - ], - "name": "cache", - "publications": [ - { - "text": "Gegen|Wissen (cache 01)" - } - ], - "shortcode": "082B", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/", - "text": "Countries" - } - ], - "startDate": "2018-12-01", - "temporalCoverage": [ - { - "en": "16th Century" - }, - { - "en": "17th Century" - }, - { - "en": "18th Century" - }, - { - "en": "19th Century" - }, - { - "en": "20th Century" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/082B", - "text": "Discover Project Data" - }, - "secondaryURL": { - "__type": "URL", - "type": "URL", - "url": "http://www.cache.ch", - "text": "External Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-project", + "__type": "Project", + "__createdAt": "1630601310187914000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Gegen|Wissen, intercom: Zürich (2020)", + "teaserText": "cache is a hybrid publication tool for research groups in the humanities.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-082B-dataset-001" + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-082B-organization-002", + "description": { + "en": "cache is a hybrid publication tool for research groups in the humanities." + }, + "disciplines": [ + { + "de": "10301 Allgemeine Geschichte (ohne Ur- und Frühgeschichte)" + }, + { + "de": "10302 Schweizer Geschichte" + }, + { + "de": "10400 Ethnologie, Sozial- und Humangeographie" + }, + { + "de": "10600 Soziologie, Soziale Arbeit, Politikwissenschaften, Medien- und Kommunikationswissenschaften, Gesundheit" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-082B-organization-003" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-082B-grant-001" + ], + "keywords": [ + { + "en": "academic publishing" + }, + { + "en": "humanities" + } + ], + "name": "cache", + "publications": [ + { + "text": "Gegen|Wissen (cache 01)" + } + ], + "shortcode": "082B", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/", + "text": "Countries" + } + ], + "startDate": "2018-12-01", + "temporalCoverage": [ + { + "en": "16th Century" + }, + { + "en": "17th Century" + }, + { + "en": "18th Century" + }, + { + "en": "19th Century" + }, + { + "en": "20th Century" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/082B", + "text": "Discover Project Data" + }, + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "http://www.cache.ch", + "text": "External Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-dataset-001", + "__type": "Dataset", + "__createdAt": "1630601315059030000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-dataset-001", - "__type": "Dataset", - "__createdAt": "1630601315059030000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "Genetic engineering, acid rain, nuclear accidents, ozone depletion, computerization — in the years around 1980, science moved center-stage as a socio-political quandary. First and foremost, it were the new social movements that cultivated critiques of science and technology; but soon enough, the desire for an alternative science, or a “counter-knowledge”, diffused into the broader realms of politics, economics and, not least, establishment science. What was this “counter\"-science? Where did it succeed? Where did it fail? And why is this relevant again today?" - } - ], - "accessConditions": "open", - "datePublished": "2020-10-01", - "howToCite": "Gegen|Wissen, intercom: Zürich (2020)", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "URL", - "url": "https://creativecommons.org/licenses/by-nc-nd/4.0/", - "text": "CC BY-NC-ND 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-001", - "roles": [ - "project lead" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-002", - "roles": [ - "editorial management" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-003", - "roles": [ - "scientific direction" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-004", - "roles": [ - "author" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-005", - "roles": [ - "author" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-006", - "roles": [ - "author" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-007", - "roles": [ - "author" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-008", - "roles": [ - "author" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-009", - "roles": [ - "author" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-010", - "roles": [ - "author" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-011", - "roles": [ - "author" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-012", - "roles": [ - "author" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082B-organization-002", - "roles": [ - "publisher" - ] - } - ], - "status": "Finished", - "title": "Gegen|Wissen (cache 01)", - "typeOfData": [ - "Text" - ] + "en": "Genetic engineering, acid rain, nuclear accidents, ozone depletion, computerization — in the years around 1980, science moved center-stage as a socio-political quandary. First and foremost, it were the new social movements that cultivated critiques of science and technology; but soon enough, the desire for an alternative science, or a “counter-knowledge”, diffused into the broader realms of politics, economics and, not least, establishment science. What was this “counter\"-science? Where did it succeed? Where did it fail? And why is this relevant again today?" } - ], - "persons": [ + ], + "accessConditions": "open", + "datePublished": "2020-10-01", + "howToCite": "Gegen|Wissen, intercom: Zürich (2020)", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-001", - "__type": "Person", - "__createdAt": "1630601315514148000", - "__createdBy": "dsp-metadata-gui", - "email": "nils.guettler@wiss.gess.ethz.ch", - "familyNames": [ - "Güttler" - ], - "givenNames": [ - "Nils" - ], - "jobTitles": [ - "Historian" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082B-organization-001" - ] + "en": "English", + "de": "Englisch", + "fr": "anglais" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-002", - "__type": "Person", - "__createdAt": "1630601315514290000", - "__createdBy": "dsp-metadata-gui", - "email": "niki.rhyner@wiss.gess.ethz.ch", - "familyNames": [ - "Rhyner" - ], - "givenNames": [ - "Niki" - ], - "jobTitles": [ - "Historian" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082B-organization-001" - ] - }, + "de": "Deutsch", + "en": "German", + "fr": "allemand" + } + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-003", - "__type": "Person", - "__createdAt": "1630601315514424000", - "__createdBy": "dsp-metadata-gui", - "email": "mxmlnstdlr@gmail.com", - "familyNames": [ - "Stadler" - ], - "givenNames": [ - "Max" - ], - "jobTitles": [ - "Historian" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082B-organization-001" - ] - }, + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "URL", + "url": "https://creativecommons.org/licenses/by-nc-nd/4.0/", + "text": "CC BY-NC-ND 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-004", - "__type": "Person", - "__createdAt": "1630601315514558000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Grote" - ], - "givenNames": [ - "Mathias" - ], - "jobTitles": [ - "Historian" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082B-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-001", + "roles": [ + "project lead" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-005", - "__type": "Person", - "__createdAt": "1630601315514665000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Grütter" - ], - "givenNames": [ - "Fabian" - ], - "jobTitles": [ - "Historian" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082B-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-002", + "roles": [ + "editorial management" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-006", - "__type": "Person", - "__createdAt": "1630601315514773000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Scheidegger" - ], - "givenNames": [ - "Tobias" - ], - "jobTitles": [ - "Historian" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082B-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-003", + "roles": [ + "scientific direction" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-007", - "__type": "Person", - "__createdAt": "1630601315514879000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Schlünder" - ], - "givenNames": [ - "Martina" - ], - "jobTitles": [ - "Historian" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082B-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-004", + "roles": [ + "author" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-008", - "__type": "Person", - "__createdAt": "1630601315514986000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Schmidt" - ], - "givenNames": [ - "Anna Maria" - ], - "jobTitles": [ - "Historian" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082B-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-005", + "roles": [ + "author" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-009", - "__type": "Person", - "__createdAt": "1630601315515090000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Schmidt" - ], - "givenNames": [ - "Susanne" - ], - "jobTitles": [ - "Historian" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082B-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-006", + "roles": [ + "author" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-010", - "__type": "Person", - "__createdAt": "1630601315515195000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "von Schwerin" - ], - "givenNames": [ - "Alexander" - ], - "jobTitles": [ - "Historian" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082B-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-007", + "roles": [ + "author" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-011", - "__type": "Person", - "__createdAt": "1630601315515300000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Wulz" - ], - "givenNames": [ - "Monika" - ], - "jobTitles": [ - "Historian" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082B-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-008", + "roles": [ + "author" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-012", - "__type": "Person", - "__createdAt": "1630601315515405000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Zberg" - ], - "givenNames": [ - "Nadine" - ], - "jobTitles": [ - "Historian" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082B-organization-001" - ] - } - ], - "organizations": [ + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-009", + "roles": [ + "author" + ] + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-organization-002", - "__type": "Organization", - "__createdAt": "1630601315515565000", - "__createdBy": "dsp-metadata-gui", - "email": "info@intercomverlag.ch", - "name": "intercom Verlag", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.intercomverlag.ch", - "text": "www.intercomverlag.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-010", + "roles": [ + "author" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-organization-003", - "__type": "Organization", - "__createdAt": "1630601315515712000", - "__createdBy": "dsp-metadata-gui", - "name": "Swiss National Science Foundation (SNSF)" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-011", + "roles": [ + "author" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-organization-001", - "__type": "Organization", - "__createdAt": "1630601315515761000", - "__createdBy": "dsp-metadata-gui", - "name": "ETH Zurich", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.ethz.ch", - "text": "www.ethz.ch" - } - } - ], - "grants": [ + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082B-person-012", + "roles": [ + "author" + ] + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082B-grant-001", - "__type": "Grant", - "__createdAt": "1630601315515909000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-082B-organization-003" - ], - "name": "Digital Lives", - "number": "183057", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/183057", - "text": "https://data.snf.ch/grants/grant/183057" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082B-organization-002", + "roles": [ + "publisher" + ] } - ] -} + ], + "status": "Finished", + "title": "Gegen|Wissen (cache 01)", + "typeOfData": [ + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-001", + "__type": "Person", + "__createdAt": "1630601315514148000", + "__createdBy": "dsp-metadata-gui", + "email": "nils.guettler@wiss.gess.ethz.ch", + "familyNames": [ + "Güttler" + ], + "givenNames": [ + "Nils" + ], + "jobTitles": [ + "Historian" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082B-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-002", + "__type": "Person", + "__createdAt": "1630601315514290000", + "__createdBy": "dsp-metadata-gui", + "email": "niki.rhyner@wiss.gess.ethz.ch", + "familyNames": [ + "Rhyner" + ], + "givenNames": [ + "Niki" + ], + "jobTitles": [ + "Historian" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082B-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-003", + "__type": "Person", + "__createdAt": "1630601315514424000", + "__createdBy": "dsp-metadata-gui", + "email": "mxmlnstdlr@gmail.com", + "familyNames": [ + "Stadler" + ], + "givenNames": [ + "Max" + ], + "jobTitles": [ + "Historian" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082B-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-004", + "__type": "Person", + "__createdAt": "1630601315514558000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Grote" + ], + "givenNames": [ + "Mathias" + ], + "jobTitles": [ + "Historian" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082B-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-005", + "__type": "Person", + "__createdAt": "1630601315514665000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Grütter" + ], + "givenNames": [ + "Fabian" + ], + "jobTitles": [ + "Historian" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082B-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-006", + "__type": "Person", + "__createdAt": "1630601315514773000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Scheidegger" + ], + "givenNames": [ + "Tobias" + ], + "jobTitles": [ + "Historian" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082B-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-007", + "__type": "Person", + "__createdAt": "1630601315514879000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Schlünder" + ], + "givenNames": [ + "Martina" + ], + "jobTitles": [ + "Historian" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082B-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-008", + "__type": "Person", + "__createdAt": "1630601315514986000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Schmidt" + ], + "givenNames": [ + "Anna Maria" + ], + "jobTitles": [ + "Historian" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082B-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-009", + "__type": "Person", + "__createdAt": "1630601315515090000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Schmidt" + ], + "givenNames": [ + "Susanne" + ], + "jobTitles": [ + "Historian" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082B-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-010", + "__type": "Person", + "__createdAt": "1630601315515195000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "von Schwerin" + ], + "givenNames": [ + "Alexander" + ], + "jobTitles": [ + "Historian" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082B-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-011", + "__type": "Person", + "__createdAt": "1630601315515300000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Wulz" + ], + "givenNames": [ + "Monika" + ], + "jobTitles": [ + "Historian" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082B-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-person-012", + "__type": "Person", + "__createdAt": "1630601315515405000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Zberg" + ], + "givenNames": [ + "Nadine" + ], + "jobTitles": [ + "Historian" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082B-organization-001" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-organization-002", + "__type": "Organization", + "__createdAt": "1630601315515565000", + "__createdBy": "dsp-metadata-gui", + "email": "info@intercomverlag.ch", + "name": "intercom Verlag", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.intercomverlag.ch", + "text": "www.intercomverlag.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-organization-003", + "__type": "Organization", + "__createdAt": "1630601315515712000", + "__createdBy": "dsp-metadata-gui", + "name": "Swiss National Science Foundation (SNSF)" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-organization-001", + "__type": "Organization", + "__createdAt": "1630601315515761000", + "__createdBy": "dsp-metadata-gui", + "name": "ETH Zurich", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.ethz.ch", + "text": "www.ethz.ch" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082B-grant-001", + "__type": "Grant", + "__createdAt": "1630601315515909000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-082B-organization-003" + ], + "name": "Digital Lives", + "number": "183057", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/183057", + "text": "https://data.snf.ch/grants/grant/183057" + } + } + ] +} \ No newline at end of file diff --git a/data/json/commode.json b/data/json/commode.json index 14825e8d..f9d3c22e 100644 --- a/data/json/commode.json +++ b/data/json/commode.json @@ -1,189 +1,205 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-083B-project", - "__type": "Project", - "__createdAt": "1643071264658547000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Canonicity, Obscenity, and the Making of Modern Chaucer (COMMode): An Investigation of the Transmission and Audiences of The Canterbury Tales from 1700 to 2020", - "teaserText": "This project will recover the untold history of how Chaucer became both an icon of literary fame and an icon of obscenity.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-083B-dataset-000" - ], - "description": { - "en": "More than 600 years after he lived and wrote, Chaucer continues to play an important role in how Anglophone culture determines its standards of censorship and toleration. His association with naughty good humour is so widespread that the word ‘Chaucerian’ may be used in popular discourse as a synonym for ‘bawdy in an acceptably Olde Englisshe way’. But how did this come to be, and how does this idea of Chaucer as a 'bawdy' poet sit alongside his canonical status? This project will recover the untold history of how Chaucer became both an icon of literary fame and an icon of obscenity by examining the evolution of his most famous text alongside the evolution of his reputation between the publication of John Dryden's Fables Ancient & Modern in 1700 and the present day. By uncovering this history, the proposed project aims to achieve a better understanding not only of Chaucerian reception throughout history, but of the relationship between literature and cultural determinations of what is permissible in language and in art." - }, - "disciplines": [ - { - "en": "10501 German and English languages and literature" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-083B-organization-002" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-083B-grant-001" - ], - "endDate": "2024-12-31", - "keywords": [ - { - "en": "Adaptation" - }, - { - "en": "Canonicity" - }, - { - "en": "Censorship" - }, - { - "en": "Chaucer" - }, - { - "en": "History of the book" - }, - { - "en": "Medievalism" - }, - { - "en": "Modernization" - }, - { - "en": "Obscenity" - }, - { - "en": "Reception history" - }, - { - "en": "Translation" - } - ], - "name": "Canonicity, Obscenity, and the Making of Modern Chaucer (COMMode): An Investigation of the Transmission and Audiences of The Canterbury Tales from 1700 to 2020", - "shortcode": "083B", - "startDate": "2020-01-01" - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-083B-project", + "__type": "Project", + "__createdAt": "1643071264658547000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Canonicity, Obscenity, and the Making of Modern Chaucer (COMMode): An Investigation of the Transmission and Audiences of The Canterbury Tales from 1700 to 2020", + "teaserText": "This project will recover the untold history of how Chaucer became both an icon of literary fame and an icon of obscenity.", "datasets": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-083B-dataset-000", - "__type": "Dataset", - "__createdAt": "1643071265449797000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "More than 600 years after he lived and wrote, Chaucer continues to play an important role in how Anglophone culture determines its standards of censorship and toleration. His association with naughty good humour is so widespread that the word ‘Chaucerian’ may be used in popular discourse as a synonym for ‘bawdy in an acceptably Olde Englisshe way’. But how did this come to be, and how does this idea of Chaucer as a 'bawdy' poet sit alongside his canonical status? This project will recover the untold history of how Chaucer became both an icon of literary fame and an icon of obscenity by examining the evolution of his most famous text alongside the evolution of his reputation between the publication of John Dryden's Fables Ancient & Modern in 1700 and the present day. By uncovering this history, the proposed project aims to achieve a better understanding not only of Chaucerian reception throughout history, but of the relationship between literature and cultural determinations of what is permissible in language and in art." - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-083B-person-000", - "roles": [ - "Applicant" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-083B-person-001", - "roles": [ - "Employee" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-083B-person-002", - "roles": [ - "Employee" - ] - } - ], - "title": "Canonicity, Obscenity, and the Making of Modern Chaucer (COMMode): An Investigation of the Transmission and Audiences of The Canterbury Tales from 1700 to 2020" - } + "http://ns.dasch.swiss/repository#dsp-083B-dataset-000" + ], + "description": { + "en": "More than 600 years after he lived and wrote, Chaucer continues to play an important role in how Anglophone culture determines its standards of censorship and toleration. His association with naughty good humour is so widespread that the word ‘Chaucerian’ may be used in popular discourse as a synonym for ‘bawdy in an acceptably Olde Englisshe way’. But how did this come to be, and how does this idea of Chaucer as a 'bawdy' poet sit alongside his canonical status? This project will recover the untold history of how Chaucer became both an icon of literary fame and an icon of obscenity by examining the evolution of his most famous text alongside the evolution of his reputation between the publication of John Dryden's Fables Ancient & Modern in 1700 and the present day. By uncovering this history, the proposed project aims to achieve a better understanding not only of Chaucerian reception throughout history, but of the relationship between literature and cultural determinations of what is permissible in language and in art." + }, + "disciplines": [ + { + "en": "10501 German and English languages and literature" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-083B-organization-002" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-083B-grant-001" + ], + "endDate": "2024-12-31", + "keywords": [ + { + "en": "Adaptation" + }, + { + "en": "Canonicity" + }, + { + "en": "Censorship" + }, + { + "en": "Chaucer" + }, + { + "en": "History of the book" + }, + { + "en": "Medievalism" + }, + { + "en": "Modernization" + }, + { + "en": "Obscenity" + }, + { + "en": "Reception history" + }, + { + "en": "Translation" + } + ], + "name": "Canonicity, Obscenity, and the Making of Modern Chaucer (COMMode): An Investigation of the Transmission and Audiences of The Canterbury Tales from 1700 to 2020", + "shortcode": "083B", + "startDate": "2020-01-01", + "temporalCoverage": [ + { + "en": "1700 to 2020" + } ], - "persons": [ + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083B-dataset-000", + "__type": "Dataset", + "__createdAt": "1643071265449797000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-083B-person-000", - "__type": "Person", - "__createdAt": "1643071265492171000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Flannery" - ], - "givenNames": [ - "Mary" - ], - "jobTitles": [ - "Prof. Dr." - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-083B-organization-001" - ] - }, + "en": "More than 600 years after he lived and wrote, Chaucer continues to play an important role in how Anglophone culture determines its standards of censorship and toleration. His association with naughty good humour is so widespread that the word ‘Chaucerian’ may be used in popular discourse as a synonym for ‘bawdy in an acceptably Olde Englisshe way’. But how did this come to be, and how does this idea of Chaucer as a 'bawdy' poet sit alongside his canonical status? This project will recover the untold history of how Chaucer became both an icon of literary fame and an icon of obscenity by examining the evolution of his most famous text alongside the evolution of his reputation between the publication of John Dryden's Fables Ancient & Modern in 1700 and the present day. By uncovering this history, the proposed project aims to achieve a better understanding not only of Chaucerian reception throughout history, but of the relationship between literature and cultural determinations of what is permissible in language and in art." + } + ], + "howToCite": "Canonicity, Obscenity, and the Making of Modern Chaucer (COMMode): An Investigation of the Transmission and Audiences of The Canterbury Tales from 1700 to 2020", + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-083B-person-001", - "__type": "Person", - "__createdAt": "1643071265492231000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Brown" - ], - "givenNames": [ - "Amy" - ], - "jobTitles": [ - "Dr." - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-083B-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-083B-person-000", + "roles": [ + "Applicant" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-083B-person-002", - "__type": "Person", - "__createdAt": "1643071265492287000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Haas Curtis" - ], - "givenNames": [ - "Kristen" - ] - } - ], - "organizations": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-083B-organization-001", - "__type": "Organization", - "__createdAt": "1643071265492344000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Länggassstrasse 49", - "postalCode": "3012", - "locality": "Bern", - "country": "Switzerland" - }, - "name": "Department of English" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-083B-person-001", + "roles": [ + "Employee" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-083B-organization-002", - "__type": "Organization", - "name": "Swiss National Science Foundation (SNSF)" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-083B-person-002", + "roles": [ + "Employee" + ] } - ], - "grants": [ + ], + "title": "Canonicity, Obscenity, and the Making of Modern Chaucer (COMMode): An Investigation of the Transmission and Audiences of The Canterbury Tales from 1700 to 2020", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-083B-grant-001", - "__type": "Grant", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-083B-organization-002" - ], - "name": "Eccellenza", - "number": "181097", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/181097", - "text": "https://data.snf.ch/grants/grant/181097" - } + "en": "English" } - ] -} + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083B-person-000", + "__type": "Person", + "__createdAt": "1643071265492171000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Flannery" + ], + "givenNames": [ + "Mary" + ], + "jobTitles": [ + "Prof. Dr." + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-083B-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083B-person-001", + "__type": "Person", + "__createdAt": "1643071265492231000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Brown" + ], + "givenNames": [ + "Amy" + ], + "jobTitles": [ + "Dr." + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-083B-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083B-person-002", + "__type": "Person", + "__createdAt": "1643071265492287000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Haas Curtis" + ], + "givenNames": [ + "Kristen" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083B-organization-001", + "__type": "Organization", + "__createdAt": "1643071265492344000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Länggassstrasse 49", + "postalCode": "3012", + "locality": "Bern", + "country": "Switzerland" + }, + "name": "Department of English" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083B-organization-002", + "__type": "Organization", + "__createdAt": "1643071265492344000", + "__createdBy": "dsp-metadata-gui", + "name": "Swiss National Science Foundation (SNSF)" + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083B-grant-001", + "__type": "Grant", + "__createdAt": "1643071265492344000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-083B-organization-002" + ], + "name": "Eccellenza", + "number": "181097", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/181097", + "text": "https://data.snf.ch/grants/grant/181097" + } + } + ] +} \ No newline at end of file diff --git a/data/json/dasch.json b/data/json/dasch.json index 4849c4ed..e47254f5 100644 --- a/data/json/dasch.json +++ b/data/json/dasch.json @@ -1,223 +1,223 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0810-project", - "__type": "Project", - "__createdAt": "1683104677473432000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "DaSCH (2023). Swiss National Data and Service Center for the Humanities [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0810", - "teaserText": "This project contains material about DaSCH and events organised by DaSCH. All documents are made available in the original language of the presentations.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0810-dataset-000" - ], - "alternativeNames": [ - { - "en": "DaSCH" - } - ], - "description": { - "en": "This project contains material about DaSCH and events organised by DaSCH. All documents are made available in the original language of the presentations." - }, - "disciplines": [ - { - "en": "Humanities" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0810-organization-000" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0810-grant-000" - ], - "keywords": [ - { - "en": "DaSCH" - }, - { - "en": "DaSCHCon" - }, - { - "en": "Documents" - }, - { - "en": "Events" - }, - { - "en": "Posters" - }, - { - "en": "Reports" - }, - { - "en": "Slides" - }, - { - "en": "Tutorials" - }, - { - "en": "Videos" - }, - { - "en": "Visuals" - } - ], - "name": "DaSCH – Swiss National Data and Service Center for the Humanities", - "shortcode": "0810", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/switzerland.html", - "text": "Switzerland" - } - ], - "startDate": "2021-01-01", - "temporalCoverage": [ - { - "en": "21st century" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/v0B3nQt2Q-6aZiFGRe88KQ", - "text": "Discover Project Data" - - }, - "secondaryURL": { - "__type": "URL", - "type": "URL", - "url": "https://www.dasch.swiss/", - "text": "Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0810-project", + "__type": "Project", + "__createdAt": "1683104677473432000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "DaSCH (2023). Swiss National Data and Service Center for the Humanities [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0810", + "teaserText": "This project contains material about DaSCH and events organised by DaSCH. All documents are made available in the original language of the presentations.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0810-dataset-000" + ], + "alternativeNames": [ + { + "en": "DaSCH" + } + ], + "description": { + "en": "This project contains material about DaSCH and events organised by DaSCH. All documents are made available in the original language of the presentations." + }, + "disciplines": [ + { + "en": "Humanities" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0810-organization-000" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0810-grant-000" + ], + "keywords": [ + { + "en": "DaSCH" + }, + { + "en": "DaSCHCon" + }, + { + "en": "Documents" + }, + { + "en": "Events" + }, + { + "en": "Posters" + }, + { + "en": "Reports" + }, + { + "en": "Slides" + }, + { + "en": "Tutorials" + }, + { + "en": "Videos" + }, + { + "en": "Visuals" + } + ], + "name": "DaSCH – Swiss National Data and Service Center for the Humanities", + "shortcode": "0810", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/switzerland.html", + "text": "Switzerland" + } + ], + "startDate": "2021-01-01", + "temporalCoverage": [ + { + "en": "21st century" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/v0B3nQt2Q-6aZiFGRe88KQ", + "text": "Discover Project Data" + }, + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://www.dasch.swiss/", + "text": "Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0810-dataset-000", + "__type": "Dataset", + "__createdAt": "1683104679793121000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0810-dataset-000", - "__type": "Dataset", - "__createdAt": "1683104679793121000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "This dataset contains material (visuals, slides, posters, videos, tutorials, reports) prepared by members of DaSCH as well as material contributed by researchers at events organised by DaSCH." - } - ], - "alternativeTitles": [ - { - "en": "DaSCH" - } - ], - "accessConditions": "open", - "dateCreated": "2023-05-01", - "howToCite": "DaSCH (2023). Swiss National Data and Service Center for the Humanities [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0810", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "en": "French", - "de": "Französisch", - "fr": "français" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2023-05-03", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by/4.0/", - "text": "CC BY 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0810-organization-001", - "roles": [ - "Creator" - ] - } - ], - "status": "Ongoing", - "title": "DaSCH – Swiss National Data and Service Center for the Humanities", - "typeOfData": [ - "Audio", - "Image", - "Video", - "Text" - ] + "en": "This dataset contains material (visuals, slides, posters, videos, tutorials, reports) prepared by members of DaSCH as well as material contributed by researchers at events organised by DaSCH." } - ], - "organizations": [ + ], + "alternativeTitles": [ + { + "en": "DaSCH" + } + ], + "accessConditions": "open", + "dateCreated": "2023-05-01", + "howToCite": "DaSCH (2023). Swiss National Data and Service Center for the Humanities [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0810", + "languages": [ + { + "en": "English", + "de": "Englisch", + "fr": "anglais" + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0810-organization-001", - "__type": "Organization", - "__createdAt": "1683104680084167000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Gewerbestrasse 24", - "postalCode": "4123", - "locality": "Allschwil", - "country": "Switzerland" - }, - "email": "info@dasch.swiss", - "name": "DaSCH - Swiss National Data and Service Center for the Humanities", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.dasch.swiss/", - "text": "https://www.dasch.swiss/" - } + "en": "French", + "de": "Französisch", + "fr": "français" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0810-organization-000", - "__type": "Organization", - "__createdAt": "1683104680460976000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3", - "postalCode": "3001", - "locality": "Berne", - "country": "Switzerland" - }, - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.snf.ch", - "text": "https://www.snf.ch" - } + "de": "Deutsch", + "en": "German", + "fr": "allemand" } - ], - "grants": [ + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0810-grant-000", - "__type": "Grant", - "__createdAt": "1683104680602203000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0810-organization-000" - ], - "name": "Research Infrastructure", - "number": "189588", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/189588", - "text": "https://data.snf.ch/grants/grant/189588" - } + "__type": "License", + "date": "2023-05-03", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by/4.0/", + "text": "CC BY 4.0" + } } - ] -} + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0810-organization-001", + "roles": [ + "Creator" + ] + } + ], + "status": "Ongoing", + "title": "DaSCH – Swiss National Data and Service Center for the Humanities", + "typeOfData": [ + "Audio", + "Image", + "Video", + "Text" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0810-organization-001", + "__type": "Organization", + "__createdAt": "1683104680084167000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Gewerbestrasse 24", + "postalCode": "4123", + "locality": "Allschwil", + "country": "Switzerland" + }, + "email": "info@dasch.swiss", + "name": "DaSCH - Swiss National Data and Service Center for the Humanities", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.dasch.swiss/", + "text": "https://www.dasch.swiss/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0810-organization-000", + "__type": "Organization", + "__createdAt": "1683104680460976000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3", + "postalCode": "3001", + "locality": "Berne", + "country": "Switzerland" + }, + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.snf.ch", + "text": "https://www.snf.ch" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0810-grant-000", + "__type": "Grant", + "__createdAt": "1683104680602203000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0810-organization-000" + ], + "name": "Research Infrastructure", + "number": "189588", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/189588", + "text": "https://data.snf.ch/grants/grant/189588" + } + } + ] +} \ No newline at end of file diff --git a/data/json/decoso.json b/data/json/decoso.json index b515248f..8dcfddd5 100644 --- a/data/json/decoso.json +++ b/data/json/decoso.json @@ -1,296 +1,316 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-082C-project", - "__type": "Project", - "__createdAt": "1637624127333234000", - "__createdBy": "dsp-metadata-gui", - "teaserText": "It aims to apply decolonial methods and to mobilize practice-based approaches to engage in the critical analysis of case studies of art practices from socialist geographies of the Cold War period.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-082C-dataset-000" - ], - "description": { - "en": "Artistic projects from state-socialisms in Europe, e.g., the GDR (1949-1990), under conditions of the Global Cold War often remain subject to be simplified in binary patterns, that means, type-casting artists (or architects, writers…) from “the East” as either dissidents (“the underground artist”) or conformists (“the State artist”). Situated in the field of Visual Cultures, the Research Project aims to apply decolonial methods and to mobilize practice-based approaches to engage in the critical analysis of case studies of art practices from socialist geographies of the Cold War period from Europe with a specific focus on operational concepts of cybernetics and internationalism for the contemporary condition.\nZum einen haben akademische Forschungen über den Globalen Kalten Krieg, zur europäischen Nachkriegsgeschichte und das Studium von Internationalen Beziehungen in Europa Szenarien zum Kalten Krieg vor allem aus einer “westlichen” Perspektive analysiert, oft ohne sich um den Bereich der Kunst zu kümmern. Eine europäische Kunstgeschichte, andererseits, definiert jedoch vor allem ein historisch-vergleichendes Studium einer Kunst aus zwei Deutschlands. Dies führt oft zu einer unterkomplexen Binär-Klassifizierung vom “staatlichen Künstler” und “dissidenten Künstler”, d.h., es wiederholt “The Age of Extremes” (Hobsbwam, 1994) des Kalten Krieges in den Bereichen Kunst, Forschung und Wissen in der Zeit nach 1989. Was fehlt und daher dringend benötigt wird, ist eine fallbezogene Analyse von Kunstprojekten aus der DDR mit einer klar internationalistischen Mission und deren Mobilisierung für unsere aktuellen Debatten.\n\nDas Forschungsprojekt zielt darauf ab, dekoloniale/dekolonisierende Methoden mit epistemologischem Bewusstsein für die gelebten Erfahrungen, wissenschaftlichen Dokumente, Geheimdienstakten und künstlerischen Projekte aus sozialistisch/internationalistischen Geographien, wie z.B. der DDR (1949-1990), zu mobilisieren, um das politische Projekt der DDR über die oft binäre Erzählung vom Dissidentismus vs. Konformismus hinaus zu positionieren. Fokus hierbei sind künstlerische Methoden, welche Kybernetik mit Geopolitik bzw. Internationalismus in Bezug setzen. \n\nMöglicher Ausgangspunkt sind Filme, Schriften, kybernetische Zeichnungen und Konzepte der DEFA Gruppe Profil (1960-1968), die ihre Fortsetzung in der “künstlerischen Arbeitsgruppe defa-futurum” (1971-1980) der DDR gefunden hat, die den “sozialistischen Zukunftsfilm” oder Science Fiction als “intergenre” (defa-futurum, 1975) entwickelte, um die Analyse von damals-zeitgenössischen Problemen, aus denen die Gesellschaft aufgebaut werden soll, durchzuführen. Die praxisorientierte Doktorarbeit der defa-futurum-Gruppe bietet darüber hinaus die Möglichkeit, sich mit den philosophisch-logischen Schriften des Bürgerrechtlers, deutsch-jüdischen Immigranten und Professors Franz Loeser über deontische Logik, Mathematik, Kybernetik und Marxismus-Leninismus zu beschäftigen, die einen wenig erforschten philosophischen Ansatz zu Organisation, Rationalismus und Ethik kennzeichnet. Welche Prinzipien haben Automatisierung, Computation, nicht-menschliche Kognition und Technologiepolitik von planetarischer Dimension oder mit globalisierenden Kräfte aus der Perspektive einer alternativen oder minoritären Post-/Moderne? \n\nEingebettet in eine Zusammenarbeit zwischen HEAD Genève, der Universität Basel, dem VanAbbe Museum in Eindhoven und dem Haus der Kulturen der Welt in Berlin sind die Ergebnisse des Forschungsprojekts eine Doktorarbeit, Konferenzbeiträge, peer-revieweded Artikel, Ausstellungsbeiträge, eine relationale Datenbank, etc." - }, - "disciplines": [ - { - "en": "10404 Visual arts and Art history" - }, - { - "en": "10407 Architecture and Social urban science" - }, - { - "en": "10603 Arts" - } - ], - "endDate": "2023-09-30", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-082C-organization-000" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-082C-grant-000" - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/082C", - "text": "Discover Project Data" - }, - "secondaryURL": { - "__type": "URL", - "type": "URL", - "url": "https://entangledinternationalism.org/", - "text": "External Project Website" - }, - "keywords": [ - { - "en": "Europe" - }, - { - "en": "art/research" - }, - { - "en": "cinema/art" - }, - { - "en": "contemporaneity" - }, - { - "en": "cyber-cultures" - }, - { - "en": "decolonial / decolonizing practices" - }, - { - "en": "global Cold War" - }, - { - "en": "socialism/internationalism" - }, - { - "en": "techno-politics" - } - ], - "name": "Decolonizing Socialism: Entangled Internationalism. An Intersectional Study of Cold War Projects from East Germany in Cinema and Cybernetics with Relevance for the 21st Century", - "publications": [ - { - "text": "Mende Doreen (2019), Hamhung’s Two Orphans (To Konrad Püschel) East German Internationalism in North-Korea Emerging through a Chronopolitical Lens, in Bauhaus Imaginista Journal, (3), 1." - }, - { - "text": "Mende Doreen (2020), Remarks on defa-futurum’s ‘Socialist Future Film’ for Our Contemporary Condition, in de Bruyn Eric , Lütticken Sven (ed.), MIT Press and Sternberg Press, 2020, U.S.A., 173-186." - }, - { - "text": "Mende Doreen (2020), The Time Lag of Defa-Futurum: A Socialist Cine-Futurism from East Germany, in The Oxford Handbook of Communist Visual Cultures, 12." - }, - { - "text": "Agarwal Vinit, Mende Doreen, Gilleti Laure, Vora Chetna, Barthel Lars, Borges Sónia Vaz (2020), Inter∞Note 01, Self Published, Leipzig/Geneva." - } - ], - "shortcode": "082C", - "startDate": "2019-10-01" - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-082C-project", + "__type": "Project", + "__createdAt": "1637624127333234000", + "__createdBy": "dsp-metadata-gui", + "teaserText": "It aims to apply decolonial methods and to mobilize practice-based approaches to engage in the critical analysis of case studies of art practices from socialist geographies of the Cold War period.", "datasets": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-082C-dataset-000", - "__type": "Dataset", - "__createdAt": "1637624128018086000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "This cross-disciplinary Research Project undertakes a decolonial analysis of artistic projects that were realised in the framework of Socialist Internationalism as, for example, proposed by East German Socialist Internationalism from the 1950s through the 1970s in cinema, art and cybernetics with relevance for the global contemporary condition in academia, art-research and art-making with focus on techno-politics. The Research Project aims to mobilize decolonial/decolonizing methods with specific awareness for the lived experiences, scientific documents and artistic projects from socialist/internationalist geographies, e.g., the GDR (1949-1990) for situating the political project of socialism beyond the often-binary Cold War narrative of dissidentism vs. conformism. In doing so, the Research Project aims (a) to contribute to a more complex understanding of Cold War art-science-knowledge experimentations from a political geography that has been marginalized under global Cold War conditions as ‘soviet occupied zone’ after 1949, and which has been exposed to an \"embarrassed silence\" (Jameson, 2015) in many debates of academic research projects, cultural programs, contemporary art institutions, etc. after 1989; and (b) to contribute to the contemporary need of analyzing principles of automation, computation and techno-politics of planetary dimension or globalizing forces through an alternative or minor post-/modernity. The idea is to unearth as well as mobilize overlooked archival documents, micro-histories, silenced oral narratives and conflicting memories from state-socialist projects such as GDR for developing a substantial vocabulary to cross-read science and politics with art and culture with specific awareness for micro-social art practices in struggle with macro-political state-protocols departing from the internationalist ambitions of state-socialisms. Furthermore, “Decolonizing Socialism” aims to fathom the tensions between the national project of a new state (‘german democratic republic’) in post-war Europe and the world-spanning, or, 'planetary' concept of socialist internationalism. A possible point of departure and Case Study, respectively, are films, writings, cybernetic drawings and concepts of the DEFA Gruppe Profil (1960-1968) that has been followed by the \"artistic working group defa-futurum\" (1971-circa 1980) from the GDR promoting the \"socialist future film\" or ‘science fiction’ as formats to engage in the analysis of then-contemporary problematics from which to build society; furthermore, the philosophical-logical writings by civil rights activist, German-Jewish immigrant and professor Franz Loeser on deontic logics, mathematics, cybernetics and Marxism-Leninism offer an under-researched philosophical approach to organization, rationalism and ethics. The Case Study was chosen based on its unique and extensive elaboration of cinema, cybernetics and socialism/internationalism from the GDR; it provides necessary material to study the role of technology, philosophy and art for (a) declaring an own political/independent position as a young nation-state and state-socialism in the post-1945-world, (b) formulating anti-fascist politics for supporting the processes of de-nazification in Europe (post-war West-Germany specifically), (c) contributing to the ideologies of the techno-political race during the global World War, and (d) experiencing the structural violence of being-silenced after 1989. What does a decolonial analysis mean with regard to a cultural Socialist Internationalism? What does a decolonial analysis produce? Why is such an approach necessary in relation to art, techno-politics, research and knowledge production of the global contemporary? How does a decolonial analysis of Socialist Internationalism yield a comprehension of a contemporary intra-European reality? So far, academic Cold War studies, European history and diplomacy studies in Europe have mainly analysed Cold War scenarios from a “Western” perspective, and often without paying attention to the field of art. European art history, however, mainly defines a historical-comparative juxtaposition of an Art of Two Germanys. What is missing and urgently needed, though, is a case-based analysis of internationalist art projects rooted in German Democratic Republic (GDR) with relevance for our contemporary condition. Research Methods will include “history lessons,” i.e., sources-tracing and their respective hermeneutic study. The Doctoral researcher will conduct her/his studies based on institutional archives, interviews and fieldwork. A material-based iconography will consider the materiality of found objects or archival material (e.g. paper, photographs, film reels, etc.). Regarding the need for contemporaneity, the project-at-large is situated in the “studying [of] visual culture” (Rogoff, 1998) and its extension to the visual arena to infrastructures, distribution systems, archive politics, and civil knowledge (Azoulay, 2012; McLagan, McKee, 2012; Mirzoeff, 2017). Therefore, case-based research will foster methods to articulate trans-historical and trans-generational relations. The Project will put to use the “speaking-nearby” method (Chen/Minh-ha, 1992) as seen in postcolonial documentary practices to engage in materially marginalized but still present narratives. Under a practice-based approach, the Project will commit to research methods as developed by studies on “intersectionality” (Crenshaw, 1989; Lugones 2008; MacKinnon, 2013). Here the aim is to mobilize politics of gender and race in art projects emerging from the East German version of proletarian internationalism, also coined “socialist chromatism” (Slobodan, 2015).The planned Research outcome includes: (1) a doctoral dissertation that is due to generate in collaboration with University of Basel(2) conference papers, and (3) contributions to exhibitions. Further, (4) an issue on Decolonizing Socialism / Entangled Internationalism is expected, for publication in a peer-reviewed academic journal, as is (5) a relational database as Data-Bank-Library on Decolonizing Socialism, and finally, (6) the organisation of an international symposium and workshops at various academic and art venues, notably in collaboration with the doctoral-degree-providing Swiss university involved, the international Scientific Advisory Board as well as two European art institutions (Project Partners) that also will provide an infrastructure for an artist-researcher position to join the project." - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082C-person-000", - "roles": [ - "Applicant" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082C-person-001", - "roles": [ - "Employee" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082C-person-002", - "roles": [ - "Employee" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082C-person-003", - "roles": [ - "Employee" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082C-person-004", - "roles": [ - "Project partner" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082C-person-005", - "roles": [ - "Project partner" - ] - } - ], - "status": "Ongoing", - "title": "Decolonizing Socialism: Entangled Internationalism. An Intersectional Study of Cold War Projects from East Germany in Cinema and Cybernetics with Relevance for the 21st Century" - } + "http://ns.dasch.swiss/repository#dsp-082C-dataset-000" ], - "persons": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-082C-person-000", - "__type": "Person", - "__createdAt": "1637624128077944000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Mende" - ], - "givenNames": [ - "Doreen" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082C-organization-001" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-082C-person-001", - "__type": "Person", - "__createdAt": "1637624128078000000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Agarwal" - ], - "givenNames": [ - "Vinit" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-082C-person-002", - "__type": "Person", - "__createdAt": "1637624128078040000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Nienhoff" - ], - "givenNames": [ - "Lea" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082C-organization-002" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-082C-person-003", - "__type": "Person", - "__createdAt": "1637624128078088000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Leu" - ], - "givenNames": [ - "Rada" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082C-organization-002" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-082C-person-004", - "__type": "Person", - "__createdAt": "1637624128078136000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Franke" - ], - "givenNames": [ - "Anselm" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082C-organization-003" - ] - }, + "description": { + "en": "Artistic projects from state-socialisms in Europe, e.g., the GDR (1949-1990), under conditions of the Global Cold War often remain subject to be simplified in binary patterns, that means, type-casting artists (or architects, writers…) from “the East” as either dissidents (“the underground artist”) or conformists (“the State artist”). Situated in the field of Visual Cultures, the Research Project aims to apply decolonial methods and to mobilize practice-based approaches to engage in the critical analysis of case studies of art practices from socialist geographies of the Cold War period from Europe with a specific focus on operational concepts of cybernetics and internationalism for the contemporary condition.\nZum einen haben akademische Forschungen über den Globalen Kalten Krieg, zur europäischen Nachkriegsgeschichte und das Studium von Internationalen Beziehungen in Europa Szenarien zum Kalten Krieg vor allem aus einer “westlichen” Perspektive analysiert, oft ohne sich um den Bereich der Kunst zu kümmern. Eine europäische Kunstgeschichte, andererseits, definiert jedoch vor allem ein historisch-vergleichendes Studium einer Kunst aus zwei Deutschlands. Dies führt oft zu einer unterkomplexen Binär-Klassifizierung vom “staatlichen Künstler” und “dissidenten Künstler”, d.h., es wiederholt “The Age of Extremes” (Hobsbwam, 1994) des Kalten Krieges in den Bereichen Kunst, Forschung und Wissen in der Zeit nach 1989. Was fehlt und daher dringend benötigt wird, ist eine fallbezogene Analyse von Kunstprojekten aus der DDR mit einer klar internationalistischen Mission und deren Mobilisierung für unsere aktuellen Debatten.\n\nDas Forschungsprojekt zielt darauf ab, dekoloniale/dekolonisierende Methoden mit epistemologischem Bewusstsein für die gelebten Erfahrungen, wissenschaftlichen Dokumente, Geheimdienstakten und künstlerischen Projekte aus sozialistisch/internationalistischen Geographien, wie z.B. der DDR (1949-1990), zu mobilisieren, um das politische Projekt der DDR über die oft binäre Erzählung vom Dissidentismus vs. Konformismus hinaus zu positionieren. Fokus hierbei sind künstlerische Methoden, welche Kybernetik mit Geopolitik bzw. Internationalismus in Bezug setzen. \n\nMöglicher Ausgangspunkt sind Filme, Schriften, kybernetische Zeichnungen und Konzepte der DEFA Gruppe Profil (1960-1968), die ihre Fortsetzung in der “künstlerischen Arbeitsgruppe defa-futurum” (1971-1980) der DDR gefunden hat, die den “sozialistischen Zukunftsfilm” oder Science Fiction als “intergenre” (defa-futurum, 1975) entwickelte, um die Analyse von damals-zeitgenössischen Problemen, aus denen die Gesellschaft aufgebaut werden soll, durchzuführen. Die praxisorientierte Doktorarbeit der defa-futurum-Gruppe bietet darüber hinaus die Möglichkeit, sich mit den philosophisch-logischen Schriften des Bürgerrechtlers, deutsch-jüdischen Immigranten und Professors Franz Loeser über deontische Logik, Mathematik, Kybernetik und Marxismus-Leninismus zu beschäftigen, die einen wenig erforschten philosophischen Ansatz zu Organisation, Rationalismus und Ethik kennzeichnet. Welche Prinzipien haben Automatisierung, Computation, nicht-menschliche Kognition und Technologiepolitik von planetarischer Dimension oder mit globalisierenden Kräfte aus der Perspektive einer alternativen oder minoritären Post-/Moderne? \n\nEingebettet in eine Zusammenarbeit zwischen HEAD Genève, der Universität Basel, dem VanAbbe Museum in Eindhoven und dem Haus der Kulturen der Welt in Berlin sind die Ergebnisse des Forschungsprojekts eine Doktorarbeit, Konferenzbeiträge, peer-revieweded Artikel, Ausstellungsbeiträge, eine relationale Datenbank, etc." + }, + "disciplines": [ + { + "en": "10404 Visual arts and Art history" + }, + { + "en": "10407 Architecture and Social urban science" + }, + { + "en": "10603 Arts" + } + ], + "endDate": "2023-09-30", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-082C-organization-000" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-082C-grant-000" + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/082C", + "text": "Discover Project Data" + }, + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://entangledinternationalism.org/", + "text": "External Project Website" + }, + "keywords": [ + { + "en": "Europe" + }, + { + "en": "art/research" + }, + { + "en": "cinema/art" + }, + { + "en": "contemporaneity" + }, + { + "en": "cyber-cultures" + }, + { + "en": "decolonial / decolonizing practices" + }, + { + "en": "global Cold War" + }, + { + "en": "socialism/internationalism" + }, + { + "en": "techno-politics" + } + ], + "name": "Decolonizing Socialism: Entangled Internationalism. An Intersectional Study of Cold War Projects from East Germany in Cinema and Cybernetics with Relevance for the 21st Century", + "publications": [ + { + "text": "Mende Doreen (2019), Hamhung’s Two Orphans (To Konrad Püschel) East German Internationalism in North-Korea Emerging through a Chronopolitical Lens, in Bauhaus Imaginista Journal, (3), 1." + }, + { + "text": "Mende Doreen (2020), Remarks on defa-futurum’s ‘Socialist Future Film’ for Our Contemporary Condition, in de Bruyn Eric , Lütticken Sven (ed.), MIT Press and Sternberg Press, 2020, U.S.A., 173-186." + }, + { + "text": "Mende Doreen (2020), The Time Lag of Defa-Futurum: A Socialist Cine-Futurism from East Germany, in The Oxford Handbook of Communist Visual Cultures, 12." + }, + { + "text": "Agarwal Vinit, Mende Doreen, Gilleti Laure, Vora Chetna, Barthel Lars, Borges Sónia Vaz (2020), Inter∞Note 01, Self Published, Leipzig/Geneva." + } + ], + "shortcode": "082C", + "startDate": "2019-10-01", + "temporalCoverage": [ + { + "en": "1949-1990" + } + ], + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2921044/germany.html", + "text": "Germany" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/8354410/german-democratic-republic.html", + "text": "German Democratic Republic" + } + ], + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082C-dataset-000", + "__type": "Dataset", + "__createdAt": "1637624128018086000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-082C-person-005", - "__type": "Person", - "__createdAt": "1637624128078183000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Esche" - ], - "givenNames": [ - "Charles" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082C-organization-004" - ] + "en": "This cross-disciplinary Research Project undertakes a decolonial analysis of artistic projects that were realised in the framework of Socialist Internationalism as, for example, proposed by East German Socialist Internationalism from the 1950s through the 1970s in cinema, art and cybernetics with relevance for the global contemporary condition in academia, art-research and art-making with focus on techno-politics. The Research Project aims to mobilize decolonial/decolonizing methods with specific awareness for the lived experiences, scientific documents and artistic projects from socialist/internationalist geographies, e.g., the GDR (1949-1990) for situating the political project of socialism beyond the often-binary Cold War narrative of dissidentism vs. conformism. In doing so, the Research Project aims (a) to contribute to a more complex understanding of Cold War art-science-knowledge experimentations from a political geography that has been marginalized under global Cold War conditions as ‘soviet occupied zone’ after 1949, and which has been exposed to an \"embarrassed silence\" (Jameson, 2015) in many debates of academic research projects, cultural programs, contemporary art institutions, etc. after 1989; and (b) to contribute to the contemporary need of analyzing principles of automation, computation and techno-politics of planetary dimension or globalizing forces through an alternative or minor post-/modernity. The idea is to unearth as well as mobilize overlooked archival documents, micro-histories, silenced oral narratives and conflicting memories from state-socialist projects such as GDR for developing a substantial vocabulary to cross-read science and politics with art and culture with specific awareness for micro-social art practices in struggle with macro-political state-protocols departing from the internationalist ambitions of state-socialisms. Furthermore, “Decolonizing Socialism” aims to fathom the tensions between the national project of a new state (‘german democratic republic’) in post-war Europe and the world-spanning, or, 'planetary' concept of socialist internationalism. A possible point of departure and Case Study, respectively, are films, writings, cybernetic drawings and concepts of the DEFA Gruppe Profil (1960-1968) that has been followed by the \"artistic working group defa-futurum\" (1971-circa 1980) from the GDR promoting the \"socialist future film\" or ‘science fiction’ as formats to engage in the analysis of then-contemporary problematics from which to build society; furthermore, the philosophical-logical writings by civil rights activist, German-Jewish immigrant and professor Franz Loeser on deontic logics, mathematics, cybernetics and Marxism-Leninism offer an under-researched philosophical approach to organization, rationalism and ethics. The Case Study was chosen based on its unique and extensive elaboration of cinema, cybernetics and socialism/internationalism from the GDR; it provides necessary material to study the role of technology, philosophy and art for (a) declaring an own political/independent position as a young nation-state and state-socialism in the post-1945-world, (b) formulating anti-fascist politics for supporting the processes of de-nazification in Europe (post-war West-Germany specifically), (c) contributing to the ideologies of the techno-political race during the global World War, and (d) experiencing the structural violence of being-silenced after 1989. What does a decolonial analysis mean with regard to a cultural Socialist Internationalism? What does a decolonial analysis produce? Why is such an approach necessary in relation to art, techno-politics, research and knowledge production of the global contemporary? How does a decolonial analysis of Socialist Internationalism yield a comprehension of a contemporary intra-European reality? So far, academic Cold War studies, European history and diplomacy studies in Europe have mainly analysed Cold War scenarios from a “Western” perspective, and often without paying attention to the field of art. European art history, however, mainly defines a historical-comparative juxtaposition of an Art of Two Germanys. What is missing and urgently needed, though, is a case-based analysis of internationalist art projects rooted in German Democratic Republic (GDR) with relevance for our contemporary condition. Research Methods will include “history lessons,” i.e., sources-tracing and their respective hermeneutic study. The Doctoral researcher will conduct her/his studies based on institutional archives, interviews and fieldwork. A material-based iconography will consider the materiality of found objects or archival material (e.g. paper, photographs, film reels, etc.). Regarding the need for contemporaneity, the project-at-large is situated in the “studying [of] visual culture” (Rogoff, 1998) and its extension to the visual arena to infrastructures, distribution systems, archive politics, and civil knowledge (Azoulay, 2012; McLagan, McKee, 2012; Mirzoeff, 2017). Therefore, case-based research will foster methods to articulate trans-historical and trans-generational relations. The Project will put to use the “speaking-nearby” method (Chen/Minh-ha, 1992) as seen in postcolonial documentary practices to engage in materially marginalized but still present narratives. Under a practice-based approach, the Project will commit to research methods as developed by studies on “intersectionality” (Crenshaw, 1989; Lugones 2008; MacKinnon, 2013). Here the aim is to mobilize politics of gender and race in art projects emerging from the East German version of proletarian internationalism, also coined “socialist chromatism” (Slobodan, 2015).The planned Research outcome includes: (1) a doctoral dissertation that is due to generate in collaboration with University of Basel(2) conference papers, and (3) contributions to exhibitions. Further, (4) an issue on Decolonizing Socialism / Entangled Internationalism is expected, for publication in a peer-reviewed academic journal, as is (5) a relational database as Data-Bank-Library on Decolonizing Socialism, and finally, (6) the organisation of an international symposium and workshops at various academic and art venues, notably in collaboration with the doctoral-degree-providing Swiss university involved, the international Scientific Advisory Board as well as two European art institutions (Project Partners) that also will provide an infrastructure for an artist-researcher position to join the project." } - ], - "organizations": [ + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-082C-organization-001", - "__type": "Organization", - "__createdAt": "1637624128078245000", - "__createdBy": "dsp-metadata-gui", - "name": "University of Applied Sciences and Arts Western Switzerland - HES-SO" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082C-person-000", + "roles": [ + "Applicant" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082C-organization-003", - "__type": "Organization", - "__createdAt": "1637624128078270000", - "__createdBy": "dsp-metadata-gui", - "name": "Haus der Kulturen der Welt" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082C-person-001", + "roles": [ + "Employee" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082C-organization-004", - "__type": "Organization", - "__createdAt": "1637624128078294000", - "__createdBy": "dsp-metadata-gui", - "name": "Van Abbemuseum Charles Esche" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082C-person-002", + "roles": [ + "Employee" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082C-organization-000", - "__type": "Organization", - "__createdAt": "1637624128078317000", - "__createdBy": "dsp-metadata-gui", - "name": "Swiss National Science Foundation (SNSF)" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082C-person-003", + "roles": [ + "Employee" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082C-organization-002", - "__type": "Organization", - "__createdAt": "1637624128078340000", - "__createdBy": "dsp-metadata-gui", - "name": "Institut de Recherche en Art et Design HEAD – Genève" - } - ], - "grants": [ + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082C-person-004", + "roles": [ + "Project partner" + ] + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082C-grant-000", - "__type": "Grant", - "__createdAt": "1637624128078376000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-082C-organization-000" - ], - "name": "Project funding", - "number": "184864", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/184864", - "text": "https://data.snf.ch/grants/grant/184864" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082C-person-005", + "roles": [ + "Project partner" + ] } - ] -} + ], + "status": "Ongoing", + "title": "Decolonizing Socialism: Entangled Internationalism. An Intersectional Study of Cold War Projects from East Germany in Cinema and Cybernetics with Relevance for the 21st Century" + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082C-person-000", + "__type": "Person", + "__createdAt": "1637624128077944000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Mende" + ], + "givenNames": [ + "Doreen" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082C-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082C-person-001", + "__type": "Person", + "__createdAt": "1637624128078000000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Agarwal" + ], + "givenNames": [ + "Vinit" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082C-person-002", + "__type": "Person", + "__createdAt": "1637624128078040000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Nienhoff" + ], + "givenNames": [ + "Lea" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082C-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082C-person-003", + "__type": "Person", + "__createdAt": "1637624128078088000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Leu" + ], + "givenNames": [ + "Rada" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082C-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082C-person-004", + "__type": "Person", + "__createdAt": "1637624128078136000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Franke" + ], + "givenNames": [ + "Anselm" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082C-organization-003" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082C-person-005", + "__type": "Person", + "__createdAt": "1637624128078183000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Esche" + ], + "givenNames": [ + "Charles" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082C-organization-004" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082C-organization-001", + "__type": "Organization", + "__createdAt": "1637624128078245000", + "__createdBy": "dsp-metadata-gui", + "name": "University of Applied Sciences and Arts Western Switzerland - HES-SO" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082C-organization-003", + "__type": "Organization", + "__createdAt": "1637624128078270000", + "__createdBy": "dsp-metadata-gui", + "name": "Haus der Kulturen der Welt" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082C-organization-004", + "__type": "Organization", + "__createdAt": "1637624128078294000", + "__createdBy": "dsp-metadata-gui", + "name": "Van Abbemuseum Charles Esche" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082C-organization-000", + "__type": "Organization", + "__createdAt": "1637624128078317000", + "__createdBy": "dsp-metadata-gui", + "name": "Swiss National Science Foundation (SNSF)" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082C-organization-002", + "__type": "Organization", + "__createdAt": "1637624128078340000", + "__createdBy": "dsp-metadata-gui", + "name": "Institut de Recherche en Art et Design HEAD – Genève" + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082C-grant-000", + "__type": "Grant", + "__createdAt": "1637624128078376000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-082C-organization-000" + ], + "name": "Project funding", + "number": "184864", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/184864", + "text": "https://data.snf.ch/grants/grant/184864" + } + } + ] +} \ No newline at end of file diff --git a/data/json/delille.json b/data/json/delille.json index b7bfe6dc..86088d00 100644 --- a/data/json/delille.json +++ b/data/json/delille.json @@ -1,232 +1,234 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-081B-project", - "__type": "Project", - "__createdAt": "1630601383511170000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Reconstruire Delille, 2021", - "teaserText": "NIE-INE outcome for the project `Reconstruire Delille' in relation to the scholarly `reverse' edition of the reception of the third canto of Jacques Delille's L'homme des champs.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-081B-dataset-001" - ], - "alternativeNames": [ - { - "fr": "L'Homme des champs : éditer une réception littéraire" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-081B-person-001", - "description": { - "en": "NIE-INE outcome for the project `Reconstruire Delille' in relation to the scholarly `reverse' edition of the reception of the third canto of Jacques Delille's L'homme des champs. The repository includes the NIE-INE file system layer, containing all project data and reflecting the result of the Semantic Web formalisation (in two steps) of the original DokuWiki data. The DokuWiki is a database listing the echoes that Delille received in European culture, that is an edition of L'Homme des champs based on the reception of this text." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/6202", - "text": "Literary theory, analysis and criticism" - } - ], - "endDate": "2019-01-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-081B-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-081B-grant-001" - ], - "keywords": [ - { - "en": "french literature" - }, - { - "en": "scientific poetry" - } - ], - "name": "Delille", - "publications": [ - { - "text": "", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://delille.philhist.unibas.ch/dokuwiki/doku.php?id=start", - "text": "https://delille.philhist.unibas.ch/dokuwiki/doku.php?id=start" - } - ] - } - ], - "shortcode": "081B", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3017382/republic-of-france.html", - "text": "France" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6255148/europe.html", - "text": "Europe" - } - ], - "startDate": "2015-02-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/IOGdcZ2CU1tz", - "text": "18th and 19th Centuries" - } - ] - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-081B-project", + "__type": "Project", + "__createdAt": "1630601383511170000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Reconstruire Delille, 2021", + "teaserText": "NIE-INE outcome for the project `Reconstruire Delille' in relation to the scholarly `reverse' edition of the reception of the third canto of Jacques Delille's L'homme des champs.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-081B-dataset-001" + ], + "alternativeNames": [ + { + "fr": "L'Homme des champs : éditer une réception littéraire" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-081B-person-001", + "description": { + "en": "NIE-INE outcome for the project `Reconstruire Delille' in relation to the scholarly `reverse' edition of the reception of the third canto of Jacques Delille's L'homme des champs. The repository includes the NIE-INE file system layer, containing all project data and reflecting the result of the Semantic Web formalisation (in two steps) of the original DokuWiki data. The DokuWiki is a database listing the echoes that Delille received in European culture, that is an edition of L'Homme des champs based on the reception of this text." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/6202", + "text": "Literary theory, analysis and criticism" + } + ], + "endDate": "2019-01-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-081B-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-081B-grant-001" + ], + "keywords": [ + { + "en": "french literature" + }, + { + "en": "scientific poetry" + } + ], + "name": "Delille", + "publications": [ + { + "text": "", + "url": [ + { + "__type": "URL", + "type": "URL", + "url": "https://delille.philhist.unibas.ch/dokuwiki/doku.php?id=start", + "text": "https://delille.philhist.unibas.ch/dokuwiki/doku.php?id=start" + } + ] + } + ], + "shortcode": "081B", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3017382/republic-of-france.html", + "text": "France" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/6255148/europe.html", + "text": "Europe" + } + ], + "startDate": "2015-02-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/IOGdcZ2CU1tz", + "text": "18th and 19th Centuries" + } + ], + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-081B-dataset-001", + "__type": "Dataset", + "__createdAt": "1630601385927986000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-081B-dataset-001", - "__type": "Dataset", - "__createdAt": "1630601385927986000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "NIE-INE outcome for the project `Reconstruire Delille' in relation to the scholarly `reverse' edition of the reception of the third canto of Jacques Delille's L'homme des champs." - } - ], - "alternativeTitles": [ - { - "fr": "L'Homme des champs : éditer une réception littéraire" - } - ], - "accessConditions": "restricted", - "dateCreated": "2021-02-28", - "dateModified": "2021-02-28", - "additional": [ - { - "en": "NIE-INE Documentation for the Delille Project" - } - ], - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "en": "French", - "de": "Französisch", - "fr": "français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "URL", - "url": "https://creativecommons.org/licenses/by/3.0", - "text": "CC BY 3.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-081B-person-001", - "roles": [ - "Editor" - ] - } - ], - "status": "Ongoing", - "title": "Delille", - "typeOfData": [ - "XML" - ] + "en": "NIE-INE outcome for the project `Reconstruire Delille' in relation to the scholarly `reverse' edition of the reception of the third canto of Jacques Delille's L'homme des champs." } - ], - "persons": [ + ], + "alternativeTitles": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-081B-person-001", - "__type": "Person", - "__createdAt": "1630601387244448000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Marchal" - ], - "givenNames": [ - "Hugues" - ], - "jobTitles": [ - "Prof. Dr." - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-081B-organization-002" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://orcid.org/0000-0003-4093-0416", - "text": "https://orcid.org/0000-0003-4093-0416" - } - ] + "fr": "L'Homme des champs : éditer une réception littéraire" } - ], - "organizations": [ + ], + "accessConditions": "restricted", + "dateCreated": "2021-02-28", + "dateModified": "2021-02-28", + "additional": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-081B-organization-002", - "__type": "Organization", - "__createdAt": "1630601387244691000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Maiengasse 51", - "postalCode": "4056", - "locality": "Basel", - "country": "Switzerland" - }, - "name": "University of Basel" + "en": "NIE-INE Documentation for the Delille Project" + } + ], + "languages": [ + { + "en": "English", + "de": "Englisch", + "fr": "anglais" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-081B-organization-001", - "__type": "Organization", - "__createdAt": "1630601387276867000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3", - "postalCode": "3001", - "locality": "Berne", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } + "en": "French", + "de": "Französisch", + "fr": "français" } - ], - "grants": [ + ], + "licenses": [ + { + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "URL", + "url": "https://creativecommons.org/licenses/by/3.0", + "text": "CC BY 3.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-081B-grant-001", - "__type": "Grant", - "__createdAt": "1630601387310266000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-081B-organization-001" - ], - "name": "Project funding", - "number": "153189", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/153189", - "text": "https://data.snf.ch/grants/grant/153189" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-081B-person-001", + "roles": [ + "Editor" + ] } - ] -} + ], + "status": "Ongoing", + "title": "Delille", + "typeOfData": [ + "XML" + ], + "howToCite": "Reconstruire Delille, 2021" + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-081B-person-001", + "__type": "Person", + "__createdAt": "1630601387244448000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Marchal" + ], + "givenNames": [ + "Hugues" + ], + "jobTitles": [ + "Prof. Dr." + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-081B-organization-002" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://orcid.org/0000-0003-4093-0416", + "text": "https://orcid.org/0000-0003-4093-0416" + } + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-081B-organization-002", + "__type": "Organization", + "__createdAt": "1630601387244691000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Maiengasse 51", + "postalCode": "4056", + "locality": "Basel", + "country": "Switzerland" + }, + "name": "University of Basel" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-081B-organization-001", + "__type": "Organization", + "__createdAt": "1630601387276867000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3", + "postalCode": "3001", + "locality": "Berne", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-081B-grant-001", + "__type": "Grant", + "__createdAt": "1630601387310266000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-081B-organization-001" + ], + "name": "Project funding", + "number": "153189", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/153189", + "text": "https://data.snf.ch/grants/grant/153189" + } + } + ] +} \ No newline at end of file diff --git a/data/json/digitalagenda.json b/data/json/digitalagenda.json index e47a7d19..4c75d45b 100644 --- a/data/json/digitalagenda.json +++ b/data/json/digitalagenda.json @@ -1,529 +1,530 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0848-project", - "__type": "Project", - "__createdAt": "1688420236109645000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Guerrero Cantarell, Rosalía, Carmen Flury, Fabian Grütter and Michael Geiss (2023). Education and the European Digital Agenda: Switzerland, Germany and Sweden after 1970. DaSCH, https://ark.dasch.swiss/ark:/72163/1/0848.", - "teaserText": "This database documents the educational implications of technological change in information and communication technologies (ICT) between 1970 and 2000, focusing on political initiatives in Europe.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0848-dataset-000" - ], - "alternativeNames": [ - { - "en": "Digital Agenda" - } - ], - "description": { - "en": "The adoption of information and communications technologies (ICTs) within public schooling, higher education, and vocational education and training has been widely acknowledged as a major challenge. The Education and the European Digital Agenda project aims to document how this challenge was confronted in Europe during the initial decades following the emergence of microchip technology, which fundamentally transformed businesses, public administration, and daily life. \n\nThe database reconstructs the responses of policymakers and other relevant stakeholders in Germany (both the GDR and the FRG until 1990, and the unified German state from then onwards), Switzerland, and Sweden, as well as other international organisations such as EC/EU and UNESCO, to the educational challenges brought about by technological change from 1970 until the early 2000s, at the end of the dot-com boom." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/550607", - "text": "History of education" - } - ], - "endDate": "2023-03-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0848-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0848-grant-000" - ], - "keywords": [ - { - "en": "Digital transformation" - }, - { - "en": "Europe" - }, - { - "en": "Germany" - }, - { - "en": "Sweden" - }, - { - "en": "Switzerland" - }, - { - "en": "computerisation" - }, - { - "en": "education" - }, - { - "en": "education policy" - }, - { - "en": "school" - }, - { - "en": "training" - } - ], - "name": "Education and the European Digital Agenda: Switzerland, Germany and Sweden after 1970", - "publications": [ - { - "text": "1. Flury, Carmen and Michael Geiss, eds., How Computers Entered the Classroom, 1960–2000: Historical Perspectives. Oldenbourg, De Gruyter, 2023.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.1515/9783110780147", - "text": "DOI: 10.1515/9783110780147" - } - ] - }, - { - "text": "2. Flury, Carmen and Michael Geiss. Computers in Europe’s Classrooms: An Introduction. In How Computers Entered the Classroom, 1960–2000: Historical Perspectives, edited by Carmen Flury and Michael Geiss, 1–12. Oldenbourg: De Gruyter, 2023.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.1515/9783110780147", - "text": "DOI: 10.1515/9783110780147" - } - ] - }, - { - "text": "3. Flury, Carmen, Michael Geiss, and Rosalía Guerrero Cantarell. “Building the Technological European Community Through Education: European Mobility and Training Programmes in the 1980s.” European Educational Research Journal 20, no. 3 (2020): 348–64.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.1177/1474904120980973", - "text": "DOI: 10.1177/1474904120980973" - } - ] - }, - { - "text": "4. Flury, Carmen. “Counting on Computers: New Information Technologies and Curricular Change in the GDR.\" PhD diss. University of Zurich, forthcoming." - }, - { - "text": "5. Flury, Carmen. “Joining Forces: The Promotion of Public-private-partnerships to bring Computers into West German Schools in the 1980s.” In How Computers Entered the Classroom, 1960–2000: Historical Perspectives, edited by Carmen Flury and Michael Geiss, 123–145. Oldenbourg: De Gruyter, 2023.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.1515/9783110780147", - "text": "DOI: 10.1515/9783110780147" - } - ] - }, - { - "text": "6. Geiss, Michael. “Computer Education in Switzerland: Politics and Markets in a Highly Decentralized Country.” In How Computers Entered the Classroom, 1960–2000: Historical Perspectives, edited by Carmen Flury and Michael Geiss, 147–170. Berlin: De Gruyter Oldenbourg, 2023.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.1515/9783110780147", - "text": "DOI: 10.1515/9783110780147" - } - ] - }, - { - "text": "7. Geiss, Michael. “Der Pakt mit dem Computer.” Geschichte der Gegenwart. February 9, 2022.", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://geschichtedergegenwart.ch/der-pakt-mit-dem-computer/", - "text": "https://geschichtedergegenwart.ch/der-pakt-mit-dem-computer/" - } - ] - }, - { - "text": "8. Geiss, Michael, Carmen Flury and Rosalía Guerrero Cantarell. “Beyond the Classroom: Economic Policies and the Past Futures of Education and Training in the European Community, 1970–2000.” In How Computers Entered the Classroom, 1960–2000: Historical Perspectives, edited by Carmen Flury and Michael Geiss, 191–216. Berlin: De Gruyter Oldenbourg, 2023.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.1515/9783110780147", - "text": "DOI: 10.1515/9783110780147" - } - ] - }, - { - "text": "9. Grütter, Fabian. “After Mainframes: Computer Education and Microcomputers in Western Switzerland During the 1980s and 1990s.” History of Education. (Accepted)" - }, - { - "text": "10. Grütter, Fabian. “The Smaky School Computer: Technology and Education in the Ruins of Switzerland’s Watch Industry, 1973–1997.” Learning, Media and Technology.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.1080/17439884.2023.2216463", - "text": "DOI: 10.1080/17439884.2023.2216463" - } - ] - }, - { - "text": "11. Guerrero Cantarell, Rosalía and Carmen Flury. “Making the Computer Fit for School: Efforts to Develop a State-Mandated Educational Computer in Sweden and East Germany (1980s-1990s).” Historical Studies in Education (Accepted)." - }, - { - "text": "12. Guerrero Cantarell, Rosalía. “Teachers Translating and Circumventing the Computer in Lower and Upper Secondary Swedish Schools in the 1970s and 1980s.” In How Computers Entered the Classroom, 1960–2000: Historical Perspectives, edited by Carmen Flury and Michael Geiss, 99–122. Oldenbourg: De Gruyter, 2023.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.1515/9783110780147", - "text": "DOI: 10.1515/9783110780147" - } - ] - }, - { - "text": "13. Guerrero Cantarell, Rosalía. “Technology as a Woman’s Call: The Efforts of the Fredrik Bremer Association to Promote Women’s Education in Technology 1978–1999.” Nordic Journal of Educational History. Special Issue: Exploring the History of Knowledge and Education 9, no. 2 (2022): 125–147.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.36368/njedh.v9i2.268", - "text": "DOI: 10.36368/njedh.v9i2.268" - } - ] - }, - { - "text": "14. Guerrero, Rosalía, Carmen Flury and Michael Geiss. “From Victims to Economic Assets: Training Women in an Emerging Digital Society During the Late 1970s to the Mid-1990s.” History of Media Studies 3 (July 2023).", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.32376/d895a0ea.6e09b010", - "text": "DOI: 10.32376/d895a0ea.6e09b010" - } - ] - } - ], - "shortcode": "0848", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/switzerland.html", - "text": "Switzerland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/11612754/bundesrepublik-deutschland-bis-1990.html", - "text": "Bundesrepublik Deutschland (bis 1990)" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2661886/kingdom-of-sweden.html", - "text": "Sweden" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6695072/european-union.html", - "text": "European Union" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2921044/federal-republic-of-germany.html", - "text": "Germany" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/8354410/german-democratic-republic.html", - "text": "East Germany" - } - ], - "startDate": "2019-04-01", - "temporalCoverage": [ - { - "en": "1970–2000" - } - ], - "url": { + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0848-project", + "__type": "Project", + "__createdAt": "1688420236109645000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Guerrero Cantarell, Rosalía, Carmen Flury, Fabian Grütter and Michael Geiss (2023). Education and the European Digital Agenda: Switzerland, Germany and Sweden after 1970. DaSCH, https://ark.dasch.swiss/ark:/72163/1/0848.", + "teaserText": "This database documents the educational implications of technological change in information and communication technologies (ICT) between 1970 and 2000, focusing on political initiatives in Europe.", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0848-dataset-000" + ], + "alternativeNames": [ + { + "en": "Digital Agenda" + } + ], + "description": { + "en": "The adoption of information and communications technologies (ICTs) within public schooling, higher education, and vocational education and training has been widely acknowledged as a major challenge. The Education and the European Digital Agenda project aims to document how this challenge was confronted in Europe during the initial decades following the emergence of microchip technology, which fundamentally transformed businesses, public administration, and daily life. \n\nThe database reconstructs the responses of policymakers and other relevant stakeholders in Germany (both the GDR and the FRG until 1990, and the unified German state from then onwards), Switzerland, and Sweden, as well as other international organisations such as EC/EU and UNESCO, to the educational challenges brought about by technological change from 1970 until the early 2000s, at the end of the dot-com boom." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/550607", + "text": "History of education" + } + ], + "endDate": "2023-03-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0848-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0848-grant-000" + ], + "keywords": [ + { + "en": "Digital transformation" + }, + { + "en": "Europe" + }, + { + "en": "Germany" + }, + { + "en": "Sweden" + }, + { + "en": "Switzerland" + }, + { + "en": "computerisation" + }, + { + "en": "education" + }, + { + "en": "education policy" + }, + { + "en": "school" + }, + { + "en": "training" + } + ], + "name": "Education and the European Digital Agenda: Switzerland, Germany and Sweden after 1970", + "publications": [ + { + "text": "1. Flury, Carmen and Michael Geiss, eds., How Computers Entered the Classroom, 1960–2000: Historical Perspectives. Oldenbourg, De Gruyter, 2023.", + "url": [ + { "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/23m2HHBlR5GXhAu7rXPRmw", - "text": "Discover Project Data" - }, - "secondaryURL": { + "type": "DOI", + "url": "https://doi.org/10.1515/9783110780147", + "text": "DOI: 10.1515/9783110780147" + } + ] + }, + { + "text": "2. Flury, Carmen and Michael Geiss. Computers in Europe’s Classrooms: An Introduction. In How Computers Entered the Classroom, 1960–2000: Historical Perspectives, edited by Carmen Flury and Michael Geiss, 1–12. Oldenbourg: De Gruyter, 2023.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.1515/9783110780147", + "text": "DOI: 10.1515/9783110780147" + } + ] + }, + { + "text": "3. Flury, Carmen, Michael Geiss, and Rosalía Guerrero Cantarell. “Building the Technological European Community Through Education: European Mobility and Training Programmes in the 1980s.” European Educational Research Journal 20, no. 3 (2020): 348–64.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.1177/1474904120980973", + "text": "DOI: 10.1177/1474904120980973" + } + ] + }, + { + "text": "4. Flury, Carmen. “Counting on Computers: New Information Technologies and Curricular Change in the GDR.\" PhD diss. University of Zurich, forthcoming." + }, + { + "text": "5. Flury, Carmen. “Joining Forces: The Promotion of Public-private-partnerships to bring Computers into West German Schools in the 1980s.” In How Computers Entered the Classroom, 1960–2000: Historical Perspectives, edited by Carmen Flury and Michael Geiss, 123–145. Oldenbourg: De Gruyter, 2023.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.1515/9783110780147", + "text": "DOI: 10.1515/9783110780147" + } + ] + }, + { + "text": "6. Geiss, Michael. “Computer Education in Switzerland: Politics and Markets in a Highly Decentralized Country.” In How Computers Entered the Classroom, 1960–2000: Historical Perspectives, edited by Carmen Flury and Michael Geiss, 147–170. Berlin: De Gruyter Oldenbourg, 2023.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.1515/9783110780147", + "text": "DOI: 10.1515/9783110780147" + } + ] + }, + { + "text": "7. Geiss, Michael. “Der Pakt mit dem Computer.” Geschichte der Gegenwart. February 9, 2022.", + "url": [ + { "__type": "URL", "type": "URL", - "url": "https://www.digitalagenda.ch/", - "text": "External Project Website" - } + "url": "https://geschichtedergegenwart.ch/der-pakt-mit-dem-computer/", + "text": "https://geschichtedergegenwart.ch/der-pakt-mit-dem-computer/" + } + ] + }, + { + "text": "8. Geiss, Michael, Carmen Flury and Rosalía Guerrero Cantarell. “Beyond the Classroom: Economic Policies and the Past Futures of Education and Training in the European Community, 1970–2000.” In How Computers Entered the Classroom, 1960–2000: Historical Perspectives, edited by Carmen Flury and Michael Geiss, 191–216. Berlin: De Gruyter Oldenbourg, 2023.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.1515/9783110780147", + "text": "DOI: 10.1515/9783110780147" + } + ] + }, + { + "text": "9. Grütter, Fabian. “After Mainframes: Computer Education and Microcomputers in Western Switzerland During the 1980s and 1990s.” History of Education. (Accepted)" + }, + { + "text": "10. Grütter, Fabian. “The Smaky School Computer: Technology and Education in the Ruins of Switzerland’s Watch Industry, 1973–1997.” Learning, Media and Technology.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.1080/17439884.2023.2216463", + "text": "DOI: 10.1080/17439884.2023.2216463" + } + ] + }, + { + "text": "11. Guerrero Cantarell, Rosalía and Carmen Flury. “Making the Computer Fit for School: Efforts to Develop a State-Mandated Educational Computer in Sweden and East Germany (1980s-1990s).” Historical Studies in Education (Accepted)." + }, + { + "text": "12. Guerrero Cantarell, Rosalía. “Teachers Translating and Circumventing the Computer in Lower and Upper Secondary Swedish Schools in the 1970s and 1980s.” In How Computers Entered the Classroom, 1960–2000: Historical Perspectives, edited by Carmen Flury and Michael Geiss, 99–122. Oldenbourg: De Gruyter, 2023.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.1515/9783110780147", + "text": "DOI: 10.1515/9783110780147" + } + ] + }, + { + "text": "13. Guerrero Cantarell, Rosalía. “Technology as a Woman’s Call: The Efforts of the Fredrik Bremer Association to Promote Women’s Education in Technology 1978–1999.” Nordic Journal of Educational History. Special Issue: Exploring the History of Knowledge and Education 9, no. 2 (2022): 125–147.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.36368/njedh.v9i2.268", + "text": "DOI: 10.36368/njedh.v9i2.268" + } + ] + }, + { + "text": "14. Guerrero, Rosalía, Carmen Flury and Michael Geiss. “From Victims to Economic Assets: Training Women in an Emerging Digital Society During the Late 1970s to the Mid-1990s.” History of Media Studies 3 (July 2023).", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.32376/d895a0ea.6e09b010", + "text": "DOI: 10.32376/d895a0ea.6e09b010" + } + ] + } + ], + "shortcode": "0848", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/switzerland.html", + "text": "Switzerland" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/11612754/bundesrepublik-deutschland-bis-1990.html", + "text": "Bundesrepublik Deutschland (bis 1990)" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2661886/kingdom-of-sweden.html", + "text": "Sweden" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/6695072/european-union.html", + "text": "European Union" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2921044/federal-republic-of-germany.html", + "text": "Germany" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/8354410/german-democratic-republic.html", + "text": "East Germany" + } + ], + "startDate": "2019-04-01", + "temporalCoverage": [ + { + "en": "1970–2000" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/23m2HHBlR5GXhAu7rXPRmw", + "text": "Discover Project Data" }, - "datasets": [ + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://www.digitalagenda.ch/", + "text": "External Project Website" + }, + "status": "finished" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0848-dataset-000", + "__type": "Dataset", + "__createdAt": "1688420239457488000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0848-dataset-000", - "__type": "Dataset", - "__createdAt": "1688420239457488000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The dataset maps political initiatives and actors involved in education in the context of digital change during the period 1970–2000 in four political entities: Germany (FRG, GDR and unified Germany), Sweden, Switzerland, and Europe (European Communities [EC]/European Union [EU]). It consists of two sub-datasets:\r 1.\tThe first sub-dataset contains information on the various political initiatives that were undertaken in these political entities to address the challenges posed by digital change in education. \r 2.\tThe second sub-dataset includes information on the actors and platforms that played a role in the framing of these initiatives.\r Together, these two sub-datasets aim to provide an overview of the political initiatives and actors involved in addressing the challenges of digital change in education in Germany, Sweden, Switzerland, and the EC/EU. The database can be used to analyse and compare the different approaches taken by these political entities and to identify key stakeholders." - } - ], - "alternativeTitles": [ - { - "en": "Education and the European Digital Agenda" - } - ], - "accessConditions": "open", - "dateCreated": "2019-06-18", - "howToCite": "Guerrero Cantarell, Rosalía, Carmen Flury, Fabian Grütter and Michael Geiss (2023). Education and the European Digital Agenda: Switzerland, Germany and Sweden after 1970. DaSCH, https://ark.dasch.swiss/ark:/72163/1/0848.", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2023-07-03", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc/4.0/", - "text": "CC BY-NC 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0848-person-000", - "roles": [ - "Project leader, Author" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0848-person-001", - "roles": [ - "Postgraduate researcher, Author" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0848-person-002", - "roles": [ - "Postdoctoral researcher, Author, Editor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0848-person-003", - "roles": [ - "Postdoctoral researcher, Author" - ] - } - ], - "status": "Finished", - "title": "Education and the European Digital Agenda: Switzerland, Germany and Sweden after 1970", - "typeOfData": [ - "Text" - ], - "urls": [ - { - "__type": "URL", - "type": "URL", - "url": "https://ark.dasch.swiss/ark:/72163/1/0848/h2=yqH4KQDmawlQRRrdWQQn.20230712T22342238098192Z", - "text": "Find additional documentation here" - } - ] + "en": "The dataset maps political initiatives and actors involved in education in the context of digital change during the period 1970–2000 in four political entities: Germany (FRG, GDR and unified Germany), Sweden, Switzerland, and Europe (European Communities [EC]/European Union [EU]). It consists of two sub-datasets:\r 1.\tThe first sub-dataset contains information on the various political initiatives that were undertaken in these political entities to address the challenges posed by digital change in education. \r 2.\tThe second sub-dataset includes information on the actors and platforms that played a role in the framing of these initiatives.\r Together, these two sub-datasets aim to provide an overview of the political initiatives and actors involved in addressing the challenges of digital change in education in Germany, Sweden, Switzerland, and the EC/EU. The database can be used to analyse and compare the different approaches taken by these political entities and to identify key stakeholders." } - ], - "persons": [ + ], + "alternativeTitles": [ + { + "en": "Education and the European Digital Agenda" + } + ], + "accessConditions": "open", + "dateCreated": "2019-06-18", + "howToCite": "Guerrero Cantarell, Rosalía, Carmen Flury, Fabian Grütter and Michael Geiss (2023). Education and the European Digital Agenda: Switzerland, Germany and Sweden after 1970. DaSCH, https://ark.dasch.swiss/ark:/72163/1/0848.", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0848-person-000", - "__type": "Person", - "__createdAt": "1688420240396596000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Lagerstrasse 2", - "postalCode": "8090", - "locality": "Zurich", - "country": "Switzerland" - }, - "email": "michael.geiss@phzh.ch", - "familyNames": [ - "Geiss" - ], - "givenNames": [ - "Michael" - ], - "jobTitles": [ - "Professor, Head of the Centre for Education and Digital Transformation at the Zurich University of Teacher Education Director Centre for Education and Digital Transformation" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0848-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-0809-2427", - "text": "ORCID URL: https://orcid.org/0000-0002-0809-2427" - } - ] + "en": "English", + "de": "Englisch", + "fr": "anglais" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2023-07-03", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc/4.0/", + "text": "CC BY-NC 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0848-person-000", + "roles": [ + "Project leader, Author" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0848-person-001", - "__type": "Person", - "__createdAt": "1688420240477342000", - "__createdBy": "dsp-metadata-gui", - "email": "carmen.flury@gmx.net", - "familyNames": [ - "Flury" - ], - "givenNames": [ - "Carmen" - ], - "jobTitles": [ - "Teaching and research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0848-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-3759-6595", - "text": "ORCID URL: https://orcid.org/0000-0002-3759-6595" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0848-person-001", + "roles": [ + "Postgraduate researcher, Author" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0848-person-002", - "__type": "Person", - "__createdAt": "1688420240477806000", - "__createdBy": "dsp-metadata-gui", - "email": "rgc0403@gmail.com", - "familyNames": [ - "Guerrero Cantarell" - ], - "givenNames": [ - "Rosalía" - ], - "jobTitles": [ - "Teaching and research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0848-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-1071-1941", - "text": "ORCID URL: https://orcid.org/0000-0003-1071-1941" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0848-person-002", + "roles": [ + "Postdoctoral researcher, Author, Editor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0848-person-003", - "__type": "Person", - "__createdAt": "1688420240478263000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Lagerstrasse 2", - "postalCode": "8090", - "locality": "Zurich", - "country": "Switzerland" - }, - "email": "fabian.gruetter@hotmail.com", - "familyNames": [ - "Grütter" - ], - "givenNames": [ - "Fabian" - ], - "jobTitles": [ - "Teaching and research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0848-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-0809-2427", - "text": "ORCID URL: https://orcid.org/0000-0002-0809-2427" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0848-person-003", + "roles": [ + "Postdoctoral researcher, Author" + ] } - ], - "organizations": [ + ], + "status": "Finished", + "title": "Education and the European Digital Agenda: Switzerland, Germany and Sweden after 1970", + "typeOfData": [ + "Text" + ], + "urls": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0848-organization-001", - "__type": "Organization", - "__createdAt": "1688420240545901000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3", - "postalCode": "3001", - "locality": "Berne", - "country": "Switzerland" - }, - "email": "desk@snfs.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.snf.ch/en", - "text": "https://www.snf.ch/en" - } - }, + "__type": "URL", + "type": "URL", + "url": "https://ark.dasch.swiss/ark:/72163/1/0848/h2=yqH4KQDmawlQRRrdWQQn.20230712T22342238098192Z", + "text": "Find additional documentation here" + } + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0848-person-000", + "__type": "Person", + "__createdAt": "1688420240396596000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Lagerstrasse 2", + "postalCode": "8090", + "locality": "Zurich", + "country": "Switzerland" + }, + "email": "michael.geiss@phzh.ch", + "familyNames": [ + "Geiss" + ], + "givenNames": [ + "Michael" + ], + "jobTitles": [ + "Professor, Head of the Centre for Education and Digital Transformation at the Zurich University of Teacher Education Director Centre for Education and Digital Transformation" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0848-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0848-organization-000", - "__type": "Organization", - "__createdAt": "1688420240608457000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Lagerstrasse 2", - "postalCode": "8090", - "locality": "Zurich", - "country": "Switzerland" - }, - "email": "zbdw@phzh.ch", - "name": "Pädagogische Hochschule Zürich - PHZH", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://phzh.ch/de/Forschung/forschungsschwerpunkte/zentrum-bildung-und-digitaler-wandel/", - "text": "https://phzh.ch/de/Forschung/forschungsschwerpunkte/zentrum-bildung-und-digitaler-wandel/" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-0809-2427", + "text": "ORCID URL: https://orcid.org/0000-0002-0809-2427" } - ], - "grants": [ + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0848-person-001", + "__type": "Person", + "__createdAt": "1688420240477342000", + "__createdBy": "dsp-metadata-gui", + "email": "carmen.flury@gmx.net", + "familyNames": [ + "Flury" + ], + "givenNames": [ + "Carmen" + ], + "jobTitles": [ + "Teaching and research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0848-organization-000" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-3759-6595", + "text": "ORCID URL: https://orcid.org/0000-0002-3759-6595" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0848-person-002", + "__type": "Person", + "__createdAt": "1688420240477806000", + "__createdBy": "dsp-metadata-gui", + "email": "rgc0403@gmail.com", + "familyNames": [ + "Guerrero Cantarell" + ], + "givenNames": [ + "Rosalía" + ], + "jobTitles": [ + "Teaching and research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0848-organization-000" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-1071-1941", + "text": "ORCID URL: https://orcid.org/0000-0003-1071-1941" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0848-person-003", + "__type": "Person", + "__createdAt": "1688420240478263000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Lagerstrasse 2", + "postalCode": "8090", + "locality": "Zurich", + "country": "Switzerland" + }, + "email": "fabian.gruetter@hotmail.com", + "familyNames": [ + "Grütter" + ], + "givenNames": [ + "Fabian" + ], + "jobTitles": [ + "Teaching and research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0848-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0848-grant-000", - "__type": "Grant", - "__createdAt": "1688420240673920000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0848-organization-001" - ], - "name": "Project funding", - "number": "182217", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/182217", - "text": "https://data.snf.ch/grants/grant/182217" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-0809-2427", + "text": "ORCID URL: https://orcid.org/0000-0002-0809-2427" } - ] -} + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0848-organization-001", + "__type": "Organization", + "__createdAt": "1688420240545901000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3", + "postalCode": "3001", + "locality": "Berne", + "country": "Switzerland" + }, + "email": "desk@snfs.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.snf.ch/en", + "text": "https://www.snf.ch/en" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0848-organization-000", + "__type": "Organization", + "__createdAt": "1688420240608457000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Lagerstrasse 2", + "postalCode": "8090", + "locality": "Zurich", + "country": "Switzerland" + }, + "email": "zbdw@phzh.ch", + "name": "Pädagogische Hochschule Zürich - PHZH", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://phzh.ch/de/Forschung/forschungsschwerpunkte/zentrum-bildung-und-digitaler-wandel/", + "text": "https://phzh.ch/de/Forschung/forschungsschwerpunkte/zentrum-bildung-und-digitaler-wandel/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0848-grant-000", + "__type": "Grant", + "__createdAt": "1688420240673920000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0848-organization-001" + ], + "name": "Project funding", + "number": "182217", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/182217", + "text": "https://data.snf.ch/grants/grant/182217" + } + } + ] +} \ No newline at end of file diff --git a/data/json/dokubib.json b/data/json/dokubib.json index 8b27fd5a..fecd1e2f 100644 --- a/data/json/dokubib.json +++ b/data/json/dokubib.json @@ -1,154 +1,155 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0804-project", - "__type": "Project", - "__createdAt": "1630601297599944000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Dokumentationsbibliothek St. Moritz", - "teaserText": "Bibliothek St. Moritz Dokumentation is the local history archive of the community of St. Moritz, Switzerland.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0804-dataset-000" - ], - "description": { - "en": "Bibliothek St. Moritz Dokumentation is the local history archive of the community of St. Moritz, Switzerland. It’s collection contains publications, manuscripts and audiovisual documents of the touristic development of St. Moritz" - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/550301", - "text": "Local history" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0804-organization-001" - ], - "keywords": [ - { - "en": "Historic photograph" - }, - { - "en": "Local history" - }, - { - "en": "St. Moritz" - }, - { - "fr": "Touristic development" - } - ], - "name": "Bilddatenbank Bibliothek St. Moritz", - "shortcode": "0804", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://geonames.org/2658813", - "text": "Saint Moritz" - } - ], - "startDate": "1980-04-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "http://chronontology.dainst.org/period/mvhEZ4S2qWEa", - "text": "19th Century (1800 - 1899)" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "http://chronontology.dainst.org/period/INtagfT8h7Fs", - "text": "20th and 21st Centuries" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "http://chronontology.dainst.org/period/kqORhO4TGm4n", - "text": "20th Century (1900 - 1999)" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.dasch.swiss/dokubib/", - "text": "Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0804-project", + "__type": "Project", + "__createdAt": "1630601297599944000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Dokumentationsbibliothek St. Moritz", + "teaserText": "Bibliothek St. Moritz Dokumentation is the local history archive of the community of St. Moritz, Switzerland.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0804-dataset-000" + ], + "description": { + "en": "Bibliothek St. Moritz Dokumentation is the local history archive of the community of St. Moritz, Switzerland. It’s collection contains publications, manuscripts and audiovisual documents of the touristic development of St. Moritz" + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/550301", + "text": "Local history" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0804-organization-001" + ], + "keywords": [ + { + "en": "Historic photograph" + }, + { + "en": "Local history" + }, + { + "en": "St. Moritz" + }, + { + "fr": "Touristic development" + } + ], + "name": "Bilddatenbank Bibliothek St. Moritz", + "shortcode": "0804", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://geonames.org/2658813", + "text": "Saint Moritz" + } + ], + "startDate": "1980-04-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Chronontology", + "url": "http://chronontology.dainst.org/period/mvhEZ4S2qWEa", + "text": "19th Century (1800 - 1899)" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "http://chronontology.dainst.org/period/INtagfT8h7Fs", + "text": "20th and 21st Centuries" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "http://chronontology.dainst.org/period/kqORhO4TGm4n", + "text": "20th Century (1900 - 1999)" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.dasch.swiss/dokubib/", + "text": "Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0804-dataset-000", + "__type": "Dataset", + "__createdAt": "1630601300976368000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0804-dataset-000", - "__type": "Dataset", - "__createdAt": "1630601300976368000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "Bilddatenbank makes accessible the collection of historic photographs and other graphical representation of St. Moritz Dokumentationsbibliothek" - } - ], - "accessConditions": "restricted", - "howToCite": "Dokumentationsbibliothek St. Moritz", - "languages": [ - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0804-organization-000", - "roles": [ - "creator", - "publisher" - ] - } - ], - "status": "Ongoing", - "title": "Dokumentationsbibliothek St. Moritz Bilddatenbank", - "typeOfData": [ - "Image", - "Text" - ] + "en": "Bilddatenbank makes accessible the collection of historic photographs and other graphical representation of St. Moritz Dokumentationsbibliothek" } - ], - "organizations": [ + ], + "accessConditions": "restricted", + "howToCite": "Dokumentationsbibliothek St. Moritz", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0804-organization-001", - "__type": "Organization", - "__createdAt": "1630601301506212000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "", - "postalCode": "7500", - "locality": "St. Moritz", - "country": "Switzerland" - }, - "name": "Gemeinde St. Moritz" - }, + "de": "Deutsch", + "en": "German", + "fr": "allemand" + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0804-organization-000", - "__type": "Organization", - "__createdAt": "1630601301561696000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Plazza da Scoula 14", - "postalCode": "7500", - "locality": "St. Moritz", - "country": "Switzerland" - }, - "email": "doku@biblio-stmoritz.ch", - "name": "Dokumentationsbibliothek St. Moritz", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.biblio-stmoritz.ch", - "text": "www.biblio-stmoritz.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0804-organization-000", + "roles": [ + "creator", + "publisher" + ] } - ] -} + ], + "status": "Ongoing", + "title": "Dokumentationsbibliothek St. Moritz Bilddatenbank", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0804-organization-001", + "__type": "Organization", + "__createdAt": "1630601301506212000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "", + "postalCode": "7500", + "locality": "St. Moritz", + "country": "Switzerland" + }, + "name": "Gemeinde St. Moritz" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0804-organization-000", + "__type": "Organization", + "__createdAt": "1630601301561696000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Plazza da Scoula 14", + "postalCode": "7500", + "locality": "St. Moritz", + "country": "Switzerland" + }, + "email": "doku@biblio-stmoritz.ch", + "name": "Dokumentationsbibliothek St. Moritz", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.biblio-stmoritz.ch", + "text": "www.biblio-stmoritz.ch" + } + } + ] +} \ No newline at end of file diff --git a/data/json/drawings.json b/data/json/drawings.json index 3596c508..b9fa42c6 100644 --- a/data/json/drawings.json +++ b/data/json/drawings.json @@ -1,664 +1,665 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0105-project", - "__type": "Project", - "__createdAt": "1630601291043795000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Brandt, P.-Y., Serbaeva O., Cocco, Ch., Dessart, G., Dandarova Robert, Z., Rivoal, M., 2019, Dessins de dieux [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0105.", - "teaserText": "Fondé sur plusieurs centaines de dessins dans diverses régions du monde, ce projet étudie l’évolution de la représentation de Dieu ou d’autres êtres surnaturels chez des enfants et des adolescents.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0105-dataset-000" - ], - "alternativeNames": [ - { - "en": "drawings-gods" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0105-person-000", - "description": { - "fr": "The pictorial representations of the gods are very widely present in various religious traditions. The imagination of children is also impacted by this theme. Their representations vary according to age, of course, but are also influenced by the religious education received and the cultural environment. Collecting drawings is a widely proven technique for studying imaginary representations of children. Based on a collection of several hundred drawings in various regions of the world, including Brazil, Iran, Japan, the Netherlands, Romania, Russia and Switzerland, this project studies the evolution of the representation of God or other supernatural beings (gods, spirits, geniuses, etc.) in children and adolescents between 5 and 18 years old. A focus is put on the strategies implemented by children: recourse to traditional religious representations, to images of supernatural beings conveyed by animated films or comics. At the end of the project, the objective is to have been able to describe the main strategies used by the children while being able to highlight how the choice of one strategy rather than another is influenced by age, sex, religious education and the cultural environment of the child. The work context is interdisciplinary. The analysis of the collected material combines computer processing of images and descriptions provided by specialists in child development, the study of religions and the cultural contexts of origin of the drawings. These image analyzes will be supplemented by textual analyzes of comments provided by the children to explain what they have drawn." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/61", - "text": "Psychology" - }, - { - "en": "10105 Psychology" - }, - { - "en": "10102 Religious studies, Theology" - }, - { - "en": "10201 Sociology" - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/630110", - "text": "Sociology of religion" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0105-organization-000", - "http://ns.dasch.swiss/repository#dsp-0105-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0105-grant-000" - ], - "keywords": [ - { - "en": "Child development" - }, - { - "en": "Cross-cultural" - }, - { - "en": "Database" - }, - { - "en": "Digital humanities" - }, - { - "en": "Drawings" - }, - { - "en": "Interdisciplinarity" - }, - { - "en": "Supernatural agents" - } - ], - "name": "Drawings of gods: A Multicultural and Interdisciplinary Approach of Children’s Representations of Supernatural Agents", - "publications": [ - { - "text": "Brandt, Pierre-Yves, Dandarova Robert, Zhargalma, Cocco, Christelle, Vinck, Dominique, & Darbellay, Frédéric (Eds) (in press), When children draw gods: A multicultural and interdisciplinary approach to children's representations of supernatural agents. Cham : Springer." - }, - { - "text": "Dandarova Robert Zhargalma, Dessart Grégory, Serbaeva Olga, Puzdriac Camelia, Khodayarifard Mohammad, Akbari Zardkhaneh Saeed, Zandi Saeid, Petanova Elena, Ladd Kevin, Brandt Pierre-Yves (2016), A Web-based Database for Drawings of Gods: When the Digitals Go Multicultural, in Archive for the Psychology of Religion, (3), 345-352." - }, - { - "text": "Cocco Christelle, Ceré Raphaël, Xanthos Aris, Brandt Pierre-Yves (2019), Identification and quantification of colours in children’s drawings., in Proceedings of the Workshop on Computational Methods in the Humanities 2018, Lausanne http://ceur-ws.org/, Lausanne." - }, - { - "text": "Brandt Pierre-Yves, Cocco Christelle, Dessart Grégory, Dandarova Robert Zhargalma, Représentations de dieux dans des dessins d’enfants, in Représenter dieux et hommes dans le Proche-Orient ancien, Collège de France, Paris." - }, - { - "text": "Darbellay Frédéric, Vinck Dominique, Cocco Christelle, Dessart Grégory, Dandarova Robert Zhargalma, Brandt Pierre-Yves (2018), L'interdisciplinarité en partage: collaborer pour innover - Le projet \"dessins de dieu\", in InnovatiO, (5), NA." - }, - { - "text": "Vinck Dominique, Camus Alexandre, Jaton Florian, Oberhauser Pierre-Nicolas (2018), Localités distribuées, globalités localisées: actions, actants et médiations au service de l’ethnographie du numérique, in Symposium, 22(1), 41-60." - }, - { - "text": "Cocco Christelle, Dessart Grégory, Serbaeva Olga, Brandt Pierre-Yves, Vinck Dominique, Darbellay Frédéric (2018), Potentialités et difficultés d’un projet en humanités numériques (DH) : confrontation aux outils et réorientations de recherche, in Digital Humanities Quarterly, 12(1)." - }, - { - "text": "Oberhauser Pierre-Nicolas (2016), Des collaborations équivoques. La participation de spécialistes en sciences et techniques informatiques à un projet de recherche en humanités numériques, in Revue d'anthropologie des connaissances, 10(4), 557-586." - }, - { - "text": "Brandt, Pierre-Yves, Cocco, Christelle, Dessart, Grégory & Dandarova, Zhargalma (2019). Représentations de dieux dans des dessins d’enfants. In T. Römer, H. Gonzalez et L. Marti (Eds). Représenter dieux et hommes dans le Proche-Orient ancien et dans la Bible (OBO 287, pp. 347-370). Leuven/Paris/Bristol : Peeters." - } - ], - "shortcode": "0105", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2750405/", - "text": "Netherlands" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/", - "text": "Switzerland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6252001/", - "text": "United States" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "http://www.geonames.org/3865483/", - "text": "Argentina" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/130758/", - "text": "Iran" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/1282988/", - "text": "Nepal" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2017370/", - "text": "Russia" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/1861060/", - "text": "Japan" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/798549/", - "text": "Romania" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3469034/", - "text": "Brazil" - } - ], - "startDate": "2015-03-01", - "temporalCoverage": [ - { - "de": "1987-2018", - "en": "1987-2018", - "fr": "1987-2018" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.ls-prod-server.dasch.swiss/project/0105", - "text": "Discover Project Data" - }, - "secondaryURL": { - "__type": "URL", - "type": "URL", - "url": "https://ddd.unil.ch/", - "text": "External Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0105-project", + "__type": "Project", + "__createdAt": "1630601291043795000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Brandt, P.-Y., Serbaeva O., Cocco, Ch., Dessart, G., Dandarova Robert, Z., Rivoal, M., 2019, Dessins de dieux [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0105.", + "teaserText": "Fondé sur plusieurs centaines de dessins dans diverses régions du monde, ce projet étudie l’évolution de la représentation de Dieu ou d’autres êtres surnaturels chez des enfants et des adolescents.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0105-dataset-000" + ], + "alternativeNames": [ + { + "en": "drawings-gods" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0105-person-000", + "description": { + "fr": "The pictorial representations of the gods are very widely present in various religious traditions. The imagination of children is also impacted by this theme. Their representations vary according to age, of course, but are also influenced by the religious education received and the cultural environment. Collecting drawings is a widely proven technique for studying imaginary representations of children. Based on a collection of several hundred drawings in various regions of the world, including Brazil, Iran, Japan, the Netherlands, Romania, Russia and Switzerland, this project studies the evolution of the representation of God or other supernatural beings (gods, spirits, geniuses, etc.) in children and adolescents between 5 and 18 years old. A focus is put on the strategies implemented by children: recourse to traditional religious representations, to images of supernatural beings conveyed by animated films or comics. At the end of the project, the objective is to have been able to describe the main strategies used by the children while being able to highlight how the choice of one strategy rather than another is influenced by age, sex, religious education and the cultural environment of the child. The work context is interdisciplinary. The analysis of the collected material combines computer processing of images and descriptions provided by specialists in child development, the study of religions and the cultural contexts of origin of the drawings. These image analyzes will be supplemented by textual analyzes of comments provided by the children to explain what they have drawn." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/61", + "text": "Psychology" + }, + { + "en": "10105 Psychology" + }, + { + "en": "10102 Religious studies, Theology" + }, + { + "en": "10201 Sociology" + }, + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/630110", + "text": "Sociology of religion" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0105-organization-000", + "http://ns.dasch.swiss/repository#dsp-0105-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0105-grant-000" + ], + "keywords": [ + { + "en": "Child development" + }, + { + "en": "Cross-cultural" + }, + { + "en": "Database" + }, + { + "en": "Digital humanities" + }, + { + "en": "Drawings" + }, + { + "en": "Interdisciplinarity" + }, + { + "en": "Supernatural agents" + } + ], + "name": "Drawings of gods: A Multicultural and Interdisciplinary Approach of Children’s Representations of Supernatural Agents", + "publications": [ + { + "text": "Brandt, Pierre-Yves, Dandarova Robert, Zhargalma, Cocco, Christelle, Vinck, Dominique, & Darbellay, Frédéric (Eds) (in press), When children draw gods: A multicultural and interdisciplinary approach to children's representations of supernatural agents. Cham : Springer." + }, + { + "text": "Dandarova Robert Zhargalma, Dessart Grégory, Serbaeva Olga, Puzdriac Camelia, Khodayarifard Mohammad, Akbari Zardkhaneh Saeed, Zandi Saeid, Petanova Elena, Ladd Kevin, Brandt Pierre-Yves (2016), A Web-based Database for Drawings of Gods: When the Digitals Go Multicultural, in Archive for the Psychology of Religion, (3), 345-352." + }, + { + "text": "Cocco Christelle, Ceré Raphaël, Xanthos Aris, Brandt Pierre-Yves (2019), Identification and quantification of colours in children’s drawings., in Proceedings of the Workshop on Computational Methods in the Humanities 2018, Lausanne http://ceur-ws.org/, Lausanne." + }, + { + "text": "Brandt Pierre-Yves, Cocco Christelle, Dessart Grégory, Dandarova Robert Zhargalma, Représentations de dieux dans des dessins d’enfants, in Représenter dieux et hommes dans le Proche-Orient ancien, Collège de France, Paris." + }, + { + "text": "Darbellay Frédéric, Vinck Dominique, Cocco Christelle, Dessart Grégory, Dandarova Robert Zhargalma, Brandt Pierre-Yves (2018), L'interdisciplinarité en partage: collaborer pour innover - Le projet \"dessins de dieu\", in InnovatiO, (5), NA." + }, + { + "text": "Vinck Dominique, Camus Alexandre, Jaton Florian, Oberhauser Pierre-Nicolas (2018), Localités distribuées, globalités localisées: actions, actants et médiations au service de l’ethnographie du numérique, in Symposium, 22(1), 41-60." + }, + { + "text": "Cocco Christelle, Dessart Grégory, Serbaeva Olga, Brandt Pierre-Yves, Vinck Dominique, Darbellay Frédéric (2018), Potentialités et difficultés d’un projet en humanités numériques (DH) : confrontation aux outils et réorientations de recherche, in Digital Humanities Quarterly, 12(1)." + }, + { + "text": "Oberhauser Pierre-Nicolas (2016), Des collaborations équivoques. La participation de spécialistes en sciences et techniques informatiques à un projet de recherche en humanités numériques, in Revue d'anthropologie des connaissances, 10(4), 557-586." + }, + { + "text": "Brandt, Pierre-Yves, Cocco, Christelle, Dessart, Grégory & Dandarova, Zhargalma (2019). Représentations de dieux dans des dessins d’enfants. In T. Römer, H. Gonzalez et L. Marti (Eds). Représenter dieux et hommes dans le Proche-Orient ancien et dans la Bible (OBO 287, pp. 347-370). Leuven/Paris/Bristol : Peeters." + } + ], + "shortcode": "0105", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2750405/", + "text": "Netherlands" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/", + "text": "Switzerland" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/6252001/", + "text": "United States" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "http://www.geonames.org/3865483/", + "text": "Argentina" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/130758/", + "text": "Iran" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/1282988/", + "text": "Nepal" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2017370/", + "text": "Russia" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/1861060/", + "text": "Japan" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/798549/", + "text": "Romania" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3469034/", + "text": "Brazil" + } + ], + "startDate": "2015-03-01", + "temporalCoverage": [ + { + "de": "1987-2018", + "en": "1987-2018", + "fr": "1987-2018" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.ls-prod-server.dasch.swiss/project/0105", + "text": "Discover Project Data" + }, + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://ddd.unil.ch/", + "text": "External Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0105-dataset-000", + "__type": "Dataset", + "__createdAt": "1630601296848631000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0105-dataset-000", - "__type": "Dataset", - "__createdAt": "1630601296848631000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "fr": "Au cours des dernières décennies l’étude du concept de dieu (ainsi que l’image et la représentation) est devenu l’un des principaux domaines de recherche en psychologie de la religion. Cette question a été abordée au travers de différentes approches psychologiques : la psychologie développementale cognitive, les théories de la relation d’objet, la psychologie cognitive, les théories des attributions et la théorie d’attachement. En dépit des progrès réalisés, la compréhension de ce phénomène très complexe reste toujours limitée. Selon de nombreux chercheurs une des raisons importantes est celle des méthodes utilisées qui, de façon globale, se basent sur des méthodes verbales: des questionnaires, des entretiens, des listes d’adjectifs pour décrire dieu, des associations libres, etc. Le projet Dessins de dieux, dirigé par le professeur Pierre-Yves Brandt, vise à contribuer à une compréhension ultérieure de l’origine du concept de dieu et son développement chez les enfants. La technique de dessin, critiquée par certains chercheurs, se présente comme un outil opportun pour effectuer une étude à fois développementale et cross-culturelle. Elle est même plus efficace pour mettre en lumière la place et la fonction des images dans le processus de l’acquisition et de l’intériorisation de certains concepts religieux, ainsi que pour révéler des contradictions et des difficultés de l’acquisition de l’idée de dieu par des enfants. L’absence de telles études entrave les progrès de nos savoirs dans ce domaine. La base de données Dessins de dieux a été créée pour stocker des données de cette recherche et les rendre accessibles non seulement aux chercheurs affiliés au projet mais aussi au grand public qui s’intéresse à cette problématique. Une première collection de 143 dessins a été récoltée en 2003-2004 au Japon. Actuellement, la base de données contient plus de 7100 dessins recueillis au Japon, en Roumanie, en Russie, en Suisse, aux États-Unis, en Iran, au Népal et aux Pays-Bas ; elle continue à s’agrandir. Nous espérons que cette recherche intéressera les chercheurs d’autres pays afin que cette base de données s’enrichisse de dessins issus d’autres traditions confessionnelles et culturelles." - } - ], - "accessConditions": "restricted", - "dateCreated": "2018-07-02", - "dateModified": "2021-11-30", - "datePublished": "2018-07-02", - "howToCite": "Brandt, P.-Y., Serbaeva O., Cocco, Ch., Dessart, G., Dandarova Robert, Z., Rivoal, M., 2019, Dessins de dieux [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0105.", - "languages": [ - { - "en": "French", - "de": "Französisch", - "fr": "français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0/", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-000", - "roles": [ - "Project leader" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-001", - "roles": [ - "Project leader" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-002", - "roles": [ - "Project leader" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-003", - "roles": [ - "Project leader" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-004", - "roles": [ - "Project member", - "Data collector", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-005", - "roles": [ - "Project member", - "Data curator", - "Researcher" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-006", - "roles": [ - "Project member", - "Data collector", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-008", - "roles": [ - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-007", - "roles": [ - "Other" - ] - } - ], - "status": "Finished", - "title": "Base de données Dessins de dieux", - "typeOfData": [ - "Image", - "Text" - ] + "fr": "Au cours des dernières décennies l’étude du concept de dieu (ainsi que l’image et la représentation) est devenu l’un des principaux domaines de recherche en psychologie de la religion. Cette question a été abordée au travers de différentes approches psychologiques : la psychologie développementale cognitive, les théories de la relation d’objet, la psychologie cognitive, les théories des attributions et la théorie d’attachement. En dépit des progrès réalisés, la compréhension de ce phénomène très complexe reste toujours limitée. Selon de nombreux chercheurs une des raisons importantes est celle des méthodes utilisées qui, de façon globale, se basent sur des méthodes verbales: des questionnaires, des entretiens, des listes d’adjectifs pour décrire dieu, des associations libres, etc. Le projet Dessins de dieux, dirigé par le professeur Pierre-Yves Brandt, vise à contribuer à une compréhension ultérieure de l’origine du concept de dieu et son développement chez les enfants. La technique de dessin, critiquée par certains chercheurs, se présente comme un outil opportun pour effectuer une étude à fois développementale et cross-culturelle. Elle est même plus efficace pour mettre en lumière la place et la fonction des images dans le processus de l’acquisition et de l’intériorisation de certains concepts religieux, ainsi que pour révéler des contradictions et des difficultés de l’acquisition de l’idée de dieu par des enfants. L’absence de telles études entrave les progrès de nos savoirs dans ce domaine. La base de données Dessins de dieux a été créée pour stocker des données de cette recherche et les rendre accessibles non seulement aux chercheurs affiliés au projet mais aussi au grand public qui s’intéresse à cette problématique. Une première collection de 143 dessins a été récoltée en 2003-2004 au Japon. Actuellement, la base de données contient plus de 7100 dessins recueillis au Japon, en Roumanie, en Russie, en Suisse, aux États-Unis, en Iran, au Népal et aux Pays-Bas ; elle continue à s’agrandir. Nous espérons que cette recherche intéressera les chercheurs d’autres pays afin que cette base de données s’enrichisse de dessins issus d’autres traditions confessionnelles et culturelles." } - ], - "persons": [ + ], + "accessConditions": "restricted", + "dateCreated": "2018-07-02", + "dateModified": "2021-11-30", + "datePublished": "2018-07-02", + "howToCite": "Brandt, P.-Y., Serbaeva O., Cocco, Ch., Dessart, G., Dandarova Robert, Z., Rivoal, M., 2019, Dessins de dieux [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0105.", + "languages": [ + { + "en": "French", + "de": "Französisch", + "fr": "français" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-001", - "__type": "Person", - "__createdAt": "1630601297440339000", - "__createdBy": "dsp-metadata-gui", - "email": "dominique.vinck@unil.ch", - "familyNames": [ - "Vinck" - ], - "givenNames": [ - "Dominique" - ], - "jobTitles": [ - "Full professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0105-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0001-7835-7008", - "text": "ORCID URL: https://orcid.org/0000-0001-7835-7008" - } - ], - "address": { - "__type": "Address", - "street": "ISS Unil, Quartier UNIL-Mouline, Bâtiment Géopolis", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-000", + "roles": [ + "Project leader" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-002", - "__type": "Person", - "__createdAt": "1630601297440516000", - "__createdBy": "dsp-metadata-gui", - "email": "zhargalma.dandarova@unil.ch", - "familyNames": [ - "Dandarova-Robert" - ], - "givenNames": [ - "Zhargalma" - ], - "jobTitles": [ - "Lecturer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0105-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-3979-4859", - "text": "ORCID URL: https://orcid.org/0000-0003-3979-4859" - } - ], - "address": { - "__type": "Address", - "street": "ISSR/FTSR Unil, Quartier Unil-Chamberonne, Bâtiment Anthropole", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-001", + "roles": [ + "Project leader" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-003", - "__type": "Person", - "__createdAt": "1630601297440691000", - "__createdBy": "dsp-metadata-gui", - "email": "frederic.darbellay@unige.ch", - "familyNames": [ - "Darbellay" - ], - "givenNames": [ - "Frédéric" - ], - "jobTitles": [ - "Associate professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0105-organization-002" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-1321-7105", - "text": "ORCID URL: https://orcid.org/0000-0003-1321-7105" - } - ], - "address": { - "__type": "Address", - "street": "Centre interfacultaire en droits de l’enfant (CIDE), Université de Genève (Valais Campus), Chemin de l'Institut 18", - "postalCode": "1967", - "locality": "Bramois", - "country": "Switzerland" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-002", + "roles": [ + "Project leader" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-007", - "__type": "Person", - "__createdAt": "1630601297440866000", - "__createdBy": "dsp-metadata-gui", - "email": "loic.jaouen@unil.ch", - "familyNames": [ - "Jaouen" - ], - "givenNames": [ - "Loïc" - ], - "jobTitles": [ - "IT support" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0105-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-003", + "roles": [ + "Project leader" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-008", - "__type": "Person", - "__createdAt": "1630601297440970000", - "__createdBy": "dsp-metadata-gui", - "email": "marion.rivoal@unil.ch", - "familyNames": [ - "Rivoal" - ], - "givenNames": [ - "Marion" - ], - "jobTitles": [ - "Research manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0105-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-4185-7169", - "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-004", + "roles": [ + "Project member", + "Data collector", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-000", - "__type": "Person", - "__createdAt": "1630601297442178000", - "__createdBy": "dsp-metadata-gui", - "email": "pierre-yves.brandt@unil.ch", - "familyNames": [ - "Brandt" - ], - "givenNames": [ - "Pierre-Yves" - ], - "jobTitles": [ - "Full professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0105-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-4485-5807", - "text": "ORCID URL: https://orcid.org/0000-0002-4485-5807" - } - ], - "address": { - "__type": "Address", - "street": "ISSR/FTSR Unil, Quartier Unil-Chamberonne, Bâtiment Anthropole", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-005", + "roles": [ + "Project member", + "Data curator", + "Researcher" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-005", - "__type": "Person", - "__createdAt": "1630601297442369000", - "__createdBy": "dsp-metadata-gui", - "email": "christelle.cocco@unil.ch", - "familyNames": [ - "Cocco" - ], - "givenNames": [ - "Christelle" - ], - "jobTitles": [ - "Post-doctoral researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0105-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0001-6684-9806", - "text": "ORCID URL: https://orcid.org/0000-0001-6684-9806" - } - ], - "address": { - "__type": "Address", - "street": "FTSR Unil, Quartier Unil-Chamberonne, Bâtiment Anthropole", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-006", + "roles": [ + "Project member", + "Data collector", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-004", - "__type": "Person", - "__createdAt": "1630601297442551000", - "__createdBy": "dsp-metadata-gui", - "email": "olga.serbaeva@aoi.uzh.ch", - "secondaryEmail": "olga.serbaeva@unil.ch", - "familyNames": [ - "Serbaeva Saraogi" - ], - "givenNames": [ - "Olga" - ], - "jobTitles": [ - "Developer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0105-organization-001" - ], - "address": { - "__type": "Address", - "street": "Institute of Asian and oriental Studies, University of Zurich, Rämistr. 59", - "postalCode": "8001", - "locality": "Zürich", - "country": "Switzerland" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-008", + "roles": [ + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-006", - "__type": "Person", - "__createdAt": "1630601297442673000", - "__createdBy": "dsp-metadata-gui", - "email": "gregory.dessart@unil.ch", - "familyNames": [ - "Dessart" - ], - "givenNames": [ - "Grégory" - ], - "jobTitles": [ - "PhD student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0105-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-1986-9702", - "text": "ORCID URL: https://orcid.org/0000-0003-1986-9702" - } - ], - "address": { - "__type": "Address", - "street": "ISSR/FTSR Unil, Quartier Unil-Chamberonne, Bâtiment Anthropole", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0105-person-007", + "roles": [ + "Other" + ] } - ], - "organizations": [ + ], + "status": "Finished", + "title": "Base de données Dessins de dieux", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-001", + "__type": "Person", + "__createdAt": "1630601297440339000", + "__createdBy": "dsp-metadata-gui", + "email": "dominique.vinck@unil.ch", + "familyNames": [ + "Vinck" + ], + "givenNames": [ + "Dominique" + ], + "jobTitles": [ + "Full professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0105-organization-001" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0105-organization-002", - "__type": "Organization", - "__createdAt": "1630601297442885000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "24 rue du Général-Dufour", - "postalCode": "1211", - "locality": "Genève 4", - "country": "Switzerland" - }, - "name": "Université de Genève", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unige.ch/", - "text": "https://www.unige.ch/" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0001-7835-7008", + "text": "ORCID URL: https://orcid.org/0000-0001-7835-7008" + } + ], + "address": { + "__type": "Address", + "street": "ISS Unil, Quartier UNIL-Mouline, Bâtiment Géopolis", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-002", + "__type": "Person", + "__createdAt": "1630601297440516000", + "__createdBy": "dsp-metadata-gui", + "email": "zhargalma.dandarova@unil.ch", + "familyNames": [ + "Dandarova-Robert" + ], + "givenNames": [ + "Zhargalma" + ], + "jobTitles": [ + "Lecturer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0105-organization-001" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0105-organization-000", - "__type": "Organization", - "__createdAt": "1630601297473452000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3 Postfach", - "postalCode": "3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-3979-4859", + "text": "ORCID URL: https://orcid.org/0000-0003-3979-4859" + } + ], + "address": { + "__type": "Address", + "street": "ISSR/FTSR Unil, Quartier Unil-Chamberonne, Bâtiment Anthropole", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-003", + "__type": "Person", + "__createdAt": "1630601297440691000", + "__createdBy": "dsp-metadata-gui", + "email": "frederic.darbellay@unige.ch", + "familyNames": [ + "Darbellay" + ], + "givenNames": [ + "Frédéric" + ], + "jobTitles": [ + "Associate professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0105-organization-002" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0105-organization-001", - "__type": "Organization", - "__createdAt": "1630601297504715000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Unicentre", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "name": "Université de Lausanne", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unil.ch/", - "text": "https://www.unil.ch/" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-1321-7105", + "text": "ORCID URL: https://orcid.org/0000-0003-1321-7105" } - ], - "grants": [ + ], + "address": { + "__type": "Address", + "street": "Centre interfacultaire en droits de l’enfant (CIDE), Université de Genève (Valais Campus), Chemin de l'Institut 18", + "postalCode": "1967", + "locality": "Bramois", + "country": "Switzerland" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-007", + "__type": "Person", + "__createdAt": "1630601297440866000", + "__createdBy": "dsp-metadata-gui", + "email": "loic.jaouen@unil.ch", + "familyNames": [ + "Jaouen" + ], + "givenNames": [ + "Loïc" + ], + "jobTitles": [ + "IT support" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0105-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-008", + "__type": "Person", + "__createdAt": "1630601297440970000", + "__createdBy": "dsp-metadata-gui", + "email": "marion.rivoal@unil.ch", + "familyNames": [ + "Rivoal" + ], + "givenNames": [ + "Marion" + ], + "jobTitles": [ + "Research manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0105-organization-001" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0105-grant-000", - "__type": "Grant", - "__createdAt": "1630601297538098000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0105-organization-000" - ], - "name": "Interdisciplinary Projects", - "number": "156383", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/156383", - "text": "https://data.snf.ch/grants/grant/156383" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4185-7169", + "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" } - ] -} + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-000", + "__type": "Person", + "__createdAt": "1630601297442178000", + "__createdBy": "dsp-metadata-gui", + "email": "pierre-yves.brandt@unil.ch", + "familyNames": [ + "Brandt" + ], + "givenNames": [ + "Pierre-Yves" + ], + "jobTitles": [ + "Full professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0105-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-4485-5807", + "text": "ORCID URL: https://orcid.org/0000-0002-4485-5807" + } + ], + "address": { + "__type": "Address", + "street": "ISSR/FTSR Unil, Quartier Unil-Chamberonne, Bâtiment Anthropole", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-005", + "__type": "Person", + "__createdAt": "1630601297442369000", + "__createdBy": "dsp-metadata-gui", + "email": "christelle.cocco@unil.ch", + "familyNames": [ + "Cocco" + ], + "givenNames": [ + "Christelle" + ], + "jobTitles": [ + "Post-doctoral researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0105-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0001-6684-9806", + "text": "ORCID URL: https://orcid.org/0000-0001-6684-9806" + } + ], + "address": { + "__type": "Address", + "street": "FTSR Unil, Quartier Unil-Chamberonne, Bâtiment Anthropole", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-004", + "__type": "Person", + "__createdAt": "1630601297442551000", + "__createdBy": "dsp-metadata-gui", + "email": "olga.serbaeva@aoi.uzh.ch", + "secondaryEmail": "olga.serbaeva@unil.ch", + "familyNames": [ + "Serbaeva Saraogi" + ], + "givenNames": [ + "Olga" + ], + "jobTitles": [ + "Developer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0105-organization-001" + ], + "address": { + "__type": "Address", + "street": "Institute of Asian and oriental Studies, University of Zurich, Rämistr. 59", + "postalCode": "8001", + "locality": "Zürich", + "country": "Switzerland" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0105-person-006", + "__type": "Person", + "__createdAt": "1630601297442673000", + "__createdBy": "dsp-metadata-gui", + "email": "gregory.dessart@unil.ch", + "familyNames": [ + "Dessart" + ], + "givenNames": [ + "Grégory" + ], + "jobTitles": [ + "PhD student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0105-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-1986-9702", + "text": "ORCID URL: https://orcid.org/0000-0003-1986-9702" + } + ], + "address": { + "__type": "Address", + "street": "ISSR/FTSR Unil, Quartier Unil-Chamberonne, Bâtiment Anthropole", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + } + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0105-organization-002", + "__type": "Organization", + "__createdAt": "1630601297442885000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "24 rue du Général-Dufour", + "postalCode": "1211", + "locality": "Genève 4", + "country": "Switzerland" + }, + "name": "Université de Genève", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unige.ch/", + "text": "https://www.unige.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0105-organization-000", + "__type": "Organization", + "__createdAt": "1630601297473452000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3 Postfach", + "postalCode": "3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0105-organization-001", + "__type": "Organization", + "__createdAt": "1630601297504715000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Unicentre", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "name": "Université de Lausanne", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unil.ch/", + "text": "https://www.unil.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0105-grant-000", + "__type": "Grant", + "__createdAt": "1630601297538098000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0105-organization-000" + ], + "name": "Interdisciplinary Projects", + "number": "156383", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/156383", + "text": "https://data.snf.ch/grants/grant/156383" + } + } + ] +} \ No newline at end of file diff --git a/data/json/eHKKA.json b/data/json/eHKKA.json index 5b90d86b..02961bef 100644 --- a/data/json/eHKKA.json +++ b/data/json/eHKKA.json @@ -1,294 +1,295 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-083C-project", - "__type": "Project", - "__createdAt": "1658837460816710000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Morgenthaler et al., historisch-kritsche Kellerausgabe online, 1996-2013", - "teaserText": "Gottfried Keller (1819-1890) gehört zu den grossen Autoren des Realismus. Die eHKKA ediert Kellers Gesamtwerk: Seine Romane, Novellen, Gedichte, Tagebücher und Briefe.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-083C-dataset-000" - ], - "alternativeNames": [ - { - "de": "HKKA" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-083C-person-003", - "description": { - "de": "Die HKKA war ein Meilenstein der computergestützten Editonsphilologie. Sie dokumentiert nicht nur die Entstehungs- und Publikationsgeschichte der von Keller veröffentlichten Werke, sondern präsentiert erstmals ohne willkürliche Selektion den gesamten literarischen Nachlass. Nach Abschluss der Buchausgabe soll die Ausgabe nun auch in benutzerfreundlicher Art auf dem Netzt zugänglich gemacht werden." - }, - "disciplines": [ - { - "de": "10302 Schweizer Geschichte" - }, - { - "de": "10501 Sprach- und Literaturwissenschaft" - } - ], - "endDate": "2013-07-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-083C-organization-000" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-083C-grant-000" - ], - "keywords": [ - { - "en": "Arts" - }, - { - "en": "German Literature" - }, - { - "en": "History" - }, - { - "en": "Politics" - }, - { - "en": "Swiss Literature" - } - ], - "name": "Historische-Kritische Gottfried Keller Ausgabe (HKKA)", - "publications": [ - { - "text": "Gottfried Keller: Sämtliche Werke. Historisch-Kritische Ausgabe. Herausgegeben unter der Leitung von Walter Morgenthaler im Auftrag der Stiftung Historisch-Kritische Gottfried Keller-Ausgabe. 32 Bände. Frankfurt a. M., Basel und Zürich 1996-2013." - } - ], - "shortcode": "083C", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2921044/federal-republic-of-germany.html", - "text": "Germany" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/switzerland.html", - "text": "Switzerland" - } - ], - "startDate": "1991-04-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "http://chronontology.dainst.org/period/5C8DINGE1IXb", - "text": "19th Century" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.ehkka.ch/ehkka/", - "text": "External Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-083C-project", + "__type": "Project", + "__createdAt": "1658837460816710000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Morgenthaler et al., historisch-kritsche Kellerausgabe online, 1996-2013", + "teaserText": "Gottfried Keller (1819-1890) gehört zu den grossen Autoren des Realismus. Die eHKKA ediert Kellers Gesamtwerk: Seine Romane, Novellen, Gedichte, Tagebücher und Briefe.", "datasets": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-083C-dataset-000", - "__type": "Dataset", - "__createdAt": "1658837462051680000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "de": "Eine online-Edition der Historisch-Kritischen Kellerausgabe" - } - ], - "alternativeTitles": [ - { - "de": "eHKKA" - } - ], - "accessConditions": "open", - "datePublished": "1996-01-01", - "howToCite": "Morgenthaler et al., historisch-kritsche Kellerausgabe online, 1996-2013.", - "languages": [ - { - "de": "Deutsch" - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-083C-person-000", - "roles": [ - "1991-2012: Vollberuflicher Mitarbeiter der HKKA Initiant des Projekts und Leiter des Herausgeberteams" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-083C-person-002", - "roles": [ - "2000-2013 Vollberuflicher Mitarbeiter der HKKA 2000-2013 Mitglied des Herausgeberteams, zuständig für EDV " - ] - } - ], - "status": "Finished", - "title": "Historisch-Kritische Kellerausgabe online", - "typeOfData": [ - "Image", - "Text", - "XML" - ] - } + "http://ns.dasch.swiss/repository#dsp-083C-dataset-000" ], - "persons": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-083C-person-001", - "__type": "Person", - "__createdAt": "1658837462207965000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Amrein" - ], - "givenNames": [ - "Ursula" - ], - "jobTitles": [ - "Prof. Dr. phil." - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-083C-organization-000", - "http://ns.dasch.swiss/repository#dsp-083C-organization-005" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-083C-person-000", - "__type": "Person", - "__createdAt": "1658837462208018000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Morgenthaler" - ], - "givenNames": [ - "Walter" - ], - "jobTitles": [ - "Dr. phil." - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-083C-organization-000", - "http://ns.dasch.swiss/repository#dsp-083C-organization-005" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-083C-person-002", - "__type": "Person", - "__createdAt": "1658837462208065000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Grob" - ], - "givenNames": [ - "Karl" - ], - "jobTitles": [ - "Dr. phil." - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-083C-organization-000" - ] - }, + "alternativeNames": [ + { + "de": "HKKA" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-083C-person-003", + "description": { + "de": "Die HKKA war ein Meilenstein der computergestützten Editonsphilologie. Sie dokumentiert nicht nur die Entstehungs- und Publikationsgeschichte der von Keller veröffentlichten Werke, sondern präsentiert erstmals ohne willkürliche Selektion den gesamten literarischen Nachlass. Nach Abschluss der Buchausgabe soll die Ausgabe nun auch in benutzerfreundlicher Art auf dem Netzt zugänglich gemacht werden." + }, + "disciplines": [ + { + "de": "10302 Schweizer Geschichte" + }, + { + "de": "10501 Sprach- und Literaturwissenschaft" + } + ], + "endDate": "2013-07-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-083C-organization-000" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-083C-grant-000" + ], + "keywords": [ + { + "en": "Arts" + }, + { + "en": "German Literature" + }, + { + "en": "History" + }, + { + "en": "Politics" + }, + { + "en": "Swiss Literature" + } + ], + "name": "Historische-Kritische Gottfried Keller Ausgabe (HKKA)", + "publications": [ + { + "text": "Gottfried Keller: Sämtliche Werke. Historisch-Kritische Ausgabe. Herausgegeben unter der Leitung von Walter Morgenthaler im Auftrag der Stiftung Historisch-Kritische Gottfried Keller-Ausgabe. 32 Bände. Frankfurt a. M., Basel und Zürich 1996-2013." + } + ], + "shortcode": "083C", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2921044/federal-republic-of-germany.html", + "text": "Germany" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/switzerland.html", + "text": "Switzerland" + } + ], + "startDate": "1991-04-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Chronontology", + "url": "http://chronontology.dainst.org/period/5C8DINGE1IXb", + "text": "19th Century" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.ehkka.ch/ehkka/", + "text": "External Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083C-dataset-000", + "__type": "Dataset", + "__createdAt": "1658837462051680000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-083C-person-003", - "__type": "Person", - "__createdAt": "1658837462208103000", - "__createdBy": "dsp-metadata-gui", - "email": "dom.muller@bluewin.ch", - "familyNames": [ - "Müller" - ], - "givenNames": [ - "Dominik" - ], - "jobTitles": [ - "Dr. phil." - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-083C-organization-000", - "http://ns.dasch.swiss/repository#dsp-083C-organization-006" - ] + "de": "Eine online-Edition der Historisch-Kritischen Kellerausgabe" } - ], - "organizations": [ + ], + "alternativeTitles": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-083C-organization-001", - "__type": "Organization", - "__createdAt": "1658837462208169000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3, Postfach", - "postalCode": "3001", - "locality": "Bern", - "country": "Switzerland" - }, - "name": "Swiss National Science Foundation (SNSF)" - }, + "de": "eHKKA" + } + ], + "accessConditions": "open", + "datePublished": "1996-01-01", + "howToCite": "Morgenthaler et al., historisch-kritsche Kellerausgabe online, 1996-2013.", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-083C-organization-006", - "__type": "Organization", - "__createdAt": "1658837462261695000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "24 rue du Général-Dufour", - "postalCode": "1211", - "locality": "Genève 4", - "country": "Switzerland" - }, - "name": "Université de Genève, Départemet de langue et de littérature allemandes, Faculté des Lettres" - }, + "de": "Deutsch" + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-083C-organization-005", - "__type": "Organization", - "__createdAt": "1658837462308236000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Schönberggasse 9", - "postalCode": "8001", - "locality": "Zürich", - "country": "Switzerland" - }, - "name": "Deutsches Seminar, Universität Zürich" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-083C-person-000", + "roles": [ + "1991-2012: Vollberuflicher Mitarbeiter der HKKA Initiant des Projekts und Leiter des Herausgeberteams" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-083C-organization-000", - "__type": "Organization", - "__createdAt": "1658837462388956000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "c/o Pestalozzi Rechtsanwälte, Löwenstrasse 1", - "postalCode": "8000", - "locality": "Zürich", - "country": "Switzerland" - }, - "email": "dom.muller@bluewin.ch", - "name": "Stiftung für eine Historisch-Kritische Gottfried Keller-Ausgabe" - } - ], - "grants": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-083C-grant-000", - "__type": "Grant", - "__createdAt": "1658837462427587000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-083C-organization-001" - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.snf.ch/de", - "text": "https://www.snf.ch/de" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-083C-person-002", + "roles": [ + "2000-2013 Vollberuflicher Mitarbeiter der HKKA 2000-2013 Mitglied des Herausgeberteams, zuständig für EDV " + ] } - ] -} + ], + "status": "Finished", + "title": "Historisch-Kritische Kellerausgabe online", + "typeOfData": [ + "Image", + "Text", + "XML" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083C-person-001", + "__type": "Person", + "__createdAt": "1658837462207965000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Amrein" + ], + "givenNames": [ + "Ursula" + ], + "jobTitles": [ + "Prof. Dr. phil." + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-083C-organization-000", + "http://ns.dasch.swiss/repository#dsp-083C-organization-005" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083C-person-000", + "__type": "Person", + "__createdAt": "1658837462208018000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Morgenthaler" + ], + "givenNames": [ + "Walter" + ], + "jobTitles": [ + "Dr. phil." + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-083C-organization-000", + "http://ns.dasch.swiss/repository#dsp-083C-organization-005" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083C-person-002", + "__type": "Person", + "__createdAt": "1658837462208065000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Grob" + ], + "givenNames": [ + "Karl" + ], + "jobTitles": [ + "Dr. phil." + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-083C-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083C-person-003", + "__type": "Person", + "__createdAt": "1658837462208103000", + "__createdBy": "dsp-metadata-gui", + "email": "dom.muller@bluewin.ch", + "familyNames": [ + "Müller" + ], + "givenNames": [ + "Dominik" + ], + "jobTitles": [ + "Dr. phil." + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-083C-organization-000", + "http://ns.dasch.swiss/repository#dsp-083C-organization-006" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083C-organization-001", + "__type": "Organization", + "__createdAt": "1658837462208169000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3, Postfach", + "postalCode": "3001", + "locality": "Bern", + "country": "Switzerland" + }, + "name": "Swiss National Science Foundation (SNSF)" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083C-organization-006", + "__type": "Organization", + "__createdAt": "1658837462261695000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "24 rue du Général-Dufour", + "postalCode": "1211", + "locality": "Genève 4", + "country": "Switzerland" + }, + "name": "Université de Genève, Départemet de langue et de littérature allemandes, Faculté des Lettres" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083C-organization-005", + "__type": "Organization", + "__createdAt": "1658837462308236000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Schönberggasse 9", + "postalCode": "8001", + "locality": "Zürich", + "country": "Switzerland" + }, + "name": "Deutsches Seminar, Universität Zürich" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083C-organization-000", + "__type": "Organization", + "__createdAt": "1658837462388956000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "c/o Pestalozzi Rechtsanwälte, Löwenstrasse 1", + "postalCode": "8000", + "locality": "Zürich", + "country": "Switzerland" + }, + "email": "dom.muller@bluewin.ch", + "name": "Stiftung für eine Historisch-Kritische Gottfried Keller-Ausgabe" + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083C-grant-000", + "__type": "Grant", + "__createdAt": "1658837462427587000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-083C-organization-001" + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.snf.ch/de", + "text": "https://www.snf.ch/de" + } + } + ] +} \ No newline at end of file diff --git a/data/json/fagottino.json b/data/json/fagottino.json index fa118a5b..cc2ae63b 100644 --- a/data/json/fagottino.json +++ b/data/json/fagottino.json @@ -1,430 +1,431 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "https://ns.dasch.swiss/repository#dsp-0845-project", - "__type": "Project", - "__createdAt": "1683277023430876000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Agrell, Donna, Domínguez, Áurea, Graziadio, Giovanni Battista, Matthews, Zoë, Viola, Letizia, Plath, Niko, Simian, Ricardo (2023). Fagottino project research articles and documents [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0845", - "teaserText": "The organological and musicological aspects of small-sized bassoons from the 18th and 19th centuries were the focus of a research team in Basel from 2017–2023.", - "datasets": [ - "https://ns.dasch.swiss/repository#dsp-0845-dataset-000" - ], - "alternativeNames": [ - { - "en": "Fagottino research projects" - } - ], - "contactPoint": "https://ns.dasch.swiss/repository#dsp-0845-person-000", - "dataManagementPlan": { - "__type": "DataManagementPlan", - "available": true - }, - "description": { - "en": "Small-sized bassoons from the eighteenth and nineteenth centuries and their organological and musicological aspects were the focus of two research projects carried out by a team of researchers from October 2017–April 2023, funded by the Swiss National Science Foundation, and hosted at the Schola Cantorum Basiliensis, Musik Akademie Basel, FHNW (https://www.historical-bassoon.ch/). A third project, “Neue alte Klangkörper”, was carried out as a preliminary step to instrument printing and reconstructions, and successfully tested 3D-CT technologies to produce initial copies of two fagottini (https://www.fhnw.ch/plattformen/3dfagottino/). This trial was funded by Die Mobiliar, Ernst Göhner Stiftung, and the University of Applied Sciences and Arts Northwestern Switzerland (FHNW). \n\n The team explored the history and functions of smaller bassoons from the eighteenth and nineteenth centuries, covering a comprehensive scope of research. Evidence of the usage of these instruments in orchestral, chamber music, opera and sacred settings, as well as in pedagogy, indicate that they formerly played multi-functional roles in musical and cultural life before virtually disappearing in the twentieth century. Imprecise terminology is widespread, leading to questions regarding choice of appropriate instrument size, as well as the necessity to re-evaluate bassoon repertoire. \n\n Outcomes include a complete instrument catalogue with over 120 entries (folder A), photographic material (folders B and C of examined instruments) supplemented by 62 detailed datasets (folders D, E, F, G, H), an annotated suggested repertoire list (folder A), and related articles and links (folder J). Innovative 3-D printing technology was used to create synthetic prototypes of several small-size bassoons (folder I), followed by conventionally-constructed models, enabling a thorough evaluation of organological and musical qualities of each size and type in performance and pedagogical trials. In addition, three representative works with the participation of small bassoons are available in modern editions (folder K). The use of these small bassoons (originals, wooden copies, 3D-prints) in musical practice showed that they are a hitherto unknown but attractive colour, regained for the instrumentarium of the 18th and 19th centuries." - }, - "disciplines": [ - { - "en": "10405 Musicology" - } - ], - "endDate": "2023-04-30", - "funders": [ - "https://ns.dasch.swiss/repository#dsp-0845-organization-001", - "https://ns.dasch.swiss/repository#dsp-0845-organization-001" - ], - "grants": [ - "https://ns.dasch.swiss/repository#dsp-0845-grant-000", - "https://ns.dasch.swiss/repository#dsp-0845-grant-001" - ], - "keywords": [ - { - "en": "3-D Printing Technology" - }, - { - "en": "Bassoon" - }, - { - "en": "Fagottino" - }, - { - "en": "Historical Wind Instruments" - }, - { - "en": "Historically Informed Performance Practice" - }, - { - "en": "Music Pedagogy" - }, - { - "en": "Musicology" - }, - { - "en": "Organology" - }, - { - "en": "Reconstruction" - }, - { - "en": "Tenoroon" - } - ], - "name": "Fagottini and tenoroons: small-sized bassoons from the 18th and 19th centuries", - "publications": [ - { - "text": "Agrell, Donna and Domínguez, Áurea, “Fagottini and tenoroons: small, forgotten giants”, The Double Reed 42/2 (2019), 57–68." - }, - { - "text": "Agrell, Donna and Domínguez, Áurea, “Small-sized bassoons from the eighteenth and nineteenth centuries under investigation”, Glareana 67/2 (2018), 58–74. Full text available: ", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "http://www.gefam.ch/uploads/Glareana_67_2018_2.pdf", - "text": "http://www.gefam.ch/uploads/Glareana_67_2018_2.pdf" - } - ] - }, - { - "text": "Domínguez, Áurea,“Fagottino in the Philharmonie de Paris: Researching the largest collection of small-sized bassoons”, in: Glareana 68/2, (2019), 6–19." - }, - { - "text": "Domínguez, Áurea. “The Romantic bassoon understood by 19th century performers.” In Geschichte, Bauweise und Repertoire des Fagotts. Michaelstein: Wissner-Verlag (2020), 153–171." - } - ], - "shortcode": "0845", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6255148/europe.html", - "text": "Europe" - } - ], - "startDate": "2017-10-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/IOGdcZ2CU1tz", - "text": "18th and 19th Centuries" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/hp1UIqpKS_Kc7j0c5wh5jA", - "text": "Discover Project Data" - }, - "secondaryURL": { + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "https://ns.dasch.swiss/repository#dsp-0845-project", + "__type": "Project", + "__createdAt": "1683277023430876000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Agrell, Donna, Domínguez, Áurea, Graziadio, Giovanni Battista, Matthews, Zoë, Viola, Letizia, Plath, Niko, Simian, Ricardo (2023). Fagottino project research articles and documents [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0845", + "teaserText": "The organological and musicological aspects of small-sized bassoons from the 18th and 19th centuries were the focus of a research team in Basel from 2017–2023.", + "datasets": [ + "https://ns.dasch.swiss/repository#dsp-0845-dataset-000" + ], + "alternativeNames": [ + { + "en": "Fagottino research projects" + } + ], + "contactPoint": "https://ns.dasch.swiss/repository#dsp-0845-person-000", + "dataManagementPlan": { + "__type": "DataManagementPlan", + "available": true + }, + "description": { + "en": "Small-sized bassoons from the eighteenth and nineteenth centuries and their organological and musicological aspects were the focus of two research projects carried out by a team of researchers from October 2017–April 2023, funded by the Swiss National Science Foundation, and hosted at the Schola Cantorum Basiliensis, Musik Akademie Basel, FHNW (https://www.historical-bassoon.ch/). A third project, “Neue alte Klangkörper”, was carried out as a preliminary step to instrument printing and reconstructions, and successfully tested 3D-CT technologies to produce initial copies of two fagottini (https://www.fhnw.ch/plattformen/3dfagottino/). This trial was funded by Die Mobiliar, Ernst Göhner Stiftung, and the University of Applied Sciences and Arts Northwestern Switzerland (FHNW). \n\n The team explored the history and functions of smaller bassoons from the eighteenth and nineteenth centuries, covering a comprehensive scope of research. Evidence of the usage of these instruments in orchestral, chamber music, opera and sacred settings, as well as in pedagogy, indicate that they formerly played multi-functional roles in musical and cultural life before virtually disappearing in the twentieth century. Imprecise terminology is widespread, leading to questions regarding choice of appropriate instrument size, as well as the necessity to re-evaluate bassoon repertoire. \n\n Outcomes include a complete instrument catalogue with over 120 entries (folder A), photographic material (folders B and C of examined instruments) supplemented by 62 detailed datasets (folders D, E, F, G, H), an annotated suggested repertoire list (folder A), and related articles and links (folder J). Innovative 3-D printing technology was used to create synthetic prototypes of several small-size bassoons (folder I), followed by conventionally-constructed models, enabling a thorough evaluation of organological and musical qualities of each size and type in performance and pedagogical trials. In addition, three representative works with the participation of small bassoons are available in modern editions (folder K). The use of these small bassoons (originals, wooden copies, 3D-prints) in musical practice showed that they are a hitherto unknown but attractive colour, regained for the instrumentarium of the 18th and 19th centuries." + }, + "disciplines": [ + { + "en": "10405 Musicology" + } + ], + "endDate": "2023-04-30", + "funders": [ + "https://ns.dasch.swiss/repository#dsp-0845-organization-001", + "https://ns.dasch.swiss/repository#dsp-0845-organization-001" + ], + "grants": [ + "https://ns.dasch.swiss/repository#dsp-0845-grant-000", + "https://ns.dasch.swiss/repository#dsp-0845-grant-001" + ], + "keywords": [ + { + "en": "3-D Printing Technology" + }, + { + "en": "Bassoon" + }, + { + "en": "Fagottino" + }, + { + "en": "Historical Wind Instruments" + }, + { + "en": "Historically Informed Performance Practice" + }, + { + "en": "Music Pedagogy" + }, + { + "en": "Musicology" + }, + { + "en": "Organology" + }, + { + "en": "Reconstruction" + }, + { + "en": "Tenoroon" + } + ], + "name": "Fagottini and tenoroons: small-sized bassoons from the 18th and 19th centuries", + "publications": [ + { + "text": "Agrell, Donna and Domínguez, Áurea, “Fagottini and tenoroons: small, forgotten giants”, The Double Reed 42/2 (2019), 57–68." + }, + { + "text": "Agrell, Donna and Domínguez, Áurea, “Small-sized bassoons from the eighteenth and nineteenth centuries under investigation”, Glareana 67/2 (2018), 58–74. Full text available: ", + "url": [ + { "__type": "URL", "type": "URL", - "url": "https://www.historical-bassoon.ch/", - "text": "External Project Website" - } + "url": "http://www.gefam.ch/uploads/Glareana_67_2018_2.pdf", + "text": "http://www.gefam.ch/uploads/Glareana_67_2018_2.pdf" + } + ] + }, + { + "text": "Domínguez, Áurea,“Fagottino in the Philharmonie de Paris: Researching the largest collection of small-sized bassoons”, in: Glareana 68/2, (2019), 6–19." + }, + { + "text": "Domínguez, Áurea. “The Romantic bassoon understood by 19th century performers.” In Geschichte, Bauweise und Repertoire des Fagotts. Michaelstein: Wissner-Verlag (2020), 153–171." + } + ], + "shortcode": "0845", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/6255148/europe.html", + "text": "Europe" + } + ], + "startDate": "2017-10-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/IOGdcZ2CU1tz", + "text": "18th and 19th Centuries" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/hp1UIqpKS_Kc7j0c5wh5jA", + "text": "Discover Project Data" }, - "datasets": [ + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://www.historical-bassoon.ch/", + "text": "External Project Website" + }, + "status": "finished" + }, + "datasets": [ + { + "__id": "https://ns.dasch.swiss/repository#dsp-0845-dataset-000", + "__type": "Dataset", + "__createdAt": "1683277024525030000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "https://ns.dasch.swiss/repository#dsp-0845-dataset-000", - "__type": "Dataset", - "__createdAt": "1683277024525030000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The dataset contains basic data and images of 62 fagottini and tenoroons as well as several articles, including an instrument catalogue of small bassoons covering the key questions addressed during the research project. Furthermore, the dataset contains 3D models of six 3D-CT scanned historical fagottino and tenoroon (FT6; FT30; FT40: FT42; FT44; FT50). Each such Zip file includes the round-bore version, the corrected bore version, and the keys of each instrument. The files are in STL format." - } - ], - "alternativeTitles": [ - { - "en": "Fagottino research projects" - } - ], - "accessConditions": "open", - "datePublished": "2023-04-30", - "howToCite": "Agrell, Donna, Domínguez, Áurea, Graziadio, Giovanni Battista, Matthews, Zoë, Viola, Letizia, Plath, Niko, Simian, Ricardo (2023). Fagottino project research articles and documents [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0845.", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2023-05-05", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by/4.0", - "text": "CC BY 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "https://ns.dasch.swiss/repository#dsp-0845-person-000", - "roles": [ - "Research project leader" - ] - }, - { - "__type": "Attribution", - "agent": "https://ns.dasch.swiss/repository#dsp-0845-person-001", - "roles": [ - "Senior researcher" - ] - }, - { - "__type": "Attribution", - "agent": "https://ns.dasch.swiss/repository#dsp-0845-person-002", - "roles": [ - "Senior researcher" - ] - }, - { - "__type": "Attribution", - "agent": "https://ns.dasch.swiss/repository#dsp-0845-person-003", - "roles": [ - "Junior researcher" - ] - }, - { - "__type": "Attribution", - "agent": "https://ns.dasch.swiss/repository#dsp-0845-person-004", - "roles": [ - "Junior researcher" - ] - }, - { - "__type": "Attribution", - "agent": "https://ns.dasch.swiss/repository#dsp-0845-person-005", - "roles": [ - "Research project member" - ] - } - ], - "status": "Finished", - "title": "Fagottini and tenoroons: small-sized bassoons from the 18th and 19th centuries", - "typeOfData": [ - "Image", - "Video", - "Text" - ], - "urls": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.historical-bassoon.ch/", - "text": "https://www.historical-bassoon.ch/" - } - ] + "en": "The dataset contains basic data and images of 62 fagottini and tenoroons as well as several articles, including an instrument catalogue of small bassoons covering the key questions addressed during the research project. Furthermore, the dataset contains 3D models of six 3D-CT scanned historical fagottino and tenoroon (FT6; FT30; FT40: FT42; FT44; FT50). Each such Zip file includes the round-bore version, the corrected bore version, and the keys of each instrument. The files are in STL format." } - ], - "persons": [ + ], + "alternativeTitles": [ { - "__id": "https://ns.dasch.swiss/repository#dsp-0845-person-001", - "__type": "Person", - "__createdAt": "1683277024743622000", - "__createdBy": "dsp-metadata-gui", - "email": "donna.agrell@fhnw.ch", - "familyNames": [ - "Agrell" - ], - "givenNames": [ - "Donna" - ], - "jobTitles": [ - "Prof. Dr." - ], - "affiliation": [ - "https://ns.dasch.swiss/repository#dsp-0845-organization-000" - ] - }, + "en": "Fagottino research projects" + } + ], + "accessConditions": "open", + "datePublished": "2023-04-30", + "howToCite": "Agrell, Donna, Domínguez, Áurea, Graziadio, Giovanni Battista, Matthews, Zoë, Viola, Letizia, Plath, Niko, Simian, Ricardo (2023). Fagottino project research articles and documents [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0845.", + "languages": [ { - "__id": "https://ns.dasch.swiss/repository#dsp-0845-person-002", - "__type": "Person", - "__createdAt": "1683277024743664000", - "__createdBy": "dsp-metadata-gui", - "email": "aurea.dominguez@fhnw.ch", - "secondaryEmail": "aureadominguez@gmail.com", - "familyNames": [ - "Domínguez" - ], - "givenNames": [ - "Áurea" - ], - "jobTitles": [ - "PhD" - ], - "affiliation": [ - "https://ns.dasch.swiss/repository#dsp-0845-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-0225-5221", - "text": "ORCID URL: https://orcid.org/0000-0002-0225-5221" - } - ] - }, + "en": "English", + "de": "Englisch", + "fr": "anglais" + } + ], + "licenses": [ { - "__id": "https://ns.dasch.swiss/repository#dsp-0845-person-003", - "__type": "Person", - "__createdAt": "1683277024743733000", - "__createdBy": "dsp-metadata-gui", - "email": "zoe.matthews@fhnw.ch", - "familyNames": [ - "Matthews" - ], - "givenNames": [ - "Zoë" - ], - "jobTitles": [ - "MA" - ], - "affiliation": [ - "https://ns.dasch.swiss/repository#dsp-0845-organization-000" - ] + "__type": "License", + "date": "2023-05-05", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by/4.0", + "text": "CC BY 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "https://ns.dasch.swiss/repository#dsp-0845-person-000", + "roles": [ + "Research project leader" + ] }, { - "__id": "https://ns.dasch.swiss/repository#dsp-0845-person-004", - "__type": "Person", - "__createdAt": "1683277024743769000", - "__createdBy": "dsp-metadata-gui", - "email": "letizia.viola@fhnw.ch", - "familyNames": [ - "Viola" - ], - "givenNames": [ - "Letizia" - ], - "jobTitles": [ - "MA" - ], - "affiliation": [ - "https://ns.dasch.swiss/repository#dsp-0845-organization-000" - ] + "__type": "Attribution", + "agent": "https://ns.dasch.swiss/repository#dsp-0845-person-001", + "roles": [ + "Senior researcher" + ] }, { - "__id": "https://ns.dasch.swiss/repository#dsp-0845-person-005", - "__type": "Person", - "__createdAt": "1683277024743803000", - "__createdBy": "dsp-metadata-gui", - "email": "giovannibattista.graziadio@fhnw.ch", - "familyNames": [ - "Graziadio" - ], - "givenNames": [ - "Giovanni", - "Battista" - ], - "jobTitles": [ - "PhD student" - ], - "affiliation": [ - "https://ns.dasch.swiss/repository#dsp-0845-organization-000" - ] + "__type": "Attribution", + "agent": "https://ns.dasch.swiss/repository#dsp-0845-person-002", + "roles": [ + "Senior researcher" + ] }, { - "__id": "https://ns.dasch.swiss/repository#dsp-0845-person-000", - "__type": "Person", - "__createdAt": "1683277024743838000", - "__createdBy": "dsp-metadata-gui", - "email": "thomas.drescher@fhnw.ch", - "familyNames": [ - "Drescher" - ], - "givenNames": [ - "Thomas" - ], - "jobTitles": [ - "Prof. Dr." - ], - "affiliation": [ - "https://ns.dasch.swiss/repository#dsp-0845-organization-000" - ] - } - ], - "organizations": [ + "__type": "Attribution", + "agent": "https://ns.dasch.swiss/repository#dsp-0845-person-003", + "roles": [ + "Junior researcher" + ] + }, { - "__id": "https://ns.dasch.swiss/repository#dsp-0845-organization-001", - "__type": "Organization", - "__createdAt": "1683277024743877000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3", - "postalCode": "3001", - "locality": "Berne", - "country": "Switzerland" - }, - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.snf.ch", - "text": "https://www.snf.ch" - } + "__type": "Attribution", + "agent": "https://ns.dasch.swiss/repository#dsp-0845-person-004", + "roles": [ + "Junior researcher" + ] }, { - "__id": "https://ns.dasch.swiss/repository#dsp-0845-organization-000", - "__type": "Organization", - "__createdAt": "1683277024798388000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Leonhardsstrasse 6, Postfach", - "postalCode": "4009", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "forschung.scb.hsm@fhnw.ch", - "name": "Schola Cantorum Basiliensis FHNW", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.fhnw.ch/de/forschung-und-dienstleistungen/musik/schola-cantorum-basiliensis", - "text": "https://www.fhnw.ch/de/forschung-und-dienstleistungen/musik/schola-cantorum-basiliensis" - } + "__type": "Attribution", + "agent": "https://ns.dasch.swiss/repository#dsp-0845-person-005", + "roles": [ + "Research project member" + ] } - ], - "grants": [ + ], + "status": "Finished", + "title": "Fagottini and tenoroons: small-sized bassoons from the 18th and 19th centuries", + "typeOfData": [ + "Image", + "Video", + "Text" + ], + "urls": [ { - "__id": "https://ns.dasch.swiss/repository#dsp-0845-grant-000", - "__type": "Grant", - "__createdAt": "1683277024858973000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "https://ns.dasch.swiss/repository#dsp-0845-organization-001" - ], - "name": "Project funding", - "number": "173363", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/173363", - "text": "https://data.snf.ch/grants/grant/173363" - } - }, + "__type": "URL", + "type": "URL", + "url": "https://www.historical-bassoon.ch/", + "text": "https://www.historical-bassoon.ch/" + } + ] + } + ], + "persons": [ + { + "__id": "https://ns.dasch.swiss/repository#dsp-0845-person-001", + "__type": "Person", + "__createdAt": "1683277024743622000", + "__createdBy": "dsp-metadata-gui", + "email": "donna.agrell@fhnw.ch", + "familyNames": [ + "Agrell" + ], + "givenNames": [ + "Donna" + ], + "jobTitles": [ + "Prof. Dr." + ], + "affiliation": [ + "https://ns.dasch.swiss/repository#dsp-0845-organization-000" + ] + }, + { + "__id": "https://ns.dasch.swiss/repository#dsp-0845-person-002", + "__type": "Person", + "__createdAt": "1683277024743664000", + "__createdBy": "dsp-metadata-gui", + "email": "aurea.dominguez@fhnw.ch", + "secondaryEmail": "aureadominguez@gmail.com", + "familyNames": [ + "Domínguez" + ], + "givenNames": [ + "Áurea" + ], + "jobTitles": [ + "PhD" + ], + "affiliation": [ + "https://ns.dasch.swiss/repository#dsp-0845-organization-000" + ], + "authorityRefs": [ { - "__id": "https://ns.dasch.swiss/repository#dsp-0845-grant-001", - "__type": "Grant", - "__createdAt": "1683277024858973000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "https://ns.dasch.swiss/repository#dsp-0845-organization-001" - ], - "name": "Project funding", - "number": "192375", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/192375", - "text": "https://data.snf.ch/grants/grant/192375" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-0225-5221", + "text": "ORCID URL: https://orcid.org/0000-0002-0225-5221" } - ] -} + ] + }, + { + "__id": "https://ns.dasch.swiss/repository#dsp-0845-person-003", + "__type": "Person", + "__createdAt": "1683277024743733000", + "__createdBy": "dsp-metadata-gui", + "email": "zoe.matthews@fhnw.ch", + "familyNames": [ + "Matthews" + ], + "givenNames": [ + "Zoë" + ], + "jobTitles": [ + "MA" + ], + "affiliation": [ + "https://ns.dasch.swiss/repository#dsp-0845-organization-000" + ] + }, + { + "__id": "https://ns.dasch.swiss/repository#dsp-0845-person-004", + "__type": "Person", + "__createdAt": "1683277024743769000", + "__createdBy": "dsp-metadata-gui", + "email": "letizia.viola@fhnw.ch", + "familyNames": [ + "Viola" + ], + "givenNames": [ + "Letizia" + ], + "jobTitles": [ + "MA" + ], + "affiliation": [ + "https://ns.dasch.swiss/repository#dsp-0845-organization-000" + ] + }, + { + "__id": "https://ns.dasch.swiss/repository#dsp-0845-person-005", + "__type": "Person", + "__createdAt": "1683277024743803000", + "__createdBy": "dsp-metadata-gui", + "email": "giovannibattista.graziadio@fhnw.ch", + "familyNames": [ + "Graziadio" + ], + "givenNames": [ + "Giovanni", + "Battista" + ], + "jobTitles": [ + "PhD student" + ], + "affiliation": [ + "https://ns.dasch.swiss/repository#dsp-0845-organization-000" + ] + }, + { + "__id": "https://ns.dasch.swiss/repository#dsp-0845-person-000", + "__type": "Person", + "__createdAt": "1683277024743838000", + "__createdBy": "dsp-metadata-gui", + "email": "thomas.drescher@fhnw.ch", + "familyNames": [ + "Drescher" + ], + "givenNames": [ + "Thomas" + ], + "jobTitles": [ + "Prof. Dr." + ], + "affiliation": [ + "https://ns.dasch.swiss/repository#dsp-0845-organization-000" + ] + } + ], + "organizations": [ + { + "__id": "https://ns.dasch.swiss/repository#dsp-0845-organization-001", + "__type": "Organization", + "__createdAt": "1683277024743877000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3", + "postalCode": "3001", + "locality": "Berne", + "country": "Switzerland" + }, + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.snf.ch", + "text": "https://www.snf.ch" + } + }, + { + "__id": "https://ns.dasch.swiss/repository#dsp-0845-organization-000", + "__type": "Organization", + "__createdAt": "1683277024798388000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Leonhardsstrasse 6, Postfach", + "postalCode": "4009", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "forschung.scb.hsm@fhnw.ch", + "name": "Schola Cantorum Basiliensis FHNW", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.fhnw.ch/de/forschung-und-dienstleistungen/musik/schola-cantorum-basiliensis", + "text": "https://www.fhnw.ch/de/forschung-und-dienstleistungen/musik/schola-cantorum-basiliensis" + } + } + ], + "grants": [ + { + "__id": "https://ns.dasch.swiss/repository#dsp-0845-grant-000", + "__type": "Grant", + "__createdAt": "1683277024858973000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "https://ns.dasch.swiss/repository#dsp-0845-organization-001" + ], + "name": "Project funding", + "number": "173363", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/173363", + "text": "https://data.snf.ch/grants/grant/173363" + } + }, + { + "__id": "https://ns.dasch.swiss/repository#dsp-0845-grant-001", + "__type": "Grant", + "__createdAt": "1683277024858973000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "https://ns.dasch.swiss/repository#dsp-0845-organization-001" + ], + "name": "Project funding", + "number": "192375", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/192375", + "text": "https://data.snf.ch/grants/grant/192375" + } + } + ] +} \ No newline at end of file diff --git a/data/json/globalgeschichte.json b/data/json/globalgeschichte.json index 08bbc559..af410369 100644 --- a/data/json/globalgeschichte.json +++ b/data/json/globalgeschichte.json @@ -1,281 +1,282 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-084A-project", - "__type": "Project", - "__createdAt": "1708507426682276000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Marti, P., Studer, D., Affolter, S. (2024). Globalgeschichtliche Perspektiven im Schweizer Geschichtsunterricht [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/084A", - "teaserText": "Das Forschungsprojekt liefert empirische Ergebnisse auf breiter Basis zu Potentialen von globalgeschichtlichen Perspektiven im Geschichtsunterricht.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-084A-dataset-000" - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-084A-person-000", - "description": { - "de": "Für Geschichtslernen, das zur Orientierung in der Lebenswelt heutiger Lernender beitragen soll, ist die Einsicht in die historischen Hintergründe von Gegenwartsphänomenen wie der Globalisierung, Migration und gesellschaftlicher Heterogenität sehr bedeutsam. Als fachwissenschaftlicher Zugang bietet sich der Ansatz der Globalgeschichte an. Dieser wird in der Geschichtsdidaktik diskutiert, ist dort empirisch aber bislang wenig erforscht. Die Studie setzt an dieser Lücke an. Sie ist im Geschichtsunterricht der gymnasialen Sekundarstufe II angesiedelt und methodisch der partizipativen Praxisforschung zugeordnet. Gemeinsam mit Lehrpersonen werden Unterrichtseinheiten entwickelt und die so angestossene Unterrichtsentwicklung durch video-, interview- und fragebogenbasierte Erhebungen empirisch untersucht." - }, - "disciplines": [ - { - "de": "10104 Erziehungs- und Bildungswissenschaften, Fachdidaktiken" - }, - { - "de": "10301 Allgemeine Geschichte (ohne Ur- und Frühgeschichte)" - } - ], - "endDate": "2024-02-29", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-084A-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-084A-grant-000" - ], - "keywords": [ - { - "de": "Geschichtsdidaktik" - }, - { - "de": "Geschichtsunterricht" - }, - { - "de": "Globalgeschichte" - }, - { - "de": "Partizipative Unterrichtsentwicklung" - }, - { - "de": "Praxisforschung" - }, - { - "de": "Sekundarstufe II" - }, - { - "de": "Videoanalyse" - } - ], - "name": "Globalgeschichtliche Perspektiven im Schweizer Geschichtsunterricht", - "publications": [ - { - "text": "", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://irf.fhnw.ch/handle/11654/31495", - "text": "https://irf.fhnw.ch/handle/11654/31495" - } - ] - } - ], - "shortcode": "084A", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/switzerland.html", - "text": "Switzerland" - } - ], - "startDate": "2020-07-01", - "temporalCoverage": [ - { - "en": "21. Jhd." - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/iM_un1y7SVa-Fny6yN51-A", - "text": "Discover Project Data" - }, - "secondaryURL": { + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-084A-project", + "__type": "Project", + "__createdAt": "1708507426682276000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Marti, P., Studer, D., Affolter, S. (2024). Globalgeschichtliche Perspektiven im Schweizer Geschichtsunterricht [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/084A", + "teaserText": "Das Forschungsprojekt liefert empirische Ergebnisse auf breiter Basis zu Potentialen von globalgeschichtlichen Perspektiven im Geschichtsunterricht.", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-084A-dataset-000" + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-084A-person-000", + "description": { + "de": "Für Geschichtslernen, das zur Orientierung in der Lebenswelt heutiger Lernender beitragen soll, ist die Einsicht in die historischen Hintergründe von Gegenwartsphänomenen wie der Globalisierung, Migration und gesellschaftlicher Heterogenität sehr bedeutsam. Als fachwissenschaftlicher Zugang bietet sich der Ansatz der Globalgeschichte an. Dieser wird in der Geschichtsdidaktik diskutiert, ist dort empirisch aber bislang wenig erforscht. Die Studie setzt an dieser Lücke an. Sie ist im Geschichtsunterricht der gymnasialen Sekundarstufe II angesiedelt und methodisch der partizipativen Praxisforschung zugeordnet. Gemeinsam mit Lehrpersonen werden Unterrichtseinheiten entwickelt und die so angestossene Unterrichtsentwicklung durch video-, interview- und fragebogenbasierte Erhebungen empirisch untersucht." + }, + "disciplines": [ + { + "de": "10104 Erziehungs- und Bildungswissenschaften, Fachdidaktiken" + }, + { + "de": "10301 Allgemeine Geschichte (ohne Ur- und Frühgeschichte)" + } + ], + "endDate": "2024-02-29", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-084A-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-084A-grant-000" + ], + "keywords": [ + { + "de": "Geschichtsdidaktik" + }, + { + "de": "Geschichtsunterricht" + }, + { + "de": "Globalgeschichte" + }, + { + "de": "Partizipative Unterrichtsentwicklung" + }, + { + "de": "Praxisforschung" + }, + { + "de": "Sekundarstufe II" + }, + { + "de": "Videoanalyse" + } + ], + "name": "Globalgeschichtliche Perspektiven im Schweizer Geschichtsunterricht", + "publications": [ + { + "text": "", + "url": [ + { "__type": "URL", "type": "URL", "url": "https://irf.fhnw.ch/handle/11654/31495", - "text": "External Project Website" - } + "text": "https://irf.fhnw.ch/handle/11654/31495" + } + ] + } + ], + "shortcode": "084A", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/switzerland.html", + "text": "Switzerland" + } + ], + "startDate": "2020-07-01", + "temporalCoverage": [ + { + "en": "21. Jhd." + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/iM_un1y7SVa-Fny6yN51-A", + "text": "Discover Project Data" }, - "datasets": [ + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://irf.fhnw.ch/handle/11654/31495", + "text": "External Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-084A-dataset-000", + "__type": "Dataset", + "__createdAt": "1708507428483747000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-084A-dataset-000", - "__type": "Dataset", - "__createdAt": "1708507428483747000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "de": "Das Dataset beinhaltet im Projekt erhobene Daten aus Lehrer:innen- und Schüler:innenperspektive: Transkripte der «Stimulated Recall»-Interviews, Transkripte der Eingangsinterviews, soziodemographische Angaben, Fragebögen der Schüler:innen sowie die Dokumentation der entsprechenden Erhebungsinstrumente." - } - ], - "accessConditions": "closed", - "howToCite": "Marti, P., Studer, D., Affolter, S. (2024). Globalgeschichtliche Perspektiven im Schweizer Geschichtsunterricht [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/084A", - "languages": [ - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2024-02-21", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0/", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-084A-person-000", - "roles": [ - "Projektleitung" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-084A-person-001", - "roles": [ - "Projektmitarbeit" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-084A-person-002", - "roles": [ - "Projektmitarbeit" - ] - } - ], - "status": "Ongoing", - "title": "Globalgeschichtliche Perspektiven im Schweizer Geschichtsunterricht", - "typeOfData": [ - "Text" - ] + "de": "Das Dataset beinhaltet im Projekt erhobene Daten aus Lehrer:innen- und Schüler:innenperspektive: Transkripte der «Stimulated Recall»-Interviews, Transkripte der Eingangsinterviews, soziodemographische Angaben, Fragebögen der Schüler:innen sowie die Dokumentation der entsprechenden Erhebungsinstrumente." } - ], - "persons": [ + ], + "accessConditions": "closed", + "howToCite": "Marti, P., Studer, D., Affolter, S. (2024). Globalgeschichtliche Perspektiven im Schweizer Geschichtsunterricht [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/084A", + "languages": [ + { + "de": "Deutsch", + "en": "German", + "fr": "allemand" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2024-02-21", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-084A-person-001", - "__type": "Person", - "__createdAt": "1708507428914087000", - "__createdBy": "dsp-metadata-gui", - "email": "dominic.studer@fhnw.ch", - "familyNames": [ - "Studer" - ], - "givenNames": [ - "Dominic" - ], - "jobTitles": [ - "Wissenschaftlicher Mitarbeiter" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-084A-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-4079-7387", - "text": "ORCID URL: https://orcid.org/0000-0003-4079-7387" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-084A-person-000", + "roles": [ + "Projektleitung" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-084A-person-002", - "__type": "Person", - "__createdAt": "1708507428914211000", - "__createdBy": "dsp-metadata-gui", - "email": "simon.affolter@fhnw.ch", - "familyNames": [ - "Affolter" - ], - "givenNames": [ - "Simon" - ], - "jobTitles": [ - "Wissenschaftlicher Mitarbeiter" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-084A-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-5668-7695", - "text": "ORCID URL: https://orcid.org/0000-0002-5668-7695" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-084A-person-001", + "roles": [ + "Projektmitarbeit" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-084A-person-000", - "__type": "Person", - "__createdAt": "1708507428914311000", - "__createdBy": "dsp-metadata-gui", - "email": "philipp.marti@fhnw.ch", - "familyNames": [ - "Marti" - ], - "givenNames": [ - "Philipp" - ], - "jobTitles": [ - "Wissenschaftlicher Mitarbeiter" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-084A-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-084A-person-002", + "roles": [ + "Projektmitarbeit" + ] } - ], - "organizations": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-084A-organization-001", - "__type": "Organization", - "__createdAt": "1708507428914394000", - "__createdBy": "dsp-metadata-gui", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.snf.ch", - "text": "https://www.snf.ch" - } - }, + ], + "status": "Ongoing", + "title": "Globalgeschichtliche Perspektiven im Schweizer Geschichtsunterricht", + "typeOfData": [ + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-084A-person-001", + "__type": "Person", + "__createdAt": "1708507428914087000", + "__createdBy": "dsp-metadata-gui", + "email": "dominic.studer@fhnw.ch", + "familyNames": [ + "Studer" + ], + "givenNames": [ + "Dominic" + ], + "jobTitles": [ + "Wissenschaftlicher Mitarbeiter" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-084A-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-084A-organization-000", - "__type": "Organization", - "__createdAt": "1708507428914445000", - "__createdBy": "dsp-metadata-gui", - "name": "Pädagogische Hochschule der Fachhochschule Nordwestschweiz", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.fhnw.ch/de/die-fhnw/hochschulen/ph", - "text": "https://www.fhnw.ch/de/die-fhnw/hochschulen/ph" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4079-7387", + "text": "ORCID URL: https://orcid.org/0000-0003-4079-7387" } - ], - "grants": [ + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-084A-person-002", + "__type": "Person", + "__createdAt": "1708507428914211000", + "__createdBy": "dsp-metadata-gui", + "email": "simon.affolter@fhnw.ch", + "familyNames": [ + "Affolter" + ], + "givenNames": [ + "Simon" + ], + "jobTitles": [ + "Wissenschaftlicher Mitarbeiter" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-084A-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-084A-grant-000", - "__type": "Grant", - "__createdAt": "1708507428914504000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-084A-organization-001" - ], - "name": "Project funding", - "number": "192169", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/192169", - "text": "https://data.snf.ch/grants/grant/192169" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-5668-7695", + "text": "ORCID URL: https://orcid.org/0000-0002-5668-7695" } - ] -} + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-084A-person-000", + "__type": "Person", + "__createdAt": "1708507428914311000", + "__createdBy": "dsp-metadata-gui", + "email": "philipp.marti@fhnw.ch", + "familyNames": [ + "Marti" + ], + "givenNames": [ + "Philipp" + ], + "jobTitles": [ + "Wissenschaftlicher Mitarbeiter" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-084A-organization-000" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-084A-organization-001", + "__type": "Organization", + "__createdAt": "1708507428914394000", + "__createdBy": "dsp-metadata-gui", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.snf.ch", + "text": "https://www.snf.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-084A-organization-000", + "__type": "Organization", + "__createdAt": "1708507428914445000", + "__createdBy": "dsp-metadata-gui", + "name": "Pädagogische Hochschule der Fachhochschule Nordwestschweiz", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.fhnw.ch/de/die-fhnw/hochschulen/ph", + "text": "https://www.fhnw.ch/de/die-fhnw/hochschulen/ph" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-084A-grant-000", + "__type": "Grant", + "__createdAt": "1708507428914504000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-084A-organization-001" + ], + "name": "Project funding", + "number": "192169", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/192169", + "text": "https://data.snf.ch/grants/grant/192169" + } + } + ] +} \ No newline at end of file diff --git a/data/json/hdm.json b/data/json/hdm.json index 4c91a8ea..344dce16 100644 --- a/data/json/hdm.json +++ b/data/json/hdm.json @@ -1,180 +1,181 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-081C-project", - "__type": "Project", - "__createdAt": "1630601274523025000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "HdM-Bern", - "teaserText": "The database documents the different kinds of spectacles such as theatre plays, operas, ballets, or concerts that took place in the Hôtel de Musique in Bern between 1766 and 1905.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-081C-dataset-000" - ], - "description": { - "en": "The database documents the events that took place in the Hôtel de Musique in Bern between 1766 and 1905. The repertoire was constituted by different kinds of spectacles like theatre plays, operas, ballets, concerts, dance parties, acrobatic performances, conferences or magicians. The list reconstructs the lifely and colourful theatre culture of Bern in the 19th Century." - }, - "disciplines": [ - { - "de": "10302 Schweizer Geschichte" - }, - { - "de": "10405 Musikologie" - }, - { - "de": "10406 Theater-und Filmwissenschaften" - }, - { - "de": "10604 Musik und Theater" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-081C-organization-000" - ], - "keywords": [ - { - "en": "19 Century" - }, - { - "de": "Bern" - }, - { - "en": "Concert" - }, - { - "en": "Music" - }, - { - "en": "Musicology" - }, - { - "en": "Opera" - }, - { - "en": "Spectales" - }, - { - "en": "Switzerland" - }, - { - "en": "Theater history" - }, - { - "en": "Theatre" - } - ], - "name": "Hôtel de Musique Bern", - "shortcode": "081C", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2661552", - "text": "Bern" - } - ], - "startDate": "2009-04-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p06c6g3pvr5", - "text": "Under Mediation act, 1803-1814" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p06c6g3p4cf", - "text": "Sonderbund, 1845-1847" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p06c6g364np", - "text": "Helvetic Republic, 1798-1803" - }, - { - "de": "1766-1905", - "en": "1766-1905", - "fr": "1766-1905" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/081C", - "text": "Discover Project Data" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-081C-project", + "__type": "Project", + "__createdAt": "1630601274523025000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "HdM-Bern", + "teaserText": "The database documents the different kinds of spectacles such as theatre plays, operas, ballets, or concerts that took place in the Hôtel de Musique in Bern between 1766 and 1905.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-081C-dataset-000" + ], + "description": { + "en": "The database documents the events that took place in the Hôtel de Musique in Bern between 1766 and 1905. The repertoire was constituted by different kinds of spectacles like theatre plays, operas, ballets, concerts, dance parties, acrobatic performances, conferences or magicians. The list reconstructs the lifely and colourful theatre culture of Bern in the 19th Century." + }, + "disciplines": [ + { + "de": "10302 Schweizer Geschichte" + }, + { + "de": "10405 Musikologie" + }, + { + "de": "10406 Theater-und Filmwissenschaften" + }, + { + "de": "10604 Musik und Theater" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-081C-organization-000" + ], + "keywords": [ + { + "en": "19 Century" + }, + { + "de": "Bern" + }, + { + "en": "Concert" + }, + { + "en": "Music" + }, + { + "en": "Musicology" + }, + { + "en": "Opera" + }, + { + "en": "Spectales" + }, + { + "en": "Switzerland" + }, + { + "en": "Theater history" + }, + { + "en": "Theatre" + } + ], + "name": "Hôtel de Musique Bern", + "shortcode": "081C", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2661552", + "text": "Bern" + } + ], + "startDate": "2009-04-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p06c6g3pvr5", + "text": "Under Mediation act, 1803-1814" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p06c6g3p4cf", + "text": "Sonderbund, 1845-1847" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p06c6g364np", + "text": "Helvetic Republic, 1798-1803" + }, + { + "de": "1766-1905", + "en": "1766-1905", + "fr": "1766-1905" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/081C", + "text": "Discover Project Data" + }, + "status": "finished" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-081C-dataset-000", + "__type": "Dataset", + "__createdAt": "1630601285266958000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-081C-dataset-000", - "__type": "Dataset", - "__createdAt": "1630601285266958000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The database documents the events that took place in the Hôtel de Musique in Bern between 1766 and 1905. The repertoire was constituted by different kinds of spectacles like theatre plays, operas, ballets, concerts, dance parties, acrobatic performances, conferences or magicians. The list reconstructs the lifely and colourful theatre culture of Bern in the 19th Century." - } - ], - "accessConditions": "open", - "datePublished": "2015-04-01", - "howToCite": "HdM-Bern", - "languages": [ - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc/4.0", - "text": "CC BY-NC 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-081C-organization-000", - "roles": [ - "author" - ] - } - ], - "status": "Finished", - "title": "Hôtel de Musique Bern", - "typeOfData": [ - "Text" - ] + "en": "The database documents the events that took place in the Hôtel de Musique in Bern between 1766 and 1905. The repertoire was constituted by different kinds of spectacles like theatre plays, operas, ballets, concerts, dance parties, acrobatic performances, conferences or magicians. The list reconstructs the lifely and colourful theatre culture of Bern in the 19th Century." } - ], - "organizations": [ + ], + "accessConditions": "open", + "datePublished": "2015-04-01", + "howToCite": "HdM-Bern", + "languages": [ + { + "de": "Deutsch", + "en": "German", + "fr": "allemand" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc/4.0", + "text": "CC BY-NC 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-081C-organization-000", - "__type": "Organization", - "__createdAt": "1630601285796580000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Mittelstr. 43", - "postalCode": "3011", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "urchueguia@musik.unibe.ch", - "name": "Institut für Musikwissenschaft der Universität Bern", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.musik.unibe.ch/index_ger.html", - "text": "https://www.musik.unibe.ch/index_ger.html" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-081C-organization-000", + "roles": [ + "author" + ] } - ] -} + ], + "status": "Finished", + "title": "Hôtel de Musique Bern", + "typeOfData": [ + "Text" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-081C-organization-000", + "__type": "Organization", + "__createdAt": "1630601285796580000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Mittelstr. 43", + "postalCode": "3011", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "urchueguia@musik.unibe.ch", + "name": "Institut für Musikwissenschaft der Universität Bern", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.musik.unibe.ch/index_ger.html", + "text": "https://www.musik.unibe.ch/index_ger.html" + } + } + ] +} \ No newline at end of file diff --git a/data/json/healing-arts.json b/data/json/healing-arts.json new file mode 100644 index 00000000..115dfc4b --- /dev/null +++ b/data/json/healing-arts.json @@ -0,0 +1,294 @@ +{ + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-083E-project", + "__type": "Project", + "__createdAt": "1721402611087902000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Holler, T.; Baptista Wilhelm, L; Von Kerssenbrock-Krosigk, G.: Healing Arts. Representations and Practices of Medical Knowledge in Art and Literature (9th-12th centuries) [database]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/083E", + "teaserText": "The project explores the entangled histories of botany, art and health. It considers plant images in early medieval herbals as modes of knowledge that articulate and negotiate medical practices.", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-083E-dataset-000" + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/KQs82YDBRei6YGWrT5Y3ig", + "text": "Discover Project Data" + }, + "contactPoint": "http://ns.dasch.swiss/repository#dsp-083E-person-000", + "description": { + "en": "The project focuses on the intertwined histories of Botany and Art in the Early Middle Ages. Herbaria with elaborated plant images, poems with pharmacological content, as well as medical boxes used as reliquaries manifest the post-antique interest in pharmacology, especially in the 9th/ 10th century. These visualizations reveal systems of knowledge in which concrete medical practices were being actively articulated and negotiated. It furthermore connects questions that lead us to see plants as a way to approach nature and how the natural world transforms into a visual system beyond the question of resemblance." + }, + "disciplines": [ + { + "en": "10404 Visual arts and Art history" + }, + { + "en": "10502 Romance languages and literature" + }, + { + "en": "10603 Arts" + } + ], + "endDate": "2025-10-30", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-083E-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-083E-grant-000" + ], + "keywords": [ + { + "en": "Art and Science" + }, + { + "en": "Botany" + }, + { + "en": "Herbal" + }, + { + "en": "Iatromagical Practices" + }, + { + "en": "Manuscript Studies" + }, + { + "en": "Medicine" + }, + { + "en": "Medieval Art History" + }, + { + "en": "Plants" + }, + { + "en": "Pre-modern Health Care" + } + ], + "name": "Healing Arts. Representations and Practices of Medical Knowledge in Art and Literature (9th-12th centuries)", + "publications": [ + { + "text": "Theresa Holler, Andrew Griebeler and Hannah Baader, Visualizing Drugs & Dyes. Art and Pharmacology in the larger Medieval Mediterranean, Leiden, Brill 2025 (in preparation)" + }, + { + "text": "Theresa Holler, “In search of Panacea. Luxury healing roots in western materia medica”, in: Visualizing Drugs & Dyes. Art and Pharmacology in the larger Medieval Mediterranean, Leiden, Brill 2025 (in preparation)" + } + ], + "shortcode": "083E", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/6255148/europe.html", + "text": "Europe" + } + ], + "startDate": "2021-11-01", + "temporalCoverage": [ + { + "en": "Middle Ages" + } + ], + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083E-dataset-000", + "__type": "Dataset", + "__createdAt": "1721402613635306000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ + { + "en": "The database is a comprehensive collection of early medieval herbals prior to 1200. The ontology of the database includes several main classes (e.g. remedy, manuscript, object, person, text) to describe, contextualise and visualise plant images. By linking these classes to each other, the database displays the transmission of individual plant images and the underlying network between manuscript productions. Special attention has been paid to the very diverse medieval botanical nomenclature, including synonyms, spelling variants and the vernacular. This allows a broad search for remedies and their possible identification across geographical borders." + } + ], + "accessConditions": "restricted", + "howToCite": "Holler, T.; Baptista Wilhelm, L; Von Kerssenbrock-Krosigk, G.: Healing Arts. Representations and Practices of Medical Knowledge in Art and Literature (9th-12th centuries) [database]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/083E", + "languages": [ + { + "en": "English", + "de": "Englisch", + "fr": "anglais" + }, + { + "de": "Deutsch", + "en": "German", + "fr": "allemand" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2024-07-19", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", + "text": "CC BY-NC-SA 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-083E-person-000", + "roles": [ + "PI", + "Project Leader" + ] + }, + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-083E-person-002", + "roles": [ + "Data Collector" + ] + }, + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-083E-person-001", + "roles": [ + "Data Collector" + ] + } + ], + "status": "Ongoing", + "title": "Dataset of the Project Healing Arts", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083E-person-001", + "__type": "Person", + "__createdAt": "1721402613916295000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Rheinsprung 9/11", + "postalCode": "4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "gregor.krosigk@unibas.ch", + "familyNames": [ + "von Kerssenbrock-Krosigk" + ], + "givenNames": [ + "Gregor" + ], + "jobTitles": [ + "Student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-083E-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083E-person-002", + "__type": "Person", + "__createdAt": "1721402614095529000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Rheinsprung 9/11", + "postalCode": "4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "ly.baptistawilhelm@unibas.ch", + "familyNames": [ + "Baptista Wilhelm" + ], + "givenNames": [ + "Lyvia" + ], + "jobTitles": [ + "Student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-083E-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083E-person-000", + "__type": "Person", + "__createdAt": "1721402614188634000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Rheinsprung 9/11", + "postalCode": "4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "theresa.holler@unibas.ch", + "familyNames": [ + "Holler" + ], + "givenNames": [ + "Theresa" + ], + "jobTitles": [ + "Post-doctoral Researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-083E-organization-000" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083E-organization-001", + "__type": "Organization", + "__createdAt": "1721402614283967000", + "__createdBy": "dsp-metadata-gui", + "name": "Swiss National Science Foundation (SNSF)" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083E-organization-000", + "__type": "Organization", + "__createdAt": "1721402614284065000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "St. Alban-Graben 8/10", + "postalCode": "4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "daniela.steinebrunner@unibas.ch", + "name": "Universität Basel, Kunsthistorisches Seminar", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://kunstgeschichte.philhist.unibas.ch/de/", + "text": "https://kunstgeschichte.philhist.unibas.ch/de/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083E-grant-000", + "__type": "Grant", + "__createdAt": "1721402614469767000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-083E-organization-001" + ], + "name": "Ambizione", + "number": "201738", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/201738", + "text": "https://data.snf.ch/grants/grant/201738" + } + } + ] +} \ No newline at end of file diff --git a/data/json/igeoarchive.json b/data/json/igeoarchive.json index 32626ac4..2055f99e 100644 --- a/data/json/igeoarchive.json +++ b/data/json/igeoarchive.json @@ -1,565 +1,566 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-project", - "__type": "Project", - "__createdAt": "1705921790665346000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Brönnimann, D., Lo Russo, S., Pümpin, Ch., Ismail-Meyer, K., Devos, Y., Kübler, S., Rentzel, Ph. (2024). I-GEOARCHive [Database]. DaSCH. http://ark.dasch.swiss/ark:/72163/1/0838", - "teaserText": "I-GEOARCHive provides geoarchaeological data and images (profile photos, thin section scans, microscope photos, layer descriptions, mortar and ceramic samples, etc.) from various archaeological sites.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0838-dataset-000" - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0838-person-000", - "dataManagementPlan": { - "__type": "DataManagementPlan", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://zenodo.org/doi/10.5281/zenodo.10514612", - "text": "https://zenodo.org/doi/10.5281/zenodo.10514612" - }, - "available": true - }, - "description": { - "en": "The geoarchaeological collection of IPAS (Integrative Prehistory and Archaeological Science) at the University of Basel and of AMGC (Archaeology, Environmental Changes & Geo-Chemistry) at the Vrije Universiteit Brussel includes block and sediment samples of soils and archaeological deposits as well as rocks, flints, ceramics and mortar samples etc. The „I-GEOARCHive“ image database of thin section scans (and corresponding microscope photos) makes the collection digitally accessible to the public and in particular to research and teaching. The freely accessible „I-GEOARCHive“ database enables users to keyword, analyse, publish and archive geoarchaeological samples. Furthermore, micromorphological observations are linked to the thin section scans and thus to the block samples and profiles. This cross-linking enables multidimensional publication and archiving of micromorphological image data and their relation to original archaeological features." + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0838-project", + "__type": "Project", + "__createdAt": "1705921790665346000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Brönnimann, D., Lo Russo, S., Pümpin, Ch., Ismail-Meyer, K., Devos, Y., Kübler, S., Rentzel, Ph. (2024). I-GEOARCHive [Database]. DaSCH. http://ark.dasch.swiss/ark:/72163/1/0838", + "teaserText": "I-GEOARCHive provides geoarchaeological data and images (profile photos, thin section scans, microscope photos, layer descriptions, mortar and ceramic samples, etc.) from various archaeological sites.", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0838-dataset-000" + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0838-person-000", + "dataManagementPlan": { + "__type": "DataManagementPlan", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://zenodo.org/doi/10.5281/zenodo.10514612", + "text": "https://zenodo.org/doi/10.5281/zenodo.10514612" + }, + "available": true + }, + "description": { + "en": "The geoarchaeological collection of IPAS (Integrative Prehistory and Archaeological Science) at the University of Basel and of AMGC (Archaeology, Environmental Changes & Geo-Chemistry) at the Vrije Universiteit Brussel includes block and sediment samples of soils and archaeological deposits as well as rocks, flints, ceramics and mortar samples etc. The „I-GEOARCHive“ image database of thin section scans (and corresponding microscope photos) makes the collection digitally accessible to the public and in particular to research and teaching. The freely accessible „I-GEOARCHive“ database enables users to keyword, analyse, publish and archive geoarchaeological samples. Furthermore, micromorphological observations are linked to the thin section scans and thus to the block samples and profiles. This cross-linking enables multidimensional publication and archiving of micromorphological image data and their relation to original archaeological features." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/550512/html", + "text": "Stratigraphy" + }, + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/2506/html", + "text": "Geology" + }, + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/2511/html", + "text": "Soil Science (Soil Science)" + }, + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/550502/html", + "text": "Ceramology" + }, + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/550501/html", + "text": "Archaeology" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0838-organization-000", + "http://ns.dasch.swiss/repository#dsp-0838-organization-002", + "http://ns.dasch.swiss/repository#dsp-0838-organization-003" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0838-grant-000", + "http://ns.dasch.swiss/repository#dsp-0838-grant-001" + ], + "keywords": [ + { + "en": "Geoarchaeology" + }, + { + "en": "Archaeology" + }, + { + "en": "Geology" + }, + { + "en": "Micromorphology" + }, + { + "en": "Petrography" + }, + { + "en": "Thin Section" + }, + { + "en": "Microphotographs" + }, + { + "en": "Microartifacts" + }, + { + "de": "Geoarchäologie" + }, + { + "de": "Archäologie" + }, + { + "de": "Geologie" + }, + { + "de": "Mikromorphologie" + }, + { + "de": "Petrographie" + }, + { + "de": "Dünnschliff" + }, + { + "de": "Mikroskopie" + }, + { + "de": "Mikroskopfoto" + }, + { + "de": "Mikroartefakte" + }, + { + "de": "Archäologische Schichten" + } + ], + "name": "I-GEOARCHive", + "publications": [ + { + "text": "Lo Russo, S., Brönnimann, D., Pümpin, C., Ismail-Meyer, K., Rentzel, P., Gautschy, R., Wimmer, J., Devos, Y., Nys, K: Recording, sharing and linking micromorphological data: A two-pillar database system, Open Archaeology (submitted)." + } + ], + "shortcode": "0838", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434", + "text": "Switzerland" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/9408659", + "text": "Western Europe" + } + ], + "startDate": "2020-02-06", + "temporalCoverage": [ + { + "en": "Palaeolithic to Modern" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/n0eRr0vWTDOArdaBAZ-jQQ", + "text": "Discover Project Data" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0838-dataset-000", + "__type": "Dataset", + "__createdAt": "1705921793467731000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ + { + "en": "The geoarchaeological collection of IPAS (Integrative Prehistory and Archaeological Science) at the University of Basel and of AMGC (Archaeology, Environmental Changes & Geo-Chemistry) at the Vrije Universiteit Brussel includes block and sediment samples of soils and archaeological deposits as well as rocks, flints, ceramics and mortar samples. The I-GEOARCHive image database of thin section scans and microphotographs makes the collection digitally accessible to research and teaching. The freely accessible I-GEOARCHive database enables users to keyword, analyse, publish and archive geoarchaeological samples. Furthermore, micromorphological observations are linked to the thin section scans and thus to the block samples and profiles. This cross-linking enables multidimensional publication and archiving of micromorphological image data and their relation to original archaeological features." + } + ], + "accessConditions": "open", + "additional": [ + { + "__type": "URL", + "type": "URL", + "url": "https://zenodo.org/doi/10.5281/zenodo.10514612", + "text": "Data Model and Data Management Plan" + } + ], + "howToCite": "Brönnimann, D., Lo Russo, S., Pümpin, Ch., Ismail-Meyer, K., Devos, Y., Kübler, S., Rentzel, Ph. (2024). I-GEOARCHive [Database]. DaSCH. http://ark.dasch.swiss/ark:/72163/1/0838.", + "languages": [ + { + "en": "English", + "de": "Englisch", + "fr": "anglais" }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/550512/html", - "text": "Stratigraphy" - }, - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/2506/html", - "text": "Geology" - }, - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/2511/html", - "text": "Soil Science (Soil Science)" - }, - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/550502/html", - "text": "Ceramology" - }, - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/550501/html", - "text": "Archaeology" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0838-organization-000", - "http://ns.dasch.swiss/repository#dsp-0838-organization-002", - "http://ns.dasch.swiss/repository#dsp-0838-organization-003" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0838-grant-000", - "http://ns.dasch.swiss/repository#dsp-0838-grant-001" - ], - "keywords": [ - { - "en": "Geoarchaeology" - }, - { - "en": "Archaeology" - }, - { - "en": "Geology" - }, - { - "en": "Micromorphology" - }, - { - "en": "Petrography" - }, - { - "en": "Thin Section" - }, - { - "en": "Microphotographs" - }, - { - "en": "Microartifacts" - }, - { - "de": "Geoarchäologie" - }, - { - "de": "Archäologie" - }, - { - "de": "Geologie" - }, - { - "de": "Mikromorphologie" - }, - { - "de": "Petrographie" - }, - { - "de": "Dünnschliff" - }, - { - "de": "Mikroskopie" - }, - { - "de": "Mikroskopfoto" - }, - { - "de": "Mikroartefakte" - }, - { - "de": "Archäologische Schichten" - } - ], - "name": "I-GEOARCHive", - "publications": [ - { - "text": "Lo Russo, S., Brönnimann, D., Pümpin, C., Ismail-Meyer, K., Rentzel, P., Gautschy, R., Wimmer, J., Devos, Y., Nys, K: Recording, sharing and linking micromorphological data: A two-pillar database system, Open Archaeology (submitted)." - } - ], - "shortcode": "0838", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434", - "text": "Switzerland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/9408659", - "text": "Western Europe" - } - ], - "startDate": "2020-02-06", - "temporalCoverage": [ - { - "en": "Palaeolithic to Modern" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/n0eRr0vWTDOArdaBAZ-jQQ", - "text": "Discover Project Data" + { + "de": "Deutsch", + "en": "German", + "fr": "allemand" } - }, - "datasets": [ + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-dataset-000", - "__type": "Dataset", - "__createdAt": "1705921793467731000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The geoarchaeological collection of IPAS (Integrative Prehistory and Archaeological Science) at the University of Basel and of AMGC (Archaeology, Environmental Changes & Geo-Chemistry) at the Vrije Universiteit Brussel includes block and sediment samples of soils and archaeological deposits as well as rocks, flints, ceramics and mortar samples. The I-GEOARCHive image database of thin section scans and microphotographs makes the collection digitally accessible to research and teaching. The freely accessible I-GEOARCHive database enables users to keyword, analyse, publish and archive geoarchaeological samples. Furthermore, micromorphological observations are linked to the thin section scans and thus to the block samples and profiles. This cross-linking enables multidimensional publication and archiving of micromorphological image data and their relation to original archaeological features." - } - ], - "accessConditions": "open", - "additional": [ - { - "__type": "URL", - "type": "URL", - "url": "https://zenodo.org/doi/10.5281/zenodo.10514612", - "text": "Data Model and Data Management Plan" - } - ], - "howToCite": "Brönnimann, D., Lo Russo, S., Pümpin, Ch., Ismail-Meyer, K., Devos, Y., Kübler, S., Rentzel, Ph. (2024). I-GEOARCHive [Database]. DaSCH. http://ark.dasch.swiss/ark:/72163/1/0838.", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2024-01-22", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", - "text": "CC BY-NC-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0838-person-000", - "roles": [ - "Project Leader, Data Collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0838-person-001", - "roles": [ - "Project Leader, Data Collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0838-person-002", - "roles": [ - "Data Collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0838-person-003", - "roles": [ - "Data Collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0838-person-004", - "roles": [ - "Data Collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0838-person-005", - "roles": [ - "Data Collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0838-person-006", - "roles": [ - "Project Leader, Data Collector" - ] - } - ], - "status": "Ongoing", - "title": "I-GEOARCHive", - "typeOfData": [ - "Image", - "Text" - ] + "__type": "License", + "date": "2024-01-22", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", + "text": "CC BY-NC-SA 4.0" + } } - ], - "persons": [ + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-person-001", - "__type": "Person", - "__createdAt": "1705921793896479000", - "__createdBy": "dsp-metadata-gui", - "email": "sarah.lorusso@unibas.ch", - "familyNames": [ - "Lo Russo" - ], - "givenNames": [ - "Sarah" - ], - "jobTitles": [ - "PhD Student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0838-organization-000", - "http://ns.dasch.swiss/repository#dsp-0838-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-5540-7938", - "text": "ORCID URL: https://orcid.org/0000-0002-5540-7938" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0838-person-000", + "roles": [ + "Project Leader, Data Collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-person-002", - "__type": "Person", - "__createdAt": "1705921793896674000", - "__createdBy": "dsp-metadata-gui", - "email": "Yannick.George.Devos@vub.be", - "familyNames": [ - "Devos" - ], - "givenNames": [ - "Yannick" - ], - "jobTitles": [ - "Prof. Dr." - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0838-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-5315-1916", - "text": "ORCID URL: https://orcid.org/0000-0002-5315-1916" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0838-person-001", + "roles": [ + "Project Leader, Data Collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-person-003", - "__type": "Person", - "__createdAt": "1705921793896825000", - "__createdBy": "dsp-metadata-gui", - "email": "christine.puempin@unibas.ch", - "familyNames": [ - "Pümpin" - ], - "givenNames": [ - "Christine" - ], - "jobTitles": [ - "PhD Student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0838-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-2948-7011", - "text": "ORCID URL: https://orcid.org/0000-0003-2948-7011" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0838-person-002", + "roles": [ + "Data Collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-person-004", - "__type": "Person", - "__createdAt": "1705921793896973000", - "__createdBy": "dsp-metadata-gui", - "email": "k.ismail-meyer@unibas.ch", - "familyNames": [ - "Ismail-Meyer" - ], - "givenNames": [ - "Kristin" - ], - "jobTitles": [ - "Scientific Collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0838-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-0398-6907", - "text": "ORCID URL: https://orcid.org/0000-0002-0398-6907" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0838-person-003", + "roles": [ + "Data Collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-person-005", - "__type": "Person", - "__createdAt": "1705921793897119000", - "__createdBy": "dsp-metadata-gui", - "email": "simon.kuebler@unibas.ch", - "familyNames": [ - "Kübler" - ], - "givenNames": [ - "Simon" - ], - "jobTitles": [ - "BA" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0838-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0838-person-004", + "roles": [ + "Data Collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-person-006", - "__type": "Person", - "__createdAt": "1705921793897217000", - "__createdBy": "dsp-metadata-gui", - "email": "philippe.rentzel@unibas.ch", - "familyNames": [ - "Rentzel" - ], - "givenNames": [ - "Philippe" - ], - "jobTitles": [ - "PD Dr." - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0838-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-7518-7987", - "text": "ORCID URL: https://orcid.org/0000-0002-7518-7987" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0838-person-005", + "roles": [ + "Data Collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-person-000", - "__type": "Person", - "__createdAt": "1705921793897353000", - "__createdBy": "dsp-metadata-gui", - "email": "david.broennimann@unibas.ch", - "familyNames": [ - "Brönnimann" - ], - "givenNames": [ - "David" - ], - "jobTitles": [ - "Post-doctoral Researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0838-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-3432-1753", - "text": "ORCID URL: https://orcid.org/0000-0003-3432-1753" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0838-person-006", + "roles": [ + "Project Leader, Data Collector" + ] } - ], - "organizations": [ + ], + "status": "Ongoing", + "title": "I-GEOARCHive", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0838-person-001", + "__type": "Person", + "__createdAt": "1705921793896479000", + "__createdBy": "dsp-metadata-gui", + "email": "sarah.lorusso@unibas.ch", + "familyNames": [ + "Lo Russo" + ], + "givenNames": [ + "Sarah" + ], + "jobTitles": [ + "PhD Student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0838-organization-000", + "http://ns.dasch.swiss/repository#dsp-0838-organization-001" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-organization-001", - "__type": "Organization", - "__createdAt": "1705921793897492000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Pleinlaan 2", - "postalCode": "1050", - "locality": "Brussels", - "country": "Belgium" - }, - "name": "Archaeology, Environmental Changes & Geo-Chemistry (AMGC)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://amgc.research.vub.be/", - "text": "https://amgc.research.vub.be/" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-5540-7938", + "text": "ORCID URL: https://orcid.org/0000-0002-5540-7938" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0838-person-002", + "__type": "Person", + "__createdAt": "1705921793896674000", + "__createdBy": "dsp-metadata-gui", + "email": "Yannick.George.Devos@vub.be", + "familyNames": [ + "Devos" + ], + "givenNames": [ + "Yannick" + ], + "jobTitles": [ + "Prof. Dr." + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0838-organization-001" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-organization-002", - "__type": "Organization", - "__createdAt": "1705921794147440000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3", - "postalCode": "CH-3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "com@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.snf.ch/", - "text": "https://www.snf.ch/" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-5315-1916", + "text": "ORCID URL: https://orcid.org/0000-0002-5315-1916" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0838-person-003", + "__type": "Person", + "__createdAt": "1705921793896825000", + "__createdBy": "dsp-metadata-gui", + "email": "christine.puempin@unibas.ch", + "familyNames": [ + "Pümpin" + ], + "givenNames": [ + "Christine" + ], + "jobTitles": [ + "PhD Student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0838-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-organization-003", - "__type": "Organization", - "__createdAt": "1705921794254555000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "HOEK 38, Leuvenseweg 38", - "postalCode": "1000", - "locality": "Brussel", - "country": "Belgium" - }, - "name": "Research Foundation – Flanders (FWO)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.fwo.be", - "text": "https://www.fwo.be" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-2948-7011", + "text": "ORCID URL: https://orcid.org/0000-0003-2948-7011" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0838-person-004", + "__type": "Person", + "__createdAt": "1705921793896973000", + "__createdBy": "dsp-metadata-gui", + "email": "k.ismail-meyer@unibas.ch", + "familyNames": [ + "Ismail-Meyer" + ], + "givenNames": [ + "Kristin" + ], + "jobTitles": [ + "Scientific Collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0838-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-organization-000", - "__type": "Organization", - "__createdAt": "1705921794364741000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Spalenring 145", - "postalCode": "4055", - "locality": "Basel", - "country": "Switzerland" - }, - "name": "Integrative Prehistory and Archaeological Science (IPAS)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://ipna.duw.unibas.ch", - "text": "https://ipna.duw.unibas.ch" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-0398-6907", + "text": "ORCID URL: https://orcid.org/0000-0002-0398-6907" } - ], - "grants": [ + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0838-person-005", + "__type": "Person", + "__createdAt": "1705921793897119000", + "__createdBy": "dsp-metadata-gui", + "email": "simon.kuebler@unibas.ch", + "familyNames": [ + "Kübler" + ], + "givenNames": [ + "Simon" + ], + "jobTitles": [ + "BA" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0838-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0838-person-006", + "__type": "Person", + "__createdAt": "1705921793897217000", + "__createdBy": "dsp-metadata-gui", + "email": "philippe.rentzel@unibas.ch", + "familyNames": [ + "Rentzel" + ], + "givenNames": [ + "Philippe" + ], + "jobTitles": [ + "PD Dr." + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0838-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-grant-000", - "__type": "Grant", - "__createdAt": "1705921794475675000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0838-organization-002" - ], - "name": "Weave (SNSF)", - "number": "205278", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/205278", - "text": "https://data.snf.ch/grants/grant/205278" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-7518-7987", + "text": "ORCID URL: https://orcid.org/0000-0002-7518-7987" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0838-person-000", + "__type": "Person", + "__createdAt": "1705921793897353000", + "__createdBy": "dsp-metadata-gui", + "email": "david.broennimann@unibas.ch", + "familyNames": [ + "Brönnimann" + ], + "givenNames": [ + "David" + ], + "jobTitles": [ + "Post-doctoral Researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0838-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0838-grant-001", - "__type": "Grant", - "__createdAt": "1705921794475962000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0838-organization-003" - ], - "name": "Weave (FWO)", - "number": "FWOAL1057", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://researchportal.vub.be/en/projects/welcome-to-the-dark-side-disclosing-the-invisible-stages-of-medie", - "text": "https://researchportal.vub.be/en/projects/welcome-to-the-dark-side-disclosing-the-invisible-stages-of-medie" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-3432-1753", + "text": "ORCID URL: https://orcid.org/0000-0003-3432-1753" } - ] -} + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0838-organization-001", + "__type": "Organization", + "__createdAt": "1705921793897492000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Pleinlaan 2", + "postalCode": "1050", + "locality": "Brussels", + "country": "Belgium" + }, + "name": "Archaeology, Environmental Changes & Geo-Chemistry (AMGC)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://amgc.research.vub.be/", + "text": "https://amgc.research.vub.be/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0838-organization-002", + "__type": "Organization", + "__createdAt": "1705921794147440000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3", + "postalCode": "CH-3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "com@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.snf.ch/", + "text": "https://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0838-organization-003", + "__type": "Organization", + "__createdAt": "1705921794254555000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "HOEK 38, Leuvenseweg 38", + "postalCode": "1000", + "locality": "Brussel", + "country": "Belgium" + }, + "name": "Research Foundation – Flanders (FWO)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.fwo.be", + "text": "https://www.fwo.be" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0838-organization-000", + "__type": "Organization", + "__createdAt": "1705921794364741000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Spalenring 145", + "postalCode": "4055", + "locality": "Basel", + "country": "Switzerland" + }, + "name": "Integrative Prehistory and Archaeological Science (IPAS)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://ipna.duw.unibas.ch", + "text": "https://ipna.duw.unibas.ch" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0838-grant-000", + "__type": "Grant", + "__createdAt": "1705921794475675000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0838-organization-002" + ], + "name": "Weave (SNSF)", + "number": "205278", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/205278", + "text": "https://data.snf.ch/grants/grant/205278" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0838-grant-001", + "__type": "Grant", + "__createdAt": "1705921794475962000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0838-organization-003" + ], + "name": "Weave (FWO)", + "number": "FWOAL1057", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://researchportal.vub.be/en/projects/welcome-to-the-dark-side-disclosing-the-invisible-stages-of-medie", + "text": "https://researchportal.vub.be/en/projects/welcome-to-the-dark-side-disclosing-the-invisible-stages-of-medie" + } + } + ] +} \ No newline at end of file diff --git a/data/json/incunabula.json b/data/json/incunabula.json index 4f0b50ed..143de349 100644 --- a/data/json/incunabula.json +++ b/data/json/incunabula.json @@ -6,7 +6,9 @@ "__createdAt": "1637624150548721000", "__createdBy": "dsp-metadata-gui", "teaserText": "An art-scientific monograph of the richly illustrated early prints in Basel - the most important center of early letterpress printing in the territory of present-day Switzerland.", - "datasets": ["http://ns.dasch.swiss/repository#dsp-0803-dataset-000"], + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0803-dataset-000" + ], "alternativeNames": [ { "en": "Incunabula" @@ -21,8 +23,12 @@ } ], "endDate": "2012-08-31", - "funders": ["http://ns.dasch.swiss/repository#dsp-0803-organization-000"], - "grants": ["http://ns.dasch.swiss/repository#dsp-0803-grant-000"], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0803-organization-000" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0803-grant-000" + ], "keywords": [ { "de": "Basel" @@ -77,7 +83,21 @@ "text": "Discover Project Data" }, "shortcode": "0803", - "startDate": "2008-06-01" + "startDate": "2008-06-01", + "temporalCoverage": [ + { + "en": "Late Middle Ages" + } + ], + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2661604/basel.html", + "text": "Basel" + } + ], + "status": "finished" }, "datasets": [ { @@ -94,27 +114,37 @@ { "__type": "Attribution", "agent": "http://ns.dasch.swiss/repository#dsp-0803-person-000", - "roles": ["Applicant"] + "roles": [ + "Applicant" + ] }, { "__type": "Attribution", "agent": "http://ns.dasch.swiss/repository#dsp-0803-person-001", - "roles": ["Co-applicant"] + "roles": [ + "Co-applicant" + ] }, { "__type": "Attribution", "agent": "http://ns.dasch.swiss/repository#dsp-0803-person-002", - "roles": ["Co-applicant"] + "roles": [ + "Co-applicant" + ] }, { "__type": "Attribution", "agent": "http://ns.dasch.swiss/repository#dsp-0803-person-003", - "roles": ["Employee"] + "roles": [ + "Employee" + ] }, { "__type": "Attribution", "agent": "http://ns.dasch.swiss/repository#dsp-0803-person-004", - "roles": ["Employee"] + "roles": [ + "Employee" + ] } ], "status": "Finished", @@ -127,8 +157,12 @@ "__type": "Person", "__createdAt": "1637624150958979000", "__createdBy": "dsp-metadata-gui", - "familyNames": ["Schellewald"], - "givenNames": ["Barbara"], + "familyNames": [ + "Schellewald" + ], + "givenNames": [ + "Barbara" + ], "affiliation": [ "http://ns.dasch.swiss/repository#dsp-0803-organization-001" ] @@ -138,8 +172,12 @@ "__type": "Person", "__createdAt": "1637624150959055000", "__createdBy": "dsp-metadata-gui", - "familyNames": ["Hug"], - "givenNames": ["Hannes"], + "familyNames": [ + "Hug" + ], + "givenNames": [ + "Hannes" + ], "affiliation": [ "http://ns.dasch.swiss/repository#dsp-0803-organization-002" ] @@ -149,8 +187,12 @@ "__type": "Person", "__createdAt": "1637624150959124000", "__createdBy": "dsp-metadata-gui", - "familyNames": ["Rosenthaler"], - "givenNames": ["Lukas"], + "familyNames": [ + "Rosenthaler" + ], + "givenNames": [ + "Lukas" + ], "affiliation": [ "http://ns.dasch.swiss/repository#dsp-0803-organization-003" ] @@ -160,16 +202,24 @@ "__type": "Person", "__createdAt": "1637624150959191000", "__createdBy": "dsp-metadata-gui", - "familyNames": ["Schmitt"], - "givenNames": ["Lothar"] + "familyNames": [ + "Schmitt" + ], + "givenNames": [ + "Lothar" + ] }, { "__id": "http://ns.dasch.swiss/repository#dsp-0803-person-004", "__type": "Person", "__createdAt": "1637624150959244000", "__createdBy": "dsp-metadata-gui", - "familyNames": ["Graf Lamei"], - "givenNames": ["Katrin"] + "familyNames": [ + "Graf Lamei" + ], + "givenNames": [ + "Katrin" + ] } ], "organizations": [ @@ -208,7 +258,9 @@ "__type": "Grant", "__createdAt": "1637624150959473000", "__createdBy": "dsp-metadata-gui", - "funders": ["http://ns.dasch.swiss/repository#dsp-0803-organization-000"], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0803-organization-000" + ], "name": "Project funding", "number": "120378", "url": { @@ -219,4 +271,4 @@ } } ] -} +} \ No newline at end of file diff --git a/data/json/kunsthalle.json b/data/json/kunsthalle.json index e7f49608..b2f30e0c 100644 --- a/data/json/kunsthalle.json +++ b/data/json/kunsthalle.json @@ -1,470 +1,471 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-project", - "__type": "Project", - "__createdAt": "1660774161591770000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Fotoarchiv Kunsthalle Basel (2023). [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/080C", - "teaserText": "Kunsthalle Basel is Switzerland’s oldest active art museum displaying contemporary art.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-080C-dataset-000" - ], - "alternativeNames": [ - { - "de": "fotoarchivkunsthalle" - } - ], - "description": { - "en": "Kunsthalle Basel is Switzerland’s oldest active art museum displaying contemporary art. The Photo Archive of Kunsthalle Basel documents the Kunsthalle’s exhibitions from the last century with well over 20,000 photographs. The archive offers a freely accessible insight into the exhibitions, their publications and the works shown. Please be aware that the images are protected by copyright. This database is continuously updated and expanded." - }, - "disciplines": [ - { - "xx": "10404 Visual arts and Art history" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080C-organization-001", - "http://ns.dasch.swiss/repository#dsp-080C-organization-002", - "http://ns.dasch.swiss/repository#dsp-080C-organization-003", - "http://ns.dasch.swiss/repository#dsp-080C-organization-004", - "http://ns.dasch.swiss/repository#dsp-080C-organization-005", - "http://ns.dasch.swiss/repository#dsp-080C-organization-006", - "http://ns.dasch.swiss/repository#dsp-080C-organization-007", - "http://ns.dasch.swiss/repository#dsp-080C-organization-008", - "http://ns.dasch.swiss/repository#dsp-080C-organization-009", - "http://ns.dasch.swiss/repository#dsp-080C-organization-010" - ], - "keywords": [ - { - "de": "Basel" - }, - { - "de": "Basler Kunstverein" - }, - { - "de": "Fotoarchiv" - }, - { - "de": "Kunsthalle" - }, - { - "de": "Kunsthalle Basel" - }, - { - "de": "Lukas Lichtenhan" - }, - { - "de": "Zeitgenössische Kunst" - } - ], - "name": "Fotoarchiv Kunsthalle Basel", - "shortcode": "080C", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2661604/basel.html", - "text": "Basel" - } - ], - "startDate": "2017-06-22", - "temporalCoverage": [ - { - "en": "1826 - today" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/ExIK4BHPTaejCzk3saF0UQ", - "text": "Discover Project Data" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-project", + "__type": "Project", + "__createdAt": "1660774161591770000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Fotoarchiv Kunsthalle Basel (2023). [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/080C", + "teaserText": "Kunsthalle Basel is Switzerland’s oldest active art museum displaying contemporary art.", "datasets": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-dataset-000", - "__type": "Dataset", - "__createdAt": "1660774162388016000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "Kunsthalle Basel is Switzerland’s oldest active art museum displaying contemporary art. The Photo Archive of Kunsthalle Basel documents the Kunsthalle’s exhibitions from the last century with well over 20,000 photographs. The archive offers a freely accessible insight into the exhibitions, their publications and the works shown. Please be aware that the images are protected by copyright. This database is continuously updated and expanded." - } - ], - "accessConditions": "open", - "howToCite": "Fotoarchiv Kunsthalle Basel (2023). [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/080C", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-080C-person-001", - "roles": [ - "creator of the project, editor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-080C-person-002", - "roles": [ - "editor, maintainer" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-080C-person-003", - "roles": [ - "editor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-080C-person-000", - "roles": [ - "maintainer, editor" - ] - } - ], - "licenses": [ - { - "__type": "License", - "date": "2023-12-07", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en", - "text": "CC BY-NC 4.0" - } - } - ], - "status": "Ongoing", - "title": "Fotoarchiv der Kunsthalle Basel", - "typeOfData": [ - "Image", - "XML" - ], - "urls": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.kunsthallebasel.ch/fotoarchiv/", - "text": "Find more information about the database here" - } - ] - } + "http://ns.dasch.swiss/repository#dsp-080C-dataset-000" ], - "persons": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-person-000", - "__type": "Person", - "__createdAt": "1660774162388636000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Ficco" - ], - "givenNames": [ - "Giulia" - ], - "jobTitles": [ - "Wiss. Mitarbeiterin" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-080C-organization-000" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-person-001", - "__type": "Person", - "__createdAt": "1660774162388720000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Schmeling" - ], - "givenNames": [ - "Sören" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-080C-organization-000" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-person-002", - "__type": "Person", - "__createdAt": "1660774162388794000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Berger" - ], - "givenNames": [ - "Mara" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-080C-organization-000" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-person-003", - "__type": "Person", - "__createdAt": "1660774162388864000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Zollinger" - ], - "givenNames": [ - "Micha" - ] - } + "alternativeNames": [ + { + "de": "fotoarchivkunsthalle" + } ], - "organizations": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-001", - "__type": "Organization", - "__createdAt": "1660774162388942000", - "__createdBy": "dsp-metadata-gui", - "name": "Bundesamt für Kultur" - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-002", - "__type": "Organization", - "__createdAt": "1660774162388979000", - "__createdBy": "dsp-metadata-gui", - "name": "UBS Kulturstiftung" - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-003", - "__type": "Organization", - "__createdAt": "1660774162389014000", - "__createdBy": "dsp-metadata-gui", - "name": "Kulturelles BL" - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-004", - "__type": "Organization", - "__createdAt": "1660774162389047000", - "__createdBy": "dsp-metadata-gui", - "name": "FMB (Freiwilliger Museumsverein Basel)" - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-005", - "__type": "Organization", - "__createdAt": "1660774162389086000", - "__createdBy": "dsp-metadata-gui", - "name": "Ernst Göhner Stiftung" - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-006", - "__type": "Organization", - "__createdAt": "1660774162389143000", - "__createdBy": "dsp-metadata-gui", - "name": "Sulger Stiftung" - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-007", - "__type": "Organization", - "__createdAt": "1660774162389197000", - "__createdBy": "dsp-metadata-gui", - "name": "Sophie und Karl Binding Stiftung" - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-008", - "__type": "Organization", - "__createdAt": "1660774162389249000", - "__createdBy": "dsp-metadata-gui", - "name": "Gerda Henkel Stiftung" - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-009", - "__type": "Organization", - "__createdAt": "1660774162389288000", - "__createdBy": "dsp-metadata-gui", - "name": "Camille Graeser Stiftung" - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-010", - "__type": "Organization", - "__createdAt": "1660774162389322000", - "__createdBy": "dsp-metadata-gui", - "name": "Beisheim Stiftung" - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-000", - "__type": "Organization", - "__createdAt": "1660774162389355000", - "__createdBy": "dsp-metadata-gui", - "name": "Basler Kunstverein" - } + "description": { + "en": "Kunsthalle Basel is Switzerland’s oldest active art museum displaying contemporary art. The Photo Archive of Kunsthalle Basel documents the Kunsthalle’s exhibitions from the last century with well over 20,000 photographs. The archive offers a freely accessible insight into the exhibitions, their publications and the works shown. Please be aware that the images are protected by copyright. This database is continuously updated and expanded." + }, + "disciplines": [ + { + "en": "10404 Visual arts and Art history" + } ], - "grants": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-000", - "__type": "Grant", - "__createdAt": "1660774162389411000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080C-organization-001" - ], - "name": "Bundesamt für Kultur", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.bak.admin.ch/bak/de/home.html", - "text": "https://www.bak.admin.ch/bak/de/home.html" - } - }, + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080C-organization-001", + "http://ns.dasch.swiss/repository#dsp-080C-organization-002", + "http://ns.dasch.swiss/repository#dsp-080C-organization-003", + "http://ns.dasch.swiss/repository#dsp-080C-organization-004", + "http://ns.dasch.swiss/repository#dsp-080C-organization-005", + "http://ns.dasch.swiss/repository#dsp-080C-organization-006", + "http://ns.dasch.swiss/repository#dsp-080C-organization-007", + "http://ns.dasch.swiss/repository#dsp-080C-organization-008", + "http://ns.dasch.swiss/repository#dsp-080C-organization-009", + "http://ns.dasch.swiss/repository#dsp-080C-organization-010" + ], + "keywords": [ + { + "de": "Basel" + }, + { + "de": "Basler Kunstverein" + }, + { + "de": "Fotoarchiv" + }, + { + "de": "Kunsthalle" + }, + { + "de": "Kunsthalle Basel" + }, + { + "de": "Lukas Lichtenhan" + }, + { + "de": "Zeitgenössische Kunst" + } + ], + "name": "Fotoarchiv Kunsthalle Basel", + "shortcode": "080C", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2661604/basel.html", + "text": "Basel" + } + ], + "startDate": "2017-06-22", + "temporalCoverage": [ + { + "en": "1826 - today" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/ExIK4BHPTaejCzk3saF0UQ", + "text": "Discover Project Data" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-dataset-000", + "__type": "Dataset", + "__createdAt": "1660774162388016000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-001", - "__type": "Grant", - "__createdAt": "1660774162389522000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080C-organization-002" - ], - "name": "UBS Kulturstiftung", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.ubs.com/global/de/ubs-society/foundations/culture-foundation.html", - "text": "https://www.ubs.com/global/de/ubs-society/foundations/culture-foundation.html" - } - }, + "en": "Kunsthalle Basel is Switzerland’s oldest active art museum displaying contemporary art. The Photo Archive of Kunsthalle Basel documents the Kunsthalle’s exhibitions from the last century with well over 20,000 photographs. The archive offers a freely accessible insight into the exhibitions, their publications and the works shown. Please be aware that the images are protected by copyright. This database is continuously updated and expanded." + } + ], + "accessConditions": "open", + "howToCite": "Fotoarchiv Kunsthalle Basel (2023). [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/080C", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-002", - "__type": "Grant", - "__createdAt": "1660774162389630000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080C-organization-003" - ], - "name": "Kulturelles BL", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.baselland.ch/politik-und-behorden/direktionen/bildungs-kultur-und-sportdirektion/kultur/kulturelles-bl", - "text": "https://www.baselland.ch/politik-und-behorden/direktionen/bildungs-kultur-und-sportdirektion/kultur/kulturelles-bl" - } + "en": "English", + "de": "Englisch", + "fr": "anglais" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-003", - "__type": "Grant", - "__createdAt": "1660774162389735000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080C-organization-004" - ], - "name": "FMB (Freiwilliger Museumsverein Basel)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.fmb-basel.ch/", - "text": "https://www.fmb-basel.ch/" - } - }, + "de": "Deutsch", + "en": "German", + "fr": "allemand" + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-004", - "__type": "Grant", - "__createdAt": "1660774162389839000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080C-organization-005" - ], - "name": "Ernst Göhner Stiftung", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.ernst-goehner-stiftung.ch/index.php/de", - "text": "https://www.ernst-goehner-stiftung.ch/index.php/de" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-080C-person-001", + "roles": [ + "creator of the project, editor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-005", - "__type": "Grant", - "__createdAt": "1660774162389945000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080C-organization-006" - ], - "name": "Sulger Stiftung", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://stiftungen.stiftungschweiz.ch/organisation/sulger-stiftung", - "text": "https://stiftungen.stiftungschweiz.ch/organisation/sulger-stiftung" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-080C-person-002", + "roles": [ + "editor, maintainer" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-006", - "__type": "Grant", - "__createdAt": "1660774162390053000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080C-organization-007" - ], - "name": "Sophie und Karl Binding Stiftung", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.binding-stiftung.ch/", - "text": "https://www.binding-stiftung.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-080C-person-003", + "roles": [ + "editor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-007", - "__type": "Grant", - "__createdAt": "1660774162390172000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080C-organization-008" - ], - "name": "Gerda Henkel Stiftung", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.gerda-henkel-stiftung.de/", - "text": "https://www.gerda-henkel-stiftung.de/" - } - }, + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-080C-person-000", + "roles": [ + "maintainer, editor" + ] + } + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-008", - "__type": "Grant", - "__createdAt": "1660774162390276000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080C-organization-009" - ], - "name": "Camille Graeser Stiftung", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.camille-graeser-stiftung.ch/", - "text": "http://www.camille-graeser-stiftung.ch/" - } - }, + "__type": "License", + "date": "2023-12-07", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en", + "text": "CC BY-NC 4.0" + } + } + ], + "status": "Ongoing", + "title": "Fotoarchiv der Kunsthalle Basel", + "typeOfData": [ + "Image", + "XML" + ], + "urls": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-009", - "__type": "Grant", - "__createdAt": "1660774162390377000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080C-organization-010" - ], - "name": "Beisheim Stiftung", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.beisheim-stiftung.com/ch/de", - "text": "https://www.beisheim-stiftung.com/ch/de" - } + "__type": "URL", + "type": "URL", + "url": "https://www.kunsthallebasel.ch/fotoarchiv/", + "text": "Find more information about the database here" } - ] -} + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-person-000", + "__type": "Person", + "__createdAt": "1660774162388636000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Ficco" + ], + "givenNames": [ + "Giulia" + ], + "jobTitles": [ + "Wiss. Mitarbeiterin" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-080C-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-person-001", + "__type": "Person", + "__createdAt": "1660774162388720000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Schmeling" + ], + "givenNames": [ + "Sören" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-080C-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-person-002", + "__type": "Person", + "__createdAt": "1660774162388794000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Berger" + ], + "givenNames": [ + "Mara" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-080C-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-person-003", + "__type": "Person", + "__createdAt": "1660774162388864000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Zollinger" + ], + "givenNames": [ + "Micha" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-001", + "__type": "Organization", + "__createdAt": "1660774162388942000", + "__createdBy": "dsp-metadata-gui", + "name": "Bundesamt für Kultur" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-002", + "__type": "Organization", + "__createdAt": "1660774162388979000", + "__createdBy": "dsp-metadata-gui", + "name": "UBS Kulturstiftung" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-003", + "__type": "Organization", + "__createdAt": "1660774162389014000", + "__createdBy": "dsp-metadata-gui", + "name": "Kulturelles BL" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-004", + "__type": "Organization", + "__createdAt": "1660774162389047000", + "__createdBy": "dsp-metadata-gui", + "name": "FMB (Freiwilliger Museumsverein Basel)" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-005", + "__type": "Organization", + "__createdAt": "1660774162389086000", + "__createdBy": "dsp-metadata-gui", + "name": "Ernst Göhner Stiftung" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-006", + "__type": "Organization", + "__createdAt": "1660774162389143000", + "__createdBy": "dsp-metadata-gui", + "name": "Sulger Stiftung" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-007", + "__type": "Organization", + "__createdAt": "1660774162389197000", + "__createdBy": "dsp-metadata-gui", + "name": "Sophie und Karl Binding Stiftung" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-008", + "__type": "Organization", + "__createdAt": "1660774162389249000", + "__createdBy": "dsp-metadata-gui", + "name": "Gerda Henkel Stiftung" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-009", + "__type": "Organization", + "__createdAt": "1660774162389288000", + "__createdBy": "dsp-metadata-gui", + "name": "Camille Graeser Stiftung" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-010", + "__type": "Organization", + "__createdAt": "1660774162389322000", + "__createdBy": "dsp-metadata-gui", + "name": "Beisheim Stiftung" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-organization-000", + "__type": "Organization", + "__createdAt": "1660774162389355000", + "__createdBy": "dsp-metadata-gui", + "name": "Basler Kunstverein" + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-000", + "__type": "Grant", + "__createdAt": "1660774162389411000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080C-organization-001" + ], + "name": "Bundesamt für Kultur", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.bak.admin.ch/bak/de/home.html", + "text": "https://www.bak.admin.ch/bak/de/home.html" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-001", + "__type": "Grant", + "__createdAt": "1660774162389522000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080C-organization-002" + ], + "name": "UBS Kulturstiftung", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.ubs.com/global/de/ubs-society/foundations/culture-foundation.html", + "text": "https://www.ubs.com/global/de/ubs-society/foundations/culture-foundation.html" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-002", + "__type": "Grant", + "__createdAt": "1660774162389630000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080C-organization-003" + ], + "name": "Kulturelles BL", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.baselland.ch/politik-und-behorden/direktionen/bildungs-kultur-und-sportdirektion/kultur/kulturelles-bl", + "text": "https://www.baselland.ch/politik-und-behorden/direktionen/bildungs-kultur-und-sportdirektion/kultur/kulturelles-bl" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-003", + "__type": "Grant", + "__createdAt": "1660774162389735000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080C-organization-004" + ], + "name": "FMB (Freiwilliger Museumsverein Basel)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.fmb-basel.ch/", + "text": "https://www.fmb-basel.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-004", + "__type": "Grant", + "__createdAt": "1660774162389839000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080C-organization-005" + ], + "name": "Ernst Göhner Stiftung", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.ernst-goehner-stiftung.ch/index.php/de", + "text": "https://www.ernst-goehner-stiftung.ch/index.php/de" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-005", + "__type": "Grant", + "__createdAt": "1660774162389945000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080C-organization-006" + ], + "name": "Sulger Stiftung", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://stiftungen.stiftungschweiz.ch/organisation/sulger-stiftung", + "text": "https://stiftungen.stiftungschweiz.ch/organisation/sulger-stiftung" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-006", + "__type": "Grant", + "__createdAt": "1660774162390053000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080C-organization-007" + ], + "name": "Sophie und Karl Binding Stiftung", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.binding-stiftung.ch/", + "text": "https://www.binding-stiftung.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-007", + "__type": "Grant", + "__createdAt": "1660774162390172000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080C-organization-008" + ], + "name": "Gerda Henkel Stiftung", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.gerda-henkel-stiftung.de/", + "text": "https://www.gerda-henkel-stiftung.de/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-008", + "__type": "Grant", + "__createdAt": "1660774162390276000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080C-organization-009" + ], + "name": "Camille Graeser Stiftung", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.camille-graeser-stiftung.ch/", + "text": "http://www.camille-graeser-stiftung.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080C-grant-009", + "__type": "Grant", + "__createdAt": "1660774162390377000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080C-organization-010" + ], + "name": "Beisheim Stiftung", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.beisheim-stiftung.com/ch/de", + "text": "https://www.beisheim-stiftung.com/ch/de" + } + } + ] +} \ No newline at end of file diff --git a/data/json/lenzburg.json b/data/json/lenzburg.json index 6177cbe2..f32a1443 100644 --- a/data/json/lenzburg.json +++ b/data/json/lenzburg.json @@ -1,344 +1,345 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-082A-project", - "__type": "Project", - "__createdAt": "1637624172046946000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Schweizerisches Volksliedarchiv, Tonbandsammlung Folkfestival auf der Lenzburg", - "teaserText": "Folk music enthusiasts gathered between 1972 and 1980 at the picturesque Lenzburg Castle. Discover the audio heritage of the legendary Lenzburg Folk Festival", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-082A-dataset-000" - ], - "alternativeNames": [ - { - "en": "Folkfestival; Lenzburg Festival; Lenzburg Folk Festival" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-082A-organization-000", - "description": { - "en": "The Folkfestival auf der Lenzburg (Lenzburg Folk Festival) took place in Switzerland from 1972 until 1980 at Lenzburg Castle (Lenzburg, Aargau), always on a weekend in June or July. Looking back the festival was the most important folk event in Switzerland. Over the years, many Swiss and international folk bands played at the Lenzburg festival. The event grew continuously: its duration was extended from initially one to two days, more international artists from different subgenres of folk performed, and also the audience grew steadily so that the castle became gradually very crowded, and tickets had to be sold by drawing lots. For this reason, and because various political and social upheavals were shaking up the Swiss folk scene (furthermore, reconstruction works on the castle were planned), many members of the organizing committee resigned, and the last festival was held in 1980. \nThe festival was mainly the result of the efforts of musicians and other actors around the folk clubs of Bern and Zurich which formed an association and an organizing committee. The Lenzburg Folk Festival Society made tape recordings on cassette and magnetic tapes during the performances. In 1984, the audio tapes were donated to the Schweizerisches Volksliedarchiv (Swiss Folk Song Archive, SVA) in Basel, accompanied by a typewritten documentation, archival chards, and further archival materials, e.g., program leaflets (documentation process continued until 1987). \nThe Lenzburg audio tape collection was archived, stored, and for a long time little was done with the tapes. It was not until 2015 that the SVA decided to breathe new life into the recordings and digitize them. Two reasons were decisive for this: firstly, the SVA as a section of the archives of the Cultural Anthropology Switzerland (CAS aims at making the rich historical folk culture collections accessible to the broader public and for scientific use. Secondly, practical reasons create a demand for digitization since the SVA cannot create the optimal conditions for storing audio tapes, and the archive does not own the technical devices for magnetic audio tapes so that the recordings could therefore no longer be listened to by the public.\nThe Lenzburg project started in 2017 and was presented to the public for the first time at an event of the Cultural Anthropology Switzerland (CAS) section Basel, on February 11, 2019, in the form of a workshop report." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/5101", - "text": "Cultural anthropology" - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/620306", - "text": "Music, musicology " - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/510104", - "text": "Ethno-musicology " - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/630103", - "text": "Folklore" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-082A-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-082A-grant-000" - ], - "keywords": [ - { - "de": "Folklore" - }, - { - "de": "Lenzburg" - }, - { - "de": "Schweizerisches Volksliedarchiv" - }, - { - "en": "folk music" - }, - { - "en": "folk song" - } - ], - "name": "Tonbandsammlung Folkfestival auf der Lenzburg", - "publications": [ - { - "text": "Burckhardt-Seebass, Christine (1987): “Gang, hol d’Gitarre …”: das Folk-Festival auf der Lenzburg 1972–1980 und die schweizerische Folk-Bewegung: eine Skizze. In: Schweizerisches Archiv für Volkskunde, 83 (3–4), 154–168.", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "http://doi.org/10.5169/seals-117606", - "text": "DOI: 10.5169/seals-117606" - } - ] - }, - { - "text": "Hostettler, Urs (undat.): Lenzburg-Chronik. Die Folkfestivals auf der Lenzburg. URL: (29.07.2021)", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://urs.fatamorgana.ch/lenzburg.html", - "text": "https://urs.fatamorgana.ch/lenzburg.html" - } - ] - } - ], - "shortcode": "082A", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/10395074/lenzburg-schloss.html", - "text": "Lenzburg, Schloss" - } - ], - "startDate": "2017-07-01", - "temporalCoverage": [ - { - "de": "1972-1980", - "en": "1972-1980", - "fr": "1972-1980" - } - ], - "url": { + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-082A-project", + "__type": "Project", + "__createdAt": "1637624172046946000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Schweizerisches Volksliedarchiv, Tonbandsammlung Folkfestival auf der Lenzburg", + "teaserText": "Folk music enthusiasts gathered between 1972 and 1980 at the picturesque Lenzburg Castle. Discover the audio heritage of the legendary Lenzburg Folk Festival", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-082A-dataset-000" + ], + "alternativeNames": [ + { + "en": "Folkfestival; Lenzburg Festival; Lenzburg Folk Festival" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-082A-organization-000", + "description": { + "en": "The Folkfestival auf der Lenzburg (Lenzburg Folk Festival) took place in Switzerland from 1972 until 1980 at Lenzburg Castle (Lenzburg, Aargau), always on a weekend in June or July. Looking back the festival was the most important folk event in Switzerland. Over the years, many Swiss and international folk bands played at the Lenzburg festival. The event grew continuously: its duration was extended from initially one to two days, more international artists from different subgenres of folk performed, and also the audience grew steadily so that the castle became gradually very crowded, and tickets had to be sold by drawing lots. For this reason, and because various political and social upheavals were shaking up the Swiss folk scene (furthermore, reconstruction works on the castle were planned), many members of the organizing committee resigned, and the last festival was held in 1980. \nThe festival was mainly the result of the efforts of musicians and other actors around the folk clubs of Bern and Zurich which formed an association and an organizing committee. The Lenzburg Folk Festival Society made tape recordings on cassette and magnetic tapes during the performances. In 1984, the audio tapes were donated to the Schweizerisches Volksliedarchiv (Swiss Folk Song Archive, SVA) in Basel, accompanied by a typewritten documentation, archival chards, and further archival materials, e.g., program leaflets (documentation process continued until 1987). \nThe Lenzburg audio tape collection was archived, stored, and for a long time little was done with the tapes. It was not until 2015 that the SVA decided to breathe new life into the recordings and digitize them. Two reasons were decisive for this: firstly, the SVA as a section of the archives of the Cultural Anthropology Switzerland (CAS aims at making the rich historical folk culture collections accessible to the broader public and for scientific use. Secondly, practical reasons create a demand for digitization since the SVA cannot create the optimal conditions for storing audio tapes, and the archive does not own the technical devices for magnetic audio tapes so that the recordings could therefore no longer be listened to by the public.\nThe Lenzburg project started in 2017 and was presented to the public for the first time at an event of the Cultural Anthropology Switzerland (CAS) section Basel, on February 11, 2019, in the form of a workshop report." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/5101", + "text": "Cultural anthropology" + }, + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/620306", + "text": "Music, musicology " + }, + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/510104", + "text": "Ethno-musicology " + }, + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/630103", + "text": "Folklore" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-082A-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-082A-grant-000" + ], + "keywords": [ + { + "de": "Folklore" + }, + { + "de": "Lenzburg" + }, + { + "de": "Schweizerisches Volksliedarchiv" + }, + { + "en": "folk music" + }, + { + "en": "folk song" + } + ], + "name": "Tonbandsammlung Folkfestival auf der Lenzburg", + "publications": [ + { + "text": "Burckhardt-Seebass, Christine (1987): “Gang, hol d’Gitarre …”: das Folk-Festival auf der Lenzburg 1972–1980 und die schweizerische Folk-Bewegung: eine Skizze. In: Schweizerisches Archiv für Volkskunde, 83 (3–4), 154–168.", + "url": [ + { "__type": "URL", "type": "URL", - "url": "https://app.dasch.swiss/project/082A", - "text": "Discover Project Data" - }, - "secondaryURL": { + "url": "http://doi.org/10.5169/seals-117606", + "text": "DOI: 10.5169/seals-117606" + } + ] + }, + { + "text": "Hostettler, Urs (undat.): Lenzburg-Chronik. Die Folkfestivals auf der Lenzburg. URL: (29.07.2021)", + "url": [ + { "__type": "URL", "type": "URL", - "url": "https://www.volkskunde.ch/sgv/archive-und-sammlungen/volksliederarchiv", - "text": "External Project Website" - } + "url": "https://urs.fatamorgana.ch/lenzburg.html", + "text": "https://urs.fatamorgana.ch/lenzburg.html" + } + ] + } + ], + "shortcode": "082A", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/10395074/lenzburg-schloss.html", + "text": "Lenzburg, Schloss" + } + ], + "startDate": "2017-07-01", + "temporalCoverage": [ + { + "de": "1972-1980", + "en": "1972-1980", + "fr": "1972-1980" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/082A", + "text": "Discover Project Data" }, - "datasets": [ + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://www.volkskunde.ch/sgv/archive-und-sammlungen/volksliederarchiv", + "text": "External Project Website" + }, + "status": "finished" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082A-dataset-000", + "__type": "Dataset", + "__createdAt": "1637624174200462000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-082A-dataset-000", - "__type": "Dataset", - "__createdAt": "1637624174200462000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The collection consists of cassette tapes and magnetic tapes. They were recorded during the concerts at the festival (1972–1980). The metadata entail the original archival number (tape numbers), song titles, duration, band names and artist names as well as further information such as song incipits." - } - ], - "alternativeTitles": [ - { - "en": "Lenzburg Folk Festival" - } - ], - "accessConditions": "closed", - "additional": [ - { - "de": "Weiteres Schriftgut, Fotos und Begleitmaterialien des Folkfestivals Lenzburg werden im Schweizerischen Sozialarchiv aufbewahrt." - } - ], - "howToCite": "Schweizerisches Volksliedarchiv, Tonbandsammlung Folkfestival auf der Lenzburg", - "languages": [ - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-11-23", - "license": { - "__type": "URL", - "type": "URL", - "url": "https://www.volkskunde.ch/sgv/archive-und-sammlungen/volksliederarchiv", - "text": "SGV Schweizerisches Volksliedarchiv" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082A-person-000", - "roles": [ - "PI" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082A-person-003", - "roles": [ - "PI" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082A-person-001", - "roles": [ - "Archivist, Information Specialist" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-082A-person-002", - "roles": [ - "Creator, Maintainer" - ] - } - ], - "status": "Finished", - "title": "Tonbandsammlung Folkfestival auf der Lenzburg", - "typeOfData": [ - "Audio" - ] + "en": "The collection consists of cassette tapes and magnetic tapes. They were recorded during the concerts at the festival (1972–1980). The metadata entail the original archival number (tape numbers), song titles, duration, band names and artist names as well as further information such as song incipits." } - ], - "persons": [ + ], + "alternativeTitles": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-082A-person-000", - "__type": "Person", - "__createdAt": "1637624174341791000", - "__createdBy": "dsp-metadata-gui", - "email": "johannes.mueske@zpkm.uni-freiburg.de", - "familyNames": [ - "Müske" - ], - "givenNames": [ - "Johannes" - ], - "jobTitles": [ - "Co-head, Swiss Folk Song Archive" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082A-organization-000" - ] - }, + "en": "Lenzburg Folk Festival" + } + ], + "accessConditions": "closed", + "additional": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-082A-person-001", - "__type": "Person", - "__createdAt": "1637624174341947000", - "__createdBy": "dsp-metadata-gui", - "email": "senta.bindschaedler@unibas.ch", - "familyNames": [ - "Bindschädler" - ], - "givenNames": [ - "Senta" - ], - "jobTitles": [ - "Co-Head, Swiss Folk Song Archive" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082A-organization-000" - ] - }, + "de": "Weiteres Schriftgut, Fotos und Begleitmaterialien des Folkfestivals Lenzburg werden im Schweizerischen Sozialarchiv aufbewahrt." + } + ], + "howToCite": "Schweizerisches Volksliedarchiv, Tonbandsammlung Folkfestival auf der Lenzburg", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-082A-person-002", - "__type": "Person", - "__createdAt": "1637624174342092000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Hostettler" - ], - "givenNames": [ - "Urs" - ], - "jobTitles": [ - "Festival organizing committee" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082A-organization-002" - ] - }, + "de": "Deutsch", + "en": "German", + "fr": "allemand" + } + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-082A-person-003", - "__type": "Person", - "__createdAt": "1637624174342206000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Ackermann" - ], - "givenNames": [ - "Tamara" - ], - "jobTitles": [ - "Head Swiss Folk Song Archive, ad interim" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-082A-organization-000" - ] + "__type": "License", + "date": "2021-11-23", + "license": { + "__type": "URL", + "type": "URL", + "url": "https://www.volkskunde.ch/sgv/archive-und-sammlungen/volksliederarchiv", + "text": "SGV Schweizerisches Volksliedarchiv" + } } - ], - "organizations": [ + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-082A-organization-002", - "__type": "Organization", - "__createdAt": "1637624174342347000", - "__createdBy": "dsp-metadata-gui", - "name": "Lenzburg Folk Festival Organizing Committee (association terminated)" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082A-person-000", + "roles": [ + "PI" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082A-organization-001", - "__type": "Organization", - "__createdAt": "1637624174342399000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Bümplizstrasse 192", - "postalCode": "3018", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "info@memoriav.ch", - "name": "Memoriav – Verein zur Erhaltung des audiovisuellen Kulturgutes der Schweiz", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://memoriav.ch/", - "text": "https://memoriav.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082A-person-003", + "roles": [ + "PI" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082A-organization-000", - "__type": "Organization", - "__createdAt": "1637624174419582000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Rheinsprung 9", - "postalCode": "4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "johannes.mueske@zpkm.uni-freiburg.de", - "name": "Schweizerisches Volksliedarchiv der Empirischen Kulturwissenschaft Schweiz (EKWS)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.volkskunde.ch/sgv/archive-und-sammlungen/volksliederarchiv", - "text": "https://www.volkskunde.ch/sgv/archive-und-sammlungen/volksliederarchiv" - } - } - ], - "grants": [ + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082A-person-001", + "roles": [ + "Archivist, Information Specialist" + ] + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-082A-grant-000", - "__type": "Grant", - "__createdAt": "1637624174547831000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-082A-organization-001" - ], - "name": "Digitale Erschliessung Tonbandsammlung Lenzburg" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-082A-person-002", + "roles": [ + "Creator, Maintainer" + ] } - ] -} + ], + "status": "Finished", + "title": "Tonbandsammlung Folkfestival auf der Lenzburg", + "typeOfData": [ + "Audio" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082A-person-000", + "__type": "Person", + "__createdAt": "1637624174341791000", + "__createdBy": "dsp-metadata-gui", + "email": "johannes.mueske@zpkm.uni-freiburg.de", + "familyNames": [ + "Müske" + ], + "givenNames": [ + "Johannes" + ], + "jobTitles": [ + "Co-head, Swiss Folk Song Archive" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082A-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082A-person-001", + "__type": "Person", + "__createdAt": "1637624174341947000", + "__createdBy": "dsp-metadata-gui", + "email": "senta.bindschaedler@unibas.ch", + "familyNames": [ + "Bindschädler" + ], + "givenNames": [ + "Senta" + ], + "jobTitles": [ + "Co-Head, Swiss Folk Song Archive" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082A-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082A-person-002", + "__type": "Person", + "__createdAt": "1637624174342092000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Hostettler" + ], + "givenNames": [ + "Urs" + ], + "jobTitles": [ + "Festival organizing committee" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082A-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082A-person-003", + "__type": "Person", + "__createdAt": "1637624174342206000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Ackermann" + ], + "givenNames": [ + "Tamara" + ], + "jobTitles": [ + "Head Swiss Folk Song Archive, ad interim" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-082A-organization-000" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082A-organization-002", + "__type": "Organization", + "__createdAt": "1637624174342347000", + "__createdBy": "dsp-metadata-gui", + "name": "Lenzburg Folk Festival Organizing Committee (association terminated)" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082A-organization-001", + "__type": "Organization", + "__createdAt": "1637624174342399000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Bümplizstrasse 192", + "postalCode": "3018", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "info@memoriav.ch", + "name": "Memoriav – Verein zur Erhaltung des audiovisuellen Kulturgutes der Schweiz", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://memoriav.ch/", + "text": "https://memoriav.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-082A-organization-000", + "__type": "Organization", + "__createdAt": "1637624174419582000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Rheinsprung 9", + "postalCode": "4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "johannes.mueske@zpkm.uni-freiburg.de", + "name": "Schweizerisches Volksliedarchiv der Empirischen Kulturwissenschaft Schweiz (EKWS)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.volkskunde.ch/sgv/archive-und-sammlungen/volksliederarchiv", + "text": "https://www.volkskunde.ch/sgv/archive-und-sammlungen/volksliederarchiv" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-082A-grant-000", + "__type": "Grant", + "__createdAt": "1637624174547831000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-082A-organization-001" + ], + "name": "Digitale Erschliessung Tonbandsammlung Lenzburg" + } + ] +} \ No newline at end of file diff --git a/data/json/lhtt.json b/data/json/lhtt.json index e1fa758e..707dfda4 100644 --- a/data/json/lhtt.json +++ b/data/json/lhtt.json @@ -1,2432 +1,2433 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-project", - "__type": "Project", - "__createdAt": "1701867504599403000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Life Histories of Theban Tombs (2023). DaSCH. https://ark.dasch.swiss/ark:/72163/1/0820", - "teaserText": "LHTT focuses on a cluster of tombs in the Theban Necropolis (Egypt). It investigates the evolution of the hillside and explores the history of the tombs from early 2nd mill. BCE to 20th c. CE.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0820-dataset-000" - ], - "alternativeNames": [ - { - "en": "LHTT" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0820-person-000", - "description": { - "en": "The University of Basel, Switzerland, has been conducting an overarching archaeological project on “Life Histories of Theban Tombs” (LHTT) at the ancient hillside cemetery of Sheikh ‘Abd el-Qurna (SAQ) in Western Thebes since November 2015. In cooperation with partners at the ETH and the University of Zurich and an international expert team, LHTT investigates two clusters of mostly unfinished rock-cut tombs from the beginning of the Middle Kingdom (1900–1750 BCE) and the mid-Eighteenth Dynasty (c. 1450‒1400 BCE). The latter group of tombs can be understood as part of a planned cemetery opened for a small elite with close personal links to Pharaohs Thutmose III and Amenhotep II.\n\nThese tombs share a long use history. Distinction can be made between their “systemic” use, including their creation, decoration, use and reuse as sacred spaces for burials and cultic performance during Antiquity (not excluding phases of severe looting and damage), and “non-systemic” use in more recent times, notably as dwelling space for Coptic monks from the 6th to the 8th centuries CE, as well as modern villagers during the 19th and 20th centuries.\n\nThe project promotes the interaction between Egyptology, archaeology, art history, philology, physical anthropology, natural and computer sciences, geomatics, and several archaeometrical fields. It also aims at analysing the emergence and life cycles of the investigated tombs in their natural and built environment. Research focuses on landscape development, including recent activities in the cemetery and in individual tombs, tomb construction and decoration practices, reception, and funerary and domestic (re)uses of the tombs over time. \n\nThe archaeological site stretches over the western and central parts of the SAQ hill; it includes an area covered by a huge cone of debris (AU1000) and comprises two clusters of rock cut tombs: TT95A‒C and K85 in the west, and TT84-K453-K90-K555 in the centre of the hillside. Tomb K555 was, until recently, buried beneath debris accumulations of AU1000. It is currently being excavated (courtyard and inner halls). To the east of TT84 lie the remains of a construction site (AU6000), which were also re-excavated.\n\nThe publication plan is divided in two axes. On the one hand, groups of relevant finds from the first cluster of tombs (TT95A–C and K85) are the subject of various separate articles, some of which are already published in a single volume (see Gnirs (ed.) 2021). On the other hand, the complete study of the decorative programmes of TT84 and K555 (texts and iconography), including archaeological finds from the recent excavations of K555 and area AU1000, is ongoing.", - "ar": "\nتقوم جامعة بازل السويسرية منذ نوفمبر 2015 بتنفيذ مشروع أثري شامل بعنوان \"قصص الحياة في مقابر طيبة\" في الجبانة القديمة بتل الشيخ عبد القرنة في طيبة الغربية. من خلال التعاون مع شركاء من المعهد السويسري الفيدرالي للتكنولوجيا وجامعة زيورخ ومع فريق من الخبراء الدوليين يقوم المشروع ببحث ودراسة مجموعتين من المقابر المنقورة في الصخر غير المكتملة التي يعود تاريخها إلى بداية عصر الدولة الوسطى (1900-1750 قبل الميلاد) ومنتصف الأسرة الثامنة عشرة (حوالي 1450-1400 قبل الميلاد). يمكن فهم المجموعة الأحدث من هذه المقابر بوصفها جزءًا من جبانة خُصصت لنخبة محدودة كانت تتمتع بعلاقات شخصية مع الملكين تحتمس الثالث وأمنحتب الثاني. \nتتشارك هذه المقابر تاريخًا طويلًا من الاستخدام. ويمكن التمييز بين استخدامها \"التقليدي\"، بما في ذلك إنشاؤها وزخرفتها واستخدامها وإعادة استخدامها باعتبارها أماكن مقدسة لدفن الموتى ولممارسة الشعائر الدينية في العصور القديمة (لا يُستنثى من ذلك مراحل النهب والتخريب الشديدين)، وبين استخدامها \"غير التقليدي\" في الآونة الأخيرة، لا سيما استخدامها محلًا لإقامة الرهبان الأقباط من القرن السادس إلى القرن الثامن الميلاديين ولسكن القرويين المحليين في العصر الحديث خلال القرنين التاسع عشر والعشرين. \nيعزز المشروع التفاعل والتعاون بين علم المصريات وعلم الآثار وتاريخ الفن وفقه اللغة والأنثروبولوجيا الفيزيائية وعلوم الطبيعة وعلوم الحاسوب والهندسة الجيولوجية والعديد من العلوم الأثرية. كما يهدف المشروع إلى دراسة نشأة المقابر محل البحث ودورات الحياة بها في بيئتها الطبيعية وتلك التي هي من صنع الإنسان. تركز الأبحاث على تطور الجغرافيا الأثرية للموقع، بما في ذلك الأنشطة الحديثة في الجبانة وفي المقابر الفردية وممارسات بناء المقابر وزخرفتها واستقبال الموتى والاستخدامات أو إعادة الاستخدامات الجنائزية والسكنية للمقابر على مر العصور. \nيمتد الموقع الأثري للمشروع في القسمين الغربي والأوسطي من تل الشيخ عبد القرنة، ويشمل منطقة تغطيها كومة ضخمة من الرديم (الوحدة الأثرية 1000AU). يضم الموقع مجموعتين من المقابر المنقورة في الصخر: TT95A-C و K85 في القسم الغربي من التل، و TT84-K453-K90-K555 في القسم الأوسطي منه. كانت المقبرة K555 حتى وقت قريب مدفونة تحت الرديم المتراكم القادم من الوحدة الأثرية AU1000. تخضع هذه المقبرة في الوقت الراهن إلى أعمال التنقيب (فناء المقبرة وقاعاتها الداخلية). وتقع إلى الشرق من المقبرة TT84 بقايا موقع بناء (الوحدة الأثرية AU6000) حيث أعاد المشروع إجراء أعمال التنقيب فيها أيضًا.\nتنقسم خطة النشر العلمي لهذه المقابر ومحتوياتها إلى محورين. يشمل المحور الأول نشر مجموعات من الآثار المكتشفة ذات الصلة القادمة من المجموعة الأولى من المقابر (TT95A-C، K85) في العديد من المقالات الفردية، بعضها منشور بالفعل في مجلد واحد (انظر: Gnirs (ed.) 2021). ويشمل المحور الثاني نشر الدراسة المتكاملة الجارية لممارسات وبرامج زخرفة المقبرتين TT84 و K555 (النصوص والمناظر)، بما في ذلك الآثار التي أسفرت عنها أعمال التنقيب الأخيرة في المقبرة K555 وفي منطقة الوحدة الأثرية AU1000.\n" - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/550512", - "text": "Stratigraphy " - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/550510", - "text": "Philology " - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/550601", - "text": "History of architecture" - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/550502", - "text": "Ceramology" - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/550602", - "text": "History of art" - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/2402", - "text": "Anthropology (physical) " - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/550501", - "text": "Archaeology" - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/2506", - "text": "Geology" - }, - { - "en": "10303 Ancient history and Classical studies" - }, - { - "xx": "10402 Archaeology" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-000", - "http://ns.dasch.swiss/repository#dsp-0820-organization-012", - "http://ns.dasch.swiss/repository#dsp-0820-organization-013" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0820-grant-000" - ], - "keywords": [ - { - "en": "Archaeobotany" - }, - { - "en": "Archaeology" - }, - { - "en": "Archaeozoology" - }, - { - "en": "Art history" - }, - { - "en": "Egyptology" - }, - { - "en": "Elite society" - }, - { - "en": "Geology" - }, - { - "en": "Landscape Archaeology" - }, - { - "en": "Philology" - }, - { - "en": "Physical Anthropology" - }, - { - "en": "Sheikh ‘Abd el-Qurna" - }, - { - "en": "Theban tombs" - }, - { - "en": "Thebes" - }, - { - "en": "Tomb Decoration Techniques and Styles" - }, - { - "en": "Use and Reuse of Theban Tombs" - }, - { - "en": "Western Thebes" - }, - { - "ar": "الكلمات المفتاحية:" - }, - { - "ar": "علم المصريات " - }, - { - "ar": "علم الآثار " - }, - { - "ar": "علم الجغرافيا الأثرية " - }, - { - "ar": "تاريخ الفن " - }, - { - "ar": "فقه اللغة " - }, - { - "ar": "الأنثروبولوجيا الفيزيائية" - }, - { - "ar": "علم البقايا النباتية " - }, - { - "ar": "علم البقايا الحيوانية " - }, - { - "ar": "الجيولوجيا " - }, - { - "ar": "مقابر طيبة " - }, - { - "ar": "مجتمع النخبة" - }, - { - "ar": "طيبة " - }, - { - "ar": "طيبة الغربية" - }, - { - "ar": "الشيخ عبد القرنة " - }, - { - "ar": "تقنيات وأساليب زخرفة المقابر " - }, - { - "ar": "استخدام وإعادة استخدام مقابر طيبة " - } - ], - "name": "Life Histories of Theban Tombs", - "publications": [ - { - "text": "1. Sartori, M., “Tombe tebane in dialogo. TT 84, TT95 e la rete di committenti”, in Di Natale A. & Basile C. (eds.), Atti del XIX Convegno di Egittologia e Papirologia, Siracusa, 1-4 Ottobre 2020, Quaderni del Museo del Papiro XVIII, Siracuse, 2022, 47-56." - }, - { - "text": "2. Hunkeler, Ch., “Fragments of a Ramesside Coffin Ensemble: What Information Can Be Gained?”, in Kilian, A., & Zöller-Engelhardt, M. (eds.), Excavating the Extraordinary. Challenges and Merit of Working with Small Finds, Heidelberg, Propylaeum, 2021, 155-180." - }, - { - "text": "3. Loprieno-Gnirs, A. (ed.), Life Histories of Theban Tombs. Transdisciplinary Investigations of a Cluster of Rock-Cut Tombs at Sheikh 'Abd el-Qurna, Cairo, American University Press, 2021." - }, - { - "text": "4. Sartori, M., “Die visuelle Komposition „Gard. R4” („Brot auf Schilfmatte“) zwischen schriftlicher und bildlicher Repräsentation\", in Backes, B. & Serova, D. (eds.), (Un)Sterblichkeit: Schrift–Körper–Kult: Beiträge des neunten Berliner Arbeitskreises Junge Aegyptologen, Berlin, Wiesbaden, Harrassowitz, 2020, 189-200." - }, - { - "text": "5. Sartori, M., “Art as Writing, Writing as Art. Case Studies from Selected New Kingdom Theban Tombs”, in Graves, C. (ed.), Proceedings of the 4th British Egyptology Congress, Manchester, London, Egypt Exploration Society, 2020, 124-134." - }, - { - "text": "6. Hunkeler, Ch., “Rest in Pieces. Fragments of a Twenty-fifth/Twenty-sixth Dynasty Burial Ensemble” in Dawson, J. & Strudwick, H. (eds.), Ancient Egyptian Coffins. Past – Present – Future, Philadelphia-Oxford, Oxbow Books, 2019, 203." - }, - { - "text": "7. Ziegler, M., Colldeweih, R., Wolter, A., Loprieno-Gnirs, A., “Rock Mass Quality and Preliminary Analysis of the Stability of Ancient Rock-cut Theban Tombs at Sheikh ‘Abd el-Qurna, Egypt” in Bulletin of Engineering Geology and the Environment, 2019, 1–27." - }, - { - "text": "8. Loprieno-Gnirs, A., “Creuser une tombe dans la colline thébaine : le projet archéologique Life Histories of Theban Tombs de l'université de Bâle\" in Bulletin de la société française d'égyptologie 199, 2018, 100–126." - }, - { - "text": "9. Friedli, E., Banz, J., Gojcic, Z., Wieser, A., “Fusion of Laser Scanning and Photogrammetric Data for the Documentation and VR Visualization of an Archaeological Tomb Complex” in FIG 2018, Embracing our Smart World where the Continents Connect Proceedings, Istanbul, Copenhagen, International Federation of Surveyors (FIG), 2018." - }, - { - "text": "10. Underwood, M., “Domestic Occupation of Theban Tomb 95 in the First Millennium AD” in Di Biase-Dyson, C. & Donovan, L. (eds.), The Cultural Manifestation of Religious Experience. Studies in Honor of Boyo G. Ockinga, Münster, Ugarit Verlag, 2017, 225–240." - } - ], - "shortcode": "0820", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/347342", - "text": "Thebes" - }, - { - "__type": "URL", - "type": "Pleiades", - "url": "https://pleiades.stoa.org/places/786050", - "text": "Thebes East" - }, - { - "__type": "URL", - "type": "Pleiades", - "url": "https://pleiades.stoa.org/places/786067", - "text": "Thebes West " - } - ], - "startDate": "2015-11-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qk76zkb23", - "text": "Middle Kingdom" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qk76zxgwt", - "text": "Second Intermediate Period" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qk76zvjkw", - "text": "New Kingdom" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "http://chronontology.dainst.org/period/GnjMPsF5f2mQ", - "text": "New Kingdom (Chronontology)" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qk76zpmnv", - "text": "Third Intermediate Period" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qk76zh6n2", - "text": "Late Period" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/TyinwInl5SJ0", - "text": "Late Period (Chronontology)" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qk76zgqb7", - "text": "Persian Period" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qk76zbv62", - "text": "Roman" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/XHRCuCDjtgu5", - "text": "Coptic (culture or style)" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/uzwK9AAK8Clj", - "text": "Ottoman period" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://lhtt.philhist.unibas.ch/", - "text": "External Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-project", + "__type": "Project", + "__createdAt": "1701867504599403000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Life Histories of Theban Tombs (2023). DaSCH. https://ark.dasch.swiss/ark:/72163/1/0820", + "teaserText": "LHTT focuses on a cluster of tombs in the Theban Necropolis (Egypt). It investigates the evolution of the hillside and explores the history of the tombs from early 2nd mill. BCE to 20th c. CE.", "datasets": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-dataset-000", - "__type": "Dataset", - "__createdAt": "1701867517625102000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "AU1000 – AU1080 from Debris Hill (above K555)" - }, - { - "en": "All Data from AU6000" - }, - { - "en": "All Data from K85" - }, - { - "en": "All Data from TT95" - } - ], - "alternativeTitles": [ - { - "en": "Part 1 of LHTT Data" - } - ], - "accessConditions": "closed", - "dateCreated": "2023-01-01", - "howToCite": "Life Histories of Theban Tombs (2023). DaSCH. https://ark.dasch.swiss/ark:/72163/1/0820", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "en": "French", - "de": "Französisch", - "fr": "français" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2023-12-06", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc/4.0/", - "text": "CC BY-NC 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-000", - "roles": [ - "Project Director" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-001", - "roles": [ - "Project Director" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-002", - "roles": [ - "Project Coordinator, Field Director" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-003", - "roles": [ - "Scientific Advisor, Supervisor of BA Thesis (Selina Bächli)" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-004", - "roles": [ - "Scientific Advisor, Supervisor of PhD Thesis (Marina Sartori)" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-005", - "roles": [ - "Scientific Advisor, Archaeological Project Consultant" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-006", - "roles": [ - "Scientific Advisor, Head of Geodetic Team" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-007", - "roles": [ - "Scientific Advisor, Head of Geological Team, Supervisor of MA Thesis (Rachael Colldeweih)" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-008", - "roles": [ - "Research Team Member, Sedimentology" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-009", - "roles": [ - "Research Team Member, Conservation assistant" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-010", - "roles": [ - "Archaeological Illustrator, Illustrations of archaeological artifacts, Digital visualizations of tomb paintings" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-011", - "roles": [ - "Project Assistant" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-012", - "roles": [ - "Research Team Member, BA Thesis: “Die Mumie der Tabaketnetmut: Virtuelle Rekonstruktion einer altägyptischen Bestattung”" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-013", - "roles": [ - "Research Team Member, Burial and domestic pottery from the Middle Bronze Age to recent times" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-014", - "roles": [ - "Research Team Member, Orthopedic assessments on skeletons and mummies" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-015", - "roles": [ - "Research Team Member, Illustrations of ancient tools and work Processes" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-016", - "roles": [ - "Research Team Member, Litho-stratigraphy, Rock mass behavior, MA Thesis: “Geological Investigations of Selected Theban Tombs, Luxor (Egypt)”" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-017", - "roles": [ - "Research Team Member, Egyptological study of tomb decorations – conception and reception including art historical and sociological aspects" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-018", - "roles": [ - "Research Team Member, Philological and material studies of Book of the Dead papyri" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-019", - "roles": [ - "Editor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-020", - "roles": [ - "Research Team Member, Wooden and cartonnage body envelopes" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-021", - "roles": [ - "Student Assistant" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-022", - "roles": [ - "Geodetic and photogrammetric landscape, tomb mapping, 3D modelling" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-023", - "roles": [ - "Student Assistant" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-024", - "roles": [ - "Research Team Member, Geodetic and photogrammetric landscape, tomb mapping, 3D modelling" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-025", - "roles": [ - "Research Team Member, Wood conservation" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-026", - "roles": [ - "Research Team Member, Ancient plant materials" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-027", - "roles": [ - "Research Team Member, Wooden and cartonnage body envelopes" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-028", - "roles": [ - "Project Consultant, Translator, Research Team Member, Arabic manuscripts from the late 19th-20th Century" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-029", - "roles": [ - "Research Team Member, Ancient plant materials and Flower Garlands" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-030", - "roles": [ - "Archaeological photographer, Photogrammetry of tomb architecture" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-031", - "roles": [ - "Consultant, Geological assessment of rock proveniences" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-032", - "roles": [ - "Research Team Member, Osteological and paleopathological assessments on skeletons and mummies, histological and DNA sampling, mummification practices" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-033", - "roles": [ - "Student Assistant, Excavation Direction" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-034", - "roles": [ - "Consultant" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-035", - "roles": [ - "Student Assistant" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-036", - "roles": [ - "Research Team Member" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-037", - "roles": [ - "Archaeological Assistant" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-038", - "roles": [ - "Research Team Member, Epigrapher, Philological study of hieratic and Coptic text sources" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-039", - "roles": [ - "Consultant, Statistic projections of excavation volumes in ancient tomb construction and of tools’ wear" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-040", - "roles": [ - "Research Team Member, Chief Excavator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-041", - "roles": [ - "Research Team Member, Epigrapher, Philological and orthographic studies of tomb inscriptions" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-042", - "roles": [ - "Conservator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-043", - "roles": [ - "Research Team Member, Excavation Direction, Development of excavation methods, Application of photogrammetric procedures in field archaeology" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-044", - "roles": [ - "Consultant" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-045", - "roles": [ - "Research Team Member, Excavation Direction" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-046", - "roles": [ - "Research Team Member, PhD Thesis: “Visual Studies Applied to Egyptian Tomb Wall Paintings”" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-047", - "roles": [ - "Research Team Member, Ancient textiles, MA thesis “Textile Funde aus den ägyptischen Gräbern TT95A und TT95B. Eine statistische Analyse der Zusammensetzung von Grabbeigaben“" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-048", - "roles": [ - "Research Team Member" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-049", - "roles": [ - "Research Team Member, Stomatological assessments on skeletons and mummies" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-050", - "roles": [ - "Research Team Member, Ancient animal materials" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-051", - "roles": [ - "IT Specialist, Development of database structure and interface design, Processing of photogrammetric models" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-052", - "roles": [ - "Research Team Member, Leather material" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-053", - "roles": [ - "Research Team Member, Database Manager, Analyses of finds and archaeological mass data" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-054", - "roles": [ - "Research Team Member, Rock slope instabilities and behaviour" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-055", - "roles": [ - "Student Assistant" - ] - } - ], - "status": "Ongoing", - "title": "AU10000+ (TT95) – AU1 (K85) – AU6000 – AU1000-1080 (Debris Hill)", - "typeOfData": [ - "Image", - "Video", - "Text" - ] - } + "http://ns.dasch.swiss/repository#dsp-0820-dataset-000" ], - "persons": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-001", - "__type": "Person", - "__createdAt": "1701867518199872000", - "__createdBy": "dsp-metadata-gui", - "email": "frank.ruehli@iem.uzh.ch", - "familyNames": [ - "Rühli" - ], - "givenNames": [ - "Frank", - "Jakobus" - ], - "jobTitles": [ - "Director of the Institute of Evolutionary Medicine (IEM), Zürich", - "Head Museum‚ Medical Collection and Human Remains Group", - "Head Paleopathology and Mummy Studies Group" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-002" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.iem.uzh.ch/en/people/dir/frankruehli.html", - "text": "https://www.iem.uzh.ch/en/people/dir/frankruehli.html" - } - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-002", - "__type": "Person", - "__createdAt": "1701867518199944000", - "__createdBy": "dsp-metadata-gui", - "email": "andrea.gnirs@unibas.ch", - "familyNames": [ - "Loprieno-Gnirs" - ], - "givenNames": [ - "Andrea" - ], - "jobTitles": [ - "Egyptologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://daw.philhist.unibas.ch/de/personen/andrea-loprieno-gnirs/", - "text": "https://daw.philhist.unibas.ch/de/personen/andrea-loprieno-gnirs/" - } - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-003", - "__type": "Person", - "__createdAt": "1701867518200002000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Heeb" - ], - "givenNames": [ - "Niklaus" - ], - "jobTitles": [ - "Professor (Knowledge Visualization, Design)" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-004" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.zhdk.ch/person/prof-niklaus-heeb-6114", - "text": "https://www.zhdk.ch/person/prof-niklaus-heeb-6114" - } - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-004", - "__type": "Person", - "__createdAt": "1701867518200050000", - "__createdBy": "dsp-metadata-gui", - "email": "a.loprieno@unibas.ch", - "familyNames": [ - "Loprieno" - ], - "givenNames": [ - "Antonio" - ], - "jobTitles": [ - "Professor (Egyptology, History of Institutions)" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://wwz.unibas.ch/de/personen/antonio-loprieno/", - "text": "https://wwz.unibas.ch/de/personen/antonio-loprieno/" - } - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-005", - "__type": "Person", - "__createdAt": "1701867518200106000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Turck" - ], - "givenNames": [ - "Rouven" - ], - "jobTitles": [ - "Archaeologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-005" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.archaeologie.uzh.ch/de/prehist/portrait/Personen/Dr.-Ruven-Turck.html", - "text": "https://www.archaeologie.uzh.ch/de/prehist/portrait/Personen/Dr.-Ruven-Turck.html" - } - ] - }, + "alternativeNames": [ + { + "en": "LHTT" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0820-person-000", + "description": { + "en": "The University of Basel, Switzerland, has been conducting an overarching archaeological project on “Life Histories of Theban Tombs” (LHTT) at the ancient hillside cemetery of Sheikh ‘Abd el-Qurna (SAQ) in Western Thebes since November 2015. In cooperation with partners at the ETH and the University of Zurich and an international expert team, LHTT investigates two clusters of mostly unfinished rock-cut tombs from the beginning of the Middle Kingdom (1900–1750 BCE) and the mid-Eighteenth Dynasty (c. 1450‒1400 BCE). The latter group of tombs can be understood as part of a planned cemetery opened for a small elite with close personal links to Pharaohs Thutmose III and Amenhotep II.\n\nThese tombs share a long use history. Distinction can be made between their “systemic” use, including their creation, decoration, use and reuse as sacred spaces for burials and cultic performance during Antiquity (not excluding phases of severe looting and damage), and “non-systemic” use in more recent times, notably as dwelling space for Coptic monks from the 6th to the 8th centuries CE, as well as modern villagers during the 19th and 20th centuries.\n\nThe project promotes the interaction between Egyptology, archaeology, art history, philology, physical anthropology, natural and computer sciences, geomatics, and several archaeometrical fields. It also aims at analysing the emergence and life cycles of the investigated tombs in their natural and built environment. Research focuses on landscape development, including recent activities in the cemetery and in individual tombs, tomb construction and decoration practices, reception, and funerary and domestic (re)uses of the tombs over time. \n\nThe archaeological site stretches over the western and central parts of the SAQ hill; it includes an area covered by a huge cone of debris (AU1000) and comprises two clusters of rock cut tombs: TT95A‒C and K85 in the west, and TT84-K453-K90-K555 in the centre of the hillside. Tomb K555 was, until recently, buried beneath debris accumulations of AU1000. It is currently being excavated (courtyard and inner halls). To the east of TT84 lie the remains of a construction site (AU6000), which were also re-excavated.\n\nThe publication plan is divided in two axes. On the one hand, groups of relevant finds from the first cluster of tombs (TT95A–C and K85) are the subject of various separate articles, some of which are already published in a single volume (see Gnirs (ed.) 2021). On the other hand, the complete study of the decorative programmes of TT84 and K555 (texts and iconography), including archaeological finds from the recent excavations of K555 and area AU1000, is ongoing.", + "ar": "\nتقوم جامعة بازل السويسرية منذ نوفمبر 2015 بتنفيذ مشروع أثري شامل بعنوان \"قصص الحياة في مقابر طيبة\" في الجبانة القديمة بتل الشيخ عبد القرنة في طيبة الغربية. من خلال التعاون مع شركاء من المعهد السويسري الفيدرالي للتكنولوجيا وجامعة زيورخ ومع فريق من الخبراء الدوليين يقوم المشروع ببحث ودراسة مجموعتين من المقابر المنقورة في الصخر غير المكتملة التي يعود تاريخها إلى بداية عصر الدولة الوسطى (1900-1750 قبل الميلاد) ومنتصف الأسرة الثامنة عشرة (حوالي 1450-1400 قبل الميلاد). يمكن فهم المجموعة الأحدث من هذه المقابر بوصفها جزءًا من جبانة خُصصت لنخبة محدودة كانت تتمتع بعلاقات شخصية مع الملكين تحتمس الثالث وأمنحتب الثاني. \nتتشارك هذه المقابر تاريخًا طويلًا من الاستخدام. ويمكن التمييز بين استخدامها \"التقليدي\"، بما في ذلك إنشاؤها وزخرفتها واستخدامها وإعادة استخدامها باعتبارها أماكن مقدسة لدفن الموتى ولممارسة الشعائر الدينية في العصور القديمة (لا يُستنثى من ذلك مراحل النهب والتخريب الشديدين)، وبين استخدامها \"غير التقليدي\" في الآونة الأخيرة، لا سيما استخدامها محلًا لإقامة الرهبان الأقباط من القرن السادس إلى القرن الثامن الميلاديين ولسكن القرويين المحليين في العصر الحديث خلال القرنين التاسع عشر والعشرين. \nيعزز المشروع التفاعل والتعاون بين علم المصريات وعلم الآثار وتاريخ الفن وفقه اللغة والأنثروبولوجيا الفيزيائية وعلوم الطبيعة وعلوم الحاسوب والهندسة الجيولوجية والعديد من العلوم الأثرية. كما يهدف المشروع إلى دراسة نشأة المقابر محل البحث ودورات الحياة بها في بيئتها الطبيعية وتلك التي هي من صنع الإنسان. تركز الأبحاث على تطور الجغرافيا الأثرية للموقع، بما في ذلك الأنشطة الحديثة في الجبانة وفي المقابر الفردية وممارسات بناء المقابر وزخرفتها واستقبال الموتى والاستخدامات أو إعادة الاستخدامات الجنائزية والسكنية للمقابر على مر العصور. \nيمتد الموقع الأثري للمشروع في القسمين الغربي والأوسطي من تل الشيخ عبد القرنة، ويشمل منطقة تغطيها كومة ضخمة من الرديم (الوحدة الأثرية 1000AU). يضم الموقع مجموعتين من المقابر المنقورة في الصخر: TT95A-C و K85 في القسم الغربي من التل، و TT84-K453-K90-K555 في القسم الأوسطي منه. كانت المقبرة K555 حتى وقت قريب مدفونة تحت الرديم المتراكم القادم من الوحدة الأثرية AU1000. تخضع هذه المقبرة في الوقت الراهن إلى أعمال التنقيب (فناء المقبرة وقاعاتها الداخلية). وتقع إلى الشرق من المقبرة TT84 بقايا موقع بناء (الوحدة الأثرية AU6000) حيث أعاد المشروع إجراء أعمال التنقيب فيها أيضًا.\nتنقسم خطة النشر العلمي لهذه المقابر ومحتوياتها إلى محورين. يشمل المحور الأول نشر مجموعات من الآثار المكتشفة ذات الصلة القادمة من المجموعة الأولى من المقابر (TT95A-C، K85) في العديد من المقالات الفردية، بعضها منشور بالفعل في مجلد واحد (انظر: Gnirs (ed.) 2021). ويشمل المحور الثاني نشر الدراسة المتكاملة الجارية لممارسات وبرامج زخرفة المقبرتين TT84 و K555 (النصوص والمناظر)، بما في ذلك الآثار التي أسفرت عنها أعمال التنقيب الأخيرة في المقبرة K555 وفي منطقة الوحدة الأثرية AU1000.\n" + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/550512", + "text": "Stratigraphy " + }, + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/550510", + "text": "Philology " + }, + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/550601", + "text": "History of architecture" + }, + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/550502", + "text": "Ceramology" + }, + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/550602", + "text": "History of art" + }, + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/2402", + "text": "Anthropology (physical) " + }, + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/550501", + "text": "Archaeology" + }, + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/2506", + "text": "Geology" + }, + { + "en": "10303 Ancient history and Classical studies" + }, + { + "en": "10402 Archaeology" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-000", + "http://ns.dasch.swiss/repository#dsp-0820-organization-012", + "http://ns.dasch.swiss/repository#dsp-0820-organization-013" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0820-grant-000" + ], + "keywords": [ + { + "en": "Archaeobotany" + }, + { + "en": "Archaeology" + }, + { + "en": "Archaeozoology" + }, + { + "en": "Art history" + }, + { + "en": "Egyptology" + }, + { + "en": "Elite society" + }, + { + "en": "Geology" + }, + { + "en": "Landscape Archaeology" + }, + { + "en": "Philology" + }, + { + "en": "Physical Anthropology" + }, + { + "en": "Sheikh ‘Abd el-Qurna" + }, + { + "en": "Theban tombs" + }, + { + "en": "Thebes" + }, + { + "en": "Tomb Decoration Techniques and Styles" + }, + { + "en": "Use and Reuse of Theban Tombs" + }, + { + "en": "Western Thebes" + }, + { + "ar": "الكلمات المفتاحية:" + }, + { + "ar": "علم المصريات " + }, + { + "ar": "علم الآثار " + }, + { + "ar": "علم الجغرافيا الأثرية " + }, + { + "ar": "تاريخ الفن " + }, + { + "ar": "فقه اللغة " + }, + { + "ar": "الأنثروبولوجيا الفيزيائية" + }, + { + "ar": "علم البقايا النباتية " + }, + { + "ar": "علم البقايا الحيوانية " + }, + { + "ar": "الجيولوجيا " + }, + { + "ar": "مقابر طيبة " + }, + { + "ar": "مجتمع النخبة" + }, + { + "ar": "طيبة " + }, + { + "ar": "طيبة الغربية" + }, + { + "ar": "الشيخ عبد القرنة " + }, + { + "ar": "تقنيات وأساليب زخرفة المقابر " + }, + { + "ar": "استخدام وإعادة استخدام مقابر طيبة " + } + ], + "name": "Life Histories of Theban Tombs", + "publications": [ + { + "text": "1. Sartori, M., “Tombe tebane in dialogo. TT 84, TT95 e la rete di committenti”, in Di Natale A. & Basile C. (eds.), Atti del XIX Convegno di Egittologia e Papirologia, Siracusa, 1-4 Ottobre 2020, Quaderni del Museo del Papiro XVIII, Siracuse, 2022, 47-56." + }, + { + "text": "2. Hunkeler, Ch., “Fragments of a Ramesside Coffin Ensemble: What Information Can Be Gained?”, in Kilian, A., & Zöller-Engelhardt, M. (eds.), Excavating the Extraordinary. Challenges and Merit of Working with Small Finds, Heidelberg, Propylaeum, 2021, 155-180." + }, + { + "text": "3. Loprieno-Gnirs, A. (ed.), Life Histories of Theban Tombs. Transdisciplinary Investigations of a Cluster of Rock-Cut Tombs at Sheikh 'Abd el-Qurna, Cairo, American University Press, 2021." + }, + { + "text": "4. Sartori, M., “Die visuelle Komposition „Gard. R4” („Brot auf Schilfmatte“) zwischen schriftlicher und bildlicher Repräsentation\", in Backes, B. & Serova, D. (eds.), (Un)Sterblichkeit: Schrift–Körper–Kult: Beiträge des neunten Berliner Arbeitskreises Junge Aegyptologen, Berlin, Wiesbaden, Harrassowitz, 2020, 189-200." + }, + { + "text": "5. Sartori, M., “Art as Writing, Writing as Art. Case Studies from Selected New Kingdom Theban Tombs”, in Graves, C. (ed.), Proceedings of the 4th British Egyptology Congress, Manchester, London, Egypt Exploration Society, 2020, 124-134." + }, + { + "text": "6. Hunkeler, Ch., “Rest in Pieces. Fragments of a Twenty-fifth/Twenty-sixth Dynasty Burial Ensemble” in Dawson, J. & Strudwick, H. (eds.), Ancient Egyptian Coffins. Past – Present – Future, Philadelphia-Oxford, Oxbow Books, 2019, 203." + }, + { + "text": "7. Ziegler, M., Colldeweih, R., Wolter, A., Loprieno-Gnirs, A., “Rock Mass Quality and Preliminary Analysis of the Stability of Ancient Rock-cut Theban Tombs at Sheikh ‘Abd el-Qurna, Egypt” in Bulletin of Engineering Geology and the Environment, 2019, 1–27." + }, + { + "text": "8. Loprieno-Gnirs, A., “Creuser une tombe dans la colline thébaine : le projet archéologique Life Histories of Theban Tombs de l'université de Bâle\" in Bulletin de la société française d'égyptologie 199, 2018, 100–126." + }, + { + "text": "9. Friedli, E., Banz, J., Gojcic, Z., Wieser, A., “Fusion of Laser Scanning and Photogrammetric Data for the Documentation and VR Visualization of an Archaeological Tomb Complex” in FIG 2018, Embracing our Smart World where the Continents Connect Proceedings, Istanbul, Copenhagen, International Federation of Surveyors (FIG), 2018." + }, + { + "text": "10. Underwood, M., “Domestic Occupation of Theban Tomb 95 in the First Millennium AD” in Di Biase-Dyson, C. & Donovan, L. (eds.), The Cultural Manifestation of Religious Experience. Studies in Honor of Boyo G. Ockinga, Münster, Ugarit Verlag, 2017, 225–240." + } + ], + "shortcode": "0820", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/347342", + "text": "Thebes" + }, + { + "__type": "URL", + "type": "Pleiades", + "url": "https://pleiades.stoa.org/places/786050", + "text": "Thebes East" + }, + { + "__type": "URL", + "type": "Pleiades", + "url": "https://pleiades.stoa.org/places/786067", + "text": "Thebes West " + } + ], + "startDate": "2015-11-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qk76zkb23", + "text": "Middle Kingdom" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qk76zxgwt", + "text": "Second Intermediate Period" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qk76zvjkw", + "text": "New Kingdom" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "http://chronontology.dainst.org/period/GnjMPsF5f2mQ", + "text": "New Kingdom (Chronontology)" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qk76zpmnv", + "text": "Third Intermediate Period" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qk76zh6n2", + "text": "Late Period" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/TyinwInl5SJ0", + "text": "Late Period (Chronontology)" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qk76zgqb7", + "text": "Persian Period" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qk76zbv62", + "text": "Roman" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/XHRCuCDjtgu5", + "text": "Coptic (culture or style)" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/uzwK9AAK8Clj", + "text": "Ottoman period" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://lhtt.philhist.unibas.ch/", + "text": "External Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-dataset-000", + "__type": "Dataset", + "__createdAt": "1701867517625102000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-006", - "__type": "Person", - "__createdAt": "1701867518200155000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Wieser" - ], - "givenNames": [ - "Andreas" - ], - "jobTitles": [ - "Professor (Geosensors and Engineering Geodesy)" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-003" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://gseg.igp.ethz.ch/people/group-head/prof-dr--andreas-wieser.html", - "text": "https://gseg.igp.ethz.ch/people/group-head/prof-dr--andreas-wieser.html" - } - ] + "en": "AU1000 – AU1080 from Debris Hill (above K555)" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-007", - "__type": "Person", - "__createdAt": "1701867518200202000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Ziegler" - ], - "givenNames": [ - "Martin" - ], - "jobTitles": [ - "Engineering Geologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-003" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://erdw.ethz.ch/personen/profil.MTY5MzUy.TGlzdC83NzMsOTI0MjA1OTI2.html", - "text": "https://erdw.ethz.ch/personen/profil.MTY5MzUy.TGlzdC83NzMsOTI0MjA1OTI2.html" - } - ] + "en": "All Data from AU6000" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-008", - "__type": "Person", - "__createdAt": "1701867518200255000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "‘Abd el-Monem" - ], - "givenNames": [ - "Hossam" - ], - "jobTitles": [ - "Geologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-011" - ] + "en": "All Data from K85" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-009", - "__type": "Person", - "__createdAt": "1701867518200285000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Ahmed" - ], - "givenNames": [ - "Sayed" - ], - "jobTitles": [ - "Conservator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-014" - ] - }, + "en": "All Data from TT95" + } + ], + "alternativeTitles": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-010", - "__type": "Person", - "__createdAt": "1701867518200313000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Aeschlimann-Langer" - ], - "givenNames": [ - "Martina" - ], - "jobTitles": [ - "Illustrator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.aeschlimann-illustration.ch/", - "text": "https://www.aeschlimann-illustration.ch/" - } - ] - }, + "en": "Part 1 of LHTT Data" + } + ], + "accessConditions": "closed", + "dateCreated": "2023-01-01", + "howToCite": "Life Histories of Theban Tombs (2023). DaSCH. https://ark.dasch.swiss/ark:/72163/1/0820", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-011", - "__type": "Person", - "__createdAt": "1701867518200360000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Arpagaus" - ], - "givenNames": [ - "Daniel" - ], - "jobTitles": [ - "Doctoral Student (Egyptology)" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ] + "en": "English", + "de": "Englisch", + "fr": "anglais" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-012", - "__type": "Person", - "__createdAt": "1701867518200388000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Bächli" - ], - "givenNames": [ - "Selina" - ], - "jobTitles": [ - "Scientific Illustrator (BA)" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-004" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://selinabaechli.ch/", - "text": "https://selinabaechli.ch/" - } - ] + "en": "French", + "de": "Französisch", + "fr": "français" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-013", - "__type": "Person", - "__createdAt": "1701867518200446000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Barahona-Mendieta" - ], - "givenNames": [ - "Zulema" - ], - "jobTitles": [ - "Ceramologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.orient-mediterranee.com/member/barahona-mendieta/", - "text": "https://www.orient-mediterranee.com/member/barahona-mendieta/" - } - ] - }, + "de": "Deutsch", + "en": "German", + "fr": "allemand" + } + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-014", - "__type": "Person", - "__createdAt": "1701867518200495000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Böni" - ], - "givenNames": [ - "Thomas" - ], - "jobTitles": [ - "Orthopedist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-005" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.balgrist.ch/angebot/fachbereiche/tumore/thomas-boeni/", - "text": "https://www.balgrist.ch/angebot/fachbereiche/tumore/thomas-boeni/" - } - ] - }, + "__type": "License", + "date": "2023-12-06", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc/4.0/", + "text": "CC BY-NC 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-015", - "__type": "Person", - "__createdAt": "1701867518200543000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Bruderer" - ], - "givenNames": [ - "Oliver" - ], - "jobTitles": [ - "Scientific Illustrator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-004" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://archaeovisual.ch/", - "text": "https://archaeovisual.ch/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-000", + "roles": [ + "Project Director" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-016", - "__type": "Person", - "__createdAt": "1701867518200592000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Colldeweih" - ], - "givenNames": [ - "Rachael" - ], - "jobTitles": [ - "Geologist (MA)" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-003" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.linkedin.com/in/rachael-colldeweih-0166a057/", - "text": "https://www.linkedin.com/in/rachael-colldeweih-0166a057/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-001", + "roles": [ + "Project Director" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-017", - "__type": "Person", - "__createdAt": "1701867518200668000", - "__createdBy": "dsp-metadata-gui", - "email": "alexis.dendoncker@unibas.ch", - "familyNames": [ - "Den Doncker" - ], - "givenNames": [ - "Alexis" - ], - "jobTitles": [ - "Assistant Post-Doc (Chair of Egyptology)" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://unibas.academia.edu/AlexisDenDoncker", - "text": "https://unibas.academia.edu/AlexisDenDoncker" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-002", + "roles": [ + "Project Coordinator, Field Director" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-018", - "__type": "Person", - "__createdAt": "1701867518200727000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Díaz-Iglesias" - ], - "givenNames": [ - "Lucía" - ], - "jobTitles": [ - "Egyptologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-006" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://cchs.csic.es/es/personal/lucia-elena-diaz-iglesias-llanos", - "text": "https://cchs.csic.es/es/personal/lucia-elena-diaz-iglesias-llanos" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-003", + "roles": [ + "Scientific Advisor, Supervisor of BA Thesis (Selina Bächli)" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-019", - "__type": "Person", - "__createdAt": "1701867518200777000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Droux" - ], - "givenNames": [ - "Xavier" - ], - "jobTitles": [ - "Egyptologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.linkedin.com/in/xavier-droux-230449156/", - "text": "https://www.linkedin.com/in/xavier-droux-230449156/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-004", + "roles": [ + "Scientific Advisor, Supervisor of PhD Thesis (Marina Sartori)" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-020", - "__type": "Person", - "__createdAt": "1701867518200825000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Fetler" - ], - "givenNames": [ - "Stéphane" - ], - "jobTitles": [ - "Conservator", - "Egyptologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-007" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.linkedin.com/in/stephane-fetler-25158383/", - "text": "https://www.linkedin.com/in/stephane-fetler-25158383/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-005", + "roles": [ + "Scientific Advisor, Archaeological Project Consultant" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-021", - "__type": "Person", - "__createdAt": "1701867518200880000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Freijo" - ], - "givenNames": [ - "Stephan" - ], - "jobTitles": [ - "Student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-006", + "roles": [ + "Scientific Advisor, Head of Geodetic Team" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-022", - "__type": "Person", - "__createdAt": "1701867518200974000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Friedli" - ], - "givenNames": [ - "Ephraim" - ], - "jobTitles": [ - "Geodesist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-003" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.linkedin.com/in/ephraim-friedli-91075115a/", - "text": "https://www.linkedin.com/in/ephraim-friedli-91075115a/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-007", + "roles": [ + "Scientific Advisor, Head of Geological Team, Supervisor of MA Thesis (Rachael Colldeweih)" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-023", - "__type": "Person", - "__createdAt": "1701867518201038000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Gieben" - ], - "givenNames": [ - "Charlotte" - ], - "jobTitles": [ - "Student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.linkedin.com/in/charlotte-gieben/", - "text": "https://www.linkedin.com/in/charlotte-gieben/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-008", + "roles": [ + "Research Team Member, Sedimentology" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-024", - "__type": "Person", - "__createdAt": "1701867518201088000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Gojcic" - ], - "givenNames": [ - "Zan" - ], - "jobTitles": [ - "Geodesist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-003" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://zgojcic.github.io/", - "text": "https://zgojcic.github.io/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-009", + "roles": [ + "Research Team Member, Conservation assistant" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-025", - "__type": "Person", - "__createdAt": "1701867518201142000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "El-Hadidi" - ], - "givenNames": [ - "Nesrin" - ], - "jobTitles": [ - "Scientific Conservator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-008" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://scholar.cu.edu.eg/?q=nesrin/biocv", - "text": "https://scholar.cu.edu.eg/?q=nesrin/biocv" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-010", + "roles": [ + "Archaeological Illustrator, Illustrations of archaeological artifacts, Digital visualizations of tomb paintings" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-026", - "__type": "Person", - "__createdAt": "1701867518201192000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Hamdy" - ], - "givenNames": [ - "Rim" - ], - "jobTitles": [ - "Archaeobotanist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-008" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://scholar.cu.edu.eg/?q=rimhamdy/", - "text": "https://scholar.cu.edu.eg/?q=rimhamdy/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-011", + "roles": [ + "Project Assistant" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-027", - "__type": "Person", - "__createdAt": "1701867518201242000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Hunkeler" - ], - "givenNames": [ - "Charlotte" - ], - "jobTitles": [ - "Assistant (Chair of Egyptology)", - "PhD Candidate (Egyptology)" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://daw.philhist.unibas.ch/de/personen/charlotte-hunkeler/", - "text": "https://daw.philhist.unibas.ch/de/personen/charlotte-hunkeler/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-012", + "roles": [ + "Research Team Member, BA Thesis: “Die Mumie der Tabaketnetmut: Virtuelle Rekonstruktion einer altägyptischen Bestattung”" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-028", - "__type": "Person", - "__createdAt": "1701867518201294000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Ibrahim" - ], - "givenNames": [ - "Mahmoud" - ], - "jobTitles": [ - "Project Consultant" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-013", + "roles": [ + "Research Team Member, Burial and domestic pottery from the Middle Bronze Age to recent times" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-029", - "__type": "Person", - "__createdAt": "1701867518201323000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Jacquat-Bertossa" - ], - "givenNames": [ - "Christiane" - ], - "jobTitles": [ - "Archaeobotanist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-005" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "http://4dweb.proclim.ch/4dcgi/continuum/en/Detail_Person?22531", - "text": "http://4dweb.proclim.ch/4dcgi/continuum/en/Detail_Person?22531" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-014", + "roles": [ + "Research Team Member, Orthopedic assessments on skeletons and mummies" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-030", - "__type": "Person", - "__createdAt": "1701867518201372000", - "__createdBy": "dsp-metadata-gui", - "email": "matjaz.kacicnik@amis.net", - "familyNames": [ - "Kačičnik" - ], - "givenNames": [ - "Matjaž" - ], - "jobTitles": [ - "Photographer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-015", + "roles": [ + "Research Team Member, Illustrations of ancient tools and work Processes" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-031", - "__type": "Person", - "__createdAt": "1701867518201414000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Klemm" - ], - "givenNames": [ - "Rosemarie" - ], - "jobTitles": [ - "Egyptologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-014" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.aegyptologie.uni-muenchen.de/personen/assoziierte/klemm/index.html", - "text": "https://www.aegyptologie.uni-muenchen.de/personen/assoziierte/klemm/index.html" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-016", + "roles": [ + "Research Team Member, Litho-stratigraphy, Rock mass behavior, MA Thesis: “Geological Investigations of Selected Theban Tombs, Luxor (Egypt)”" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-032", - "__type": "Person", - "__createdAt": "1701867518201466000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Kozieradzka-Ogunmakin" - ], - "givenNames": [ - "Iwona" - ], - "jobTitles": [ - "Anthropologist", - "Bioarchaeologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-002" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://research.manchester.ac.uk/en/persons/iwona.kozieradzka-ogunmakin", - "text": "https://research.manchester.ac.uk/en/persons/iwona.kozieradzka-ogunmakin" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-017", + "roles": [ + "Research Team Member, Egyptological study of tomb decorations – conception and reception including art historical and sociological aspects" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-033", - "__type": "Person", - "__createdAt": "1701867518201518000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Kurmann" - ], - "givenNames": [ - "Lara" - ], - "jobTitles": [ - "Archaeologist (MA)" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.linkedin.com/in/lara-kurmann-aa1356177/", - "text": "https://www.linkedin.com/in/lara-kurmann-aa1356177/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-018", + "roles": [ + "Research Team Member, Philological and material studies of Book of the Dead papyri" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-034", - "__type": "Person", - "__createdAt": "1701867518201566000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Lopez" - ], - "givenNames": [ - "Marcial" - ], - "jobTitles": [ - "Master of Stonemasonry" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-009" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-019", + "roles": [ + "Editor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-035", - "__type": "Person", - "__createdAt": "1701867518201595000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Marty" - ], - "givenNames": [ - "Evelyne" - ], - "jobTitles": [ - "Student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.linkedin.com/in/evelyne-marty-80257419a/", - "text": "https://www.linkedin.com/in/evelyne-marty-80257419a/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-020", + "roles": [ + "Research Team Member, Wooden and cartonnage body envelopes" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-036", - "__type": "Person", - "__createdAt": "1701867518201642000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Meyer" - ], - "givenNames": [ - "Sabrina" - ], - "jobTitles": [ - "Anthropologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-002" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.linkedin.com/in/sabrina-meyer-12977814b/", - "text": "https://www.linkedin.com/in/sabrina-meyer-12977814b/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-021", + "roles": [ + "Student Assistant" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-037", - "__type": "Person", - "__createdAt": "1701867518201691000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Mohamed" - ], - "givenNames": [ - "Hosny" - ], - "jobTitles": [ - "Inspector of the Supreme Council of Antiquities, Egypt" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-014" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-022", + "roles": [ + "Geodetic and photogrammetric landscape, tomb mapping, 3D modelling" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-038", - "__type": "Person", - "__createdAt": "1701867518201720000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Müller" - ], - "givenNames": [ - "Matthias" - ], - "jobTitles": [ - "Coptologist", - "Egyptologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://daw.philhist.unibas.ch/en/persons/matthias-mueller-kraehenbuehl-1/", - "text": "https://daw.philhist.unibas.ch/en/persons/matthias-mueller-kraehenbuehl-1/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-023", + "roles": [ + "Student Assistant" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-039", - "__type": "Person", - "__createdAt": "1701867518201771000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Nutz" - ], - "givenNames": [ - "Rainer" - ], - "jobTitles": [ - "Egyptologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://soziologie.philhist.unibas.ch/de/personen/rainer-nutz/", - "text": "https://soziologie.philhist.unibas.ch/de/personen/rainer-nutz/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-024", + "roles": [ + "Research Team Member, Geodetic and photogrammetric landscape, tomb mapping, 3D modelling" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-040", - "__type": "Person", - "__createdAt": "1701867518201819000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Osman" - ], - "givenNames": [ - "‘Abd el-Hamid" - ], - "jobTitles": [ - "Rais" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-014" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-025", + "roles": [ + "Research Team Member, Wood conservation" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-041", - "__type": "Person", - "__createdAt": "1701867518201849000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Paksi" - ], - "givenNames": [ - "Julianna", - "Kitty" - ], - "jobTitles": [ - "Egyptologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-026", + "roles": [ + "Research Team Member, Ancient plant materials" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-042", - "__type": "Person", - "__createdAt": "1701867518201882000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Peintner" - ], - "givenNames": [ - "Erico" - ], - "jobTitles": [ - "Scientific Conservator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-027", + "roles": [ + "Research Team Member, Wooden and cartonnage body envelopes" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-043", - "__type": "Person", - "__createdAt": "1701867518201922000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Powroznik" - ], - "givenNames": [ - "Klaus" - ], - "jobTitles": [ - "Archaeologist", - "Photographer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.linkedin.com/in/dr-klaus-powroznik-28180747/", - "text": "https://www.linkedin.com/in/dr-klaus-powroznik-28180747/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-028", + "roles": [ + "Project Consultant, Translator, Research Team Member, Arabic manuscripts from the late 19th-20th Century" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-044", - "__type": "Person", - "__createdAt": "1701867518201973000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Reinhard" - ], - "givenNames": [ - "Jacques" - ], - "jobTitles": [ - "Basketry and Wickerwork Specialist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-014" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://jacquesreinhard.com/", - "text": "https://jacquesreinhard.com/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-029", + "roles": [ + "Research Team Member, Ancient plant materials and Flower Garlands" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-045", - "__type": "Person", - "__createdAt": "1701867518202022000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Richner" - ], - "givenNames": [ - "Lukas" - ], - "jobTitles": [ - "Archaeologist (MA)", - "Geomatician" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-030", + "roles": [ + "Archaeological photographer, Photogrammetry of tomb architecture" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-046", - "__type": "Person", - "__createdAt": "1701867518202053000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Sartori" - ], - "givenNames": [ - "Marina" - ], - "jobTitles": [ - "Egyptologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.ames.ox.ac.uk/people/marina-sartori", - "text": "https://www.ames.ox.ac.uk/people/marina-sartori" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-031", + "roles": [ + "Consultant, Geological assessment of rock proveniences" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-047", - "__type": "Person", - "__createdAt": "1701867518202100000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Schönhütte" - ], - "givenNames": [ - "Nadine" - ], - "jobTitles": [ - "Egyptologist (MA)", - "MA Student (Textile Conservation)" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-032", + "roles": [ + "Research Team Member, Osteological and paleopathological assessments on skeletons and mummies, histological and DNA sampling, mummification practices" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-048", - "__type": "Person", - "__createdAt": "1701867518202136000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Seiler" - ], - "givenNames": [ - "Liliane" - ], - "jobTitles": [ - "Assistant Radiology" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-002" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-033", + "roles": [ + "Student Assistant, Excavation Direction" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-049", - "__type": "Person", - "__createdAt": "1701867518202165000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Seiler" - ], - "givenNames": [ - "Roger" - ], - "jobTitles": [ - "Dentist", - "Paleopathologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-002" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.iem.uzh.ch/en/people/ppms/rogerseiler.html", - "text": "https://www.iem.uzh.ch/en/people/ppms/rogerseiler.html" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-034", + "roles": [ + "Consultant" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-050", - "__type": "Person", - "__createdAt": "1701867518202217000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Studer" - ], - "givenNames": [ - "Jacqueline" - ], - "jobTitles": [ - "Archaeozoologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-010" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.unige.ch/forel/lap/fr/ancienscoll/studer/", - "text": "https://www.unige.ch/forel/lap/fr/ancienscoll/studer/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-035", + "roles": [ + "Student Assistant" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-051", - "__type": "Person", - "__createdAt": "1701867518202265000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Unter" - ], - "givenNames": [ - "Stephan" - ], - "jobTitles": [ - "Computer Scientist (MA)", - "Egyptologist (MA)" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "http://www.linkedin.com/in/sunter", - "text": "www.linkedin.com/in/sunter" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-036", + "roles": [ + "Research Team Member" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-052", - "__type": "Person", - "__createdAt": "1701867518202316000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Veldmeijer" - ], - "givenNames": [ - "André" - ], - "jobTitles": [ - "Archaeologist", - "Paleontologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-014" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "http://www.leatherandshoes.nl", - "text": "http://www.leatherandshoes.nl" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-037", + "roles": [ + "Archaeological Assistant" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-053", - "__type": "Person", - "__createdAt": "1701867518202366000", - "__createdBy": "dsp-metadata-gui", - "email": "noemi.villars@unibas.ch", - "familyNames": [ - "Villars" - ], - "givenNames": [ - "Noémi" - ], - "jobTitles": [ - "Egyptologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.linkedin.com/in/villarsnoemi/", - "text": "https://www.linkedin.com/in/villarsnoemi/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-038", + "roles": [ + "Research Team Member, Epigrapher, Philological study of hieratic and Coptic text sources" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-054", - "__type": "Person", - "__createdAt": "1701867518202422000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Wolter" - ], - "givenNames": [ - "Andrea" - ], - "jobTitles": [ - "Geologist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-003" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-039", + "roles": [ + "Consultant, Statistic projections of excavation volumes in ancient tomb construction and of tools’ wear" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-055", - "__type": "Person", - "__createdAt": "1701867518202458000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Zalunardo" - ], - "givenNames": [ - "Alina" - ], - "jobTitles": [ - "Student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.linkedin.com/in/alina-zalunardo-137b52197/", - "text": "https://www.linkedin.com/in/alina-zalunardo-137b52197/" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-040", + "roles": [ + "Research Team Member, Chief Excavator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-000", - "__type": "Person", - "__createdAt": "1701867518202506000", - "__createdBy": "dsp-metadata-gui", - "email": "s.bickel@unibas.ch", - "familyNames": [ - "Bickel" - ], - "givenNames": [ - "Susanne" - ], - "jobTitles": [ - "Professor (Chair of Egyptology)" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://daw.philhist.unibas.ch/de/personen/susanne-bickel/", - "text": "https://daw.philhist.unibas.ch/de/personen/susanne-bickel/" - } - ] - } - ], - "organizations": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-006", - "__type": "Organization", - "__createdAt": "1701867518202572000", - "__createdBy": "dsp-metadata-gui", - "name": "Center for Human and Social Sciences, Madrid" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-041", + "roles": [ + "Research Team Member, Epigrapher, Philological and orthographic studies of tomb inscriptions" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-007", - "__type": "Organization", - "__createdAt": "1701867518202589000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Université Libre de Bruxelles, Avenue Franklin Roosevelt, 50", - "postalCode": "1050", - "locality": "Brussels, Belgium", - "country": "XX - Switzerland?" - }, - "name": "Free University of Brussels", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.ulb.be", - "text": "www.ulb.be" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-042", + "roles": [ + "Conservator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-009", - "__type": "Organization", - "__createdAt": "1701867593277577000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Basler Münster, Münsterplatz, 9", - "postalCode": "4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "info@muensterbauhuette.ch", - "name": "Basler Münsterbauhütte", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.baslermuenster.ch/bauwerk/muensterbauhuette", - "text": "www.baslermuenster.ch/bauwerk/muensterbauhuette" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-043", + "roles": [ + "Research Team Member, Excavation Direction, Development of excavation methods, Application of photogrammetric procedures in field archaeology" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-010", - "__type": "Organization", - "__createdAt": "1701867593387831000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "24, rue du Général-Dufour", - "postalCode": "1211", - "locality": "Geneva", - "country": "Switzerland" - }, - "name": "University of Geneva", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.unige.ch", - "text": "www.unige.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-044", + "roles": [ + "Consultant" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-011", - "__type": "Organization", - "__createdAt": "1701867593615143000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Al-Geish Street", - "postalCode": "", - "locality": "Tanta, Egypt", - "country": "XX - Switzerland?" - }, - "email": "tanta_unv@unv.tanta.edu.eg", - "name": "Tanta University", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.tanta.edu.eg", - "text": "www.tanta.edu.eg" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-045", + "roles": [ + "Research Team Member, Excavation Direction" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-012", - "__type": "Organization", - "__createdAt": "1701867593761878000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Dufourstrasse 25", - "postalCode": "4052", - "locality": "Basel", - "country": "Switzerland" - }, - "name": "Gertrud Mayer Stiftung Basel" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-046", + "roles": [ + "Research Team Member, PhD Thesis: “Visual Studies Applied to Egyptian Tomb Wall Paintings”" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-013", - "__type": "Organization", - "__createdAt": "1701867593846851000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Generalsekretariat SLSA, Museum Rietberg Zürich, Gablerstrasse 15", - "postalCode": "8002", - "locality": "Zürich", - "country": "Switzerland" - }, - "email": "postfach@slsa.ch", - "name": "Schweizerisch-Liechtensteinische Stiftung für archäologische Forschungen im Ausland (SLSA)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.slsa.ch/", - "text": "http://www.slsa.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-047", + "roles": [ + "Research Team Member, Ancient textiles, MA thesis “Textile Funde aus den ägyptischen Gräbern TT95A und TT95B. Eine statistische Analyse der Zusammensetzung von Grabbeigaben“" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-000", - "__type": "Organization", - "__createdAt": "1701867593969349000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3", - "postalCode": "3001", - "locality": "Berne", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch", - "text": "www.snf.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-048", + "roles": [ + "Research Team Member" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-008", - "__type": "Organization", - "__createdAt": "1701867594065533000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "1, Gamaa Street", - "postalCode": "12613", - "locality": "Giza, Egypt", - "country": "XX - Switzerland?" - }, - "name": "Cairo University", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.cu.edu.eg", - "text": "www.cu.edu.eg" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-049", + "roles": [ + "Research Team Member, Stomatological assessments on skeletons and mummies" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-004", - "__type": "Organization", - "__createdAt": "1701867594218736000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Pfingstweidstrasse 96", - "postalCode": "8031", - "locality": "Zürich", - "country": "Switzerland" - }, - "email": "info.admin@zhdk.ch", - "name": "Zurich University of the Arts (ZHdK)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.zhdk.ch", - "text": "www.zhdk.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-050", + "roles": [ + "Research Team Member, Ancient animal materials" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-005", - "__type": "Organization", - "__createdAt": "1701867594318522000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Rämistrasse 71", - "postalCode": "8006", - "locality": "Zürich", - "country": "Switzerland" - }, - "name": "University of Zurich", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.uzh.ch", - "text": "www.uzh.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-051", + "roles": [ + "IT Specialist, Development of database structure and interface design, Processing of photogrammetric models" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-002", - "__type": "Organization", - "__createdAt": "1701867669466652000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Universität Zürich, Winterthurerstrasse 190", - "postalCode": "8057", - "locality": "Zürich", - "country": "Switzerland" - }, - "email": "info@iem.uzh.ch", - "name": "Institute of Evolutionary Medicine (IEM)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.iem.uzh.ch", - "text": "www.iem.uzh.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-052", + "roles": [ + "Research Team Member, Leather material" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-003", - "__type": "Organization", - "__createdAt": "1701867669565270000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Rämistrasse 101", - "postalCode": "8092", - "locality": "Zürich", - "country": "Switzerland" - }, - "name": "ETH Zürich", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.ethz.ch", - "text": "www.ethz.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-053", + "roles": [ + "Research Team Member, Database Manager, Analyses of finds and archaeological mass data" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-014", - "__type": "Organization", - "__createdAt": "1701867669643206000", - "__createdBy": "dsp-metadata-gui", - "name": "Other" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-054", + "roles": [ + "Research Team Member, Rock slope instabilities and behaviour" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-001", - "__type": "Organization", - "__createdAt": "1701867669643249000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Petersgraben 51", - "postalCode": "4051", - "locality": "Basel", - "country": "Switzerland" - }, - "name": "University of Basel, Department of Ancient Civilisations", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.unibas.ch", - "text": "www.unibas.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0820-person-055", + "roles": [ + "Student Assistant" + ] } - ], - "grants": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0820-grant-000", - "__type": "Grant", - "__createdAt": "1701867669723269000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0820-organization-000" - ], - "name": "Project Funding", - "number": "162967", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/162967", - "text": "https://data.snf.ch/grants/grant/162967" - } + ], + "status": "Ongoing", + "title": "AU10000+ (TT95) – AU1 (K85) – AU6000 – AU1000-1080 (Debris Hill)", + "typeOfData": [ + "Image", + "Video", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-001", + "__type": "Person", + "__createdAt": "1701867518199872000", + "__createdBy": "dsp-metadata-gui", + "email": "frank.ruehli@iem.uzh.ch", + "familyNames": [ + "Rühli" + ], + "givenNames": [ + "Frank", + "Jakobus" + ], + "jobTitles": [ + "Director of the Institute of Evolutionary Medicine (IEM), Zürich", + "Head Museum‚ Medical Collection and Human Remains Group", + "Head Paleopathology and Mummy Studies Group" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-002" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.iem.uzh.ch/en/people/dir/frankruehli.html", + "text": "https://www.iem.uzh.ch/en/people/dir/frankruehli.html" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-002", + "__type": "Person", + "__createdAt": "1701867518199944000", + "__createdBy": "dsp-metadata-gui", + "email": "andrea.gnirs@unibas.ch", + "familyNames": [ + "Loprieno-Gnirs" + ], + "givenNames": [ + "Andrea" + ], + "jobTitles": [ + "Egyptologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://daw.philhist.unibas.ch/de/personen/andrea-loprieno-gnirs/", + "text": "https://daw.philhist.unibas.ch/de/personen/andrea-loprieno-gnirs/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-003", + "__type": "Person", + "__createdAt": "1701867518200002000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Heeb" + ], + "givenNames": [ + "Niklaus" + ], + "jobTitles": [ + "Professor (Knowledge Visualization, Design)" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-004" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.zhdk.ch/person/prof-niklaus-heeb-6114", + "text": "https://www.zhdk.ch/person/prof-niklaus-heeb-6114" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-004", + "__type": "Person", + "__createdAt": "1701867518200050000", + "__createdBy": "dsp-metadata-gui", + "email": "a.loprieno@unibas.ch", + "familyNames": [ + "Loprieno" + ], + "givenNames": [ + "Antonio" + ], + "jobTitles": [ + "Professor (Egyptology, History of Institutions)" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://wwz.unibas.ch/de/personen/antonio-loprieno/", + "text": "https://wwz.unibas.ch/de/personen/antonio-loprieno/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-005", + "__type": "Person", + "__createdAt": "1701867518200106000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Turck" + ], + "givenNames": [ + "Rouven" + ], + "jobTitles": [ + "Archaeologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-005" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.archaeologie.uzh.ch/de/prehist/portrait/Personen/Dr.-Ruven-Turck.html", + "text": "https://www.archaeologie.uzh.ch/de/prehist/portrait/Personen/Dr.-Ruven-Turck.html" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-006", + "__type": "Person", + "__createdAt": "1701867518200155000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Wieser" + ], + "givenNames": [ + "Andreas" + ], + "jobTitles": [ + "Professor (Geosensors and Engineering Geodesy)" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-003" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://gseg.igp.ethz.ch/people/group-head/prof-dr--andreas-wieser.html", + "text": "https://gseg.igp.ethz.ch/people/group-head/prof-dr--andreas-wieser.html" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-007", + "__type": "Person", + "__createdAt": "1701867518200202000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Ziegler" + ], + "givenNames": [ + "Martin" + ], + "jobTitles": [ + "Engineering Geologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-003" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://erdw.ethz.ch/personen/profil.MTY5MzUy.TGlzdC83NzMsOTI0MjA1OTI2.html", + "text": "https://erdw.ethz.ch/personen/profil.MTY5MzUy.TGlzdC83NzMsOTI0MjA1OTI2.html" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-008", + "__type": "Person", + "__createdAt": "1701867518200255000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "‘Abd el-Monem" + ], + "givenNames": [ + "Hossam" + ], + "jobTitles": [ + "Geologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-011" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-009", + "__type": "Person", + "__createdAt": "1701867518200285000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Ahmed" + ], + "givenNames": [ + "Sayed" + ], + "jobTitles": [ + "Conservator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-014" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-010", + "__type": "Person", + "__createdAt": "1701867518200313000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Aeschlimann-Langer" + ], + "givenNames": [ + "Martina" + ], + "jobTitles": [ + "Illustrator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.aeschlimann-illustration.ch/", + "text": "https://www.aeschlimann-illustration.ch/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-011", + "__type": "Person", + "__createdAt": "1701867518200360000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Arpagaus" + ], + "givenNames": [ + "Daniel" + ], + "jobTitles": [ + "Doctoral Student (Egyptology)" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-012", + "__type": "Person", + "__createdAt": "1701867518200388000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Bächli" + ], + "givenNames": [ + "Selina" + ], + "jobTitles": [ + "Scientific Illustrator (BA)" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-004" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://selinabaechli.ch/", + "text": "https://selinabaechli.ch/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-013", + "__type": "Person", + "__createdAt": "1701867518200446000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Barahona-Mendieta" + ], + "givenNames": [ + "Zulema" + ], + "jobTitles": [ + "Ceramologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.orient-mediterranee.com/member/barahona-mendieta/", + "text": "https://www.orient-mediterranee.com/member/barahona-mendieta/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-014", + "__type": "Person", + "__createdAt": "1701867518200495000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Böni" + ], + "givenNames": [ + "Thomas" + ], + "jobTitles": [ + "Orthopedist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-005" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.balgrist.ch/angebot/fachbereiche/tumore/thomas-boeni/", + "text": "https://www.balgrist.ch/angebot/fachbereiche/tumore/thomas-boeni/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-015", + "__type": "Person", + "__createdAt": "1701867518200543000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Bruderer" + ], + "givenNames": [ + "Oliver" + ], + "jobTitles": [ + "Scientific Illustrator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-004" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://archaeovisual.ch/", + "text": "https://archaeovisual.ch/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-016", + "__type": "Person", + "__createdAt": "1701867518200592000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Colldeweih" + ], + "givenNames": [ + "Rachael" + ], + "jobTitles": [ + "Geologist (MA)" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-003" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.linkedin.com/in/rachael-colldeweih-0166a057/", + "text": "https://www.linkedin.com/in/rachael-colldeweih-0166a057/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-017", + "__type": "Person", + "__createdAt": "1701867518200668000", + "__createdBy": "dsp-metadata-gui", + "email": "alexis.dendoncker@unibas.ch", + "familyNames": [ + "Den Doncker" + ], + "givenNames": [ + "Alexis" + ], + "jobTitles": [ + "Assistant Post-Doc (Chair of Egyptology)" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://unibas.academia.edu/AlexisDenDoncker", + "text": "https://unibas.academia.edu/AlexisDenDoncker" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-018", + "__type": "Person", + "__createdAt": "1701867518200727000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Díaz-Iglesias" + ], + "givenNames": [ + "Lucía" + ], + "jobTitles": [ + "Egyptologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-006" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://cchs.csic.es/es/personal/lucia-elena-diaz-iglesias-llanos", + "text": "https://cchs.csic.es/es/personal/lucia-elena-diaz-iglesias-llanos" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-019", + "__type": "Person", + "__createdAt": "1701867518200777000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Droux" + ], + "givenNames": [ + "Xavier" + ], + "jobTitles": [ + "Egyptologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.linkedin.com/in/xavier-droux-230449156/", + "text": "https://www.linkedin.com/in/xavier-droux-230449156/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-020", + "__type": "Person", + "__createdAt": "1701867518200825000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Fetler" + ], + "givenNames": [ + "Stéphane" + ], + "jobTitles": [ + "Conservator", + "Egyptologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-007" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.linkedin.com/in/stephane-fetler-25158383/", + "text": "https://www.linkedin.com/in/stephane-fetler-25158383/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-021", + "__type": "Person", + "__createdAt": "1701867518200880000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Freijo" + ], + "givenNames": [ + "Stephan" + ], + "jobTitles": [ + "Student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-022", + "__type": "Person", + "__createdAt": "1701867518200974000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Friedli" + ], + "givenNames": [ + "Ephraim" + ], + "jobTitles": [ + "Geodesist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-003" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.linkedin.com/in/ephraim-friedli-91075115a/", + "text": "https://www.linkedin.com/in/ephraim-friedli-91075115a/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-023", + "__type": "Person", + "__createdAt": "1701867518201038000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Gieben" + ], + "givenNames": [ + "Charlotte" + ], + "jobTitles": [ + "Student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.linkedin.com/in/charlotte-gieben/", + "text": "https://www.linkedin.com/in/charlotte-gieben/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-024", + "__type": "Person", + "__createdAt": "1701867518201088000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Gojcic" + ], + "givenNames": [ + "Zan" + ], + "jobTitles": [ + "Geodesist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-003" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://zgojcic.github.io/", + "text": "https://zgojcic.github.io/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-025", + "__type": "Person", + "__createdAt": "1701867518201142000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "El-Hadidi" + ], + "givenNames": [ + "Nesrin" + ], + "jobTitles": [ + "Scientific Conservator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-008" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://scholar.cu.edu.eg/?q=nesrin/biocv", + "text": "https://scholar.cu.edu.eg/?q=nesrin/biocv" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-026", + "__type": "Person", + "__createdAt": "1701867518201192000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Hamdy" + ], + "givenNames": [ + "Rim" + ], + "jobTitles": [ + "Archaeobotanist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-008" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://scholar.cu.edu.eg/?q=rimhamdy/", + "text": "https://scholar.cu.edu.eg/?q=rimhamdy/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-027", + "__type": "Person", + "__createdAt": "1701867518201242000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Hunkeler" + ], + "givenNames": [ + "Charlotte" + ], + "jobTitles": [ + "Assistant (Chair of Egyptology)", + "PhD Candidate (Egyptology)" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://daw.philhist.unibas.ch/de/personen/charlotte-hunkeler/", + "text": "https://daw.philhist.unibas.ch/de/personen/charlotte-hunkeler/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-028", + "__type": "Person", + "__createdAt": "1701867518201294000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Ibrahim" + ], + "givenNames": [ + "Mahmoud" + ], + "jobTitles": [ + "Project Consultant" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-029", + "__type": "Person", + "__createdAt": "1701867518201323000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Jacquat-Bertossa" + ], + "givenNames": [ + "Christiane" + ], + "jobTitles": [ + "Archaeobotanist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-005" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "http://4dweb.proclim.ch/4dcgi/continuum/en/Detail_Person?22531", + "text": "http://4dweb.proclim.ch/4dcgi/continuum/en/Detail_Person?22531" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-030", + "__type": "Person", + "__createdAt": "1701867518201372000", + "__createdBy": "dsp-metadata-gui", + "email": "matjaz.kacicnik@amis.net", + "familyNames": [ + "Kačičnik" + ], + "givenNames": [ + "Matjaž" + ], + "jobTitles": [ + "Photographer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-031", + "__type": "Person", + "__createdAt": "1701867518201414000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Klemm" + ], + "givenNames": [ + "Rosemarie" + ], + "jobTitles": [ + "Egyptologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-014" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.aegyptologie.uni-muenchen.de/personen/assoziierte/klemm/index.html", + "text": "https://www.aegyptologie.uni-muenchen.de/personen/assoziierte/klemm/index.html" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-032", + "__type": "Person", + "__createdAt": "1701867518201466000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Kozieradzka-Ogunmakin" + ], + "givenNames": [ + "Iwona" + ], + "jobTitles": [ + "Anthropologist", + "Bioarchaeologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-002" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://research.manchester.ac.uk/en/persons/iwona.kozieradzka-ogunmakin", + "text": "https://research.manchester.ac.uk/en/persons/iwona.kozieradzka-ogunmakin" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-033", + "__type": "Person", + "__createdAt": "1701867518201518000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Kurmann" + ], + "givenNames": [ + "Lara" + ], + "jobTitles": [ + "Archaeologist (MA)" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.linkedin.com/in/lara-kurmann-aa1356177/", + "text": "https://www.linkedin.com/in/lara-kurmann-aa1356177/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-034", + "__type": "Person", + "__createdAt": "1701867518201566000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Lopez" + ], + "givenNames": [ + "Marcial" + ], + "jobTitles": [ + "Master of Stonemasonry" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-009" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-035", + "__type": "Person", + "__createdAt": "1701867518201595000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Marty" + ], + "givenNames": [ + "Evelyne" + ], + "jobTitles": [ + "Student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.linkedin.com/in/evelyne-marty-80257419a/", + "text": "https://www.linkedin.com/in/evelyne-marty-80257419a/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-036", + "__type": "Person", + "__createdAt": "1701867518201642000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Meyer" + ], + "givenNames": [ + "Sabrina" + ], + "jobTitles": [ + "Anthropologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-002" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.linkedin.com/in/sabrina-meyer-12977814b/", + "text": "https://www.linkedin.com/in/sabrina-meyer-12977814b/" } - ] -} + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-037", + "__type": "Person", + "__createdAt": "1701867518201691000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Mohamed" + ], + "givenNames": [ + "Hosny" + ], + "jobTitles": [ + "Inspector of the Supreme Council of Antiquities, Egypt" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-014" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-038", + "__type": "Person", + "__createdAt": "1701867518201720000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Müller" + ], + "givenNames": [ + "Matthias" + ], + "jobTitles": [ + "Coptologist", + "Egyptologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://daw.philhist.unibas.ch/en/persons/matthias-mueller-kraehenbuehl-1/", + "text": "https://daw.philhist.unibas.ch/en/persons/matthias-mueller-kraehenbuehl-1/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-039", + "__type": "Person", + "__createdAt": "1701867518201771000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Nutz" + ], + "givenNames": [ + "Rainer" + ], + "jobTitles": [ + "Egyptologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://soziologie.philhist.unibas.ch/de/personen/rainer-nutz/", + "text": "https://soziologie.philhist.unibas.ch/de/personen/rainer-nutz/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-040", + "__type": "Person", + "__createdAt": "1701867518201819000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Osman" + ], + "givenNames": [ + "‘Abd el-Hamid" + ], + "jobTitles": [ + "Rais" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-014" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-041", + "__type": "Person", + "__createdAt": "1701867518201849000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Paksi" + ], + "givenNames": [ + "Julianna", + "Kitty" + ], + "jobTitles": [ + "Egyptologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-042", + "__type": "Person", + "__createdAt": "1701867518201882000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Peintner" + ], + "givenNames": [ + "Erico" + ], + "jobTitles": [ + "Scientific Conservator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-043", + "__type": "Person", + "__createdAt": "1701867518201922000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Powroznik" + ], + "givenNames": [ + "Klaus" + ], + "jobTitles": [ + "Archaeologist", + "Photographer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.linkedin.com/in/dr-klaus-powroznik-28180747/", + "text": "https://www.linkedin.com/in/dr-klaus-powroznik-28180747/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-044", + "__type": "Person", + "__createdAt": "1701867518201973000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Reinhard" + ], + "givenNames": [ + "Jacques" + ], + "jobTitles": [ + "Basketry and Wickerwork Specialist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-014" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://jacquesreinhard.com/", + "text": "https://jacquesreinhard.com/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-045", + "__type": "Person", + "__createdAt": "1701867518202022000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Richner" + ], + "givenNames": [ + "Lukas" + ], + "jobTitles": [ + "Archaeologist (MA)", + "Geomatician" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-046", + "__type": "Person", + "__createdAt": "1701867518202053000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Sartori" + ], + "givenNames": [ + "Marina" + ], + "jobTitles": [ + "Egyptologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.ames.ox.ac.uk/people/marina-sartori", + "text": "https://www.ames.ox.ac.uk/people/marina-sartori" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-047", + "__type": "Person", + "__createdAt": "1701867518202100000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Schönhütte" + ], + "givenNames": [ + "Nadine" + ], + "jobTitles": [ + "Egyptologist (MA)", + "MA Student (Textile Conservation)" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-048", + "__type": "Person", + "__createdAt": "1701867518202136000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Seiler" + ], + "givenNames": [ + "Liliane" + ], + "jobTitles": [ + "Assistant Radiology" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-049", + "__type": "Person", + "__createdAt": "1701867518202165000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Seiler" + ], + "givenNames": [ + "Roger" + ], + "jobTitles": [ + "Dentist", + "Paleopathologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-002" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.iem.uzh.ch/en/people/ppms/rogerseiler.html", + "text": "https://www.iem.uzh.ch/en/people/ppms/rogerseiler.html" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-050", + "__type": "Person", + "__createdAt": "1701867518202217000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Studer" + ], + "givenNames": [ + "Jacqueline" + ], + "jobTitles": [ + "Archaeozoologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-010" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.unige.ch/forel/lap/fr/ancienscoll/studer/", + "text": "https://www.unige.ch/forel/lap/fr/ancienscoll/studer/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-051", + "__type": "Person", + "__createdAt": "1701867518202265000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Unter" + ], + "givenNames": [ + "Stephan" + ], + "jobTitles": [ + "Computer Scientist (MA)", + "Egyptologist (MA)" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "http://www.linkedin.com/in/sunter", + "text": "www.linkedin.com/in/sunter" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-052", + "__type": "Person", + "__createdAt": "1701867518202316000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Veldmeijer" + ], + "givenNames": [ + "André" + ], + "jobTitles": [ + "Archaeologist", + "Paleontologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-014" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "http://www.leatherandshoes.nl", + "text": "http://www.leatherandshoes.nl" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-053", + "__type": "Person", + "__createdAt": "1701867518202366000", + "__createdBy": "dsp-metadata-gui", + "email": "noemi.villars@unibas.ch", + "familyNames": [ + "Villars" + ], + "givenNames": [ + "Noémi" + ], + "jobTitles": [ + "Egyptologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.linkedin.com/in/villarsnoemi/", + "text": "https://www.linkedin.com/in/villarsnoemi/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-054", + "__type": "Person", + "__createdAt": "1701867518202422000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Wolter" + ], + "givenNames": [ + "Andrea" + ], + "jobTitles": [ + "Geologist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-003" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-055", + "__type": "Person", + "__createdAt": "1701867518202458000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Zalunardo" + ], + "givenNames": [ + "Alina" + ], + "jobTitles": [ + "Student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.linkedin.com/in/alina-zalunardo-137b52197/", + "text": "https://www.linkedin.com/in/alina-zalunardo-137b52197/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-person-000", + "__type": "Person", + "__createdAt": "1701867518202506000", + "__createdBy": "dsp-metadata-gui", + "email": "s.bickel@unibas.ch", + "familyNames": [ + "Bickel" + ], + "givenNames": [ + "Susanne" + ], + "jobTitles": [ + "Professor (Chair of Egyptology)" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://daw.philhist.unibas.ch/de/personen/susanne-bickel/", + "text": "https://daw.philhist.unibas.ch/de/personen/susanne-bickel/" + } + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-006", + "__type": "Organization", + "__createdAt": "1701867518202572000", + "__createdBy": "dsp-metadata-gui", + "name": "Center for Human and Social Sciences, Madrid" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-007", + "__type": "Organization", + "__createdAt": "1701867518202589000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Université Libre de Bruxelles, Avenue Franklin Roosevelt, 50", + "postalCode": "1050", + "locality": "Brussels", + "country": "Belgium" + }, + "name": "Free University of Brussels", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.ulb.be", + "text": "www.ulb.be" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-009", + "__type": "Organization", + "__createdAt": "1701867593277577000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Basler Münster, Münsterplatz, 9", + "postalCode": "4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "info@muensterbauhuette.ch", + "name": "Basler Münsterbauhütte", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.baslermuenster.ch/bauwerk/muensterbauhuette", + "text": "www.baslermuenster.ch/bauwerk/muensterbauhuette" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-010", + "__type": "Organization", + "__createdAt": "1701867593387831000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "24, rue du Général-Dufour", + "postalCode": "1211", + "locality": "Geneva", + "country": "Switzerland" + }, + "name": "University of Geneva", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.unige.ch", + "text": "www.unige.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-011", + "__type": "Organization", + "__createdAt": "1701867593615143000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Al-Geish Street", + "postalCode": "", + "locality": "Tanta", + "country": "Egypt" + }, + "email": "tanta_unv@unv.tanta.edu.eg", + "name": "Tanta University", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.tanta.edu.eg", + "text": "www.tanta.edu.eg" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-012", + "__type": "Organization", + "__createdAt": "1701867593761878000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Dufourstrasse 25", + "postalCode": "4052", + "locality": "Basel", + "country": "Switzerland" + }, + "name": "Gertrud Mayer Stiftung Basel" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-013", + "__type": "Organization", + "__createdAt": "1701867593846851000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Generalsekretariat SLSA, Museum Rietberg Zürich, Gablerstrasse 15", + "postalCode": "8002", + "locality": "Zürich", + "country": "Switzerland" + }, + "email": "postfach@slsa.ch", + "name": "Schweizerisch-Liechtensteinische Stiftung für archäologische Forschungen im Ausland (SLSA)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.slsa.ch/", + "text": "http://www.slsa.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-000", + "__type": "Organization", + "__createdAt": "1701867593969349000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3", + "postalCode": "3001", + "locality": "Berne", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch", + "text": "www.snf.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-008", + "__type": "Organization", + "__createdAt": "1701867594065533000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "1, Gamaa Street", + "postalCode": "12613", + "locality": "Giza", + "country": "Egypt" + }, + "name": "Cairo University", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.cu.edu.eg", + "text": "www.cu.edu.eg" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-004", + "__type": "Organization", + "__createdAt": "1701867594218736000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Pfingstweidstrasse 96", + "postalCode": "8031", + "locality": "Zürich", + "country": "Switzerland" + }, + "email": "info.admin@zhdk.ch", + "name": "Zurich University of the Arts (ZHdK)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.zhdk.ch", + "text": "www.zhdk.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-005", + "__type": "Organization", + "__createdAt": "1701867594318522000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Rämistrasse 71", + "postalCode": "8006", + "locality": "Zürich", + "country": "Switzerland" + }, + "name": "University of Zurich", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.uzh.ch", + "text": "www.uzh.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-002", + "__type": "Organization", + "__createdAt": "1701867669466652000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Universität Zürich, Winterthurerstrasse 190", + "postalCode": "8057", + "locality": "Zürich", + "country": "Switzerland" + }, + "email": "info@iem.uzh.ch", + "name": "Institute of Evolutionary Medicine (IEM)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.iem.uzh.ch", + "text": "www.iem.uzh.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-003", + "__type": "Organization", + "__createdAt": "1701867669565270000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Rämistrasse 101", + "postalCode": "8092", + "locality": "Zürich", + "country": "Switzerland" + }, + "name": "ETH Zürich", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.ethz.ch", + "text": "www.ethz.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-014", + "__type": "Organization", + "__createdAt": "1701867669643206000", + "__createdBy": "dsp-metadata-gui", + "name": "Other" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-organization-001", + "__type": "Organization", + "__createdAt": "1701867669643249000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Petersgraben 51", + "postalCode": "4051", + "locality": "Basel", + "country": "Switzerland" + }, + "name": "University of Basel, Department of Ancient Civilisations", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.unibas.ch", + "text": "www.unibas.ch" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0820-grant-000", + "__type": "Grant", + "__createdAt": "1701867669723269000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0820-organization-000" + ], + "name": "Project Funding", + "number": "162967", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/162967", + "text": "https://data.snf.ch/grants/grant/162967" + } + } + ] +} \ No newline at end of file diff --git a/data/json/limc.json b/data/json/limc.json index 52721bfc..d04634fd 100644 --- a/data/json/limc.json +++ b/data/json/limc.json @@ -1,405 +1,406 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-080E-project", - "__type": "Project", - "__createdAt": "1630601343620252000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Digital LIMC (2021): Digital LIMC, DaSCH. https://weblimc.org/page/home/Basel", - "teaserText": "Digital LIMC contains what we know about the iconography of Greek, Etruscan and Roman mythology, both in ancient Greek, Etruscan and Roman art as well as in neighbouring Mediterranean cultures.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-080E-dataset-000" - ], - "alternativeNames": [ - { - "en": "Digital LIMC" - } - ], - "description": { - "en": "Digital LIMC is a digital platform for Classical Mythology, it contains what we know about the iconography of Greek, Etruscan and Roman mythology, both in ancient Greek, Etruscan and Roman art as well as in the one of neighbouring Mediterranean cultures. These literary and iconographical sources of ancient mythology are key elements of the cultural heritage of mankind. The Foundation for the LIMC prepared and published 10 volumes of the Lexicon Iconographicum Mythologiae Classicae (LIMC) between 1981 and 2009. This publication project was followed by the Thesaurus Cultus et Rituum Antiquorum (ThesCRA; 10 volumes), focussing on ritual and cult in antiquity.\n\nDigital LIMC makes all data accessible which were assembled in the course of the preparation of the printed books and which are stored in the basement of a building of the University of Basel today." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/550501", - "text": "Archaeology" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080E-organization-000", - "http://ns.dasch.swiss/repository#dsp-080E-organization-001", - "http://ns.dasch.swiss/repository#dsp-080E-organization-002", - "http://ns.dasch.swiss/repository#dsp-080E-organization-003", - "http://ns.dasch.swiss/repository#dsp-080E-organization-004" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-080E-grant-000", - "http://ns.dasch.swiss/repository#dsp-080E-grant-001", - "http://ns.dasch.swiss/repository#dsp-080E-grant-002", - "http://ns.dasch.swiss/repository#dsp-080E-grant-003", - "http://ns.dasch.swiss/repository#dsp-080E-grant-004" - ], - "keywords": [ - { - "en": "Archaeology" - }, - { - "en": "Egypt" - }, - { - "en": "Etruria" - }, - { - "en": "Greece" - }, - { - "en": "Mythology" - }, - { - "en": "Near East" - }, - { - "en": "Roman" - } - ], - "name": "Digital Lexicon Iconographicum Mythologiae Classicae (Digital LIMC)", - "shortcode": "080E", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6255148", - "text": "Europe" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/7729887", - "text": "Northern Africa" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6255147", - "text": "Asia" - } - ], - "startDate": "2014-06-02", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "http://chronontology.dainst.org/period/3mQhHXhO86oj", - "text": "Near Eastern (Early Western World)" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "http://chronontology.dainst.org/period/yY1zReDz86zF", - "text": "Roman (ancient Italian culture or period)" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "http://chronontology.dainst.org/period/6VooUMYGJjOI", - "text": "Egyptian (ancient)" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "http://chronontology.dainst.org/period/YOyP9TLDuhrb", - "text": "Ancient Greek (culture or style)" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "http://chronontology.dainst.org/period/RGbECa9kHJT4", - "text": "Etruscan (culture or style)" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://weblimc.org/page/home/Basel", - "text": "Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-080E-project", + "__type": "Project", + "__createdAt": "1630601343620252000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Digital LIMC (2021): Digital LIMC, DaSCH. https://weblimc.org/page/home/Basel", + "teaserText": "Digital LIMC contains what we know about the iconography of Greek, Etruscan and Roman mythology, both in ancient Greek, Etruscan and Roman art as well as in neighbouring Mediterranean cultures.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-080E-dataset-000" + ], + "alternativeNames": [ + { + "en": "Digital LIMC" + } + ], + "description": { + "en": "Digital LIMC is a digital platform for Classical Mythology, it contains what we know about the iconography of Greek, Etruscan and Roman mythology, both in ancient Greek, Etruscan and Roman art as well as in the one of neighbouring Mediterranean cultures. These literary and iconographical sources of ancient mythology are key elements of the cultural heritage of mankind. The Foundation for the LIMC prepared and published 10 volumes of the Lexicon Iconographicum Mythologiae Classicae (LIMC) between 1981 and 2009. This publication project was followed by the Thesaurus Cultus et Rituum Antiquorum (ThesCRA; 10 volumes), focussing on ritual and cult in antiquity.\n\nDigital LIMC makes all data accessible which were assembled in the course of the preparation of the printed books and which are stored in the basement of a building of the University of Basel today." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/550501", + "text": "Archaeology" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080E-organization-000", + "http://ns.dasch.swiss/repository#dsp-080E-organization-001", + "http://ns.dasch.swiss/repository#dsp-080E-organization-002", + "http://ns.dasch.swiss/repository#dsp-080E-organization-003", + "http://ns.dasch.swiss/repository#dsp-080E-organization-004" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-080E-grant-000", + "http://ns.dasch.swiss/repository#dsp-080E-grant-001", + "http://ns.dasch.swiss/repository#dsp-080E-grant-002", + "http://ns.dasch.swiss/repository#dsp-080E-grant-003", + "http://ns.dasch.swiss/repository#dsp-080E-grant-004" + ], + "keywords": [ + { + "en": "Archaeology" + }, + { + "en": "Egypt" + }, + { + "en": "Etruria" + }, + { + "en": "Greece" + }, + { + "en": "Mythology" + }, + { + "en": "Near East" + }, + { + "en": "Roman" + } + ], + "name": "Digital Lexicon Iconographicum Mythologiae Classicae (Digital LIMC)", + "shortcode": "080E", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/6255148", + "text": "Europe" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/7729887", + "text": "Northern Africa" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/6255147", + "text": "Asia" + } + ], + "startDate": "2014-06-02", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Chronontology", + "url": "http://chronontology.dainst.org/period/3mQhHXhO86oj", + "text": "Near Eastern (Early Western World)" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "http://chronontology.dainst.org/period/yY1zReDz86zF", + "text": "Roman (ancient Italian culture or period)" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "http://chronontology.dainst.org/period/6VooUMYGJjOI", + "text": "Egyptian (ancient)" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "http://chronontology.dainst.org/period/YOyP9TLDuhrb", + "text": "Ancient Greek (culture or style)" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "http://chronontology.dainst.org/period/RGbECa9kHJT4", + "text": "Etruscan (culture or style)" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://weblimc.org/page/home/Basel", + "text": "Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-080E-dataset-000", + "__type": "Dataset", + "__createdAt": "1630601348061335000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-080E-dataset-000", - "__type": "Dataset", - "__createdAt": "1630601348061335000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "Digital LIMC makes accessible what we know about the iconography of Greek, Etruscan and Roman mythology in ancient Greek, Etruscan and Roman art as well as in the one of the neighbouring civilisations of the Mediterranean, to all people interested in classical antiquity. It contains basic information about more than 55’000 archaeological objects (e.g. vases, sculpture, gems, mosaics) which were assembled in the course of the preparation of the printed books of the LIMC and the ThesCRA from about 1970 onward. Short keyword type object descriptions and links to other research projects or museum databases will be added continuously as far as funds permit. The images of the objects are accessible online if the owning institution has given us permission for diffusion." - } - ], - "alternativeTitles": [ - { - "en": "Digital LIMC" - } - ], - "accessConditions": "open", - "dateCreated": "2014-06-02", - "datePublished": "2016-12-20", - "howToCite": "Digital LIMC (2021): Digital LIMC, DaSCH. https://weblimc.org/page/home/Basel", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "en": "French", - "de": "Französisch", - "fr": "français" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - }, - { - "en": "Greek" - }, - { - "en": "Italian", - "de": "Italienisch", - "fr": "italien" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc/4.0/", - "text": "CC BY-NC 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-080E-organization-005", - "roles": [ - "publisher" - ] - } - ], - "status": "Ongoing", - "title": "Dataset of Digital Lexicon Iconographicum Mythologiae Classicae (Digital LIMC)", - "typeOfData": [ - "Image", - "Text" - ] + "en": "Digital LIMC makes accessible what we know about the iconography of Greek, Etruscan and Roman mythology in ancient Greek, Etruscan and Roman art as well as in the one of the neighbouring civilisations of the Mediterranean, to all people interested in classical antiquity. It contains basic information about more than 55’000 archaeological objects (e.g. vases, sculpture, gems, mosaics) which were assembled in the course of the preparation of the printed books of the LIMC and the ThesCRA from about 1970 onward. Short keyword type object descriptions and links to other research projects or museum databases will be added continuously as far as funds permit. The images of the objects are accessible online if the owning institution has given us permission for diffusion." } - ], - "organizations": [ + ], + "alternativeTitles": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-080E-organization-001", - "__type": "Organization", - "__createdAt": "1630601349504279000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "14, Avenue de Grande Bretagne, \"Le George V\" 4eme étage", - "postalCode": "98000", - "locality": "Monte Carlo", - "country": "Monaco" - }, - "email": "info@snf.org", - "name": "Stavros Niarchos Foundation", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.snf.org/en", - "text": "https://www.snf.org/en" - } - }, + "en": "Digital LIMC" + } + ], + "accessConditions": "open", + "dateCreated": "2014-06-02", + "datePublished": "2016-12-20", + "howToCite": "Digital LIMC (2021): Digital LIMC, DaSCH. https://weblimc.org/page/home/Basel", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-080E-organization-005", - "__type": "Organization", - "__createdAt": "1630601349533108000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Petersgraben 51", - "postalCode": "4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "martin-a.guggisberg@unibas.ch", - "name": "Classical Archaeology, University of Basel", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://klassarch.philhist.unibas.ch/de/home/", - "text": "https://klassarch.philhist.unibas.ch/de/home/" - } + "en": "English", + "de": "Englisch", + "fr": "anglais" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-080E-organization-000", - "__type": "Organization", - "__createdAt": "1630601349564122000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Effingerstrasse 15, Postfach", - "postalCode": "3001", - "locality": "Bern", - "country": "Switzerland" - }, - "name": "swissuniversities", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.swissuniversities.ch/", - "text": "https://www.swissuniversities.ch/" - } + "en": "French", + "de": "Französisch", + "fr": "français" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-080E-organization-002", - "__type": "Organization", - "__createdAt": "1630601349597412000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Artherstrasse 19", - "postalCode": "6300", - "locality": "Zug", - "country": "Switzerland" - }, - "name": "Ernst Göhner Stiftung", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.ernst-goehner-stiftung.ch/index.php/de", - "text": "http://www.ernst-goehner-stiftung.ch/index.php/de" - } + "de": "Deutsch", + "en": "German", + "fr": "allemand" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-080E-organization-003", - "__type": "Organization", - "__createdAt": "1630601349630750000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "St. Jakobs-Strasse 7", - "postalCode": "4002", - "locality": "Basel", - "country": "Switzerland" - }, - "name": "Ceramica Stiftung", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://ceramica-ch.ch/", - "text": "https://ceramica-ch.ch/" - } + "en": "Greek" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-080E-organization-004", - "__type": "Organization", - "__createdAt": "1630601349664009000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Rennweg 50", - "postalCode": "4020", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "contact@binding-stiftung.ch", - "name": "Sophie und Karl Binding Stiftung", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.binding-stiftung.ch/", - "text": "https://www.binding-stiftung.ch/" - } + "en": "Italian", + "de": "Italienisch", + "fr": "italien" } - ], - "grants": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-080E-grant-000", - "__type": "Grant", - "__createdAt": "1630601349697306000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080E-organization-000" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-080E-grant-001", - "__type": "Grant", - "__createdAt": "1630601349697370000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080E-organization-001" - ], - "name": "Program Support Education", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.snf.org/en/grants/grantees/u/university-of-basel/department-of-ancient-civilisations-program-support/", - "text": "https://www.snf.org/en/grants/grantees/u/university-of-basel/department-of-ancient-civilisations-program-support/" - } - }, + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-080E-grant-002", - "__type": "Grant", - "__createdAt": "1630601349697556000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080E-organization-002" - ], - "name": "Gesuch im Bereich Bildung und Wissenschaft", - "number": "2015-2371/1.2", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.ernst-goehner-stiftung.ch/index.php/de", - "text": "http://www.ernst-goehner-stiftung.ch/index.php/de" - } - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-080E-grant-003", - "__type": "Grant", - "__createdAt": "1630601349697653000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080E-organization-003" - ], - "name": "Ceramica Stiftung", - "number": "14/17-18", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://ceramica-ch.ch/", - "text": "https://ceramica-ch.ch/" - } - }, + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc/4.0/", + "text": "CC BY-NC 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-080E-grant-004", - "__type": "Grant", - "__createdAt": "1630601349697727000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-080E-organization-004" - ], - "name": "Gesuch im Bereich Kultur", - "number": "19-109", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.binding-stiftung.ch/", - "text": "https://www.binding-stiftung.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-080E-organization-005", + "roles": [ + "publisher" + ] } - ] -} + ], + "status": "Ongoing", + "title": "Dataset of Digital Lexicon Iconographicum Mythologiae Classicae (Digital LIMC)", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-080E-organization-001", + "__type": "Organization", + "__createdAt": "1630601349504279000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "14, Avenue de Grande Bretagne, \"Le George V\" 4eme étage", + "postalCode": "98000", + "locality": "Monte Carlo", + "country": "Monaco" + }, + "email": "info@snf.org", + "name": "Stavros Niarchos Foundation", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.snf.org/en", + "text": "https://www.snf.org/en" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080E-organization-005", + "__type": "Organization", + "__createdAt": "1630601349533108000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Petersgraben 51", + "postalCode": "4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "martin-a.guggisberg@unibas.ch", + "name": "Classical Archaeology, University of Basel", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://klassarch.philhist.unibas.ch/de/home/", + "text": "https://klassarch.philhist.unibas.ch/de/home/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080E-organization-000", + "__type": "Organization", + "__createdAt": "1630601349564122000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Effingerstrasse 15, Postfach", + "postalCode": "3001", + "locality": "Bern", + "country": "Switzerland" + }, + "name": "swissuniversities", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.swissuniversities.ch/", + "text": "https://www.swissuniversities.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080E-organization-002", + "__type": "Organization", + "__createdAt": "1630601349597412000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Artherstrasse 19", + "postalCode": "6300", + "locality": "Zug", + "country": "Switzerland" + }, + "name": "Ernst Göhner Stiftung", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.ernst-goehner-stiftung.ch/index.php/de", + "text": "http://www.ernst-goehner-stiftung.ch/index.php/de" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080E-organization-003", + "__type": "Organization", + "__createdAt": "1630601349630750000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "St. Jakobs-Strasse 7", + "postalCode": "4002", + "locality": "Basel", + "country": "Switzerland" + }, + "name": "Ceramica Stiftung", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://ceramica-ch.ch/", + "text": "https://ceramica-ch.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080E-organization-004", + "__type": "Organization", + "__createdAt": "1630601349664009000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Rennweg 50", + "postalCode": "4020", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "contact@binding-stiftung.ch", + "name": "Sophie und Karl Binding Stiftung", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.binding-stiftung.ch/", + "text": "https://www.binding-stiftung.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-080E-grant-000", + "__type": "Grant", + "__createdAt": "1630601349697306000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080E-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080E-grant-001", + "__type": "Grant", + "__createdAt": "1630601349697370000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080E-organization-001" + ], + "name": "Program Support Education", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.snf.org/en/grants/grantees/u/university-of-basel/department-of-ancient-civilisations-program-support/", + "text": "https://www.snf.org/en/grants/grantees/u/university-of-basel/department-of-ancient-civilisations-program-support/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080E-grant-002", + "__type": "Grant", + "__createdAt": "1630601349697556000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080E-organization-002" + ], + "name": "Gesuch im Bereich Bildung und Wissenschaft", + "number": "2015-2371/1.2", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.ernst-goehner-stiftung.ch/index.php/de", + "text": "http://www.ernst-goehner-stiftung.ch/index.php/de" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080E-grant-003", + "__type": "Grant", + "__createdAt": "1630601349697653000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080E-organization-003" + ], + "name": "Ceramica Stiftung", + "number": "14/17-18", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://ceramica-ch.ch/", + "text": "https://ceramica-ch.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-080E-grant-004", + "__type": "Grant", + "__createdAt": "1630601349697727000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-080E-organization-004" + ], + "name": "Gesuch im Bereich Kultur", + "number": "19-109", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.binding-stiftung.ch/", + "text": "https://www.binding-stiftung.ch/" + } + } + ] +} \ No newline at end of file diff --git a/data/json/locusludi.json b/data/json/locusludi.json index 253e598d..48e6028b 100644 --- a/data/json/locusludi.json +++ b/data/json/locusludi.json @@ -1,283 +1,284 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0847-project", - "__type": "Project", - "__createdAt": "1701724764664394000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Attia (2024). Kottabos in the Greek World (2024). DaSCH, https://ark.dasch.swiss/ark:/72163/1/0847.", - "teaserText": "This database aims to provide a benchmark by compilating all representations of kottabos in the Greek world, including descriptions, images and links to other reference databases.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0847-dataset-000" - ], - "alternativeNames": [ - { - "en": "Locus Ludi" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0847-person-001", - "description": { - "en": "This research is part of the ERC Advanced grant project Locus Ludi (no. 741520), which intends to provide a benchmark by reconstructing the history of the ludic culture in the Greco-Roman world. \n\nThe kottabos game, held at the end of the symposion, was an important moment of conviviality where the wine consumption plays a central role. Play of skills and dexterity it consists of throwing the last drop of wine from the cup towards a predetermined target. Representations of kottabos have been documented between the 6th and 3rd centuries B.C. on a wide variety of materials and media (figured pottery, mirrors, gems, reliefs, figurines, coins, funerary paintings) from various chrono-cultural areas, from Greece to the shores of Italy.\n\nThis database compiles basic informations about known representations of the kottabos game on South Italian pottery, produced and distributed both in Greek and indigenous settlements. It includes short descriptions, images and links to other reference databases.\n\nThe images of the objects are accessible online if the owning institution has given us permission for diffusion." - }, - "disciplines": [ - { - "en": "10402 Archaeology" - }, - { - "en": "10404 Visual arts and Art history" - } - ], - "endDate": "2023-09-30", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0847-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0847-grant-000" - ], - "keywords": [ - { - "en": "Dionysos" - }, - { - "en": "Game" - }, - { - "en": "Greek vases" - }, - { - "en": "Greek world" - }, - { - "en": "Iconography" - }, - { - "en": "Kottabos" - }, - { - "en": "South Italian pottery" - }, - { - "en": "Wine" - } - ], - "name": "Locus Ludi database: The Kottabos in the Greek World", - "publications": [ - { - "text": "Attia, A., Delahaye, A., Le jeu du kottabos. Guide illustré, Collection Locus Ludi, Darmstadt, WBG/Mainz, Ph. von Zabern, in preparation (2024)." - }, - { - "text": "Attia, A., Vespa, M., “The Kottabos. Material Play and Cultural Representations”, in V. Dasen, M. Vespa (eds), The Cambridge Handbook of Ancient Play and Games, Cambridge, Cambridge University Press, , in preparation (2024)." - }, - { - "text": "Attia, A., “Jouer au banquet : le kottabe au féminin en Grande Grèce”, in M.-L., Arnette, V. Dasen (eds), Joueuses ! Clio. Femmes, genre, histoire, 56, 2022, 187-197.", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.cairn.info/revue-clio-femmes-genre-histoire-2022-2-page-187.htm", - "text": "https://www.cairn.info/revue-clio-femmes-genre-histoire-2022-2-page-187.htm" - } - ] - }, - { - "text": "Attia, A., Delahaye, A., “Vertiges du banquet : jeux d’habilité et d’équilibre au symposion“, in V. Dasen and T. Haziza (eds.), Dossier thématique Jeux, normes et transgressions, Kentron. Revue pluridisciplinaire du monde antique, 36, 2021, 29-66.", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://journals.openedition.org/kentron/4415", - "text": "https://journals.openedition.org/kentron/4415" - } - ] - } - ], - "shortcode": "0847", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6255148/europe.html", - "text": "Europe" - } - ], - "startDate": "2017-10-01", - "temporalCoverage": [ - { - "en": "Ancient Greek (culture or style)" - }, - { - "en": "Etruscan (culture or style)" - }, - { - "en": "South Italian (Greek pottery style)" - } - ], - "url": { + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0847-project", + "__type": "Project", + "__createdAt": "1701724764664394000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Attia (2024). Kottabos in the Greek World (2024). DaSCH, https://ark.dasch.swiss/ark:/72163/1/0847.", + "teaserText": "This database aims to provide a benchmark by compilating all representations of kottabos in the Greek world, including descriptions, images and links to other reference databases.", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0847-dataset-000" + ], + "alternativeNames": [ + { + "en": "Locus Ludi" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0847-person-001", + "description": { + "en": "This research is part of the ERC Advanced grant project Locus Ludi (no. 741520), which intends to provide a benchmark by reconstructing the history of the ludic culture in the Greco-Roman world. \n\nThe kottabos game, held at the end of the symposion, was an important moment of conviviality where the wine consumption plays a central role. Play of skills and dexterity it consists of throwing the last drop of wine from the cup towards a predetermined target. Representations of kottabos have been documented between the 6th and 3rd centuries B.C. on a wide variety of materials and media (figured pottery, mirrors, gems, reliefs, figurines, coins, funerary paintings) from various chrono-cultural areas, from Greece to the shores of Italy.\n\nThis database compiles basic informations about known representations of the kottabos game on South Italian pottery, produced and distributed both in Greek and indigenous settlements. It includes short descriptions, images and links to other reference databases.\n\nThe images of the objects are accessible online if the owning institution has given us permission for diffusion." + }, + "disciplines": [ + { + "en": "10402 Archaeology" + }, + { + "en": "10404 Visual arts and Art history" + } + ], + "endDate": "2023-09-30", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0847-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0847-grant-000" + ], + "keywords": [ + { + "en": "Dionysos" + }, + { + "en": "Game" + }, + { + "en": "Greek vases" + }, + { + "en": "Greek world" + }, + { + "en": "Iconography" + }, + { + "en": "Kottabos" + }, + { + "en": "South Italian pottery" + }, + { + "en": "Wine" + } + ], + "name": "Locus Ludi database: The Kottabos in the Greek World", + "publications": [ + { + "text": "Attia, A., Delahaye, A., Le jeu du kottabos. Guide illustré, Collection Locus Ludi, Darmstadt, WBG/Mainz, Ph. von Zabern, in preparation (2024)." + }, + { + "text": "Attia, A., Vespa, M., “The Kottabos. Material Play and Cultural Representations”, in V. Dasen, M. Vespa (eds), The Cambridge Handbook of Ancient Play and Games, Cambridge, Cambridge University Press, , in preparation (2024)." + }, + { + "text": "Attia, A., “Jouer au banquet : le kottabe au féminin en Grande Grèce”, in M.-L., Arnette, V. Dasen (eds), Joueuses ! Clio. Femmes, genre, histoire, 56, 2022, 187-197.", + "url": [ + { "__type": "URL", "type": "URL", - "url": "https://app.dasch.swiss/project/sWbpL_RCTWKF6Y3aqxFZfA", - "text": "Discover Project Data" - } + "url": "https://www.cairn.info/revue-clio-femmes-genre-histoire-2022-2-page-187.htm", + "text": "https://www.cairn.info/revue-clio-femmes-genre-histoire-2022-2-page-187.htm" + } + ] + }, + { + "text": "Attia, A., Delahaye, A., “Vertiges du banquet : jeux d’habilité et d’équilibre au symposion“, in V. Dasen and T. Haziza (eds.), Dossier thématique Jeux, normes et transgressions, Kentron. Revue pluridisciplinaire du monde antique, 36, 2021, 29-66.", + "url": [ + { + "__type": "URL", + "type": "URL", + "url": "https://journals.openedition.org/kentron/4415", + "text": "https://journals.openedition.org/kentron/4415" + } + ] + } + ], + "shortcode": "0847", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/6255148/europe.html", + "text": "Europe" + } + ], + "startDate": "2017-10-01", + "temporalCoverage": [ + { + "en": "Ancient Greek (culture or style)" + }, + { + "en": "Etruscan (culture or style)" + }, + { + "en": "South Italian (Greek pottery style)" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/sWbpL_RCTWKF6Y3aqxFZfA", + "text": "Discover Project Data" }, - "datasets": [ + "status": "finished" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0847-dataset-000", + "__type": "Dataset", + "__createdAt": "1701724767853009000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0847-dataset-000", - "__type": "Dataset", - "__createdAt": "1701724767853009000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The database makes an extensive collection of representation of kottabos on South Italian pottery. The ontology of the database includes five main classes (object, scene, museum, artist and photo) to describe, contextualize and illustrate the vase. Each of five classes contains properties using different criteria (e.g. material, technique, production center, description, attribution, dating, discovery place, location, bibliography and photo credits)." - } - ], - "accessConditions": "open", - "dateCreated": "2019-03-01", - "dateModified": "2023-11-30", - "howToCite": "Attia (2024). Kottabos in the Greek World (2024). DaSCH, https://ark.dasch.swiss/ark:/72163/1/0847.", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "en": "French", - "de": "Französisch", - "fr": "français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2023-12-04", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", - "text": "CC BY-NC-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0847-person-000", - "roles": [ - "Project Leader" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0847-person-001", - "roles": [ - "Researcher and Data Collector" - ] - } - ], - "status": "Ongoing", - "title": "Kottabos in the Greek World", - "typeOfData": [ - "Image", - "Text" - ] + "en": "The database makes an extensive collection of representation of kottabos on South Italian pottery. The ontology of the database includes five main classes (object, scene, museum, artist and photo) to describe, contextualize and illustrate the vase. Each of five classes contains properties using different criteria (e.g. material, technique, production center, description, attribution, dating, discovery place, location, bibliography and photo credits)." } - ], - "persons": [ + ], + "accessConditions": "open", + "dateCreated": "2019-03-01", + "dateModified": "2023-11-30", + "howToCite": "Attia (2024). Kottabos in the Greek World (2024). DaSCH, https://ark.dasch.swiss/ark:/72163/1/0847.", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0847-person-000", - "__type": "Person", - "__createdAt": "1701724768199035000", - "__createdBy": "dsp-metadata-gui", - "email": "veronique.dasen@unifr.ch", - "familyNames": [ - "Dasen" - ], - "givenNames": [ - "Véronique" - ], - "jobTitles": [ - "Professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0847-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-2101-3105", - "text": "ORCID URL: https://orcid.org/0000-0002-2101-3105" - } - ] + "en": "English", + "de": "Englisch", + "fr": "anglais" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0847-person-001", - "__type": "Person", - "__createdAt": "1701724768199098000", - "__createdBy": "dsp-metadata-gui", - "email": "alexandra.attia@unifr.ch", - "familyNames": [ - "Attia" - ], - "givenNames": [ - "Alexandra" - ], - "jobTitles": [ - "Post-doc researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0847-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-1525-9205", - "text": "ORCID URL: https://orcid.org/0000-0002-1525-9205" - } - ] + "en": "French", + "de": "Französisch", + "fr": "français" } - ], - "organizations": [ + ], + "licenses": [ + { + "__type": "License", + "date": "2023-12-04", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", + "text": "CC BY-NC-SA 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0847-organization-000", - "__type": "Organization", - "__createdAt": "1701724768199159000", - "__createdBy": "dsp-metadata-gui", - "email": "locusludi@gmail.com", - "name": "University of Fribourg, ERC Locus Ludi", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://locusludi.hypotheses.org/", - "text": "https://locusludi.hypotheses.org/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0847-person-000", + "roles": [ + "Project Leader" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0847-organization-001", - "__type": "Organization", - "__createdAt": "1701724768199191000", - "__createdBy": "dsp-metadata-gui", - "name": "European Research Council" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0847-person-001", + "roles": [ + "Researcher and Data Collector" + ] } - ], - "grants": [ + ], + "status": "Ongoing", + "title": "Kottabos in the Greek World", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0847-person-000", + "__type": "Person", + "__createdAt": "1701724768199035000", + "__createdBy": "dsp-metadata-gui", + "email": "veronique.dasen@unifr.ch", + "familyNames": [ + "Dasen" + ], + "givenNames": [ + "Véronique" + ], + "jobTitles": [ + "Professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0847-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0847-grant-000", - "__type": "Grant", - "__createdAt": "1701724768199211000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0847-organization-001" - ], - "name": "ERC Advanced grant", - "number": "741520", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://erc.europa.eu/apply-grant/advanced-grant", - "text": "https://erc.europa.eu/apply-grant/advanced-grant" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-2101-3105", + "text": "ORCID URL: https://orcid.org/0000-0002-2101-3105" } - ] -} + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0847-person-001", + "__type": "Person", + "__createdAt": "1701724768199098000", + "__createdBy": "dsp-metadata-gui", + "email": "alexandra.attia@unifr.ch", + "familyNames": [ + "Attia" + ], + "givenNames": [ + "Alexandra" + ], + "jobTitles": [ + "Post-doc researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0847-organization-000" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-1525-9205", + "text": "ORCID URL: https://orcid.org/0000-0002-1525-9205" + } + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0847-organization-000", + "__type": "Organization", + "__createdAt": "1701724768199159000", + "__createdBy": "dsp-metadata-gui", + "email": "locusludi@gmail.com", + "name": "University of Fribourg, ERC Locus Ludi", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://locusludi.hypotheses.org/", + "text": "https://locusludi.hypotheses.org/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0847-organization-001", + "__type": "Organization", + "__createdAt": "1701724768199191000", + "__createdBy": "dsp-metadata-gui", + "name": "European Research Council" + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0847-grant-000", + "__type": "Grant", + "__createdAt": "1701724768199211000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0847-organization-001" + ], + "name": "ERC Advanced grant", + "number": "741520", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://erc.europa.eu/apply-grant/advanced-grant", + "text": "https://erc.europa.eu/apply-grant/advanced-grant" + } + } + ] +} \ No newline at end of file diff --git a/data/json/mark16.json b/data/json/mark16.json index f36fc171..7bfa889f 100644 --- a/data/json/mark16.json +++ b/data/json/mark16.json @@ -1,611 +1,612 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0844-project", - "__type": "Project", - "__createdAt": "1682679735674579000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "SNSF MARK16 (2023). MARK16 Manuscript Data [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0844.", - "teaserText": "MARK16 is a SNSF PRIMA project. It reassesses the diverse endings of the Gospel of Mark through manuscript data, available on its Virtual Research Environment ISSN 2673-9836, https://mark16.sib.swiss.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0844-dataset-000" - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0844-person-000", - "description": { - "en": "MARK16 is a five-year SNSF PRIMA project (2018-2023) that develops a new research model in digitized biblical sciences, based on a test case found in the New Testament: the last chapter of the Gospel according to Mark. A virtual research environment has been built with a manuscript room as main part (https://mark16.sib.swiss; ISSN 2673-9836). This DaSCH website presents the dataset of the 58 manuscripts of the project. Website of the manuscript room: https://mr-mark16.sib.swiss. The complete list of datasets of the project are available on the CNRS Huma-Num public open repository, Nakala: https://mark16-snsf-prima-project.nakala.fr" - }, - "disciplines": [ - { - "en": "10102 Religious studies, Theology" - } - ], - "endDate": "2023-09-30", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0844-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0844-grant-000" - ], - "keywords": [ - { - "en": "Gospel of Mark" - }, - { - "en": "Mark endings" - }, - { - "en": "New Testament" - }, - { - "en": "biblical sciences" - }, - { - "en": "early Christianity" - }, - { - "en": "encoding" - }, - { - "en": "manuscripts" - }, - { - "en": "religious studies" - }, - { - "en": "textual criticism" - }, - { - "en": "theology" - }, - { - "en": "transcription" - }, - { - "en": "translation" - } - ], - "name": "MARK16", - "publications": [ - { - "text": "Burnet, Régis and Claire Clivaz, “The Freer-Logion (Mark 16:14): GA 032, Jerome, and Erasmus”, TC: A Journal of Biblical Textual Criticism 28 (2023), forthcoming." - }, - { - "text": "Clivaz, Claire, “Marc 15,34 dans le codex de Bèze et le codex Bobbiensis”, dans Jean-Claude Haelewyck et Laurent Pinchard (éd.), Traditions et traductions des textes bibliques. Études en l’hommage de Christian Bernard Amphoux à l’occasion de son 80e anniversaire, Bruxelles: Safran, forthcoming." - }, - { - "text": "Clivaz, Claire, “Lk 22:43-44 and Judeo-Christian Memories”, Revue des Etudes Juives 182/2 (2023), forthcoming." - }, - { - "text": "Clivaz, Claire, “New Testament Textual Criticism and Digital Humanities”, in Sidnie White Crawford and Tommy Wasserman (ed.), The Oxford Handbook of the Textual Criticism of the Bible. Oxford & New York: OUP (forthcoming)." - }, - { - "text": "Clivaz, Claire, “New Testament Textual Criticism from the Margins to the Center: Jesus Desire and Manuscripts in Lk 22:43–44”, in J. Keith Elliott and L. Pinchard (eds.), The Variety and Importance of the Scriptural Witnesses to the so-called ‘Western’ Text. Diversité et importance des témoins scripturaires du texte « occidental » (NTTSD 65), Brill, 2023, p. 56-75 ; forthcoming (SNSF OA grant)." - }, - { - "text": "Clivaz, Claire, Monier, Mina and Batovici, Dan (eds.), Mark 16 in its diverse textual traditions and transmissions, COMSt Bulletin 8/2 (2022), forthcoming." - }, - { - "text": "Clivaz, Claire, “ A Multilingual Turn: Introducing the MARK16 COMSt Bulletin”, in Claire Clivaz, Mina Monier and Dan Batovici (eds.), Mark 16 in its diverse textual traditions and transmissions, COMSt Bulletin 8/2 (2022), forthcoming." - }, - { - "text": "Mina Monier, “ ‘According to the Egyptians’: Mark 16 in GA 72”, in Claire Clivaz, Mina Monier and Dan Batovici (eds.), Mark 16 in its diverse textual traditions and transmissions, COMSt Bulletin 8/2 (2022), forthcoming." - }, - { - "text": "Monier, Mina and Nury, Elisa, “The SNSF MARK16 Project. The first virtual research environment focused on a biblical chapter”, Poster presented at the 2022 DARIAH-CH study day (Mendrisio, 20.10.22),", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://zenodo.org/record/7248296", - "text": "https://zenodo.org/record/7248296" - } - ] - }, - { - "text": "Monier, Mina. 2022. “Mark’s Endings in Context: Paratexts and Codicological Remarks” Religions 13, no. 6: 548,", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.3390/rel13060548", - "text": "DOI: 10.3390/rel13060548" - } - ] - }, - { - "text": "Clivaz, Claire, “Editer le Nouveau Testament à l’heure du numérique”, Bulletin de l’Académie des Sciences humaines et sociales 3 (2021), p. 37-40." - }, - { - "text": "Monier, Mina, “Mark’s Ending in the Digital Age: Paratextual Evidence, New Findings and Transcription Challenges”, Postscripts: The Journal of Sacred Texts, Cultural Histories, and Contemporary Contexts 12 (2021/1), p. 75-98." - }, - { - "text": "Clivaz, Claire, and Garrick V. Allen (eds.), “Ancient Manuscripts and Virtual Research Environments” Special issue, Classics@ 18 (2021)", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://classics-at.chs.harvard.edu/volume/classics18-ancient-manuscripts-and-virtual-research-environments/", - "text": "https://classics-at.chs.harvard.edu/volume/..." - } - ] - }, - { - "text": "Clivaz, Claire. “Looking at Scribal Practices in the Endings of Mark 16”, Henoch 42 (2020/2), ed. P. Pouchelle and J.-S. Rey, p. 373-387." - }, - { - "text": "Clivaz, Claire, “Mk 16 im Codex Bobbiensis. Neue Materialien zur conclusio brevior des Markusevangeliums”, Zeitschrift für Neues Testament 47/24 (2021), p. 59-85." - }, - { - "text": "Clivaz, Claire, Mina Monier and Jonathan Barda, “MARK16 as Virtual Research Environment. Challenges and Opportunities in New Testament Studies”, Classics@ 18 (2021) [n.p.],", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://classics-at.chs.harvard.edu/classics18-clivaz-monier-barda/", - "text": "https://classics-at.chs.harvard.edu/classics18-clivaz-monier-barda/" - } - ] - }, - { - "text": "Clivaz, Claire, and Garrick V. Allen. “Introduction.” In “Ancient Manuscripts and Virtual Research Environments”, Classics@ 18 (2021), [N.p.]", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://classics-at.chs.harvard.edu/classics18-introduction/", - "text": "https://classics-at.chs.harvard.edu/classics18-introduction/" - } - ] - }, - { - "text": "Clivaz, Claire and Garrick Allen, “Conference report: Ancient Manuscripts and Virtual Research Environments. Lausanne 10-11 September 2020”, COMSt Bulletin 6/2, 2020, p. 205-208; 10.25592/uhhfdm.8477,", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.fdr.uni-hamburg.de/record/8477", - "text": "https://www.fdr.uni-hamburg.de/record/8477" - } - ] - }, - { - "text": "Clivaz, Claire, “Le Nouveau Testament numérique, un Novum Instrumentum omne ?”, Cahiers bibliques. Foi et Vie 123 (2020/5), p. 4-11;", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.foi-et-vie.fr/archive/article.php?code=4267", - "text": "https://www.foi-et-vie.fr/archive/article.php?code=4267" - } - ] - }, - { - "text": "Clivaz, Claire, “New Testament and Digital Humanities”, Verkündigung und Forschung 65 (2020/2), p. 98-104;", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://www.degruyter.com/document/doi/10.14315/vf-2020-650205/pdf", - "text": "degruyter.com/document/doi/10.14315/vf-2020-650205/pdf" - } - ] - }, - { - "text": "Clivaz, Claire, Mina Monier and Jonathan Barda, MARK16 (virtual research environment), DH+, SIB Swiss Institute of Bioinformatics, Lausanne (CH), 2020, ISSN 2673-9836,", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://mark16.sib.swiss", - "text": "https://mark16.sib.swiss" - } - ] - }, - { - "text": "Clivaz, Claire. “Lire la Bible à l’ère du numérique: entre contraintes et nouveaux horizons.” Lumen Vitae LXXV (2020/2), p. 167-177;", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.cairn.info/revue-lumen-vitae-2020-2-page-167.htm", - "text": "https://www.cairn.info/revue-lumen-vitae-2020-2-page-167.htm" - } - ] - }, - { - "text": "Clivaz, Claire, “Der Markusschluss : Narratologie und Traditiongeschichte, written by Andreas Seifert”, Novum Testamentum 62/1 (2019), p. 107-108." - }, - { - "text": "Clivaz, Claire. “Returning to Mark 16,8: What’s New?” Ephemerides Theologicae Lovanienses 96/4 (2019), p. 645-659;", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://dx.doi.org/10.2143/ETL.95.4.3286928", - "text": "dx.doi.org/10.2143/ETL.95.4.3286928" - } - ] - }, - { - "text": "Monier, Mina, “GA 304, Theophylact’s Commentary and the Ending of Mark”, Filología Neotestamentaria 52 (2019), p. 94-106;", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://reader.digitalbooks.pro/book/preview/125526/filo-8?1574842521282", - "text": "https://reader.digitalbooks.pro/book/preview/125526/filo-8?1574842521282" - } - ] - }, - { - "text": "Clivaz, Claire, “The Impact of Digital Research: Thinking about the MARK16 Project.” Open Theology 5/1 (2019): 1-12;", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.1515/opth-2019-0001", - "text": "DOI: 10.1515/opth-2019-0001" - } - ] - } - ], - "shortcode": "0844", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "https://gazetteer.dainst.org/app/#!/show/2075626", - "text": "Western Europe" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://gazetteer.dainst.org/app/#!/show/2042602", - "text": "Nordafrika" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://gazetteer.dainst.org/app/#!/show/2070079", - "text": "Ellada" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://gazetteer.dainst.org/app/#!/show/2043735", - "text": "Kleinasien" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://gazetteer.dainst.org/app/#!/show/2359915", - "text": "East Africa" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://gazetteer.dainst.org/app/#!/show/2043054", - "text": "India" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://gazetteer.dainst.org/app/#!/show/2043065", - "text": "Vorderasien" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://gazetteer.dainst.org/app/#!/show/2043225", - "text": "Arabien" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://gazetteer.dainst.org/app/#!/show/2283256", - "text": "Ägäis" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://gazetteer.dainst.org/app/#!/show/2043307", - "text": "Armenien" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://gazetteer.dainst.org/app/#!/show/2070074", - "text": "Southern Europe" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://gazetteer.dainst.org/app/#!/show/2043344", - "text": "Georgien" - } - ], - "startDate": "2018-10-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/I5q9n3HLC1ue", - "text": "Early Christianity" - } - ], - "url": { + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0844-project", + "__type": "Project", + "__createdAt": "1682679735674579000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "SNSF MARK16 (2023). MARK16 Manuscript Data [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0844.", + "teaserText": "MARK16 is a SNSF PRIMA project. It reassesses the diverse endings of the Gospel of Mark through manuscript data, available on its Virtual Research Environment ISSN 2673-9836, https://mark16.sib.swiss.", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0844-dataset-000" + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0844-person-000", + "description": { + "en": "MARK16 is a five-year SNSF PRIMA project (2018-2023) that develops a new research model in digitized biblical sciences, based on a test case found in the New Testament: the last chapter of the Gospel according to Mark. A virtual research environment has been built with a manuscript room as main part (https://mark16.sib.swiss; ISSN 2673-9836). This DaSCH website presents the dataset of the 58 manuscripts of the project. Website of the manuscript room: https://mr-mark16.sib.swiss. The complete list of datasets of the project are available on the CNRS Huma-Num public open repository, Nakala: https://mark16-snsf-prima-project.nakala.fr" + }, + "disciplines": [ + { + "en": "10102 Religious studies, Theology" + } + ], + "endDate": "2023-09-30", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0844-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0844-grant-000" + ], + "keywords": [ + { + "en": "Gospel of Mark" + }, + { + "en": "Mark endings" + }, + { + "en": "New Testament" + }, + { + "en": "biblical sciences" + }, + { + "en": "early Christianity" + }, + { + "en": "encoding" + }, + { + "en": "manuscripts" + }, + { + "en": "religious studies" + }, + { + "en": "textual criticism" + }, + { + "en": "theology" + }, + { + "en": "transcription" + }, + { + "en": "translation" + } + ], + "name": "MARK16", + "publications": [ + { + "text": "Burnet, Régis and Claire Clivaz, “The Freer-Logion (Mark 16:14): GA 032, Jerome, and Erasmus”, TC: A Journal of Biblical Textual Criticism 28 (2023), forthcoming." + }, + { + "text": "Clivaz, Claire, “Marc 15,34 dans le codex de Bèze et le codex Bobbiensis”, dans Jean-Claude Haelewyck et Laurent Pinchard (éd.), Traditions et traductions des textes bibliques. Études en l’hommage de Christian Bernard Amphoux à l’occasion de son 80e anniversaire, Bruxelles: Safran, forthcoming." + }, + { + "text": "Clivaz, Claire, “Lk 22:43-44 and Judeo-Christian Memories”, Revue des Etudes Juives 182/2 (2023), forthcoming." + }, + { + "text": "Clivaz, Claire, “New Testament Textual Criticism and Digital Humanities”, in Sidnie White Crawford and Tommy Wasserman (ed.), The Oxford Handbook of the Textual Criticism of the Bible. Oxford & New York: OUP (forthcoming)." + }, + { + "text": "Clivaz, Claire, “New Testament Textual Criticism from the Margins to the Center: Jesus Desire and Manuscripts in Lk 22:43–44”, in J. Keith Elliott and L. Pinchard (eds.), The Variety and Importance of the Scriptural Witnesses to the so-called ‘Western’ Text. Diversité et importance des témoins scripturaires du texte « occidental » (NTTSD 65), Brill, 2023, p. 56-75 ; forthcoming (SNSF OA grant)." + }, + { + "text": "Clivaz, Claire, Monier, Mina and Batovici, Dan (eds.), Mark 16 in its diverse textual traditions and transmissions, COMSt Bulletin 8/2 (2022), forthcoming." + }, + { + "text": "Clivaz, Claire, “ A Multilingual Turn: Introducing the MARK16 COMSt Bulletin”, in Claire Clivaz, Mina Monier and Dan Batovici (eds.), Mark 16 in its diverse textual traditions and transmissions, COMSt Bulletin 8/2 (2022), forthcoming." + }, + { + "text": "Mina Monier, “ ‘According to the Egyptians’: Mark 16 in GA 72”, in Claire Clivaz, Mina Monier and Dan Batovici (eds.), Mark 16 in its diverse textual traditions and transmissions, COMSt Bulletin 8/2 (2022), forthcoming." + }, + { + "text": "Monier, Mina and Nury, Elisa, “The SNSF MARK16 Project. The first virtual research environment focused on a biblical chapter”, Poster presented at the 2022 DARIAH-CH study day (Mendrisio, 20.10.22),", + "url": [ + { "__type": "URL", "type": "URL", - "url": "https://app.dasch.swiss/project/n47nDVTHR2W9U8yjEIcj2Q", - "text": "Discover Project Data" - }, - "secondaryURL": { + "url": "https://zenodo.org/record/7248296", + "text": "https://zenodo.org/record/7248296" + } + ] + }, + { + "text": "Monier, Mina. 2022. “Mark’s Endings in Context: Paratexts and Codicological Remarks” Religions 13, no. 6: 548,", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.3390/rel13060548", + "text": "DOI: 10.3390/rel13060548" + } + ] + }, + { + "text": "Clivaz, Claire, “Editer le Nouveau Testament à l’heure du numérique”, Bulletin de l’Académie des Sciences humaines et sociales 3 (2021), p. 37-40." + }, + { + "text": "Monier, Mina, “Mark’s Ending in the Digital Age: Paratextual Evidence, New Findings and Transcription Challenges”, Postscripts: The Journal of Sacred Texts, Cultural Histories, and Contemporary Contexts 12 (2021/1), p. 75-98." + }, + { + "text": "Clivaz, Claire, and Garrick V. Allen (eds.), “Ancient Manuscripts and Virtual Research Environments” Special issue, Classics@ 18 (2021)", + "url": [ + { "__type": "URL", "type": "URL", - "url": "https://mark16.sib.swiss/", - "text": "External Project Website" - } + "url": "https://classics-at.chs.harvard.edu/volume/classics18-ancient-manuscripts-and-virtual-research-environments/", + "text": "https://classics-at.chs.harvard.edu/volume/..." + } + ] + }, + { + "text": "Clivaz, Claire. “Looking at Scribal Practices in the Endings of Mark 16”, Henoch 42 (2020/2), ed. P. Pouchelle and J.-S. Rey, p. 373-387." + }, + { + "text": "Clivaz, Claire, “Mk 16 im Codex Bobbiensis. Neue Materialien zur conclusio brevior des Markusevangeliums”, Zeitschrift für Neues Testament 47/24 (2021), p. 59-85." + }, + { + "text": "Clivaz, Claire, Mina Monier and Jonathan Barda, “MARK16 as Virtual Research Environment. Challenges and Opportunities in New Testament Studies”, Classics@ 18 (2021) [n.p.],", + "url": [ + { + "__type": "URL", + "type": "URL", + "url": "https://classics-at.chs.harvard.edu/classics18-clivaz-monier-barda/", + "text": "https://classics-at.chs.harvard.edu/classics18-clivaz-monier-barda/" + } + ] + }, + { + "text": "Clivaz, Claire, and Garrick V. Allen. “Introduction.” In “Ancient Manuscripts and Virtual Research Environments”, Classics@ 18 (2021), [N.p.]", + "url": [ + { + "__type": "URL", + "type": "URL", + "url": "https://classics-at.chs.harvard.edu/classics18-introduction/", + "text": "https://classics-at.chs.harvard.edu/classics18-introduction/" + } + ] + }, + { + "text": "Clivaz, Claire and Garrick Allen, “Conference report: Ancient Manuscripts and Virtual Research Environments. Lausanne 10-11 September 2020”, COMSt Bulletin 6/2, 2020, p. 205-208; 10.25592/uhhfdm.8477,", + "url": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.fdr.uni-hamburg.de/record/8477", + "text": "https://www.fdr.uni-hamburg.de/record/8477" + } + ] + }, + { + "text": "Clivaz, Claire, “Le Nouveau Testament numérique, un Novum Instrumentum omne ?”, Cahiers bibliques. Foi et Vie 123 (2020/5), p. 4-11;", + "url": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.foi-et-vie.fr/archive/article.php?code=4267", + "text": "https://www.foi-et-vie.fr/archive/article.php?code=4267" + } + ] + }, + { + "text": "Clivaz, Claire, “New Testament and Digital Humanities”, Verkündigung und Forschung 65 (2020/2), p. 98-104;", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://www.degruyter.com/document/doi/10.14315/vf-2020-650205/pdf", + "text": "degruyter.com/document/doi/10.14315/vf-2020-650205/pdf" + } + ] + }, + { + "text": "Clivaz, Claire, Mina Monier and Jonathan Barda, MARK16 (virtual research environment), DH+, SIB Swiss Institute of Bioinformatics, Lausanne (CH), 2020, ISSN 2673-9836,", + "url": [ + { + "__type": "URL", + "type": "URL", + "url": "https://mark16.sib.swiss", + "text": "https://mark16.sib.swiss" + } + ] + }, + { + "text": "Clivaz, Claire. “Lire la Bible à l’ère du numérique: entre contraintes et nouveaux horizons.” Lumen Vitae LXXV (2020/2), p. 167-177;", + "url": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.cairn.info/revue-lumen-vitae-2020-2-page-167.htm", + "text": "https://www.cairn.info/revue-lumen-vitae-2020-2-page-167.htm" + } + ] + }, + { + "text": "Clivaz, Claire, “Der Markusschluss : Narratologie und Traditiongeschichte, written by Andreas Seifert”, Novum Testamentum 62/1 (2019), p. 107-108." + }, + { + "text": "Clivaz, Claire. “Returning to Mark 16,8: What’s New?” Ephemerides Theologicae Lovanienses 96/4 (2019), p. 645-659;", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://dx.doi.org/10.2143/ETL.95.4.3286928", + "text": "dx.doi.org/10.2143/ETL.95.4.3286928" + } + ] + }, + { + "text": "Monier, Mina, “GA 304, Theophylact’s Commentary and the Ending of Mark”, Filología Neotestamentaria 52 (2019), p. 94-106;", + "url": [ + { + "__type": "URL", + "type": "URL", + "url": "https://reader.digitalbooks.pro/book/preview/125526/filo-8?1574842521282", + "text": "https://reader.digitalbooks.pro/book/preview/125526/filo-8?1574842521282" + } + ] + }, + { + "text": "Clivaz, Claire, “The Impact of Digital Research: Thinking about the MARK16 Project.” Open Theology 5/1 (2019): 1-12;", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.1515/opth-2019-0001", + "text": "DOI: 10.1515/opth-2019-0001" + } + ] + } + ], + "shortcode": "0844", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Chronontology", + "url": "https://gazetteer.dainst.org/app/#!/show/2075626", + "text": "Western Europe" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://gazetteer.dainst.org/app/#!/show/2042602", + "text": "Nordafrika" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://gazetteer.dainst.org/app/#!/show/2070079", + "text": "Ellada" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://gazetteer.dainst.org/app/#!/show/2043735", + "text": "Kleinasien" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://gazetteer.dainst.org/app/#!/show/2359915", + "text": "East Africa" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://gazetteer.dainst.org/app/#!/show/2043054", + "text": "India" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://gazetteer.dainst.org/app/#!/show/2043065", + "text": "Vorderasien" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://gazetteer.dainst.org/app/#!/show/2043225", + "text": "Arabien" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://gazetteer.dainst.org/app/#!/show/2283256", + "text": "Ägäis" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://gazetteer.dainst.org/app/#!/show/2043307", + "text": "Armenien" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://gazetteer.dainst.org/app/#!/show/2070074", + "text": "Southern Europe" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://gazetteer.dainst.org/app/#!/show/2043344", + "text": "Georgien" + } + ], + "startDate": "2018-10-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/I5q9n3HLC1ue", + "text": "Early Christianity" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/n47nDVTHR2W9U8yjEIcj2Q", + "text": "Discover Project Data" }, - "datasets": [ + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://mark16.sib.swiss/", + "text": "External Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0844-dataset-000", + "__type": "Dataset", + "__createdAt": "1682679739147130000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0844-dataset-000", - "__type": "Dataset", - "__createdAt": "1682679739147130000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "58 datasets of folios with Mark 16 in 58 manuscripts and 11 languages " - } - ], - "accessConditions": "open", - "dateCreated": "2019-03-01", - "howToCite": "SNSF MARK16 (2023). MARK16 Manuscript Data [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0844.", - "languages": [ - { - "en": "Arabic" - }, - { - "en": "Armenian" - }, - { - "en": "Christian Palestinian Aramaic" - }, - { - "en": "Coptic" - }, - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "en": "Ethiopic" - }, - { - "en": "French", - "de": "Französisch", - "fr": "français" - }, - { - "en": "Georgian" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - }, - { - "en": "Gothic" - }, - { - "en": "Greek" - }, - { - "en": "Latin", - "de": "Latein", - "fr": "latin" - }, - { - "en": "Old Church Slavonic" - }, - { - "en": "Syriac" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2023-04-28", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by/4.0/", - "text": "CC BY 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0844-person-000", - "roles": [ - "PI of the project" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0844-person-001", - "roles": [ - "Researcher" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0844-person-002", - "roles": [ - "Data Scientist" - ] - } - ], - "status": "Ongoing", - "title": "MARK16 Manuscript data", - "typeOfData": [ - "Image", - "XML" - ] + "en": "58 datasets of folios with Mark 16 in 58 manuscripts and 11 languages " } - ], - "persons": [ + ], + "accessConditions": "open", + "dateCreated": "2019-03-01", + "howToCite": "SNSF MARK16 (2023). MARK16 Manuscript Data [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0844.", + "languages": [ + { + "en": "Arabic" + }, + { + "en": "Armenian" + }, + { + "en": "Christian Palestinian Aramaic" + }, + { + "en": "Coptic" + }, + { + "en": "English", + "de": "Englisch", + "fr": "anglais" + }, + { + "en": "Ethiopic" + }, + { + "en": "French", + "de": "Französisch", + "fr": "français" + }, + { + "en": "Georgian" + }, + { + "de": "Deutsch", + "en": "German", + "fr": "allemand" + }, + { + "en": "Gothic" + }, + { + "en": "Greek" + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0844-person-001", - "__type": "Person", - "__createdAt": "1682679739993044000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "DH+, SIB, Amphipole 183, Quartier Sorge, Dorigny", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "email": "priscille.marschall@sib.swiss", - "familyNames": [ - "Marschall" - ], - "givenNames": [ - "Priscille" - ], - "jobTitles": [ - "Post-doc" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0844-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-7105-5733", - "text": "ORCID URL: https://orcid.org/0000-0002-7105-5733" - } - ] + "en": "Latin", + "de": "Latein", + "fr": "latin" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0844-person-002", - "__type": "Person", - "__createdAt": "1682679740076272000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "DH+, SIB, Amphipole 183, Quartier Sorge, Dorigny", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "email": "elisa.nury@sib.swiss", - "familyNames": [ - "Nury" - ], - "givenNames": [ - "Elisa" - ], - "jobTitles": [ - "Research Scientist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0844-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-4688-6567", - "text": "ORCID URL: https://orcid.org/0000-0003-4688-6567" - } - ] + "en": "Old Church Slavonic" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0844-person-000", - "__type": "Person", - "__createdAt": "1682679740135031000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "DH+, SIB, Amphipole 183, Dorigny Quarter", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "email": "claire.clivaz@sib.swiss", - "familyNames": [ - "Clivaz" - ], - "givenNames": [ - "Claire" - ], - "jobTitles": [ - "Head of Digital Humanities +" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0844-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0001-8954-0115", - "text": "ORCID URL: https://orcid.org/0000-0001-8954-0115" - } - ] + "en": "Syriac" } - ], - "organizations": [ + ], + "licenses": [ + { + "__type": "License", + "date": "2023-04-28", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by/4.0/", + "text": "CC BY 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0844-person-000", + "roles": [ + "PI of the project" + ] + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0844-organization-001", - "__type": "Organization", - "__createdAt": "1682679740221357000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3", - "postalCode": "3001", - "locality": "Berne", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://snf.ch/", - "text": "https://snf.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0844-person-001", + "roles": [ + "Researcher" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0844-organization-000", - "__type": "Organization", - "__createdAt": "1682679740312531000", - "__createdBy": "dsp-metadata-gui", - "name": "SIB Swiss Institute of Bioinformatics" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0844-person-002", + "roles": [ + "Data Scientist" + ] } - ], - "grants": [ + ], + "status": "Ongoing", + "title": "MARK16 Manuscript data", + "typeOfData": [ + "Image", + "XML" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0844-person-001", + "__type": "Person", + "__createdAt": "1682679739993044000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "DH+, SIB, Amphipole 183, Quartier Sorge, Dorigny", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "email": "priscille.marschall@sib.swiss", + "familyNames": [ + "Marschall" + ], + "givenNames": [ + "Priscille" + ], + "jobTitles": [ + "Post-doc" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0844-organization-000" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-7105-5733", + "text": "ORCID URL: https://orcid.org/0000-0002-7105-5733" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0844-person-002", + "__type": "Person", + "__createdAt": "1682679740076272000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "DH+, SIB, Amphipole 183, Quartier Sorge, Dorigny", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "email": "elisa.nury@sib.swiss", + "familyNames": [ + "Nury" + ], + "givenNames": [ + "Elisa" + ], + "jobTitles": [ + "Research Scientist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0844-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0844-grant-000", - "__type": "Grant", - "__createdAt": "1682679740312567000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0844-organization-001" - ], - "name": "PRIMA", - "number": "179755", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/179755", - "text": "https://data.snf.ch/grants/grant/179755" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4688-6567", + "text": "ORCID URL: https://orcid.org/0000-0003-4688-6567" } - ] -} + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0844-person-000", + "__type": "Person", + "__createdAt": "1682679740135031000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "DH+, SIB, Amphipole 183, Dorigny Quarter", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "email": "claire.clivaz@sib.swiss", + "familyNames": [ + "Clivaz" + ], + "givenNames": [ + "Claire" + ], + "jobTitles": [ + "Head of Digital Humanities +" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0844-organization-000" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0001-8954-0115", + "text": "ORCID URL: https://orcid.org/0000-0001-8954-0115" + } + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0844-organization-001", + "__type": "Organization", + "__createdAt": "1682679740221357000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3", + "postalCode": "3001", + "locality": "Berne", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://snf.ch/", + "text": "https://snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0844-organization-000", + "__type": "Organization", + "__createdAt": "1682679740312531000", + "__createdBy": "dsp-metadata-gui", + "name": "SIB Swiss Institute of Bioinformatics" + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0844-grant-000", + "__type": "Grant", + "__createdAt": "1682679740312567000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0844-organization-001" + ], + "name": "PRIMA", + "number": "179755", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/179755", + "text": "https://data.snf.ch/grants/grant/179755" + } + } + ] +} \ No newline at end of file diff --git a/data/json/mfmps.json b/data/json/mfmps.json index f65aaa00..9f6a7a99 100644 --- a/data/json/mfmps.json +++ b/data/json/mfmps.json @@ -1,370 +1,371 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0116-project", - "__type": "Project", - "__createdAt": "1630601362921053000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Terrier Aliferis, L., Acosta, L., Ciardo, S., Rivoal, M., 2020, MedFrameS [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0116.", - "teaserText": "This project aims to valorise and better comprehend the various elements surrounding monumental statues of church portals, namely pedestals, canopies, and niches.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0116-dataset-000" - ], - "alternativeNames": [ - { - "en": "medframes" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0116-person-000", - "description": { - "en": "This project aims to valorise and better comprehend the various elements surrounding monumental statues of church portals, namely pedestals, canopies, and niches. Their analysis will be integrated within four research axes: cultural transfers, relationships between the central representation and that at the margins, the communication potential of the objects (agency), and their strategic arrangement within the composition (display). Based on a corpus constituted of over a hundred portals located in the Western part of gothic art penetration (Germany, Belgium, England, France, Iberian Peninsula, and Switzerland), the project will aim to determine the conditions within which technological and formal innovations emerged, and to evaluate their local impact and diffusion. Moreover, it will attempt to understand their significance and their function within the visual message developed at the doorstep of sacred buildings.\nThe project will create synergies with research concerned by the communicative function of religious building portals, and will allow for a better understanding of the semiological stakes of sculpted pedestals and microarchitecture canopies." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/550602/", - "text": "History of art" - }, - { - "en": "10404 Visual arts and Art history" - } - ], - "endDate": "2023-11-30", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0116-organization-002" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0116-grant-000" - ], - "keywords": [ - { - "en": "Agency" - }, - { - "en": "Artistic geography" - }, - { - "en": "Canopies" - }, - { - "en": "Cultural transfers" - }, - { - "en": "Devices" - }, - { - "en": "Display" - }, - { - "en": "Frame" - }, - { - "en": "Gothic sculpture" - }, - { - "de": "Niches" - }, - { - "en": "Pedestals" - } - ], - "name": "The Medieval Frame of Monumental Portal Sculpture (Pedestals, Canopies, Niches) : Cultural Transfers and Agency (12th-13th Centuries)", - "shortcode": "0116", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6255148/", - "text": "Europe" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2510769/", - "text": "Spain" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3017382/", - "text": "France" - } - ], - "startDate": "2018-12-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "http://chronontology.dainst.org/period/ROL7rN1qOgMe", - "text": "Gothic (Medieval)" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qhb66xnj2", - "text": "Moyen Âge classique" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.ls-prod-server.dasch.swiss/project/0116", - "text": "Discover Project Data" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0116-project", + "__type": "Project", + "__createdAt": "1630601362921053000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Terrier Aliferis, L., Acosta, L., Ciardo, S., Rivoal, M., 2020, MedFrameS [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0116.", + "teaserText": "This project aims to valorise and better comprehend the various elements surrounding monumental statues of church portals, namely pedestals, canopies, and niches.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0116-dataset-000" + ], + "alternativeNames": [ + { + "en": "medframes" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0116-person-000", + "description": { + "en": "This project aims to valorise and better comprehend the various elements surrounding monumental statues of church portals, namely pedestals, canopies, and niches. Their analysis will be integrated within four research axes: cultural transfers, relationships between the central representation and that at the margins, the communication potential of the objects (agency), and their strategic arrangement within the composition (display). Based on a corpus constituted of over a hundred portals located in the Western part of gothic art penetration (Germany, Belgium, England, France, Iberian Peninsula, and Switzerland), the project will aim to determine the conditions within which technological and formal innovations emerged, and to evaluate their local impact and diffusion. Moreover, it will attempt to understand their significance and their function within the visual message developed at the doorstep of sacred buildings.\nThe project will create synergies with research concerned by the communicative function of religious building portals, and will allow for a better understanding of the semiological stakes of sculpted pedestals and microarchitecture canopies." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/550602/", + "text": "History of art" + }, + { + "en": "10404 Visual arts and Art history" + } + ], + "endDate": "2023-11-30", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0116-organization-002" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0116-grant-000" + ], + "keywords": [ + { + "en": "Agency" + }, + { + "en": "Artistic geography" + }, + { + "en": "Canopies" + }, + { + "en": "Cultural transfers" + }, + { + "en": "Devices" + }, + { + "en": "Display" + }, + { + "en": "Frame" + }, + { + "en": "Gothic sculpture" + }, + { + "de": "Niches" + }, + { + "en": "Pedestals" + } + ], + "name": "The Medieval Frame of Monumental Portal Sculpture (Pedestals, Canopies, Niches) : Cultural Transfers and Agency (12th-13th Centuries)", + "shortcode": "0116", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/6255148/", + "text": "Europe" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2510769/", + "text": "Spain" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3017382/", + "text": "France" + } + ], + "startDate": "2018-12-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Chronontology", + "url": "http://chronontology.dainst.org/period/ROL7rN1qOgMe", + "text": "Gothic (Medieval)" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qhb66xnj2", + "text": "Moyen Âge classique" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.ls-prod-server.dasch.swiss/project/0116", + "text": "Discover Project Data" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0116-dataset-000", + "__type": "Dataset", + "__createdAt": "1630601369626079000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0116-dataset-000", - "__type": "Dataset", - "__createdAt": "1630601369626079000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The database regroups the portals of monuments included in the project’s corpus. It is structured by building, and gives access to the photographs as well as the bibliographic and descriptive data of each edifice. The photographs of each portal are presented from general to particular, going from the embrasures to the statues, and to their surrounding elements (pedestals, canopies, capitals). This database is conceived as a working tool allowing for typological groupings to be made between buildings, as well as to conduct comparative analyses. Consequently, the research results can be verified and the data reused to other ends if desired." - } - ], - "accessConditions": "open", - "dateCreated": "2020-07-17", - "dateModified": "2021-02-10", - "datePublished": "2020-07-17", - "howToCite": "Terrier Aliferis, L., Acosta, L., Ciardo, S., Rivoal, M., 2020, MedFrameS [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0116.", - "languages": [ - { - "en": "French", - "de": "Französisch", - "fr": "français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0/", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0116-person-000", - "roles": [ - "Project leader", - "Data collector", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0116-person-001", - "roles": [ - "Project member", - "Data collector", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0116-person-002", - "roles": [ - "Project member", - "Data collector", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0116-person-003", - "roles": [ - "Data curator" - ] - } - ], - "status": "Ongoing", - "title": "Base de données MedFrameS", - "typeOfData": [ - "Image", - "Text" - ] + "en": "The database regroups the portals of monuments included in the project’s corpus. It is structured by building, and gives access to the photographs as well as the bibliographic and descriptive data of each edifice. The photographs of each portal are presented from general to particular, going from the embrasures to the statues, and to their surrounding elements (pedestals, canopies, capitals). This database is conceived as a working tool allowing for typological groupings to be made between buildings, as well as to conduct comparative analyses. Consequently, the research results can be verified and the data reused to other ends if desired." } - ], - "persons": [ + ], + "accessConditions": "open", + "dateCreated": "2020-07-17", + "dateModified": "2021-02-10", + "datePublished": "2020-07-17", + "howToCite": "Terrier Aliferis, L., Acosta, L., Ciardo, S., Rivoal, M., 2020, MedFrameS [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0116.", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0116-person-003", - "__type": "Person", - "__createdAt": "1630601370209263000", - "__createdBy": "dsp-metadata-gui", - "email": "marion.rivoal@unil.ch", - "familyNames": [ - "Rivoal" - ], - "givenNames": [ - "Marion" - ], - "jobTitles": [ - "Research manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0116-organization-001" - ] - }, + "en": "French", + "de": "Französisch", + "fr": "français" + } + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0116-person-001", - "__type": "Person", - "__createdAt": "1630601370209363000", - "__createdBy": "dsp-metadata-gui", - "email": "laura.acosta@unine.ch", - "familyNames": [ - "Acosta" - ], - "givenNames": [ - "Laura" - ], - "jobTitles": [ - "PhD student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0116-organization-000" - ] - }, + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0116-person-002", - "__type": "Person", - "__createdAt": "1630601370209457000", - "__createdBy": "dsp-metadata-gui", - "email": "sabrina.ciardo@gmail.com", - "familyNames": [ - "Ciardo" - ], - "givenNames": [ - "Sabrina" - ], - "jobTitles": [ - "Scientific collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0116-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0116-person-000", + "roles": [ + "Project leader", + "Data collector", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0116-person-000", - "__type": "Person", - "__createdAt": "1630601370209549000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Université de Neuchâtel - Faculté des lettres et sciences humaines - Institut d’histoire de l’art et de muséologie - Espace Tilo-Frey 1", - "postalCode": "2000", - "locality": "Neuchâtel", - "country": "Switzerland" - }, - "email": "laurence.terrier@gmail.com", - "familyNames": [ - "Terrier Aliferis" - ], - "givenNames": [ - "Laurence" - ], - "jobTitles": [ - "Assistant professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0116-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-0397-4794", - "text": "ORCID URL: https://orcid.org/0000-0003-0397-4794" - } - ] - } - ], - "organizations": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0116-organization-001", - "__type": "Organization", - "__createdAt": "1630601370241650000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Unicentre", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "name": "Université de Lausanne", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unil.ch/", - "text": "https://www.unil.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0116-person-001", + "roles": [ + "Project member", + "Data collector", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0116-organization-002", - "__type": "Organization", - "__createdAt": "1630601370274356000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3 Postfach", - "postalCode": "3001", - "locality": "Berne", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0116-person-002", + "roles": [ + "Project member", + "Data collector", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0116-organization-000", - "__type": "Organization", - "__createdAt": "1630601370329363000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Avenue du 1er-Mars 26", - "postalCode": "2000", - "locality": "Neuchâtel", - "country": "Switzerland" - }, - "name": "Université de Neuchâtel", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.unine.ch/", - "text": "http://www.unine.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0116-person-003", + "roles": [ + "Data curator" + ] } - ], - "grants": [ + ], + "status": "Ongoing", + "title": "Base de données MedFrameS", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0116-person-003", + "__type": "Person", + "__createdAt": "1630601370209263000", + "__createdBy": "dsp-metadata-gui", + "email": "marion.rivoal@unil.ch", + "familyNames": [ + "Rivoal" + ], + "givenNames": [ + "Marion" + ], + "jobTitles": [ + "Research manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0116-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0116-person-001", + "__type": "Person", + "__createdAt": "1630601370209363000", + "__createdBy": "dsp-metadata-gui", + "email": "laura.acosta@unine.ch", + "familyNames": [ + "Acosta" + ], + "givenNames": [ + "Laura" + ], + "jobTitles": [ + "PhD student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0116-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0116-person-002", + "__type": "Person", + "__createdAt": "1630601370209457000", + "__createdBy": "dsp-metadata-gui", + "email": "sabrina.ciardo@gmail.com", + "familyNames": [ + "Ciardo" + ], + "givenNames": [ + "Sabrina" + ], + "jobTitles": [ + "Scientific collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0116-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0116-person-000", + "__type": "Person", + "__createdAt": "1630601370209549000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Université de Neuchâtel - Faculté des lettres et sciences humaines - Institut d’histoire de l’art et de muséologie - Espace Tilo-Frey 1", + "postalCode": "2000", + "locality": "Neuchâtel", + "country": "Switzerland" + }, + "email": "laurence.terrier@gmail.com", + "familyNames": [ + "Terrier Aliferis" + ], + "givenNames": [ + "Laurence" + ], + "jobTitles": [ + "Assistant professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0116-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0116-grant-000", - "__type": "Grant", - "__createdAt": "1630601370362185000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0116-organization-002" - ], - "name": "PRIMA", - "number": "179787", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/179787", - "text": "https://data.snf.ch/grants/grant/179787" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-0397-4794", + "text": "ORCID URL: https://orcid.org/0000-0003-0397-4794" } - ] -} + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0116-organization-001", + "__type": "Organization", + "__createdAt": "1630601370241650000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Unicentre", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "name": "Université de Lausanne", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unil.ch/", + "text": "https://www.unil.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0116-organization-002", + "__type": "Organization", + "__createdAt": "1630601370274356000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3 Postfach", + "postalCode": "3001", + "locality": "Berne", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0116-organization-000", + "__type": "Organization", + "__createdAt": "1630601370329363000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Avenue du 1er-Mars 26", + "postalCode": "2000", + "locality": "Neuchâtel", + "country": "Switzerland" + }, + "name": "Université de Neuchâtel", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.unine.ch/", + "text": "http://www.unine.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0116-grant-000", + "__type": "Grant", + "__createdAt": "1630601370362185000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0116-organization-002" + ], + "name": "PRIMA", + "number": "179787", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/179787", + "text": "https://data.snf.ch/grants/grant/179787" + } + } + ] +} \ No newline at end of file diff --git a/data/json/mls.json b/data/json/mls.json index 9cfe8753..30bb5358 100644 --- a/data/json/mls.json +++ b/data/json/mls.json @@ -1,495 +1,496 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0807-project", - "__type": "Project", - "__createdAt": "1652110085345616000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "AutorIn: Artikelname. MLS, Datum der Abfrage.", - "teaserText": "Das MLS stellt fundierte Information über die AkteurInnen, Institutionen, Orte, Objekte und Phänomene zur Verfügung, die für die Musikgeschichte Schweiz über alle Sparten und Stile relevant sind.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0807-dataset-000" - ], - "alternativeNames": [ - { - "en": "Dictionary of Music in Switzerland" - }, - { - "fr": "Dictionnaire de la musique en Suisse" - }, - { - "de": "Dizionario della musica in Svizzera" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0807-person-001", - "description": { - "de": "Das Musiklexikon der Schweiz bietet Information zur Musikgeschichte der Schweiz über alle Sparten und Musikstile hinweg: von Kirchengesang bis Jodel, vom Luzern- bis zum Gurten-Festival, vom Montreux-Jazz- bis zum Gurten-Festival, von den Glockengiessern bis zur Clubkultur, vom Alphorn bis zum Hang, von der Tonhalle bis zum KKL. Auf der Grundlage der bereits vorhandenen Lexikographie über die Schweiz, die digitalisiert oder über Verlinkungen bereitgestellt wird, erarbeitet das MLS in Kooperation mit den musikalischen Institutionen der Schweiz und unter Einbezug zahlreicher ExpertInnen aus dem In- und Ausland neue Artikel zu bekannten Personen, Orten und Objekten und bereichert das Wissen laufend mit unbekannten Themen. \nDas MLS ist multimedial, es kombiniert Text, Bild und audiovisuelle Medien und bietet dank der Nutzung von Normdaten den Zugang zu allen Ressourcen im World Wide Web, die mit den behandelten Themen und Personen zur Verfügung stehen." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/5899/html", - "text": "Other specialities pedagogical (specify)" - }, - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/620306/html", - "text": "Music, musicology " - }, - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/6203/html", - "text": "Fine arts theory, analysis and criticism" - }, - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/620310/html", - "text": "Theatre" - }, - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/51/html", - "text": "Anthropology " - }, - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/55/html", - "text": "History" - }, - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/58/html", - "text": "Pedagogy" - }, - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/5599/html", - "text": "Other historical specialities (specify)" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0807-organization-000", - "http://ns.dasch.swiss/repository#dsp-0807-organization-001", - "http://ns.dasch.swiss/repository#dsp-0807-organization-002", - "http://ns.dasch.swiss/repository#dsp-0807-organization-003" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0807-grant-000" - ], - "keywords": [ - { - "de": "Ethnologie" - }, - { - "de": "Geschichte" - }, - { - "de": "Musik" - }, - { - "de": "Musikwissenschaft" - }, - { - "de": "Prosopographie" - }, - { - "de": "Pädagogik" - }, - { - "de": "Schweiz" - }, - { - "de": "Vereinsgeschichte" - }, - { - "de": "kulturelle Teilhabe" - } - ], - "name": "Musiklexikon der Schweiz", - "shortcode": "0807", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/switzerland.html", - "text": "Switzerland" - } - ], - "startDate": "2013-01-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qhb66nbgb", - "text": "Völkerwanderungszeit" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qhb664bgz", - "text": "Frühes Mittelalter" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qhb664xk9", - "text": "Römische" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qhb66388g", - "text": "Spätmittelalter" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qhb66rvm3", - "text": "Zeitgeschichte" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qhb66h8m4", - "text": "Hochmittelalter" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qhb66sn2z", - "text": "Frühe Römische" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qhb662qrr", - "text": "Mittelalter" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qhb669pgp", - "text": "Neuzeit" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qhb66b6b4", - "text": "Späte Römische" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/0807", - "text": "Discover Project Data" - }, - "secondaryURL": { - "__type": "URL", - "type": "URL", - "url": "https://mls.0807.dasch.swiss/home", - "text": "Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0807-project", + "__type": "Project", + "__createdAt": "1652110085345616000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "AutorIn: Artikelname. MLS, Datum der Abfrage.", + "teaserText": "Das MLS stellt fundierte Information über die AkteurInnen, Institutionen, Orte, Objekte und Phänomene zur Verfügung, die für die Musikgeschichte Schweiz über alle Sparten und Stile relevant sind.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0807-dataset-000" + ], + "alternativeNames": [ + { + "en": "Dictionary of Music in Switzerland" + }, + { + "fr": "Dictionnaire de la musique en Suisse" + }, + { + "de": "Dizionario della musica in Svizzera" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0807-person-001", + "description": { + "de": "Das Musiklexikon der Schweiz bietet Information zur Musikgeschichte der Schweiz über alle Sparten und Musikstile hinweg: von Kirchengesang bis Jodel, vom Luzern- bis zum Gurten-Festival, vom Montreux-Jazz- bis zum Gurten-Festival, von den Glockengiessern bis zur Clubkultur, vom Alphorn bis zum Hang, von der Tonhalle bis zum KKL. Auf der Grundlage der bereits vorhandenen Lexikographie über die Schweiz, die digitalisiert oder über Verlinkungen bereitgestellt wird, erarbeitet das MLS in Kooperation mit den musikalischen Institutionen der Schweiz und unter Einbezug zahlreicher ExpertInnen aus dem In- und Ausland neue Artikel zu bekannten Personen, Orten und Objekten und bereichert das Wissen laufend mit unbekannten Themen. \nDas MLS ist multimedial, es kombiniert Text, Bild und audiovisuelle Medien und bietet dank der Nutzung von Normdaten den Zugang zu allen Ressourcen im World Wide Web, die mit den behandelten Themen und Personen zur Verfügung stehen." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/5899/html", + "text": "Other specialities pedagogical (specify)" + }, + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/620306/html", + "text": "Music, musicology " + }, + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/6203/html", + "text": "Fine arts theory, analysis and criticism" + }, + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/620310/html", + "text": "Theatre" + }, + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/51/html", + "text": "Anthropology " + }, + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/55/html", + "text": "History" + }, + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/58/html", + "text": "Pedagogy" + }, + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/5599/html", + "text": "Other historical specialities (specify)" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0807-organization-000", + "http://ns.dasch.swiss/repository#dsp-0807-organization-001", + "http://ns.dasch.swiss/repository#dsp-0807-organization-002", + "http://ns.dasch.swiss/repository#dsp-0807-organization-003" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0807-grant-000" + ], + "keywords": [ + { + "de": "Ethnologie" + }, + { + "de": "Geschichte" + }, + { + "de": "Musik" + }, + { + "de": "Musikwissenschaft" + }, + { + "de": "Prosopographie" + }, + { + "de": "Pädagogik" + }, + { + "de": "Schweiz" + }, + { + "de": "Vereinsgeschichte" + }, + { + "de": "kulturelle Teilhabe" + } + ], + "name": "Musiklexikon der Schweiz", + "shortcode": "0807", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/switzerland.html", + "text": "Switzerland" + } + ], + "startDate": "2013-01-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qhb66nbgb", + "text": "Völkerwanderungszeit" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qhb664bgz", + "text": "Frühes Mittelalter" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qhb664xk9", + "text": "Römische" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qhb66388g", + "text": "Spätmittelalter" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qhb66rvm3", + "text": "Zeitgeschichte" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qhb66h8m4", + "text": "Hochmittelalter" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qhb66sn2z", + "text": "Frühe Römische" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qhb662qrr", + "text": "Mittelalter" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qhb669pgp", + "text": "Neuzeit" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qhb66b6b4", + "text": "Späte Römische" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/0807", + "text": "Discover Project Data" + }, + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://mls.0807.dasch.swiss/home", + "text": "Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0807-dataset-000", + "__type": "Dataset", + "__createdAt": "1652110098666692000", + "__createdBy": "dsp-metadata-gui", + "accessConditions": "open", + "dateCreated": "2016-01-01", + "datePublished": "2020-02-13", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0807-dataset-000", - "__type": "Dataset", - "__createdAt": "1652110098666692000", - "__createdBy": "dsp-metadata-gui", - "accessConditions": "open", - "dateCreated": "2016-01-01", - "datePublished": "2020-02-13", - "abstracts": [ - { - "de": "Das Musiklexikon der Schweiz bietet Information zur Musikgeschichte der Schweiz über alle Sparten und Musikstile hinweg: von Kirchengesang bis Jodel, vom Luzern- bis zum Gurten-Festival, vom Montreux-Jazz- bis zum Gurten-Festival, von den Glockengiessern bis zur Clubkultur, vom Alphorn bis zum Hang, von der Tonhalle bis zum KKL. Auf der Grundlage der bereits vorhandenen Lexikographie über die Schweiz, die digitalisiert oder über Verlinkungen bereitgestellt wird, erarbeitet das MLS in Kooperation mit den musikalischen Institutionen der Schweiz und unter Einbezug zahlreicher ExpertInnen aus dem In- und Ausland neue Artikel zu bekannten Personen, Orten und Objekten und bereichert das Wissen laufend mit unbekannten Themen. \nDas MLS ist multimedial, es kombiniert Text, Bild und audiovisuelle Medien und bietet dank der Nutzung von Normdaten den Zugang zu allen Ressourcen im World Wide Web, die mit den behandelten Themen und Personen zur Verfügung stehen." - } - ], - "howToCite": "AutorIn: Artikelname. MLS, Datum der Abfrage.", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "en": "French", - "de": "Französisch", - "fr": "français" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - }, - { - "en": "Italian", - "de": "Italienisch", - "fr": "italien" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2022-05-09", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", - "text": "CC BY-NC-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0807-person-000", - "roles": [ - "Coordination, Contact" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0807-person-001", - "roles": [ - "Responsible for the Dataset, Contact with DaSCH" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0807-person-002", - "roles": [ - "Coordination, Lead" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0807-organization-000", - "roles": [ - "Project Leader" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0807-organization-001", - "roles": [ - "Maintainer" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0807-organization-002", - "roles": [ - "Maintainer, Sponsor" - ] - } - ], - "status": "Ongoing", - "title": "Musiklexikon der Schweiz", - "typeOfData": [ - "Audio", - "Image", - "Video", - "Text", - "XML" - ] + "de": "Das Musiklexikon der Schweiz bietet Information zur Musikgeschichte der Schweiz über alle Sparten und Musikstile hinweg: von Kirchengesang bis Jodel, vom Luzern- bis zum Gurten-Festival, vom Montreux-Jazz- bis zum Gurten-Festival, von den Glockengiessern bis zur Clubkultur, vom Alphorn bis zum Hang, von der Tonhalle bis zum KKL. Auf der Grundlage der bereits vorhandenen Lexikographie über die Schweiz, die digitalisiert oder über Verlinkungen bereitgestellt wird, erarbeitet das MLS in Kooperation mit den musikalischen Institutionen der Schweiz und unter Einbezug zahlreicher ExpertInnen aus dem In- und Ausland neue Artikel zu bekannten Personen, Orten und Objekten und bereichert das Wissen laufend mit unbekannten Themen. \nDas MLS ist multimedial, es kombiniert Text, Bild und audiovisuelle Medien und bietet dank der Nutzung von Normdaten den Zugang zu allen Ressourcen im World Wide Web, die mit den behandelten Themen und Personen zur Verfügung stehen." } - ], - "persons": [ + ], + "howToCite": "AutorIn: Artikelname. MLS, Datum der Abfrage.", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0807-person-000", - "__type": "Person", - "__createdAt": "1652110098765174000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Mittelstr. 43", - "postalCode": "3012", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "cristina.urchueguia@unibe.ch", - "familyNames": [ - "Urchueguía" - ], - "givenNames": [ - "Cristina" - ], - "jobTitles": [ - "Professor for Musicology University of Bern / President of SMG" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0807-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-5276-9474", - "text": "ORCID URL: https://orcid.org/0000-0002-5276-9474" - } - ] + "en": "English", + "de": "Englisch", + "fr": "anglais" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0807-person-002", - "__type": "Person", - "__createdAt": "1652110099009862000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Hubacherweg 15", - "postalCode": "3097", - "locality": "Liebefeld", - "country": "Switzerland" - }, - "email": "minder@liebefeld.ch", - "familyNames": [ - "Minder-Jeanneret" - ], - "givenNames": [ - "Irène" - ], - "jobTitles": [ - "President Kuratorium MLS (SAGW)" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0807-organization-000" - ] + "en": "French", + "de": "Französisch", + "fr": "français" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0807-person-001", - "__type": "Person", - "__createdAt": "1652110099044591000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Mittelstr. 43", - "postalCode": "3012", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "moritz.kelber@unibe.ch", - "familyNames": [ - "Kelber" - ], - "givenNames": [ - "Moritz" - ], - "jobTitles": [ - "Research assistant at the University of Bern" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0807-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-1201-6048", - "text": "ORCID URL: https://orcid.org/0000-0002-1201-6048" - } - ] + "de": "Deutsch", + "en": "German", + "fr": "allemand" + }, + { + "en": "Italian", + "de": "Italienisch", + "fr": "italien" } - ], - "organizations": [ + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0807-organization-004", - "__type": "Organization", - "__createdAt": "1652110099082418000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Mittelstrasse 43", - "postalCode": "3012", - "locality": "Bern", - "country": "Switzerland" - }, - "name": "Universität Bern Institut für Musikwissenschaft" + "__type": "License", + "date": "2022-05-09", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", + "text": "CC BY-NC-SA 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0807-person-000", + "roles": [ + "Coordination, Contact" + ] + }, + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0807-person-001", + "roles": [ + "Responsible for the Dataset, Contact with DaSCH" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0807-organization-001", - "__type": "Organization", - "__createdAt": "1652110099118664000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Mittelstr. 43", - "postalCode": "3012", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "info@sma-ssm.ch", - "name": "Schweizerische Musikforschende Gesellschaft", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.smg-ssm.ch/smg-ssm/", - "text": "https://www.smg-ssm.ch/smg-ssm/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0807-person-002", + "roles": [ + "Coordination, Lead" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0807-organization-003", - "__type": "Organization", - "__createdAt": "1652110099168417000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Gönhardweg 32", - "postalCode": "5000", - "locality": "Aarau", - "country": "Switzerland" - }, - "name": "Schweizer Musikrat" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0807-organization-000", + "roles": [ + "Project Leader" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0807-organization-002", - "__type": "Organization", - "__createdAt": "1652110099252625000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Laupenstrasse 7", - "postalCode": "3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "sagw@sagw.ch", - "name": "SAGW Schweizerische Akademie der Geistes- und Sozialwissenschaften" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0807-organization-001", + "roles": [ + "Maintainer" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0807-organization-000", - "__type": "Organization", - "__createdAt": "1652110099286727000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Hubacherweg 15", - "postalCode": "3097", - "locality": "Liebefeld", - "country": "Switzerland" - }, - "email": "minder@liebefeld.ch", - "name": "Kuratorium Musiklexikon der Schweiz (SAGW)" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0807-organization-002", + "roles": [ + "Maintainer, Sponsor" + ] } - ], - "grants": [ + ], + "status": "Ongoing", + "title": "Musiklexikon der Schweiz", + "typeOfData": [ + "Audio", + "Image", + "Video", + "Text", + "XML" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0807-person-000", + "__type": "Person", + "__createdAt": "1652110098765174000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Mittelstr. 43", + "postalCode": "3012", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "cristina.urchueguia@unibe.ch", + "familyNames": [ + "Urchueguía" + ], + "givenNames": [ + "Cristina" + ], + "jobTitles": [ + "Professor for Musicology University of Bern / President of SMG" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0807-organization-000" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-5276-9474", + "text": "ORCID URL: https://orcid.org/0000-0002-5276-9474" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0807-person-002", + "__type": "Person", + "__createdAt": "1652110099009862000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Hubacherweg 15", + "postalCode": "3097", + "locality": "Liebefeld", + "country": "Switzerland" + }, + "email": "minder@liebefeld.ch", + "familyNames": [ + "Minder-Jeanneret" + ], + "givenNames": [ + "Irène" + ], + "jobTitles": [ + "President Kuratorium MLS (SAGW)" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0807-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0807-person-001", + "__type": "Person", + "__createdAt": "1652110099044591000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Mittelstr. 43", + "postalCode": "3012", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "moritz.kelber@unibe.ch", + "familyNames": [ + "Kelber" + ], + "givenNames": [ + "Moritz" + ], + "jobTitles": [ + "Research assistant at the University of Bern" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0807-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0807-grant-000", - "__type": "Grant", - "__createdAt": "1652110099320913000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0807-organization-002" - ], - "name": "SAGW Förderung der Digitalisierung" + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-1201-6048", + "text": "ORCID URL: https://orcid.org/0000-0002-1201-6048" } - ] -} + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0807-organization-004", + "__type": "Organization", + "__createdAt": "1652110099082418000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Mittelstrasse 43", + "postalCode": "3012", + "locality": "Bern", + "country": "Switzerland" + }, + "name": "Universität Bern Institut für Musikwissenschaft" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0807-organization-001", + "__type": "Organization", + "__createdAt": "1652110099118664000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Mittelstr. 43", + "postalCode": "3012", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "info@sma-ssm.ch", + "name": "Schweizerische Musikforschende Gesellschaft", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.smg-ssm.ch/smg-ssm/", + "text": "https://www.smg-ssm.ch/smg-ssm/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0807-organization-003", + "__type": "Organization", + "__createdAt": "1652110099168417000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Gönhardweg 32", + "postalCode": "5000", + "locality": "Aarau", + "country": "Switzerland" + }, + "name": "Schweizer Musikrat" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0807-organization-002", + "__type": "Organization", + "__createdAt": "1652110099252625000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Laupenstrasse 7", + "postalCode": "3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "sagw@sagw.ch", + "name": "SAGW Schweizerische Akademie der Geistes- und Sozialwissenschaften" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0807-organization-000", + "__type": "Organization", + "__createdAt": "1652110099286727000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Hubacherweg 15", + "postalCode": "3097", + "locality": "Liebefeld", + "country": "Switzerland" + }, + "email": "minder@liebefeld.ch", + "name": "Kuratorium Musiklexikon der Schweiz (SAGW)" + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0807-grant-000", + "__type": "Grant", + "__createdAt": "1652110099320913000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0807-organization-002" + ], + "name": "SAGW Förderung der Digitalisierung" + } + ] +} \ No newline at end of file diff --git a/data/json/nietzsche.json b/data/json/nietzsche.json index 6ed9b482..06c2beaf 100644 --- a/data/json/nietzsche.json +++ b/data/json/nietzsche.json @@ -1,414 +1,415 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0836-project", - "__type": "Project", - "__createdAt": "1637623985040625000", - "__createdBy": "dsp-metadata-gui", - "teaserText": "The digital edition project \"Der späte Nietzsche\" (The Late Nietzsche) publishes Friedrich Nietzsche's late estate digitally congruent to the manuscripts.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0836-dataset-000" - ], - "alternativeNames": [ - { - "de": "Der späte Nietzsche" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0836-person-000", - "description": { - "en": "The digital edition project “Der späte Nietzsche” (The Late Nietzsche) publishes Friedrich Nietzsche’s late estate digitally congruent to the manuscripts keeping the notation and draft character of Nietzsche’s later writings with its corrections, deletions and revisions, which are mapped together with the topological information and the context in a highly detailed granularity reaching down to the level of lines, single words and their changes through corrections. Manuscript descriptions, cross references and editoral comments are also provided for each of published manuscript pages / transcriptions." - }, - "disciplines": [ - { - "en": "10101 Philosophy" - } - ], - "endDate": "2021-12-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0836-organization-000" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0836-grant-000" - ], - "keywords": [ - { - "de": "Digitale Edition" - }, - { - "de": "Friedrich" - }, - { - "de": "Manuskriptedition" - }, - { - "de": "Nachlass" - }, - { - "de": "Nietzsche" - }, - { - "de": "Philosophie" - }, - { - "de": "Schreibprozess" - }, - { - "de": "Textgenese" - } - ], - "name": "Der späte Nietzsche. Digitale Manuskriptedition", - "shortcode": "0836", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/DE/germany.html", - "text": "Germany" - } - ], - "startDate": "2017-04-01", - "temporalCoverage": [ - { - "de": "1885-1889", - "en": "1885-1889", - "fr": "1885-1889" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://nietzsche.philhist.unibas.ch", - "text": "External Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0836-project", + "__type": "Project", + "__createdAt": "1637623985040625000", + "__createdBy": "dsp-metadata-gui", + "teaserText": "The digital edition project \"Der späte Nietzsche\" (The Late Nietzsche) publishes Friedrich Nietzsche's late estate digitally congruent to the manuscripts.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0836-dataset-000" + ], + "alternativeNames": [ + { + "de": "Der späte Nietzsche" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0836-person-000", + "description": { + "en": "The digital edition project “Der späte Nietzsche” (The Late Nietzsche) publishes Friedrich Nietzsche’s late estate digitally congruent to the manuscripts keeping the notation and draft character of Nietzsche’s later writings with its corrections, deletions and revisions, which are mapped together with the topological information and the context in a highly detailed granularity reaching down to the level of lines, single words and their changes through corrections. Manuscript descriptions, cross references and editoral comments are also provided for each of published manuscript pages / transcriptions." + }, + "disciplines": [ + { + "en": "10101 Philosophy" + } + ], + "endDate": "2021-12-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0836-organization-000" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0836-grant-000" + ], + "keywords": [ + { + "de": "Digitale Edition" + }, + { + "de": "Friedrich" + }, + { + "de": "Manuskriptedition" + }, + { + "de": "Nachlass" + }, + { + "de": "Nietzsche" + }, + { + "de": "Philosophie" + }, + { + "de": "Schreibprozess" + }, + { + "de": "Textgenese" + } + ], + "name": "Der späte Nietzsche. Digitale Manuskriptedition", + "shortcode": "0836", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/DE/germany.html", + "text": "Germany" + } + ], + "startDate": "2017-04-01", + "temporalCoverage": [ + { + "de": "1885-1889", + "en": "1885-1889", + "fr": "1885-1889" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://nietzsche.philhist.unibas.ch", + "text": "External Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0836-dataset-000", + "__type": "Dataset", + "__createdAt": "1637623985823569000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0836-dataset-000", - "__type": "Dataset", - "__createdAt": "1637623985823569000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The data set represents the notation and draft character of Nietzsche's later manuscripts with corrections, deletions and revisions, which are mapped together with the topological information and the context in a highly detailed granularity reaching down to the level of lines, single words and their changes through corrections. Manuscript descriptions, cross-references and comments are integrated into the published manuscript pages / transcriptions." - } - ], - "accessConditions": "open", - "dateCreated": "2021-12-31", - "datePublished": "2021-12-31", - "languages": [ - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-11-23", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc-nd/4.0/deed.de", - "text": "CC BY-NC-ND 4.0" - } - }, - { - "__type": "License", - "date": "2021-11-23", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by/4.0/deed.de", - "text": "CC BY 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-000", - "roles": [ - "Project lead" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-001", - "roles": [ - "Transcription and philological comments" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-002", - "roles": [ - "Transcription and philological comments" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-003", - "roles": [ - "Transcription and philological comments" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-004", - "roles": [ - "Transcription and philological comments" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-005", - "roles": [ - "Transcription and philological comments" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-006", - "roles": [ - "Digital edition" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-007", - "roles": [ - "Digital edition" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-008", - "roles": [ - "Digital edition" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-009", - "roles": [ - "Digital edition" - ] - } - ], - "status": "Ongoing", - "title": "Der späte Nietzsche. Digitale Manuskriptedition", - "typeOfData": [ - "Image", - "Text" - ] + "en": "The data set represents the notation and draft character of Nietzsche's later manuscripts with corrections, deletions and revisions, which are mapped together with the topological information and the context in a highly detailed granularity reaching down to the level of lines, single words and their changes through corrections. Manuscript descriptions, cross-references and comments are integrated into the published manuscript pages / transcriptions." } - ], - "persons": [ + ], + "accessConditions": "open", + "dateCreated": "2021-12-31", + "datePublished": "2021-12-31", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-001", - "__type": "Person", - "__createdAt": "1637623986063850000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Riebe" - ], - "givenNames": [ - "Thomas" - ] - }, + "de": "Deutsch", + "en": "German", + "fr": "allemand" + } + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-002", - "__type": "Person", - "__createdAt": "1637623986063910000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Röllin" - ], - "givenNames": [ - "Beat" - ] + "__type": "License", + "date": "2021-11-23", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc-nd/4.0/deed.de", + "text": "CC BY-NC-ND 4.0" + } }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-003", - "__type": "Person", - "__createdAt": "1637623986063967000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Stockmar" - ], - "givenNames": [ - "René" - ] + "__type": "License", + "date": "2021-11-23", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by/4.0/deed.de", + "text": "CC BY 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-000", + "roles": [ + "Project lead" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-004", - "__type": "Person", - "__createdAt": "1637623986064022000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Haase" - ], - "givenNames": [ - "Marie-Luise" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-001", + "roles": [ + "Transcription and philological comments" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-005", - "__type": "Person", - "__createdAt": "1637623986064076000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Kohlenbach" - ], - "givenNames": [ - "Michael" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-002", + "roles": [ + "Transcription and philological comments" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-006", - "__type": "Person", - "__createdAt": "1637623986064132000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Steinbach" - ], - "givenNames": [ - "Dominique" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-003", + "roles": [ + "Transcription and philological comments" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-007", - "__type": "Person", - "__createdAt": "1637623986064185000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Steiner" - ], - "givenNames": [ - "Christian" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-004", + "roles": [ + "Transcription and philological comments" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-008", - "__type": "Person", - "__createdAt": "1637623986064237000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Erhardt" - ], - "givenNames": [ - "Eric" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-005", + "roles": [ + "Transcription and philological comments" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-009", - "__type": "Person", - "__createdAt": "1637623986064289000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Schmidt" - ], - "givenNames": [ - "Myriam" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-006", + "roles": [ + "Digital edition" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-000", - "__type": "Person", - "__createdAt": "1637623986064347000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Nadelberg 4", - "postalCode": "4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "hubert.thuering@unibas.ch", - "familyNames": [ - "Thüring" - ], - "givenNames": [ - "Hubert" - ], - "jobTitles": [ - "Prof. Dr." - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0836-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://germanistik.philhist.unibas.ch/de/personen/hubert-thuering/", - "text": "https://germanistik.philhist.unibas.ch/de/personen/hubert-thuering/" - } - ] - } - ], - "organizations": [ + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-007", + "roles": [ + "Digital edition" + ] + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0836-organization-001", - "__type": "Organization", - "__createdAt": "1637623986133751000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Nadelberg 4", - "postalCode": "4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "germa-dslw@unibas.ch", - "name": "Universität Basel, Deutsches Seminar", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://germanistik.philhist.unibas.ch", - "text": "https://germanistik.philhist.unibas.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-008", + "roles": [ + "Digital edition" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0836-organization-000", - "__type": "Organization", - "__createdAt": "1637623986187400000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3", - "postalCode": "3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.snf.ch/", - "text": "https://www.snf.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0836-person-009", + "roles": [ + "Digital edition" + ] } - ], - "grants": [ + ], + "status": "Ongoing", + "title": "Der späte Nietzsche. Digitale Manuskriptedition", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-001", + "__type": "Person", + "__createdAt": "1637623986063850000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Riebe" + ], + "givenNames": [ + "Thomas" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-002", + "__type": "Person", + "__createdAt": "1637623986063910000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Röllin" + ], + "givenNames": [ + "Beat" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-003", + "__type": "Person", + "__createdAt": "1637623986063967000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Stockmar" + ], + "givenNames": [ + "René" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-004", + "__type": "Person", + "__createdAt": "1637623986064022000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Haase" + ], + "givenNames": [ + "Marie-Luise" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-005", + "__type": "Person", + "__createdAt": "1637623986064076000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Kohlenbach" + ], + "givenNames": [ + "Michael" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-006", + "__type": "Person", + "__createdAt": "1637623986064132000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Steinbach" + ], + "givenNames": [ + "Dominique" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-007", + "__type": "Person", + "__createdAt": "1637623986064185000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Steiner" + ], + "givenNames": [ + "Christian" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-008", + "__type": "Person", + "__createdAt": "1637623986064237000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Erhardt" + ], + "givenNames": [ + "Eric" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-009", + "__type": "Person", + "__createdAt": "1637623986064289000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Schmidt" + ], + "givenNames": [ + "Myriam" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0836-person-000", + "__type": "Person", + "__createdAt": "1637623986064347000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Nadelberg 4", + "postalCode": "4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "hubert.thuering@unibas.ch", + "familyNames": [ + "Thüring" + ], + "givenNames": [ + "Hubert" + ], + "jobTitles": [ + "Prof. Dr." + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0836-organization-001" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0836-grant-000", - "__type": "Grant", - "__createdAt": "1637623986283043000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0836-organization-000" - ], - "name": "Editions", - "number": "198240", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/198240", - "text": "https://data.snf.ch/grants/grant/198240" - } + "__type": "URL", + "type": "URL", + "url": "https://germanistik.philhist.unibas.ch/de/personen/hubert-thuering/", + "text": "https://germanistik.philhist.unibas.ch/de/personen/hubert-thuering/" } - ] -} + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0836-organization-001", + "__type": "Organization", + "__createdAt": "1637623986133751000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Nadelberg 4", + "postalCode": "4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "germa-dslw@unibas.ch", + "name": "Universität Basel, Deutsches Seminar", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://germanistik.philhist.unibas.ch", + "text": "https://germanistik.philhist.unibas.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0836-organization-000", + "__type": "Organization", + "__createdAt": "1637623986187400000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3", + "postalCode": "3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.snf.ch/", + "text": "https://www.snf.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0836-grant-000", + "__type": "Grant", + "__createdAt": "1637623986283043000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0836-organization-000" + ], + "name": "Editions", + "number": "198240", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/198240", + "text": "https://data.snf.ch/grants/grant/198240" + } + } + ] +} \ No newline at end of file diff --git a/data/json/olympic.json b/data/json/olympic.json index d01cb445..0b441da5 100644 --- a/data/json/olympic.json +++ b/data/json/olympic.json @@ -1,385 +1,386 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0114-project", - "__type": "Project", - "__createdAt": "1630601387381347000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Clastres, P., Carpentier, F., Klima, H., Défayes, F., Metzger, C., Rivoal, M., 2020, Les membres du Comité international olympique (CIO) de 1894 à 1972 [database]. DaSCH https://ark.dasch.swiss/ark:/72163/1/0114.", - "teaserText": "Ce projet reconstituera les trajectoires familiales, professionnelles, sociales et politiques des 213 membres du CIO cooptés avant 1972.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0114-dataset-000" - ], - "alternativeNames": [ - { - "en": "elites-cio" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0114-person-000", - "description": { - "fr": "Le CIO est la première organisation sportive internationale installée en Suisse, et la plus importante puisqu’elle prétend réguler le système sportif international. Son fondateur, le baron français Pierre de Coubertin (1863-1937), l’a dotée d’un système de valeurs qui emprunte à la culture chevaleresque des élites européennes traditionnelles, à l’humanisme des Lumières, au pacifisme libéral transatlantique du second XIXe siècle, et au conservatisme hygiéniste et social. Percuté par les diplomaties d’Etat qui ont intégré le sport parmi les outils de leur soft power, le CIO a dû affronter les grands enjeux du XXe siècle. Ce projet prévoit de dépasser l’approche institutionnelle classique en étudiant les trajectoires de ses membres qui, pour la plupart, restent méconnus.\n\nDans un premier temps, ce projet reconstituera les trajectoires familiales, professionnelles, sociales et politiques des 213 membres du CIO cooptés avant 1972. Dans un deuxième temps, il décryptera les mécanismes de cooptation ainsi que les modalités de prise de décision propres au CIO. Enfin, il s’agira d’évaluer « le plus petit dénominateur social, culturel et politique » commun à tous ces leaders qui définit leur vision du monde, et de questionner les concepts d’apolitisme (du sport) et de neutralité diplomatique (du CIO).\nFondé sur une approche prosopographique (croisement et mise en série de micro-biographies), le projet se situe au point d’intersection de l’histoire du sport, de la diplomatie culturelle, des cultures politiques, de la circulation des élites à l’échelle mondiale et du cosmopolitisme. Il contribue ainsi à l’histoire des organisations internationales installées en Suisse et à une meilleure compréhension des concepts de pacifisme et de neutralité." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/5502/html", - "text": "General History" - }, - { - "en": "10301 General history (without pre-and early history)" - } - ], - "endDate": "2022-08-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0114-organization-000" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0114-grant-000" - ], - "keywords": [ - { - "en": "Apolitism" - }, - { - "en": "International Olympic Committee" - }, - { - "en": "International organisations" - }, - { - "en": "Leaders and elites" - }, - { - "en": "Neutrality" - }, - { - "en": "Pacifism" - }, - { - "en": "Sport history" - }, - { - "en": "Transnational political cultures" - } - ], - "name": "The International Olympic Committee members (1894-1972). A transnational elite prosopography", - "shortcode": "0114", - "spatialCoverage": [ - { - "__type": "URL", - "type": "URL", - "url": "http://vocab.getty.edu/page/tgn/7029392", - "text": "World" - } - ], - "startDate": "2018-09-01", - "temporalCoverage": [ - { - "de": "1894-1972", - "en": "1894-1972", - "fr": "1894-1972" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.ls-prod-server.dasch.swiss/project/0114", - "text": "Discover Project Data" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0114-project", + "__type": "Project", + "__createdAt": "1630601387381347000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Clastres, P., Carpentier, F., Klima, H., Défayes, F., Metzger, C., Rivoal, M., 2020, Les membres du Comité international olympique (CIO) de 1894 à 1972 [database]. DaSCH https://ark.dasch.swiss/ark:/72163/1/0114.", + "teaserText": "Ce projet reconstituera les trajectoires familiales, professionnelles, sociales et politiques des 213 membres du CIO cooptés avant 1972.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0114-dataset-000" + ], + "alternativeNames": [ + { + "en": "elites-cio" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0114-person-000", + "description": { + "fr": "Le CIO est la première organisation sportive internationale installée en Suisse, et la plus importante puisqu’elle prétend réguler le système sportif international. Son fondateur, le baron français Pierre de Coubertin (1863-1937), l’a dotée d’un système de valeurs qui emprunte à la culture chevaleresque des élites européennes traditionnelles, à l’humanisme des Lumières, au pacifisme libéral transatlantique du second XIXe siècle, et au conservatisme hygiéniste et social. Percuté par les diplomaties d’Etat qui ont intégré le sport parmi les outils de leur soft power, le CIO a dû affronter les grands enjeux du XXe siècle. Ce projet prévoit de dépasser l’approche institutionnelle classique en étudiant les trajectoires de ses membres qui, pour la plupart, restent méconnus.\n\nDans un premier temps, ce projet reconstituera les trajectoires familiales, professionnelles, sociales et politiques des 213 membres du CIO cooptés avant 1972. Dans un deuxième temps, il décryptera les mécanismes de cooptation ainsi que les modalités de prise de décision propres au CIO. Enfin, il s’agira d’évaluer « le plus petit dénominateur social, culturel et politique » commun à tous ces leaders qui définit leur vision du monde, et de questionner les concepts d’apolitisme (du sport) et de neutralité diplomatique (du CIO).\nFondé sur une approche prosopographique (croisement et mise en série de micro-biographies), le projet se situe au point d’intersection de l’histoire du sport, de la diplomatie culturelle, des cultures politiques, de la circulation des élites à l’échelle mondiale et du cosmopolitisme. Il contribue ainsi à l’histoire des organisations internationales installées en Suisse et à une meilleure compréhension des concepts de pacifisme et de neutralité." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/5502/html", + "text": "General History" + }, + { + "en": "10301 General history (without pre-and early history)" + } + ], + "endDate": "2022-08-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0114-organization-000" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0114-grant-000" + ], + "keywords": [ + { + "en": "Apolitism" + }, + { + "en": "International Olympic Committee" + }, + { + "en": "International organisations" + }, + { + "en": "Leaders and elites" + }, + { + "en": "Neutrality" + }, + { + "en": "Pacifism" + }, + { + "en": "Sport history" + }, + { + "en": "Transnational political cultures" + } + ], + "name": "The International Olympic Committee members (1894-1972). A transnational elite prosopography", + "shortcode": "0114", + "spatialCoverage": [ + { + "__type": "URL", + "type": "URL", + "url": "http://vocab.getty.edu/page/tgn/7029392", + "text": "World" + } + ], + "startDate": "2018-09-01", + "temporalCoverage": [ + { + "de": "1894-1972", + "en": "1894-1972", + "fr": "1894-1972" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.ls-prod-server.dasch.swiss/project/0114", + "text": "Discover Project Data" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0114-dataset-000", + "__type": "Dataset", + "__createdAt": "1630601392553111000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0114-dataset-000", - "__type": "Dataset", - "__createdAt": "1630601392553111000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "fr": "Si la ville de Lausanne a une existence à l'échelle-monde, c'est largement dû à son statut de capitale du sport international. Mais qui sont vraiment les membres du Comité international olympique (CIO) installé sur les bords du Léman depuis 1915 ? De quelle élite transnationale sont-ils le nom ? Constitué en Sorbonne en 1894, le CIO a été doté par son fondateur, le baron français Pierre de Coubertin (1863-1937), d'un système de valeurs qui mêle la culture chevaleresque des aristocraties européennes, l'humanisme de la Renaissance plutôt que celui des Lumières, l'hygiénisme social, l'éducation britannique au struggleforlife, le dogme élitaire de l'amateurisme, et le liberal pacifism transatlantique du second XIXe siècle. Que ce corpus de valeurs ait survécu jusqu'à nos jours s'explique par le principe de cooptation qui prévaut dès l'origine pour le recrutement des membres du CIO. Cela tient également au règlement adopté en 1908 qui stipule que ses membres représentent le CIO dans leurs pays respectifs, et non l'inverse. Au croisement de l'histoire, des sciences politiques, et de la sociologie des élites, notre projet vise donc à connaître les facteurs socio-culturels, économiques et politiques qui ont prévalu dans le self recruitment des 300 membres cooptés avant la mutation commerciale du CIO dans les années 1970-1980. Nous allons reconstituer leurs trajectoires familiales et professionnelles, identifier leurs formes de sociabilité et leurs pratiques culturelles, préciser leurs orientations idéologiques et leurs engagements politiques, et dessiner leurs réseaux. La méthode prosopographique, ou « biographie collective », est accompagnée par l'utilisation d’une base de données comprenant quelque 300 notices biographiques, qui sont mises en ligne à destination des chercheurs et du grand public." - } - ], - "accessConditions": "restricted", - "dateCreated": "2020-05-21", - "dateModified": "2021-01-28", - "datePublished": "2020-05-21", - "howToCite": "Clastres, P., Carpentier, F., Klima, H., Défayes, F., Metzger, C., Rivoal, M., 2020, Les membres du Comité international olympique (CIO) de 1894 à 1972 [database]. DaSCH https://ark.dasch.swiss/ark:/72163/1/0114.", - "languages": [ - { - "en": "French", - "de": "Französisch", - "fr": "français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0/", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0114-person-000", - "roles": [ - "Project leader", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0114-person-001", - "roles": [ - "Project member", - "Data collector", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0114-person-002", - "roles": [ - "Project member", - "Data collector", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0114-person-003", - "roles": [ - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0114-person-004", - "roles": [ - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0114-person-005", - "roles": [ - "Data curator" - ] - } - ], - "status": "Ongoing", - "title": "Base de données Les membres du Comité international olympique (CIO) de 1894 à 1972", - "typeOfData": [ - "Text" - ] + "fr": "Si la ville de Lausanne a une existence à l'échelle-monde, c'est largement dû à son statut de capitale du sport international. Mais qui sont vraiment les membres du Comité international olympique (CIO) installé sur les bords du Léman depuis 1915 ? De quelle élite transnationale sont-ils le nom ? Constitué en Sorbonne en 1894, le CIO a été doté par son fondateur, le baron français Pierre de Coubertin (1863-1937), d'un système de valeurs qui mêle la culture chevaleresque des aristocraties européennes, l'humanisme de la Renaissance plutôt que celui des Lumières, l'hygiénisme social, l'éducation britannique au struggleforlife, le dogme élitaire de l'amateurisme, et le liberal pacifism transatlantique du second XIXe siècle. Que ce corpus de valeurs ait survécu jusqu'à nos jours s'explique par le principe de cooptation qui prévaut dès l'origine pour le recrutement des membres du CIO. Cela tient également au règlement adopté en 1908 qui stipule que ses membres représentent le CIO dans leurs pays respectifs, et non l'inverse. Au croisement de l'histoire, des sciences politiques, et de la sociologie des élites, notre projet vise donc à connaître les facteurs socio-culturels, économiques et politiques qui ont prévalu dans le self recruitment des 300 membres cooptés avant la mutation commerciale du CIO dans les années 1970-1980. Nous allons reconstituer leurs trajectoires familiales et professionnelles, identifier leurs formes de sociabilité et leurs pratiques culturelles, préciser leurs orientations idéologiques et leurs engagements politiques, et dessiner leurs réseaux. La méthode prosopographique, ou « biographie collective », est accompagnée par l'utilisation d’une base de données comprenant quelque 300 notices biographiques, qui sont mises en ligne à destination des chercheurs et du grand public." } - ], - "persons": [ + ], + "accessConditions": "restricted", + "dateCreated": "2020-05-21", + "dateModified": "2021-01-28", + "datePublished": "2020-05-21", + "howToCite": "Clastres, P., Carpentier, F., Klima, H., Défayes, F., Metzger, C., Rivoal, M., 2020, Les membres du Comité international olympique (CIO) de 1894 à 1972 [database]. DaSCH https://ark.dasch.swiss/ark:/72163/1/0114.", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0114-person-003", - "__type": "Person", - "__createdAt": "1630601393129250000", - "__createdBy": "dsp-metadata-gui", - "email": "fabien.def@gmail.com", - "familyNames": [ - "Défayes" - ], - "givenNames": [ - "Fabien" - ], - "jobTitles": [ - "Scientif collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0114-organization-001" - ] + "en": "French", + "de": "Französisch", + "fr": "français" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0114-person-000", + "roles": [ + "Project leader", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0114-person-004", - "__type": "Person", - "__createdAt": "1630601393129355000", - "__createdBy": "dsp-metadata-gui", - "email": "christophe.metzger@unil.ch", - "familyNames": [ - "Metzger" - ], - "givenNames": [ - "Christophe" - ], - "jobTitles": [ - "Scientific collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0114-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0114-person-001", + "roles": [ + "Project member", + "Data collector", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0114-person-005", - "__type": "Person", - "__createdAt": "1630601393129455000", - "__createdBy": "dsp-metadata-gui", - "email": "marion.rivoal@unil.ch", - "familyNames": [ - "Rivoal" - ], - "givenNames": [ - "Marion" - ], - "jobTitles": [ - "Research manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0114-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-4185-7169", - "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0114-person-002", + "roles": [ + "Project member", + "Data collector", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0114-person-000", - "__type": "Person", - "__createdAt": "1630601393129631000", - "__createdBy": "dsp-metadata-gui", - "email": "patrick.clastres@unil.ch", - "familyNames": [ - "Clastres" - ], - "givenNames": [ - "Patrick" - ], - "jobTitles": [ - "Associate professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0114-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0001-8353-7855", - "text": "ORCID URL: https://orcid.org/0000-0001-8353-7855" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0114-person-003", + "roles": [ + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0114-person-001", - "__type": "Person", - "__createdAt": "1630601393129801000", - "__createdBy": "dsp-metadata-gui", - "email": "florence.carpentier@unil.ch", - "familyNames": [ - "Carpentier" - ], - "givenNames": [ - "Florence" - ], - "jobTitles": [ - "Assistant professor", - "Senior SNSF Researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0114-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-5735-5350", - "text": "ORCID URL: https://orcid.org/0000-0002-5735-5350" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0114-person-004", + "roles": [ + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0114-person-002", - "__type": "Person", - "__createdAt": "1630601393129990000", - "__createdBy": "dsp-metadata-gui", - "email": "helena.klima@unil.ch", - "familyNames": [ - "Klima" - ], - "givenNames": [ - "Helena" - ], - "jobTitles": [ - "PhD student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0114-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0114-person-005", + "roles": [ + "Data curator" + ] } - ], - "organizations": [ + ], + "status": "Ongoing", + "title": "Base de données Les membres du Comité international olympique (CIO) de 1894 à 1972", + "typeOfData": [ + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0114-person-003", + "__type": "Person", + "__createdAt": "1630601393129250000", + "__createdBy": "dsp-metadata-gui", + "email": "fabien.def@gmail.com", + "familyNames": [ + "Défayes" + ], + "givenNames": [ + "Fabien" + ], + "jobTitles": [ + "Scientif collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0114-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0114-person-004", + "__type": "Person", + "__createdAt": "1630601393129355000", + "__createdBy": "dsp-metadata-gui", + "email": "christophe.metzger@unil.ch", + "familyNames": [ + "Metzger" + ], + "givenNames": [ + "Christophe" + ], + "jobTitles": [ + "Scientific collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0114-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0114-person-005", + "__type": "Person", + "__createdAt": "1630601393129455000", + "__createdBy": "dsp-metadata-gui", + "email": "marion.rivoal@unil.ch", + "familyNames": [ + "Rivoal" + ], + "givenNames": [ + "Marion" + ], + "jobTitles": [ + "Research manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0114-organization-001" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0114-organization-000", - "__type": "Organization", - "__createdAt": "1630601393130109000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3 Postfach", - "postalCode": "3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4185-7169", + "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0114-person-000", + "__type": "Person", + "__createdAt": "1630601393129631000", + "__createdBy": "dsp-metadata-gui", + "email": "patrick.clastres@unil.ch", + "familyNames": [ + "Clastres" + ], + "givenNames": [ + "Patrick" + ], + "jobTitles": [ + "Associate professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0114-organization-001" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0114-organization-001", - "__type": "Organization", - "__createdAt": "1630601393580272000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Unicentre", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "name": "Université de Lausanne", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unil.ch/", - "text": "https://www.unil.ch/" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0001-8353-7855", + "text": "ORCID URL: https://orcid.org/0000-0001-8353-7855" } - ], - "grants": [ + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0114-person-001", + "__type": "Person", + "__createdAt": "1630601393129801000", + "__createdBy": "dsp-metadata-gui", + "email": "florence.carpentier@unil.ch", + "familyNames": [ + "Carpentier" + ], + "givenNames": [ + "Florence" + ], + "jobTitles": [ + "Assistant professor", + "Senior SNSF Researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0114-organization-001" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0114-grant-000", - "__type": "Grant", - "__createdAt": "1630601393841176000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0114-organization-000" - ], - "name": "Project funding", - "number": "179043", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/179043", - "text": "https://data.snf.ch/grants/grant/179043" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-5735-5350", + "text": "ORCID URL: https://orcid.org/0000-0002-5735-5350" } - ] -} + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0114-person-002", + "__type": "Person", + "__createdAt": "1630601393129990000", + "__createdBy": "dsp-metadata-gui", + "email": "helena.klima@unil.ch", + "familyNames": [ + "Klima" + ], + "givenNames": [ + "Helena" + ], + "jobTitles": [ + "PhD student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0114-organization-001" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0114-organization-000", + "__type": "Organization", + "__createdAt": "1630601393130109000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3 Postfach", + "postalCode": "3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0114-organization-001", + "__type": "Organization", + "__createdAt": "1630601393580272000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Unicentre", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "name": "Université de Lausanne", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unil.ch/", + "text": "https://www.unil.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0114-grant-000", + "__type": "Grant", + "__createdAt": "1630601393841176000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0114-organization-000" + ], + "name": "Project funding", + "number": "179043", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/179043", + "text": "https://data.snf.ch/grants/grant/179043" + } + } + ] +} \ No newline at end of file diff --git a/data/json/operativetv.json b/data/json/operativetv.json index afef8d57..d968b3d3 100644 --- a/data/json/operativetv.json +++ b/data/json/operativetv.json @@ -1,351 +1,352 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0849-project", - "__type": "Project", - "__createdAt": "1702979871566629000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Weber, Anne-Katrin; Cronjäger, Lisa; Sandoz, Marie; Scheiwiller, Sébastien (2024). Operative TV [Database]. DaSCH", - "teaserText": "The SNSF PRIMA project “Operative TV: Audiovisual Closed-Circuits from the Military to the Classroom, 1930s-1990s” studies the uses of TV in industrial, medical, educational and military contexts.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0849-dataset-000" - ], - "alternativeNames": [ - { - "en": "Operative TV" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0849-person-000", - "dataManagementPlan": { - "__type": "DataManagementPlan", - "available": true - }, - "description": { - "en": "From video surveillance to online teaching, from drone warfare, highway management to telemedicine: closed-circuit images take up multiple spaces today. Despite being quotidian, their history remains largely unknown. The project’s goal is to fill this gap by providing the first study of audiovisual closed-circuits (AVCC) in the longue durée. It scrutinizes the closed-circuits’ diversity between the 1930s and the 1990s and develops case studies from the USA, France, the UK, Germany, and Switzerland - countries crucial for the development of closed-circuits and providing access to resources for writing the history of a medium whose images were conceived as instruments rather than representations. \n\nDistributed under Industrial Television and CCTV (for closed-circuit television), the systems were developed in Europe and the USA mainly by enterprises active in televisual R&D. While CCTV today stands as a synonym of the surveillance camera, its historical applications were at least as heterogeneous as contemporary closed-circuits and used on factory floors and in nuclear plants, in hospitals and schools.\n\nOperative TV examines two main hypotheses. First, it posits that the analysis of television in industrial, educational, and military contexts cannot be based on habitual analytical categories such as texts or spectators. Instead, AVCC necessitates a methodological shift towards an understanding of audiovisual production as a chain of operations that allows analyzing the entanglement of human and non-human actors. AVCC’s usefulness indeed was contingent on the interplay of heterogeneous elements including operators, screens, infrastructures, and images: their interdependence, rather than the isolated components, should form the core of a historical enquiry. \n\nSecond, Operative TV argues that the history of AVCC, an analog-electronic technology, nourishes a media archaeology of the digital. AVCC emerged at the same moment as digital computers; it coexisted and sometimes converged with digital machines. Before the computer definitively took over factory and office floors, television was used as a tool for operations ranging from targeting to instructing: analyzing AVCC’s alleged “universality” (Journal d’Yverdon 1955) allows to better understand the emergence of our digital society." - }, - "disciplines": [ - { - "en": "103301 General History" - }, - { - "en": "10406 Theatre and Cinema" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0849-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0849-grant-000" - ], - "keywords": [ - { - "en": "Closed-Circuit Television" - }, - { - "en": "Cultural Techniques" - }, - { - "en": "Media History" - }, - { - "en": "Operative Images" - }, - { - "en": "Television History" - }, - { - "en": "Transnational Media History" - }, - { - "en": "Useful Media" - } - ], - "name": "Operative TV: Audiovisual Closed-Circuits from the Military to the Classroom, 1930s-1990s", - "shortcode": "0849", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2921044/federal-republic-of-germany.html", - "text": "Germany" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/9408659/western-europe.html", - "text": "Western Europe" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/switzerland.html", - "text": "Switzerland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2635167/united-kingdom-of-great-britain-and-northern-ireland.html", - "text": "United Kingdom" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6255149/north-america.html", - "text": "North America" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6252001/united-states.html", - "text": "United States" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3017382/republic-of-france.html", - "text": "France" - } - ], - "startDate": "2022-11-01", - "temporalCoverage": [ - { - "de": "1930-1990", - "en": "1930-1990", - "fr": "1930-1990" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/8faW0HwsTgGzu98tCYClig", - "text": "Discover Project Data" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0849-project", + "__type": "Project", + "__createdAt": "1702979871566629000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Weber, Anne-Katrin; Cronjäger, Lisa; Sandoz, Marie; Scheiwiller, Sébastien (2024). Operative TV [Database]. DaSCH", + "teaserText": "The SNSF PRIMA project “Operative TV: Audiovisual Closed-Circuits from the Military to the Classroom, 1930s-1990s” studies the uses of TV in industrial, medical, educational and military contexts.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0849-dataset-000" + ], + "alternativeNames": [ + { + "en": "Operative TV" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0849-person-000", + "dataManagementPlan": { + "__type": "DataManagementPlan", + "available": true + }, + "description": { + "en": "From video surveillance to online teaching, from drone warfare, highway management to telemedicine: closed-circuit images take up multiple spaces today. Despite being quotidian, their history remains largely unknown. The project’s goal is to fill this gap by providing the first study of audiovisual closed-circuits (AVCC) in the longue durée. It scrutinizes the closed-circuits’ diversity between the 1930s and the 1990s and develops case studies from the USA, France, the UK, Germany, and Switzerland - countries crucial for the development of closed-circuits and providing access to resources for writing the history of a medium whose images were conceived as instruments rather than representations. \n\nDistributed under Industrial Television and CCTV (for closed-circuit television), the systems were developed in Europe and the USA mainly by enterprises active in televisual R&D. While CCTV today stands as a synonym of the surveillance camera, its historical applications were at least as heterogeneous as contemporary closed-circuits and used on factory floors and in nuclear plants, in hospitals and schools.\n\nOperative TV examines two main hypotheses. First, it posits that the analysis of television in industrial, educational, and military contexts cannot be based on habitual analytical categories such as texts or spectators. Instead, AVCC necessitates a methodological shift towards an understanding of audiovisual production as a chain of operations that allows analyzing the entanglement of human and non-human actors. AVCC’s usefulness indeed was contingent on the interplay of heterogeneous elements including operators, screens, infrastructures, and images: their interdependence, rather than the isolated components, should form the core of a historical enquiry. \n\nSecond, Operative TV argues that the history of AVCC, an analog-electronic technology, nourishes a media archaeology of the digital. AVCC emerged at the same moment as digital computers; it coexisted and sometimes converged with digital machines. Before the computer definitively took over factory and office floors, television was used as a tool for operations ranging from targeting to instructing: analyzing AVCC’s alleged “universality” (Journal d’Yverdon 1955) allows to better understand the emergence of our digital society." + }, + "disciplines": [ + { + "en": "103301 General History" + }, + { + "en": "10406 Theatre and Cinema" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0849-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0849-grant-000" + ], + "keywords": [ + { + "en": "Closed-Circuit Television" + }, + { + "en": "Cultural Techniques" + }, + { + "en": "Media History" + }, + { + "en": "Operative Images" + }, + { + "en": "Television History" + }, + { + "en": "Transnational Media History" + }, + { + "en": "Useful Media" + } + ], + "name": "Operative TV: Audiovisual Closed-Circuits from the Military to the Classroom, 1930s-1990s", + "shortcode": "0849", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2921044/federal-republic-of-germany.html", + "text": "Germany" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/9408659/western-europe.html", + "text": "Western Europe" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/switzerland.html", + "text": "Switzerland" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2635167/united-kingdom-of-great-britain-and-northern-ireland.html", + "text": "United Kingdom" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/6255149/north-america.html", + "text": "North America" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/6252001/united-states.html", + "text": "United States" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3017382/republic-of-france.html", + "text": "France" + } + ], + "startDate": "2022-11-01", + "temporalCoverage": [ + { + "de": "1930-1990", + "en": "1930-1990", + "fr": "1930-1990" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/8faW0HwsTgGzu98tCYClig", + "text": "Discover Project Data" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0849-dataset-000", + "__type": "Dataset", + "__createdAt": "1702979875988464000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0849-dataset-000", - "__type": "Dataset", - "__createdAt": "1702979875988464000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The aim of the database is to inform researchers about relevant archives centers / collections / folders for writing a history of useful and closed-circuit television in Western Europe and the United States. \n \n The database offers a view of the archives collected by the Operative TV project and give access to some of them. But the database also contributes to locate and identify archival material for further research. For example, the visitors might find in the database our description of a collection or a folder that don’t exist elsewhere. They will then be able to investigate this collection further.\r \r Finally, the database give access to the outputs of the Operative TV project.\r \r The database is organised as follow:\n \n \n A.\tResources\n \n The database is designed around four main interrelated categories (resources): \r •\tArchive Documents in PDF format;\r •\tArchive Folders to which documents belong;\r •\tArchive Fonds to which folders belong; \r •\tArchive Centers or Libraries that hold collections. \r \r A fifth category (resource) named Journals / grey literature includes published archival sources.\r \r A sixth category (resource) includes the scientific Outputs of the Operative TV project.\r \r B.\tThesaurus\r \r While the categories/resources mentioned above bring essentially together \"places\" where archives and archival documents can be found, the Controlled Vocabularies allows a thematic approach to the Documents, Folders and archival Collections, with two exceptions.\r \r \r •\tControlled Vocabularies with thematic approach:\r Useful Television; Function of Television; Technical Dispositif; Users; Operators of Television\r à In each case, there are multiple choices\r \r •\tControlled Vocabularies relating to where the Archives Centers are situated:\r Countries; Cities\r à In each case, there are multiple choices" - } - ], - "alternativeTitles": [ - { - "en": "Operative TV" - } - ], - "accessConditions": "closed", - "howToCite": "Weber, Anne-Katrin; Cronjäger, Lisa; Sandoz, Marie; Scheiwiller, Sébastien (2024). Operative TV [Database]. DaSCH", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2023-12-19", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by/4.0/", - "text": "CC BY 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0849-person-000", - "roles": [ - "Project Leader, Data Collector, Data Curator, Data Manager " - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0849-person-001", - "roles": [ - "Project Member, Data Collector, Data Curator, Data Manager " - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0849-person-002", - "roles": [ - "Project Member, Data Collector, Data Curator, Data Manager" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0849-person-003", - "roles": [ - "Project Member, Data Collector, Data Curator, Data Manager" - ] - } - ], - "status": "Ongoing", - "title": "Operative TV: Audiovisual Closed-Circuits from the Military to the Classroom, 1930s-1990s", - "typeOfData": [ - "Image", - "Text" - ] + "en": "The aim of the database is to inform researchers about relevant archives centers / collections / folders for writing a history of useful and closed-circuit television in Western Europe and the United States. \n \n The database offers a view of the archives collected by the Operative TV project and give access to some of them. But the database also contributes to locate and identify archival material for further research. For example, the visitors might find in the database our description of a collection or a folder that don’t exist elsewhere. They will then be able to investigate this collection further.\r \r Finally, the database give access to the outputs of the Operative TV project.\r \r The database is organised as follow:\n \n \n A.\tResources\n \n The database is designed around four main interrelated categories (resources): \r •\tArchive Documents in PDF format;\r •\tArchive Folders to which documents belong;\r •\tArchive Fonds to which folders belong; \r •\tArchive Centers or Libraries that hold collections. \r \r A fifth category (resource) named Journals / grey literature includes published archival sources.\r \r A sixth category (resource) includes the scientific Outputs of the Operative TV project.\r \r B.\tThesaurus\r \r While the categories/resources mentioned above bring essentially together \"places\" where archives and archival documents can be found, the Controlled Vocabularies allows a thematic approach to the Documents, Folders and archival Collections, with two exceptions.\r \r \r •\tControlled Vocabularies with thematic approach:\r Useful Television; Function of Television; Technical Dispositif; Users; Operators of Television\r à In each case, there are multiple choices\r \r •\tControlled Vocabularies relating to where the Archives Centers are situated:\r Countries; Cities\r à In each case, there are multiple choices" } - ], - "persons": [ + ], + "alternativeTitles": [ + { + "en": "Operative TV" + } + ], + "accessConditions": "closed", + "howToCite": "Weber, Anne-Katrin; Cronjäger, Lisa; Sandoz, Marie; Scheiwiller, Sébastien (2024). Operative TV [Database]. DaSCH", + "languages": [ + { + "en": "English", + "de": "Englisch", + "fr": "anglais" + } + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0849-person-001", - "__type": "Person", - "__createdAt": "1702979876338923000", - "__createdBy": "dsp-metadata-gui", - "email": "lisa.cronjager@unil.ch", - "familyNames": [ - "Cronjäger" - ], - "givenNames": [ - "Lisa" - ], - "jobTitles": [ - "Post-doctoral Student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0849-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0001-8839-7935", - "text": "ORCID URL: https://orcid.org/0000-0001-8839-7935" - } - ] + "__type": "License", + "date": "2023-12-19", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by/4.0/", + "text": "CC BY 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0849-person-000", + "roles": [ + "Project Leader, Data Collector, Data Curator, Data Manager " + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0849-person-002", - "__type": "Person", - "__createdAt": "1702979876338998000", - "__createdBy": "dsp-metadata-gui", - "email": "sebastien.scheiwiller@unil.ch", - "familyNames": [ - "Scheiwiller" - ], - "givenNames": [ - "Sébastien" - ], - "jobTitles": [ - "PhD candidate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0849-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0849-person-001", + "roles": [ + "Project Member, Data Collector, Data Curator, Data Manager " + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0849-person-003", - "__type": "Person", - "__createdAt": "1702979876339048000", - "__createdBy": "dsp-metadata-gui", - "email": "marie.sandoz@unil.ch", - "familyNames": [ - "Sandoz" - ], - "givenNames": [ - "Marie" - ], - "jobTitles": [ - "Post-doctoral student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0849-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0009-0001-4695-8949", - "text": "ORCID URL: https://orcid.org/0009-0001-4695-8949" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0849-person-002", + "roles": [ + "Project Member, Data Collector, Data Curator, Data Manager" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0849-person-000", - "__type": "Person", - "__createdAt": "1702979876339114000", - "__createdBy": "dsp-metadata-gui", - "email": "anne-katrin.weber@unil.ch", - "secondaryEmail": "annekatrin.weber@unibas.ch", - "familyNames": [ - "Weber" - ], - "givenNames": [ - "Anne-Katrin" - ], - "jobTitles": [ - "Assistant Professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0849-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0001-6639-8822", - "text": "ORCID URL: https://orcid.org/0000-0001-6639-8822" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0849-person-003", + "roles": [ + "Project Member, Data Collector, Data Curator, Data Manager" + ] } - ], - "organizations": [ + ], + "status": "Ongoing", + "title": "Operative TV: Audiovisual Closed-Circuits from the Military to the Classroom, 1930s-1990s", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0849-person-001", + "__type": "Person", + "__createdAt": "1702979876338923000", + "__createdBy": "dsp-metadata-gui", + "email": "lisa.cronjager@unil.ch", + "familyNames": [ + "Cronjäger" + ], + "givenNames": [ + "Lisa" + ], + "jobTitles": [ + "Post-doctoral Student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0849-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0849-organization-001", - "__type": "Organization", - "__createdAt": "1702979876339189000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3", - "postalCode": "3001", - "locality": "Berne", - "country": "Switzerland" - }, - "name": "Swiss National Science Foundation (SNSF)" - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0001-8839-7935", + "text": "ORCID URL: https://orcid.org/0000-0001-8839-7935" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0849-person-002", + "__type": "Person", + "__createdAt": "1702979876338998000", + "__createdBy": "dsp-metadata-gui", + "email": "sebastien.scheiwiller@unil.ch", + "familyNames": [ + "Scheiwiller" + ], + "givenNames": [ + "Sébastien" + ], + "jobTitles": [ + "PhD candidate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0849-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0849-person-003", + "__type": "Person", + "__createdAt": "1702979876339048000", + "__createdBy": "dsp-metadata-gui", + "email": "marie.sandoz@unil.ch", + "familyNames": [ + "Sandoz" + ], + "givenNames": [ + "Marie" + ], + "jobTitles": [ + "Post-doctoral student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0849-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0849-organization-000", - "__type": "Organization", - "__createdAt": "1702979876410717000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Université de Lausanne", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "name": "University of Lausanne (UNIL)" + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0009-0001-4695-8949", + "text": "ORCID URL: https://orcid.org/0009-0001-4695-8949" } - ], - "grants": [ + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0849-person-000", + "__type": "Person", + "__createdAt": "1702979876339114000", + "__createdBy": "dsp-metadata-gui", + "email": "anne-katrin.weber@unil.ch", + "secondaryEmail": "annekatrin.weber@unibas.ch", + "familyNames": [ + "Weber" + ], + "givenNames": [ + "Anne-Katrin" + ], + "jobTitles": [ + "Assistant Professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0849-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0849-grant-000", - "__type": "Grant", - "__createdAt": "1702979876449642000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0849-organization-001" - ], - "name": "PRIMA", - "number": "208503", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/208503", - "text": "PRIMA: 208503 " - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0001-6639-8822", + "text": "ORCID URL: https://orcid.org/0000-0001-6639-8822" } - ] -} + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0849-organization-001", + "__type": "Organization", + "__createdAt": "1702979876339189000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3", + "postalCode": "3001", + "locality": "Berne", + "country": "Switzerland" + }, + "name": "Swiss National Science Foundation (SNSF)" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0849-organization-000", + "__type": "Organization", + "__createdAt": "1702979876410717000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Université de Lausanne", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "name": "University of Lausanne (UNIL)" + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0849-grant-000", + "__type": "Grant", + "__createdAt": "1702979876449642000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0849-organization-001" + ], + "name": "PRIMA", + "number": "208503", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/208503", + "text": "PRIMA: 208503 " + } + } + ] +} \ No newline at end of file diff --git a/data/json/participation-social.json b/data/json/participation-social.json index b8de8e9e..6f13c96d 100644 --- a/data/json/participation-social.json +++ b/data/json/participation-social.json @@ -1,384 +1,387 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-083D-project", - "__type": "Project", - "__createdAt": "1660773937664037000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Obrist B, Dillip A, Mayumana I, Rutishauser M, Simon V (2022). Participation in Social Health Protection: An Anthropological Case Study in Tanzania [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/083D.", - "teaserText": "This project calls for a broad view of social health protection, comprising health care funding and people’s ubiquitous but less visible strife for participation in self-organized groups and networks.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-083D-dataset-000" - ], - "alternativeNames": [ - { - "en": "Participation in Social Health Protection (Tanzania). pshp" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-083D-person-000", - "description": { - "en": "Over the past decades, ‘participation’ has become a powerful concept of global development. It circulates around the globe and engages policy makers as well as human rights activists. After capturing the imagination of the biggest players in the field, it has attracted massive funding. And as a crucial principle of the Sustainable Development Goals 2015-2030, it can be expected to do so in the future. Anthropologists tend to share the emancipatory and humanitarian concerns implicit in ‘participation’. At the same time, they have become highly critical of the ways in which this popular buzzword is used in contemporary development speak and produce a growing body of empirical evidence about the ambivalences, dilemma and paradoxes created by participatory planning, policies and programs. This project examines ‘participation’ in the emergent field of ‘social health protection’. In order to reach their goal of Universal Health Coverage, the International Labor Office, the World Bank and the World Health organization push social health protection as a key strategy. They come up with diverse measures of public and publicly organized health financing measures for Low and Middle Income Countries, some of which are implemented through ‘induced participation’ and collective forms of ‘organic participation’. The massive attention given to efforts of inducing participation bears the danger of not only obscuring but perhaps even destroying people’s omnipresent but less visible strife for social participation in family and kin networks and self-organized groups to protect their health and improve their life condition. Contemporary Tanzania presents a particularly interesting case for studying participation in social health protection in this broader sense because of her long engagement with changing forms of participatory development and the government’s current aspiration to transform Tanzania into a middle-income country with Universal Health Coverage. The project thus aims at demonstrating that participation in diverse forms of social health protection can be conceived as a social practice which configures and is reconfigured by broader societal and material orders. Combining a multi-level analysis with in-depth ethnographic field research the project will explore understudied aspects in current research on induced and organic participation and thus contribute to transforming current development perspectives on social and societal change. The project thus aims at contributing to three major emerging fields: First, to the growing research interest in an ‘anthropology of the good’ through its emphasis on the ways in which people engage with each other to make a ‘better life’. Secondly, to the newly evolving ‘anthropology of insurance’ through its combined multi-level analysis and in-depth ethnographic research on social health protection as a social practice. Third, by engaging in a public dialogue, we hope that our insights will be discussed, contested, and appropriated by some of these ‘stakeholders’ and thus make a difference in the comprehension of the important contemporary issues of social health protection reform and more general societal change. The data of this project is only accessible upon explicit request to the contact person and a corresponding positive decision." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/240206", - "text": "Ethnology" - }, - { - "en": "10400 Ethnology, social and humangeography" - } - ], - "endDate": "2021-08-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-083D-organization-000" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-083D-grant-000" - ], - "keywords": [ - { - "en": "Ethnology" - }, - { - "en": "Participation" - }, - { - "en": "Social health protection" - }, - { - "en": "Tanzania" - } - ], - "publications": [ - { - "text": "Obrist B, Dillip A, Kalolo A, Mayumana IM, Rutishauser M, Simon VT. Savings Groups for Social Health Protection: A Social Resilience Study in Rural Tanzania. Diseases. 2022; 10(3):63.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.3390/diseases10030063", - "text": "DOI: 10.3390/diseases10030063" - } - ] - }, - { - "text": "Dillip A, Kalolo A, Mayumana I, Rutishauser M, Simon VT, Obrist B. Linking the Community Health Fund with Accredited Drug Dispensing Outlets in Tanzania: exploring potentials, pitfalls, and modalities. J Pharm Policy Pract. 2022 Dec 29;15(1):106. PMID: 36582002; PMCID: PMC9801564.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.1186/s40545-022-00507-y", - "text": "DOI: 10.1186/s40545-022-00507-y" - } - ] - } - ], - "name": "Participation in Social Health Protection: An Anthropological Case Study in Tanzania", - "shortcode": "083D", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/149590/tanzania.html", - "text": "Tanzania" - } - ], - "startDate": "2017-01-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/D6K5MO2tx66Y", - "text": "Modern" - } - ] - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-083D-project", + "__type": "Project", + "__createdAt": "1660773937664037000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Obrist B, Dillip A, Mayumana I, Rutishauser M, Simon V (2022). Participation in Social Health Protection: An Anthropological Case Study in Tanzania [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/083D.", + "teaserText": "This project calls for a broad view of social health protection, comprising health care funding and people’s ubiquitous but less visible strife for participation in self-organized groups and networks.", "datasets": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-083D-dataset-000", - "__type": "Dataset", - "__createdAt": "1660773939130188000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "Over the past decades, ‘participation’ has become a powerful concept of global development. It circulates around the globe and engages policy makers as well as human rights activists. After capturing the imagination of the biggest players in the field, it has attracted massive funding. And as a crucial principle of the Sustainable Development Goals 2015-2030, it can be expected to do so in the future. Anthropologists tend to share the emancipatory and humanitarian concerns implicit in ‘participation’. At the same time, they have become highly critical of the ways in which this popular buzzword is used in contemporary development speak and produce a growing body of empirical evidence about the ambivalences, dilemma and paradoxes created by participatory planning, policies and programs. This project examines ‘participation’ in the emergent field of ‘social health protection’. In order to reach their goal of Universal Health Coverage, the International Labor Office, the World Bank and the World Health organization push social health protection as a key strategy. They come up with diverse measures of public and publicly organized health financing measures for Low and Middle Income Countries, some of which are implemented through ‘induced participation’ and collective forms of ‘organic participation’. The massive attention given to efforts of inducing participation bears the danger of not only obscuring but perhaps even destroying people’s omnipresent but less visible strife for social participation in family and kin networks and self-organized groups to protect their health and improve their life condition. Contemporary Tanzania presents a particularly interesting case for studying participation in social health protection in this broader sense because of her long engagement with changing forms of participatory development and the government’s current aspiration to transform Tanzania into a middle-income country with Universal Health Coverage. The project thus aims at demonstrating that participation in diverse forms of social health protection can be conceived as a social practice which configures and is reconfigured by broader societal and material orders. Combining a multi-level analysis with in-depth ethnographic field research the project will explore understudied aspects in current research on induced and organic participation and thus contribute to transforming current development perspectives on social and societal change. The project thus aims at contributing to three major emerging fields: First, to the growing research interest in an ‘anthropology of the good’ through its emphasis on the ways in which people engage with each other to make a ‘better life’. Secondly, to the newly evolving ‘anthropology of insurance’ through its combined multi-level analysis and in-depth ethnographic research on social health protection as a social practice. Third, by engaging in a public dialogue, we hope that our insights will be discussed, contested, and appropriated by some of these ‘stakeholders’ and thus make a difference in the comprehension of the important contemporary issues of social health protection reform and more general societal change. The data of this project is only accessible upon explicit request to the contact person and a corresponding positive decision." - } - ], - "alternativeTitles": [ - { - "en": "Participation in Social Health Protection (Tanzania) pshp" - } - ], - "accessConditions": "closed", - "dateCreated": "2022-08-31", - "datePublished": "2022-08-31", - "howToCite": "Obrist B, Dillip A, Mayumana I, Rutishauser M, Simon V (2022). Participation in Social Health Protection: An Anthropological Case Study in Tanzania [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/083D.", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "en": "Swahili" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2022-08-18", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc-nd/4.0/", - "text": "CC BY-NC-ND 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-083D-person-000", - "roles": [ - "PI" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-083D-person-001", - "roles": [ - "Project Leader" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-083D-person-002", - "roles": [ - "Project Leader" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-083D-person-003", - "roles": [ - "Project Member / Researcher" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-083D-person-004", - "roles": [ - "Project Leader" - ] - } - ], - "status": "Finished", - "title": "Participation in Social Health Protection: An Anthropological Case Study in Tanzania", - "typeOfData": [ - "Text" - ] - } + "http://ns.dasch.swiss/repository#dsp-083D-dataset-000" ], - "persons": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-083D-person-001", - "__type": "Person", - "__createdAt": "1660773939497055000", - "__createdBy": "dsp-metadata-gui", - "email": "adillip@apotheker.co.tz", - "familyNames": [ - "Dillip" - ], - "givenNames": [ - "Angel" - ], - "jobTitles": [ - "Director of Research" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-083D-organization-002" - ] - }, + "alternativeNames": [ + { + "en": "Participation in Social Health Protection (Tanzania). pshp" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-083D-person-000", + "description": { + "en": "Over the past decades, ‘participation’ has become a powerful concept of global development. It circulates around the globe and engages policy makers as well as human rights activists. After capturing the imagination of the biggest players in the field, it has attracted massive funding. And as a crucial principle of the Sustainable Development Goals 2015-2030, it can be expected to do so in the future. Anthropologists tend to share the emancipatory and humanitarian concerns implicit in ‘participation’. At the same time, they have become highly critical of the ways in which this popular buzzword is used in contemporary development speak and produce a growing body of empirical evidence about the ambivalences, dilemma and paradoxes created by participatory planning, policies and programs. This project examines ‘participation’ in the emergent field of ‘social health protection’. In order to reach their goal of Universal Health Coverage, the International Labor Office, the World Bank and the World Health organization push social health protection as a key strategy. They come up with diverse measures of public and publicly organized health financing measures for Low and Middle Income Countries, some of which are implemented through ‘induced participation’ and collective forms of ‘organic participation’. The massive attention given to efforts of inducing participation bears the danger of not only obscuring but perhaps even destroying people’s omnipresent but less visible strife for social participation in family and kin networks and self-organized groups to protect their health and improve their life condition. Contemporary Tanzania presents a particularly interesting case for studying participation in social health protection in this broader sense because of her long engagement with changing forms of participatory development and the government’s current aspiration to transform Tanzania into a middle-income country with Universal Health Coverage. The project thus aims at demonstrating that participation in diverse forms of social health protection can be conceived as a social practice which configures and is reconfigured by broader societal and material orders. Combining a multi-level analysis with in-depth ethnographic field research the project will explore understudied aspects in current research on induced and organic participation and thus contribute to transforming current development perspectives on social and societal change. The project thus aims at contributing to three major emerging fields: First, to the growing research interest in an ‘anthropology of the good’ through its emphasis on the ways in which people engage with each other to make a ‘better life’. Secondly, to the newly evolving ‘anthropology of insurance’ through its combined multi-level analysis and in-depth ethnographic research on social health protection as a social practice. Third, by engaging in a public dialogue, we hope that our insights will be discussed, contested, and appropriated by some of these ‘stakeholders’ and thus make a difference in the comprehension of the important contemporary issues of social health protection reform and more general societal change. The data of this project is only accessible upon explicit request to the contact person and a corresponding positive decision." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/240206", + "text": "Ethnology" + }, + { + "en": "10400 Ethnology, social and humangeography" + } + ], + "endDate": "2021-08-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-083D-organization-000" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-083D-grant-000" + ], + "keywords": [ + { + "en": "Ethnology" + }, + { + "en": "Participation" + }, + { + "en": "Social health protection" + }, + { + "en": "Tanzania" + } + ], + "publications": [ + { + "text": "Obrist B, Dillip A, Kalolo A, Mayumana IM, Rutishauser M, Simon VT. Savings Groups for Social Health Protection: A Social Resilience Study in Rural Tanzania. Diseases. 2022; 10(3):63.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.3390/diseases10030063", + "text": "DOI: 10.3390/diseases10030063" + } + ] + }, + { + "text": "Dillip A, Kalolo A, Mayumana I, Rutishauser M, Simon VT, Obrist B. Linking the Community Health Fund with Accredited Drug Dispensing Outlets in Tanzania: exploring potentials, pitfalls, and modalities. J Pharm Policy Pract. 2022 Dec 29;15(1):106. PMID: 36582002; PMCID: PMC9801564.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.1186/s40545-022-00507-y", + "text": "DOI: 10.1186/s40545-022-00507-y" + } + ] + } + ], + "name": "Participation in Social Health Protection: An Anthropological Case Study in Tanzania", + "shortcode": "083D", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/149590/tanzania.html", + "text": "Tanzania" + } + ], + "startDate": "2017-01-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/D6K5MO2tx66Y", + "text": "Modern" + } + ], + "status": "finished" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083D-dataset-000", + "__type": "Dataset", + "__createdAt": "1660773939130188000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-083D-person-002", - "__type": "Person", - "__createdAt": "1660773939497148000", - "__createdBy": "dsp-metadata-gui", - "email": "imayumana@yahoo.com", - "familyNames": [ - "Mayumana" - ], - "givenNames": [ - "Iddy" - ], - "jobTitles": [ - "Executive Director" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-083D-organization-003" - ] - }, + "en": "Over the past decades, ‘participation’ has become a powerful concept of global development. It circulates around the globe and engages policy makers as well as human rights activists. After capturing the imagination of the biggest players in the field, it has attracted massive funding. And as a crucial principle of the Sustainable Development Goals 2015-2030, it can be expected to do so in the future. Anthropologists tend to share the emancipatory and humanitarian concerns implicit in ‘participation’. At the same time, they have become highly critical of the ways in which this popular buzzword is used in contemporary development speak and produce a growing body of empirical evidence about the ambivalences, dilemma and paradoxes created by participatory planning, policies and programs. This project examines ‘participation’ in the emergent field of ‘social health protection’. In order to reach their goal of Universal Health Coverage, the International Labor Office, the World Bank and the World Health organization push social health protection as a key strategy. They come up with diverse measures of public and publicly organized health financing measures for Low and Middle Income Countries, some of which are implemented through ‘induced participation’ and collective forms of ‘organic participation’. The massive attention given to efforts of inducing participation bears the danger of not only obscuring but perhaps even destroying people’s omnipresent but less visible strife for social participation in family and kin networks and self-organized groups to protect their health and improve their life condition. Contemporary Tanzania presents a particularly interesting case for studying participation in social health protection in this broader sense because of her long engagement with changing forms of participatory development and the government’s current aspiration to transform Tanzania into a middle-income country with Universal Health Coverage. The project thus aims at demonstrating that participation in diverse forms of social health protection can be conceived as a social practice which configures and is reconfigured by broader societal and material orders. Combining a multi-level analysis with in-depth ethnographic field research the project will explore understudied aspects in current research on induced and organic participation and thus contribute to transforming current development perspectives on social and societal change. The project thus aims at contributing to three major emerging fields: First, to the growing research interest in an ‘anthropology of the good’ through its emphasis on the ways in which people engage with each other to make a ‘better life’. Secondly, to the newly evolving ‘anthropology of insurance’ through its combined multi-level analysis and in-depth ethnographic research on social health protection as a social practice. Third, by engaging in a public dialogue, we hope that our insights will be discussed, contested, and appropriated by some of these ‘stakeholders’ and thus make a difference in the comprehension of the important contemporary issues of social health protection reform and more general societal change. The data of this project is only accessible upon explicit request to the contact person and a corresponding positive decision." + } + ], + "alternativeTitles": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-083D-person-003", - "__type": "Person", - "__createdAt": "1660773939497237000", - "__createdBy": "dsp-metadata-gui", - "email": "Melina.Rutishauser@unibas.ch", - "familyNames": [ - "Rutishauser" - ], - "givenNames": [ - "Melina" - ], - "jobTitles": [ - "PhD student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-083D-organization-004" - ] - }, + "en": "Participation in Social Health Protection (Tanzania) pshp" + } + ], + "accessConditions": "closed", + "dateCreated": "2022-08-31", + "datePublished": "2022-08-31", + "howToCite": "Obrist B, Dillip A, Mayumana I, Rutishauser M, Simon V (2022). Participation in Social Health Protection: An Anthropological Case Study in Tanzania [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/083D.", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-083D-person-004", - "__type": "Person", - "__createdAt": "1660773939497322000", - "__createdBy": "dsp-metadata-gui", - "email": "Vendelin.Simon@yahoo.com", - "familyNames": [ - "Simon" - ], - "givenNames": [ - "Vendelin" - ], - "jobTitles": [ - "Lecturer, researcher and coordinator of anthropology unit" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-083D-organization-005" - ] + "en": "English", + "de": "Englisch", + "fr": "anglais" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-083D-person-000", - "__type": "Person", - "__createdAt": "1660773939497409000", - "__createdBy": "dsp-metadata-gui", - "email": "brigit.obrist@unibas.ch", - "familyNames": [ - "Obrist" - ], - "givenNames": [ - "Brigit" - ], - "jobTitles": [ - "Professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-083D-organization-001" - ] + "en": "Swahili" } - ], - "organizations": [ + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-083D-organization-001", - "__type": "Organization", - "__createdAt": "1660773939497516000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "", - "postalCode": "", - "locality": "Basel", - "country": "Switzerland" - }, - "name": "Institute of Anthropology, University of Basel" - }, + "__type": "License", + "date": "2022-08-18", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc-nd/4.0/", + "text": "CC BY-NC-ND 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-083D-organization-002", - "__type": "Organization", - "__createdAt": "1660773939584015000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "", - "postalCode": "", - "locality": "Dar es Salaam", - "country": "Tanzania" - }, - "name": "Apotheker Consultancy, Health Access Initiative" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-083D-person-000", + "roles": [ + "PI" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-083D-organization-003", - "__type": "Organization", - "__createdAt": "1660773939666098000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "", - "postalCode": "", - "locality": "Ifakara", - "country": "Tanzania" - }, - "name": "Kilombero Valley Health and Livelihood Promotion" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-083D-person-001", + "roles": [ + "Project Leader" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-083D-organization-004", - "__type": "Organization", - "__createdAt": "1660773939832357000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "", - "postalCode": "", - "locality": "Basel", - "country": "Switzerland" - }, - "name": "Institute of Social Anthropology, University of Basel" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-083D-person-002", + "roles": [ + "Project Leader" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-083D-organization-005", - "__type": "Organization", - "__createdAt": "1660773939894768000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "", - "postalCode": "", - "country": "Tanzania" - }, - "name": "The University of Dar es Salaam" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-083D-person-003", + "roles": [ + "Project Member / Researcher" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-083D-organization-000", - "__type": "Organization", - "__createdAt": "1660773939955138000", - "__createdBy": "dsp-metadata-gui", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.snf.ch/en", - "text": "https://www.snf.ch/en" - } - } - ], - "grants": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-083D-grant-000", - "__type": "Grant", - "__createdAt": "1660773939955352000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-083D-organization-000" - ], - "name": "Project funding", - "number": "169476", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/169476", - "text": "https://data.snf.ch/grants/grant/169476" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-083D-person-004", + "roles": [ + "Project Leader" + ] } - ] -} + ], + "status": "Finished", + "title": "Participation in Social Health Protection: An Anthropological Case Study in Tanzania", + "typeOfData": [ + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083D-person-001", + "__type": "Person", + "__createdAt": "1660773939497055000", + "__createdBy": "dsp-metadata-gui", + "email": "adillip@apotheker.co.tz", + "familyNames": [ + "Dillip" + ], + "givenNames": [ + "Angel" + ], + "jobTitles": [ + "Director of Research" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-083D-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083D-person-002", + "__type": "Person", + "__createdAt": "1660773939497148000", + "__createdBy": "dsp-metadata-gui", + "email": "imayumana@yahoo.com", + "familyNames": [ + "Mayumana" + ], + "givenNames": [ + "Iddy" + ], + "jobTitles": [ + "Executive Director" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-083D-organization-003" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083D-person-003", + "__type": "Person", + "__createdAt": "1660773939497237000", + "__createdBy": "dsp-metadata-gui", + "email": "Melina.Rutishauser@unibas.ch", + "familyNames": [ + "Rutishauser" + ], + "givenNames": [ + "Melina" + ], + "jobTitles": [ + "PhD student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-083D-organization-004" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083D-person-004", + "__type": "Person", + "__createdAt": "1660773939497322000", + "__createdBy": "dsp-metadata-gui", + "email": "Vendelin.Simon@yahoo.com", + "familyNames": [ + "Simon" + ], + "givenNames": [ + "Vendelin" + ], + "jobTitles": [ + "Lecturer, researcher and coordinator of anthropology unit" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-083D-organization-005" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083D-person-000", + "__type": "Person", + "__createdAt": "1660773939497409000", + "__createdBy": "dsp-metadata-gui", + "email": "brigit.obrist@unibas.ch", + "familyNames": [ + "Obrist" + ], + "givenNames": [ + "Brigit" + ], + "jobTitles": [ + "Professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-083D-organization-001" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083D-organization-001", + "__type": "Organization", + "__createdAt": "1660773939497516000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "", + "postalCode": "", + "locality": "Basel", + "country": "Switzerland" + }, + "name": "Institute of Anthropology, University of Basel" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083D-organization-002", + "__type": "Organization", + "__createdAt": "1660773939584015000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "", + "postalCode": "", + "locality": "Dar es Salaam", + "country": "Tanzania" + }, + "name": "Apotheker Consultancy, Health Access Initiative" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083D-organization-003", + "__type": "Organization", + "__createdAt": "1660773939666098000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "", + "postalCode": "", + "locality": "Ifakara", + "country": "Tanzania" + }, + "name": "Kilombero Valley Health and Livelihood Promotion" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083D-organization-004", + "__type": "Organization", + "__createdAt": "1660773939832357000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "", + "postalCode": "", + "locality": "Basel", + "country": "Switzerland" + }, + "name": "Institute of Social Anthropology, University of Basel" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083D-organization-005", + "__type": "Organization", + "__createdAt": "1660773939894768000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "University Rd", + "postalCode": "14113", + "additional": "PO Box 35091", + "locality": "Dar es Salaam", + "country": "Tanzania" + }, + "name": "The University of Dar es Salaam" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-083D-organization-000", + "__type": "Organization", + "__createdAt": "1660773939955138000", + "__createdBy": "dsp-metadata-gui", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.snf.ch/en", + "text": "https://www.snf.ch/en" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-083D-grant-000", + "__type": "Grant", + "__createdAt": "1660773939955352000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-083D-organization-000" + ], + "name": "Project funding", + "number": "169476", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/169476", + "text": "https://data.snf.ch/grants/grant/169476" + } + } + ] +} \ No newline at end of file diff --git a/data/json/portraits-pou.json b/data/json/portraits-pou.json index efeb87b5..ef66309a 100644 --- a/data/json/portraits-pou.json +++ b/data/json/portraits-pou.json @@ -1,235 +1,236 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0827-project", - "__type": "Project", - "__createdAt": "1651843028915508000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Portraits of Unbelonging (POU), 2021, DaSCH. ark.dasch.swiss/ark:/72163/1/0827", - "teaserText": "How do photography and statecraft intersect in the making and unmaking of citizens? How and why did photography become a new media for unmaking subjects in late 19th c Ottoman empire?", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0827-dataset-000" - ], - "alternativeNames": [ - { - "en": "POU" - }, - { - "en": "Portraits of Unbelonging (POU)" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0827-person-000", - "description": { - "en": "This database lists all individuals who left the Ottoman empire through the terk-i tabiiyet process based on documents in the Ottoman archives in Istanbul. These Ottoman Armenians were permitted to leave on the condition that they expatriate and never return hence these photographs that predate passport photographs by a decade or more are bureaucratic documents of exclusion, taken as part of unmaking these individuals as Ottoman subjects. Hence, they are portraits of unbelonging. This database lists every glass negative that must have existed at some point with the names of all individuals whose likeness would have been captured in the negative. Moreover it charts the circulation of all bureaucratic documents pertaining to the terk-I tabiiyet process." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/5101/html", - "text": "Cultural anthropology" - }, - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/5901/html", - "text": "International relations " - } - ], - "endDate": "2024-12-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0827-organization-000" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0827-grant-000" - ], - "keywords": [ - { - "en": "Ottoman empire" - }, - { - "en": "citizenship" - }, - { - "en": "emigration" - }, - { - "en": "expatriation" - }, - { - "en": "migration" - }, - { - "en": "mobility" - }, - { - "en": "nationality" - }, - { - "en": "photography" - }, - { - "en": "subjecthood" - }, - { - "en": "surveillance" - } - ], - "name": "Portraits of Unbelonging: Photography, the Ottoman State, and the making of Armenian emigrants 1896-1908", - "shortcode": "0827", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/298795/republic-of-turkey.html", - "text": "Turkey" - } - ], - "startDate": "2019-03-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/nFHLcF9nTOUL", - "text": "Ottoman" - } - ] - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0827-project", + "__type": "Project", + "__createdAt": "1651843028915508000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Portraits of Unbelonging (POU), 2021, DaSCH. ark.dasch.swiss/ark:/72163/1/0827", + "teaserText": "How do photography and statecraft intersect in the making and unmaking of citizens? How and why did photography become a new media for unmaking subjects in late 19th c Ottoman empire?", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0827-dataset-000" + ], + "alternativeNames": [ + { + "en": "POU" + }, + { + "en": "Portraits of Unbelonging (POU)" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0827-person-000", + "description": { + "en": "This database lists all individuals who left the Ottoman empire through the terk-i tabiiyet process based on documents in the Ottoman archives in Istanbul. These Ottoman Armenians were permitted to leave on the condition that they expatriate and never return hence these photographs that predate passport photographs by a decade or more are bureaucratic documents of exclusion, taken as part of unmaking these individuals as Ottoman subjects. Hence, they are portraits of unbelonging. This database lists every glass negative that must have existed at some point with the names of all individuals whose likeness would have been captured in the negative. Moreover it charts the circulation of all bureaucratic documents pertaining to the terk-I tabiiyet process." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/5101/html", + "text": "Cultural anthropology" + }, + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/5901/html", + "text": "International relations " + } + ], + "endDate": "2024-12-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0827-organization-000" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0827-grant-000" + ], + "keywords": [ + { + "en": "Ottoman empire" + }, + { + "en": "citizenship" + }, + { + "en": "emigration" + }, + { + "en": "expatriation" + }, + { + "en": "migration" + }, + { + "en": "mobility" + }, + { + "en": "nationality" + }, + { + "en": "photography" + }, + { + "en": "subjecthood" + }, + { + "en": "surveillance" + } + ], + "name": "Portraits of Unbelonging: Photography, the Ottoman State, and the making of Armenian emigrants 1896-1908", + "shortcode": "0827", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/298795/republic-of-turkey.html", + "text": "Turkey" + } + ], + "startDate": "2019-03-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/nFHLcF9nTOUL", + "text": "Ottoman" + } + ], + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0827-dataset-000", + "__type": "Dataset", + "__createdAt": "1651843031869757000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0827-dataset-000", - "__type": "Dataset", - "__createdAt": "1651843031869757000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The dataset lists all individuals who left the Ottoman empire through the terk-i tabiiyet process based on documents in the Ottoman archives in Istanbul. These Ottoman Armenians were permitted to leave on the condition that they expatriate and never return, hence these photographs that predate passport photographs by a decade or more are bureaucratic documents of exclusion, taken as part of unmaking these individuals as Ottoman subjects. Hence, they are portraits of unbelonging. This dataset lists every glass negative that must have existed at some point with the names of all individuals whose likeness would have been captured in the negative. Moreover, it charts the circulation of all bureaucratic documents pertaining to the terk-I tabiiyet process." - } - ], - "alternativeTitles": [ - { - "en": "POU" - } - ], - "accessConditions": "closed", - "howToCite": "Portraits of Unbelonging (POU), 2021, DaSCH. ark.dasch.swiss/ark:/72163/1/0827", - "languages": [ - { - "en": "Armenian" - }, - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "en": "Turkish" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2022-05-06", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", - "text": "CC BY-NC-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0827-person-000", - "roles": [ - "Principal Investigator" - ] - } - ], - "status": "Ongoing", - "title": "Portraits of Unbelonging", - "typeOfData": [ - "Image", - "Text" - ] + "en": "The dataset lists all individuals who left the Ottoman empire through the terk-i tabiiyet process based on documents in the Ottoman archives in Istanbul. These Ottoman Armenians were permitted to leave on the condition that they expatriate and never return, hence these photographs that predate passport photographs by a decade or more are bureaucratic documents of exclusion, taken as part of unmaking these individuals as Ottoman subjects. Hence, they are portraits of unbelonging. This dataset lists every glass negative that must have existed at some point with the names of all individuals whose likeness would have been captured in the negative. Moreover, it charts the circulation of all bureaucratic documents pertaining to the terk-I tabiiyet process." } - ], - "persons": [ + ], + "alternativeTitles": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0827-person-000", - "__type": "Person", - "__createdAt": "1651843032375487000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Department of Anthropology, Ruth Adams Building, 131 George St", - "postalCode": "NJ 08901", - "locality": "New Brunswick", - "country": "USA" - }, - "email": "z.gursel@rutgers.edu", - "familyNames": [ - "Gürsel" - ], - "givenNames": [ - "Zeynep", - "Devrim" - ], - "jobTitles": [ - "Associate Professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0827-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-0473-5883", - "text": "ORCID URL: https://orcid.org/0000-0003-0473-5883" - } - ] + "en": "POU" } - ], - "organizations": [ + ], + "accessConditions": "closed", + "howToCite": "Portraits of Unbelonging (POU), 2021, DaSCH. ark.dasch.swiss/ark:/72163/1/0827", + "languages": [ + { + "en": "Armenian" + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0827-organization-001", - "__type": "Organization", - "__createdAt": "1651843032411107000", - "__createdBy": "dsp-metadata-gui", - "name": "Rutgers University" + "en": "English", + "de": "Englisch", + "fr": "anglais" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0827-organization-000", - "__type": "Organization", - "__createdAt": "1651843032411168000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Claridenstrasse 26", - "postalCode": "8002", - "locality": "Zurich", - "country": "Switzerland" - }, - "name": "NOMIS Foundation", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://nomisfoundation.ch/", - "text": "https://nomisfoundation.ch/" - } + "en": "Turkish" } - ], - "grants": [ + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0827-grant-000", - "__type": "Grant", - "__createdAt": "1651843032485509000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0827-organization-000" - ] + "__type": "License", + "date": "2022-05-06", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", + "text": "CC BY-NC-SA 4.0" + } } - ] -} + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0827-person-000", + "roles": [ + "Principal Investigator" + ] + } + ], + "status": "Ongoing", + "title": "Portraits of Unbelonging", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0827-person-000", + "__type": "Person", + "__createdAt": "1651843032375487000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Department of Anthropology, Ruth Adams Building, 131 George St", + "postalCode": "NJ 08901", + "locality": "New Brunswick", + "country": "USA" + }, + "email": "z.gursel@rutgers.edu", + "familyNames": [ + "Gürsel" + ], + "givenNames": [ + "Zeynep", + "Devrim" + ], + "jobTitles": [ + "Associate Professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0827-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-0473-5883", + "text": "ORCID URL: https://orcid.org/0000-0003-0473-5883" + } + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0827-organization-001", + "__type": "Organization", + "__createdAt": "1651843032411107000", + "__createdBy": "dsp-metadata-gui", + "name": "Rutgers University" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0827-organization-000", + "__type": "Organization", + "__createdAt": "1651843032411168000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Claridenstrasse 26", + "postalCode": "8002", + "locality": "Zurich", + "country": "Switzerland" + }, + "name": "NOMIS Foundation", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://nomisfoundation.ch/", + "text": "https://nomisfoundation.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0827-grant-000", + "__type": "Grant", + "__createdAt": "1651843032485509000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0827-organization-000" + ] + } + ] +} \ No newline at end of file diff --git a/data/json/posepi.json b/data/json/posepi.json index 595aaa04..8d78a41b 100644 --- a/data/json/posepi.json +++ b/data/json/posepi.json @@ -1,392 +1,392 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0120-project", - "__type": "Project", - "__createdAt": "1714468073822719000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Jacquin, J., Keck, A., Robin, C., Roh, S., Rivoal, M. (2024). Marqueurs épistémiques et évidentiels du français identifiés et annotés dans un corpus d'interactions relevant de débats politiques et de réunions d’entreprise [Projet FNS 188924, POSEPI] [base de données] (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0120", - "teaserText": "A systematic and multimodal study of French epistemic and evidential markers as emerging in various professional/institutional settings documented by “natural“ video-recorded data.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0120-dataset-000" - ], - "alternativeNames": [ - { - "en": "posepi" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0120-person-000", - "dataManagementPlan": { - "__type": "DataManagementPlan", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://doi.org/10.5281/zenodo.7038186", - "text": "https://doi.org/10.5281/zenodo.7038186" - }, - "available": true - }, - "description": { - "fr": "Comment exprime-t-on et assume-t-on, en français, le fait de savoir quelque chose, d'en douter ou de l'ignorer ? On pourrait croire que cette question d'apparence si simple a été réglée depuis longtemps, tant elle résonne avec notre quotidien : ne sommes-nous pas en effet en permanence en train de moduler, nuancer, adapter le degré de certitude de ce que nous disons et de plus ou moins afficher les sources, des plus directes aux plus indirectes, sur lesquelles nous basons ce que nous avançons ? Les linguistes, y compris celles et ceux qui se sont penchés sur le français, ont certes circonscrit ce qu'on appelle la modalité épistémique, d'une part, le domaine évidentiel de l'autre, identifiant toute une série de marqueurs, des plus lexicaux (« peut-être », « probablement ») aux plus phraséologiques (« il se peut », « il me semble », « j'en sais rien »), qui permettent à une locutrice ou un locuteur de moduler la prise en charge du contenu qu'il ou elle avance. Toutefois, il n'existait encore aucune étude empirique, basée sur un ensemble de données naturelles constituées en corpus, qui propose une analyse systématique de ces marqueurs du savoir, du non-savoir et du doute tels qu'ils apparaissent dans des interactions authentiques et tels qu'ils servent, en leur sein, à élaborer des jeux de positionnements respectifs ([je sais, tu ne sais pas]; [nous savons, ils doutent]; etc.).\n\n\n\nLe présent projet présente ainsi la première étude systématique des marqueurs épistémiques et évidentiels du français tels qu'ils émergent dans un corpus documentant 28 heures d'interactions naturelles, 14 étant tirées de débats publics et télévisés, 14 de réunions professionnelles. Ces données originales ont été recueillies et confectionnées lors de recherches antérieures. Elles présentent l'intérêt d'être vidéo-enregistrées et donc de permettre une prise en compte de la dimension mimo-gestuelle, de manière à sortir d'un verbo-centrisme largement critiqué et embrasser une approche plus multimodale du langage et de la communication. Le fait que ces données documentent deux types d'interaction différents - les débats politiques et les réunions professionnelles - rend finalement possibles des comparaisons entre les deux contextes. \n\n\n\nL'objectif d'étudier systématiquement les marqueurs épistémiques et évidentiels a rencontré un état de la littérature particulièrement fragmenté, qu'il s'agisse de perspectives, de données ou de définitions. Ce faisant, le projet a impliqué une avancée sur les fronts théorique, méthodologique et analytique. Au plan théorique, le projet clarifie, sur une base empirique, les rapports entre les domaines de l'épistémique et de l'évidentiel en français. Au plan méthodologique, le projet présente un cadre d'analyse qui articule panorama quantitatif d'ensemble et explorations qualitatives de détail. Au plan analytique, le projet propose une analyse systématique des marqueurs du savoir, du non-savoir et du doute en français tels qu'ils émergent d'un corpus de données naturelles et lie ceux-ci aux positions prises par les locutrices et locuteurs dans l'interaction. Sur ces trois fronts, le projet articule les apports et les perspectives des trois champs disciplinaires que sont la linguistique de l’énonciation, la linguistique interactionnelle et l’analyse conversationnelle multimodale, de manière à ce que chaque observable soit considéré dans ses dimensions énonciative, interactionnelle et multimodale.\n\n\n\nEn termes de pertinence et d’impact, et au travers de deux recherches doctorales et d'une monographie accessibles en open access, le projet contribue à une meilleure compréhension du langage - en général - et des ressources énonciatives spécifiques que sont les marqueurs épistémiques/évidentiels - en particulier - du point de vue de leur fonctionnement interactionnel. Il propose non seulement un enrichissement mutuel de la linguistique de l’énonciation et de la linguistique interactionnelle, mais aussi une modélisation qui intègre le rôle de la multimodalité. Le projet propose enfin une analyse d’une langue peu explorée du point de vue du positionnement épistémique et il contribue de ce fait à poser les bases pour des comparaisons interlinguistiques, très sollicitées à l’heure actuelle." + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0120-project", + "__type": "Project", + "__createdAt": "1714468073822719000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Jacquin, J., Keck, A., Robin, C., Roh, S., Rivoal, M. (2024). Marqueurs épistémiques et évidentiels du français identifiés et annotés dans un corpus d'interactions relevant de débats politiques et de réunions d’entreprise [Projet FNS 188924, POSEPI] [base de données] (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0120", + "teaserText": "A systematic and multimodal study of French epistemic and evidential markers as emerging in various professional/institutional settings documented by “natural“ video-recorded data.", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0120-dataset-000" + ], + "alternativeNames": [ + { + "en": "posepi" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0120-person-000", + "dataManagementPlan": { + "__type": "DataManagementPlan", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://doi.org/10.5281/zenodo.7038186", + "text": "https://doi.org/10.5281/zenodo.7038186" + }, + "available": true + }, + "description": { + "fr": "Comment exprime-t-on et assume-t-on, en français, le fait de savoir quelque chose, d'en douter ou de l'ignorer ? On pourrait croire que cette question d'apparence si simple a été réglée depuis longtemps, tant elle résonne avec notre quotidien : ne sommes-nous pas en effet en permanence en train de moduler, nuancer, adapter le degré de certitude de ce que nous disons et de plus ou moins afficher les sources, des plus directes aux plus indirectes, sur lesquelles nous basons ce que nous avançons ? Les linguistes, y compris celles et ceux qui se sont penchés sur le français, ont certes circonscrit ce qu'on appelle la modalité épistémique, d'une part, le domaine évidentiel de l'autre, identifiant toute une série de marqueurs, des plus lexicaux (« peut-être », « probablement ») aux plus phraséologiques (« il se peut », « il me semble », « j'en sais rien »), qui permettent à une locutrice ou un locuteur de moduler la prise en charge du contenu qu'il ou elle avance. Toutefois, il n'existait encore aucune étude empirique, basée sur un ensemble de données naturelles constituées en corpus, qui propose une analyse systématique de ces marqueurs du savoir, du non-savoir et du doute tels qu'ils apparaissent dans des interactions authentiques et tels qu'ils servent, en leur sein, à élaborer des jeux de positionnements respectifs ([je sais, tu ne sais pas]; [nous savons, ils doutent]; etc.).\n\n\n\nLe présent projet présente ainsi la première étude systématique des marqueurs épistémiques et évidentiels du français tels qu'ils émergent dans un corpus documentant 28 heures d'interactions naturelles, 14 étant tirées de débats publics et télévisés, 14 de réunions professionnelles. Ces données originales ont été recueillies et confectionnées lors de recherches antérieures. Elles présentent l'intérêt d'être vidéo-enregistrées et donc de permettre une prise en compte de la dimension mimo-gestuelle, de manière à sortir d'un verbo-centrisme largement critiqué et embrasser une approche plus multimodale du langage et de la communication. Le fait que ces données documentent deux types d'interaction différents - les débats politiques et les réunions professionnelles - rend finalement possibles des comparaisons entre les deux contextes. \n\n\n\nL'objectif d'étudier systématiquement les marqueurs épistémiques et évidentiels a rencontré un état de la littérature particulièrement fragmenté, qu'il s'agisse de perspectives, de données ou de définitions. Ce faisant, le projet a impliqué une avancée sur les fronts théorique, méthodologique et analytique. Au plan théorique, le projet clarifie, sur une base empirique, les rapports entre les domaines de l'épistémique et de l'évidentiel en français. Au plan méthodologique, le projet présente un cadre d'analyse qui articule panorama quantitatif d'ensemble et explorations qualitatives de détail. Au plan analytique, le projet propose une analyse systématique des marqueurs du savoir, du non-savoir et du doute en français tels qu'ils émergent d'un corpus de données naturelles et lie ceux-ci aux positions prises par les locutrices et locuteurs dans l'interaction. Sur ces trois fronts, le projet articule les apports et les perspectives des trois champs disciplinaires que sont la linguistique de l’énonciation, la linguistique interactionnelle et l’analyse conversationnelle multimodale, de manière à ce que chaque observable soit considéré dans ses dimensions énonciative, interactionnelle et multimodale.\n\n\n\nEn termes de pertinence et d’impact, et au travers de deux recherches doctorales et d'une monographie accessibles en open access, le projet contribue à une meilleure compréhension du langage - en général - et des ressources énonciatives spécifiques que sont les marqueurs épistémiques/évidentiels - en particulier - du point de vue de leur fonctionnement interactionnel. Il propose non seulement un enrichissement mutuel de la linguistique de l’énonciation et de la linguistique interactionnelle, mais aussi une modélisation qui intègre le rôle de la multimodalité. Le projet propose enfin une analyse d’une langue peu explorée du point de vue du positionnement épistémique et il contribue de ce fait à poser les bases pour des comparaisons interlinguistiques, très sollicitées à l’heure actuelle." + }, + "disciplines": [ + { + "en": "10502 Romance languages and literature" + }, + { + "en": "10607 Applied linguistics" + } + ], + "endDate": "2024-03-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0120-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0120-grant-000" + ], + "keywords": [ + { + "en": "Conversation Analysis" + }, + { + "en": "Epistemic Modality" + }, + { + "en": "Evidentiality" + }, + { + "en": "French Linguistics" + }, + { + "en": "Interactional Linguistics" + }, + { + "en": "Linguistics" + }, + { + "en": "Multimodality" + }, + { + "en": "Talk-in-Interaction" + } + ], + "name": "Prendre une position épistémique dans l’interaction. Les marqueurs du savoir, du non-savoir et du doute en français", + "shortcode": "0120", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434", + "text": "Switzerland" + } + ], + "startDate": "2020-03-01", + "temporalCoverage": [ + { + "de": "2007-2018", + "en": "2007-2018", + "fr": "2007-2018" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/OYPOsaE5TLeQjhRC4QTwgQ", + "text": "Discover Project Data" + }, + "status": "finished" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0120-dataset-000", + "__type": "Dataset", + "__createdAt": "1714468079571147000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ + { + "fr": "La base de données consiste en près de 4000 marqueurs épistémiques et évidentiels du français identifiés, extraits et annotés à partir d’un corpus d’interactions verbales relevant de débats politiques et de réunions d’entreprise. Chaque token est annoté au niveau morpho-syntaxique, énonciatif, interactionnel et multimodal. \r La base de données est organisée autour de 7 classes, dont la principale, “Marqueur”, renvoie à un “Lemme”, à une éventuelle portée ainsi qu’à une typologie de gestes (“Mimogestualité”). Les classes “Evènement” et “Participant” précisent le contexte dans lequel sont relevés ces marqueurs et qualifient les rôles des participants. \r Les données primaires à partir desquelles les marqueurs ont été identifiés, extraits et annotés sont consultables ici: http://clapi.icar.cnrs.fr/Posepi/. \r La base de données a été constituée dans le cadre du projet FNS \"Prendre une position épistémique dans l’interaction. Les marqueurs du savoir, du non-savoir et du doute en français\" [188924, POSEPI]." + } + ], + "accessConditions": "open", + "datePublished": "2024-05-01", + "additional": [ + { + "__type": "URL", + "type": "URL", + "url": "http://clapi.icar.cnrs.fr/Posepi/", + "text": "Please find more information on CLAPI-POSEPI here" }, - "disciplines": [ - { - "en": "10502 Romance languages and literature" - }, - { - "en": "10607 Applied linguistics" - } - ], - "endDate": "2024-03-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0120-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0120-grant-000" - ], - "keywords": [ - { - "en": "Conversation Analysis" - }, - { - "en": "Epistemic Modality" - }, - { - "en": "Evidentiality" - }, - { - "en": "French Linguistics" - }, - { - "en": "Interactional Linguistics" - }, - { - "en": "Linguistics" - }, - { - "en": "Multimodality" - }, - { - "en": "Talk-in-Interaction" - } - ], - "name": "Prendre une position épistémique dans l’interaction. Les marqueurs du savoir, du non-savoir et du doute en français", - "shortcode": "0120", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434", - "text": "Switzerland" - } - ], - "startDate": "2020-03-01", - "temporalCoverage": [ - { - "de": "2007-2018", - "en": "2007-2018", - "fr": "2007-2018" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/OYPOsaE5TLeQjhRC4QTwgQ", - "text": "Discover Project Data" + { + "__type": "URL", + "type": "URL", + "url": "https://zenodo.org/records/7266737", + "text": "Please find more on Guide d'annotation du projet POSEPI on zenodo here" } - }, - "datasets": [ + ], + "howToCite": "Jacquin, J., Keck, A., Robin, C., Roh, S., Rivoal, M. (2024). Marqueurs épistémiques et évidentiels du français identifiés et annotés dans un corpus d'interactions relevant de débats politiques et de réunions d’entreprise [Projet FNS 188924, POSEPI] [base de données] (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0120", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0120-dataset-000", - "__type": "Dataset", - "__createdAt": "1714468079571147000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "fr": "La base de données consiste en près de 4000 marqueurs épistémiques et évidentiels du français identifiés, extraits et annotés à partir d’un corpus d’interactions verbales relevant de débats politiques et de réunions d’entreprise. Chaque token est annoté au niveau morpho-syntaxique, énonciatif, interactionnel et multimodal. \r La base de données est organisée autour de 7 classes, dont la principale, “Marqueur”, renvoie à un “Lemme”, à une éventuelle portée ainsi qu’à une typologie de gestes (“Mimogestualité”). Les classes “Evènement” et “Participant” précisent le contexte dans lequel sont relevés ces marqueurs et qualifient les rôles des participants. \r Les données primaires à partir desquelles les marqueurs ont été identifiés, extraits et annotés sont consultables ici: http://clapi.icar.cnrs.fr/Posepi/. \r La base de données a été constituée dans le cadre du projet FNS \"Prendre une position épistémique dans l’interaction. Les marqueurs du savoir, du non-savoir et du doute en français\" [188924, POSEPI]." - } - ], - "accessConditions": "open", - "datePublished": "2024-05-01", - "additional": [ - { - "__type": "URL", - "type": "URL", - "url": "http://clapi.icar.cnrs.fr/Posepi/", - "text": "Please find more information on CLAPI-POSEPI here" - }, - { - "__type": "URL", - "type": "URL", - "url": "https://zenodo.org/records/7266737", - "text": "Please find more on Guide d'annotation du projet POSEPI on zenodo here" - } - ], - "howToCite": "Jacquin, J., Keck, A., Robin, C., Roh, S., Rivoal, M. (2024). Marqueurs épistémiques et évidentiels du français identifiés et annotés dans un corpus d'interactions relevant de débats politiques et de réunions d’entreprise [Projet FNS 188924, POSEPI] [base de données] (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0120", - "languages": [ - { - "en": "French", - "de": "Französisch", - "fr": "français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2024-04-30", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0/", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0120-person-000", - "roles": [ - "Project Leader", - "Data Curator", - "Data Collector" - - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0120-person-002", - "roles": [ - "Project Member", - "Researcher", - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0120-person-001", - "roles": [ - "Project Member", - "Researcher", - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0120-person-003", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0120-person-004", - "roles": [ - "Other" - ] - } - ], - "status": "Finished", - "title": "Marqueurs épistémiques et évidentiels du français identifiés et annotés dans un corpus d'interactions relevant de débats politiques et de réunions d’entreprise", - "typeOfData": [ - "Text" - ] + "en": "French", + "de": "Französisch", + "fr": "français" } - ], - "persons": [ + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0120-person-000", - "__type": "Person", - "__createdAt": "1714468079876204000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Sciences du Langage et de l’Information\r Université de Lausanne\r Anthropole — bureau 3134", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "email": "jerome.jacquin@unil.ch", - "familyNames": [ - "Jacquin" - ], - "givenNames": [ - "Jérôme" - ], - "jobTitles": [ - "Senior lecture" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0120-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0001-8174-4973", - "text": "ORCID URL: https://orcid.org/0000-0001-8174-4973" - } - ] + "__type": "License", + "date": "2024-04-30", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0120-person-000", + "roles": [ + "Project Leader", + "Data Curator", + "Data Collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0120-person-002", - "__type": "Person", - "__createdAt": "1714468079836485000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Sciences du Langage et de l’Information\r Université de Lausanne\r Anthropole", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "email": "anaclaudia.keck@unil.ch", - "familyNames": [ - "Keck" - ], - "givenNames": [ - "Ana Claudia" - ], - "jobTitles": [ - "PhD student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0120-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0120-person-002", + "roles": [ + "Project Member", + "Researcher", + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0120-person-001", - "__type": "Person", - "__createdAt": "1714468079776762000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Sciences du Langage et de l’Information\r Université de Lausanne\r Anthropole", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "email": "clotilde.robin@unil.ch", - "familyNames": [ - "Robin" - ], - "givenNames": [ - "Clotilde" - ], - "jobTitles": [ - "PhD student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0120-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0120-person-001", + "roles": [ + "Project Member", + "Researcher", + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0120-person-003", - "__type": "Person", - "__createdAt": "1714468079776560000", - "__createdBy": "dsp-metadata-gui", - "email": "marion.rivoal@unil.ch", - "familyNames": [ - "Rivoal" - ], - "givenNames": [ - "Marion" - ], - "jobTitles": [ - "Researcher manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0120-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-4185-7169", - "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0120-person-003", + "roles": [ + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0120-person-004", - "__type": "Person", - "__createdAt": "1714468079776689000", - "__createdBy": "dsp-metadata-gui", - "email": "loic.jaouen@unil.ch", - "familyNames": [ - "Jaouen" - ], - "givenNames": [ - "Loïc" - ], - "jobTitles": [ - "IT support" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0120-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0120-person-004", + "roles": [ + "Other" + ] } - ], - "organizations": [ + ], + "status": "Finished", + "title": "Marqueurs épistémiques et évidentiels du français identifiés et annotés dans un corpus d'interactions relevant de débats politiques et de réunions d’entreprise", + "typeOfData": [ + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0120-person-000", + "__type": "Person", + "__createdAt": "1714468079876204000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Sciences du Langage et de l’Information\r Université de Lausanne\r Anthropole — bureau 3134", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "email": "jerome.jacquin@unil.ch", + "familyNames": [ + "Jacquin" + ], + "givenNames": [ + "Jérôme" + ], + "jobTitles": [ + "Senior lecture" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0120-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0120-organization-001", - "__type": "Organization", - "__createdAt": "1714468079920073000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3", - "postalCode": "CH-3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0120-organization-000", - "__type": "Organization", - "__createdAt": "1714468079960004000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Unicentre", - "postalCode": "CH-1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "name": "Université de Lausanne", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unil.ch/", - "text": "https://www.unil.ch/" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0001-8174-4973", + "text": "ORCID URL: https://orcid.org/0000-0001-8174-4973" } - ], - "grants": [ + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0120-person-002", + "__type": "Person", + "__createdAt": "1714468079836485000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Sciences du Langage et de l’Information\r Université de Lausanne\r Anthropole", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "email": "anaclaudia.keck@unil.ch", + "familyNames": [ + "Keck" + ], + "givenNames": [ + "Ana Claudia" + ], + "jobTitles": [ + "PhD student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0120-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0120-person-001", + "__type": "Person", + "__createdAt": "1714468079776762000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Sciences du Langage et de l’Information\r Université de Lausanne\r Anthropole", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "email": "clotilde.robin@unil.ch", + "familyNames": [ + "Robin" + ], + "givenNames": [ + "Clotilde" + ], + "jobTitles": [ + "PhD student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0120-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0120-person-003", + "__type": "Person", + "__createdAt": "1714468079776560000", + "__createdBy": "dsp-metadata-gui", + "email": "marion.rivoal@unil.ch", + "familyNames": [ + "Rivoal" + ], + "givenNames": [ + "Marion" + ], + "jobTitles": [ + "Researcher manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0120-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0120-grant-000", - "__type": "Grant", - "__createdAt": "1714468080004458000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0120-organization-001" - ], - "name": "Project funding", - "number": "188924", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/188924", - "text": "https://data.snf.ch/grants/grant/188924" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4185-7169", + "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" } - ] -} + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0120-person-004", + "__type": "Person", + "__createdAt": "1714468079776689000", + "__createdBy": "dsp-metadata-gui", + "email": "loic.jaouen@unil.ch", + "familyNames": [ + "Jaouen" + ], + "givenNames": [ + "Loïc" + ], + "jobTitles": [ + "IT support" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0120-organization-000" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0120-organization-001", + "__type": "Organization", + "__createdAt": "1714468079920073000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3", + "postalCode": "CH-3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0120-organization-000", + "__type": "Organization", + "__createdAt": "1714468079960004000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Unicentre", + "postalCode": "CH-1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "name": "Université de Lausanne", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unil.ch/", + "text": "https://www.unil.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0120-grant-000", + "__type": "Grant", + "__createdAt": "1714468080004458000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0120-organization-001" + ], + "name": "Project funding", + "number": "188924", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/188924", + "text": "https://data.snf.ch/grants/grant/188924" + } + } + ] +} \ No newline at end of file diff --git a/data/json/postkarten.json b/data/json/postkarten.json index 8c4d2827..c1e7d7c9 100644 --- a/data/json/postkarten.json +++ b/data/json/postkarten.json @@ -1,139 +1,144 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0811-project", - "__type": "Project", - "__createdAt": "1652361078113030000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Postkarten Russland (2023). [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0811", - "teaserText": "The project makes an extensive collection of Russian postcards public which is held by the Chair of Eastern European History at the University of Basel.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0811-dataset-000" - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0811-person-000", - "description": { - "en": "The invention of photography and the worldwide professionalization and unification of the postal system fundamentally changed communication in the middle of the 19th century. In 1872, only three years after the first - still imageless - postcards circulated in Austria-Hungary, they were also admitted to the Russian postal system. The first Universal Postal Congress, which was held in Berne in 1874 and was followed by over 22 countries, finally unified the new medium and increasingly printed with photographic motifs from the 1880s onwards. They first made this cheap form of communication a popular mass medium. The modern postcard was born. In 1875, more than 231 million postcards were sent - by 1900 it was supposed to be 2.8 billion.\nHowever, the Russian market lagged behind this development. Due to state monopolies, which were only slowly dismantled shortly before the turn of the 20th century, foreign companies dominated the Russian market for a long time. Only slowly, but then more and more successful, Russian companies gained stable market shares - market giants such as the Swedish company Granberg had to accept the fact that companies such as the Moscow photo studio Nabholz, Scherer and Co. now offered postcards of equal quality. In addition, however, many small and local print and photo studios in particular ensured that the range of products and services offered in the Russian Empire became increasingly diverse. One example of this is the Tashkent enterprise of photographer I, who presumably came from Transcaucasia. A. Bek-Nazarov.\n\nBut postcards cannot only be read as symbols of increasingly globalized markets and international standardization processes. They demonstrate just how quickly individuals and various groups of people acquired this medium and changed it beyond its commercial or propaganda purposes: numerous cultural and social practices emerged: postcards were sent, described, scribbled, collected, exchanged, framed, destroyed or transformed into bookmarks. For example, cards with the motif of the imperial family were probably held respectfully in the icon corner - in other contexts, however, the deliberate damage to the imperial paper counterfeit expressed resistance or rejection.\n\nAt that time as well as today, ghosts and tastes differed in their different motives and dressings - and in some cases even aroused national pride or the professional honor of the viewers: The Russian photographer Sergei Prokudin-Gorskij, who himself published postcards in St. Petersburg, remarked during a stay in Central Asia:\"Today I bought a postcard of the city of Samarkand. The seller told me with some pride that the letter had been printed abroad using a photographic method, as if it was impossible to make such a reproduction in Russia. This may be partly true - but I have seldom seen such bad pressure, not even in miserable printing houses - but this was a special case.\"\n\nExamples such as these are the examples that demonstrate the source value of the medium for modern history studies by pointing out a purely art- or technology-historical reading of this source, which up to now has mostly been understood as a serial source, and by suggesting the individual material biographies of individual pieces or social practices of certain actors that can be interpreted in terms of cultural history.\n\nFor this reason, the Chair of Modern and Eastern European History at the University of Basel has decided to make its collection of postcards from the Russian Empire accessible to a broad public." - }, - "disciplines": [ - { - "en": "Eastern European History" - } - ], - "keywords": [ - { - "en": "postcards" - }, - { - "en": "Russia" - }, - { - "en": "history" - } - ], - "name": "Postkarten Russland", - "shortcode": "0811", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2017370/russian-federation.html", - "text": "Russia" - } - ], - "startDate": "2019-07-04", - "temporalCoverage": [ - { - "en": "19th century" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/vNYc6-z_ST-a_ENjDxSZjQ", - "text": "Discover Project Data" - }, - "secondaryURL": { - "__type": "URL", - "type": "URL", - "url": "https://data.dasch.swiss/postcards/", - "text": "Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0811-project", + "__type": "Project", + "__createdAt": "1652361078113030000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Postkarten Russland (2023). [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0811", + "teaserText": "The project makes an extensive collection of Russian postcards public which is held by the Chair of Eastern European History at the University of Basel.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0811-dataset-000" + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0811-person-000", + "description": { + "en": "The invention of photography and the worldwide professionalization and unification of the postal system fundamentally changed communication in the middle of the 19th century. In 1872, only three years after the first - still imageless - postcards circulated in Austria-Hungary, they were also admitted to the Russian postal system. The first Universal Postal Congress, which was held in Berne in 1874 and was followed by over 22 countries, finally unified the new medium and increasingly printed with photographic motifs from the 1880s onwards. They first made this cheap form of communication a popular mass medium. The modern postcard was born. In 1875, more than 231 million postcards were sent - by 1900 it was supposed to be 2.8 billion.\nHowever, the Russian market lagged behind this development. Due to state monopolies, which were only slowly dismantled shortly before the turn of the 20th century, foreign companies dominated the Russian market for a long time. Only slowly, but then more and more successful, Russian companies gained stable market shares - market giants such as the Swedish company Granberg had to accept the fact that companies such as the Moscow photo studio Nabholz, Scherer and Co. now offered postcards of equal quality. In addition, however, many small and local print and photo studios in particular ensured that the range of products and services offered in the Russian Empire became increasingly diverse. One example of this is the Tashkent enterprise of photographer I, who presumably came from Transcaucasia. A. Bek-Nazarov.\n\nBut postcards cannot only be read as symbols of increasingly globalized markets and international standardization processes. They demonstrate just how quickly individuals and various groups of people acquired this medium and changed it beyond its commercial or propaganda purposes: numerous cultural and social practices emerged: postcards were sent, described, scribbled, collected, exchanged, framed, destroyed or transformed into bookmarks. For example, cards with the motif of the imperial family were probably held respectfully in the icon corner - in other contexts, however, the deliberate damage to the imperial paper counterfeit expressed resistance or rejection.\n\nAt that time as well as today, ghosts and tastes differed in their different motives and dressings - and in some cases even aroused national pride or the professional honor of the viewers: The Russian photographer Sergei Prokudin-Gorskij, who himself published postcards in St. Petersburg, remarked during a stay in Central Asia:\"Today I bought a postcard of the city of Samarkand. The seller told me with some pride that the letter had been printed abroad using a photographic method, as if it was impossible to make such a reproduction in Russia. This may be partly true - but I have seldom seen such bad pressure, not even in miserable printing houses - but this was a special case.\"\n\nExamples such as these are the examples that demonstrate the source value of the medium for modern history studies by pointing out a purely art- or technology-historical reading of this source, which up to now has mostly been understood as a serial source, and by suggesting the individual material biographies of individual pieces or social practices of certain actors that can be interpreted in terms of cultural history.\n\nFor this reason, the Chair of Modern and Eastern European History at the University of Basel has decided to make its collection of postcards from the Russian Empire accessible to a broad public." + }, + "disciplines": [ + { + "en": "Eastern European History" + } + ], + "keywords": [ + { + "en": "postcards" + }, + { + "en": "Russia" + }, + { + "en": "history" + } + ], + "name": "Postkarten Russland", + "shortcode": "0811", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2017370/russian-federation.html", + "text": "Russia" + } + ], + "startDate": "2019-07-04", + "temporalCoverage": [ + { + "en": "19th century" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/vNYc6-z_ST-a_ENjDxSZjQ", + "text": "Discover Project Data" + }, + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://data.dasch.swiss/postcards/", + "text": "Project Website" + }, + "status": "finished" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0811-dataset-000", + "__type": "Dataset", + "__createdAt": "1652361078207182000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0811-dataset-000", - "__type": "Dataset", - "__createdAt": "1652361078207182000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The invention of photography and the worldwide professionalization and unification of the postal system fundamentally changed communication in the middle of the 19th century. In 1872, postcards were admitted to the Russian postal system. The Russian market was dominated by foreign companies for a long time. Slowly, but then more and more Russian companies gained stable market shares and many small and local print and photo studios in particular ensured that the range of products and services offered in the Russian Empire became increasingly diverse. The project makes the collection of postcards from the Russian Empire of the Chair of Modern and Eastern European History at the University of Basel accessible to a broad public." - } - ], - "accessConditions": "open", - "howToCite": "Postkarten Russland (2023). [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0811", - "languages": [ - { - "en": "Russian", - "en": "French", - "en": "German" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2023-05-05", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by/4.0/", - "text": "CC BY 4.0" - } - } - ], - "status": "Finished", - "title": "Postkarten aus dem Russländischen Reich: Die Sammlung Radzievsky", - "typeOfData": [ - "Image" - ] + "en": "The invention of photography and the worldwide professionalization and unification of the postal system fundamentally changed communication in the middle of the 19th century. In 1872, postcards were admitted to the Russian postal system. The Russian market was dominated by foreign companies for a long time. Slowly, but then more and more Russian companies gained stable market shares and many small and local print and photo studios in particular ensured that the range of products and services offered in the Russian Empire became increasingly diverse. The project makes the collection of postcards from the Russian Empire of the Chair of Modern and Eastern European History at the University of Basel accessible to a broad public." } - ], - "persons": [ + ], + "accessConditions": "open", + "howToCite": "Postkarten Russland (2023). [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/0811", + "languages": [ + { + "en": "Russian" + }, + { + "en": "French" + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0811-person-000", - "__type": "Person", - "__createdAt": "1652361078368442000", - "__createdBy": "dsp-metadata-gui", - "email": "benjamin.schenk@unibas.ch", - "familyNames": [ - "Schenk" - ], - "givenNames": [ - "Frithjof", - "Benjamin" - ], - "jobTitles": [ - "Professor für Osteuropäische Geschichte" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0811-organization-000" - ] + "en": "German" } - ], - "organizations": [ + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0811-organization-000", - "__type": "Organization", - "__createdAt": "1652361078368625000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "", - "postalCode": "", - "locality": "Basel", - "country": "Switzerland" - }, - "name": "Universität Basel, Departement Geschichte" + "__type": "License", + "date": "2023-05-05", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by/4.0/", + "text": "CC BY 4.0" + } } - ] -} + ], + "status": "Finished", + "title": "Postkarten aus dem Russländischen Reich: Die Sammlung Radzievsky", + "typeOfData": [ + "Image" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0811-person-000", + "__type": "Person", + "__createdAt": "1652361078368442000", + "__createdBy": "dsp-metadata-gui", + "email": "benjamin.schenk@unibas.ch", + "familyNames": [ + "Schenk" + ], + "givenNames": [ + "Frithjof", + "Benjamin" + ], + "jobTitles": [ + "Professor für Osteuropäische Geschichte" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0811-organization-000" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0811-organization-000", + "__type": "Organization", + "__createdAt": "1652361078368625000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "", + "postalCode": "", + "locality": "Basel", + "country": "Switzerland" + }, + "name": "Universität Basel, Departement Geschichte" + } + ] +} \ No newline at end of file diff --git a/data/json/prethero.json b/data/json/prethero.json index a022956f..2c981667 100644 --- a/data/json/prethero.json +++ b/data/json/prethero.json @@ -1,295 +1,296 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0119-project", - "__type": "Project", - "__createdAt": "1660830383338024000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Wawrzyniak, N., Doudet, E., Rivoal, M., Premiers théâtres romands [base de données] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0119. Wawrzyniak, N., Doudet, E., Rivoal, M., Early French-Swiss Theater [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0119.", - "teaserText": "The project documents theatrical practices in the French-Swiss regions between the 15ᵗʰ and 16ᵗʰ c. It is a part of the SNSF project focused on versified public communication in French (15ᵗʰ-16ᵗʰ c.)", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0119-dataset-000" - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0119-person-001", - "dataManagementPlan": { - "__type": "DataManagementPlan", - "available": true - }, - "description": { - "en": "The project “Early French-Swiss Theater” documents the development of theatrical practices in the French-speaking regions of present-day Switzerland between the fifteenth and sixteenth centuries. It contains records of performances, groups and individuals involved in theater activities, and provides access to surviving plays, historical testimonies, archives of performances, and a bibliography that allow researchers and the public to reconstruct the origins of Swiss theatrical culture in French. This work is a part of the SNSF project entitled “Medialiterature: Literary Poetics and Social Uses of Public Communication in French (15ᵗʰ-16ᵗʰ c.)”, that studies the development of public rhetoric in French at the time of major upheavals, such as the invention of the printing press and the rise of the Reformation. The SNSF project explores the ways in which the cultural model of the “orator”, promoted initially by intellectuals, was shared within wider communities that cultivated specific poetic genres such as verse historiography, occasional poetry, and political theater, and used these genres as media. At the intersection of literary, cultural and media history, the project engages in a comparative study of unpublished texts and archives from France and the French-speaking regions of modern-day Switzerland and Belgium between 1450 and 1550." - }, - "disciplines": [ - { - "en": "10301 General history (without pre-and early history)" - }, - { - "en": "10302 Swiss history" - }, - { - "en": "10406 Theatre and Cinema" - }, - { - "en": "10502 Romance languages and literature" - } - ], - "endDate": "2024-09-30", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0119-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0119-grant-000" - ], - "keywords": [ - { - "en": "15th-century Literature in French" - }, - { - "en": "16th-century Literature in French" - }, - { - "en": "Cultural History of Switzerland" - }, - { - "en": "Cultural Studies" - }, - { - "en": "History of books" - }, - { - "en": "Reformation studies" - }, - { - "en": "Theater Studies" - } - ], - "name": "Premiers théâtres romands", - "shortcode": "0119", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/", - "text": "Switzerland" - } - ], - "startDate": "2020-08-01", - "temporalCoverage": [ - { - "en": "15th-16th c." - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/0119", - "text": "Discover Project Data" - }, - "secondaryURL": { - "__type": "URL", - "type": "URL", - "url": "https://medialitt.hypotheses.org/", - "text": "External Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0119-project", + "__type": "Project", + "__createdAt": "1660830383338024000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Wawrzyniak, N., Doudet, E., Rivoal, M., Premiers théâtres romands [base de données] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0119. Wawrzyniak, N., Doudet, E., Rivoal, M., Early French-Swiss Theater [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0119.", + "teaserText": "The project documents theatrical practices in the French-Swiss regions between the 15ᵗʰ and 16ᵗʰ c. It is a part of the SNSF project focused on versified public communication in French (15ᵗʰ-16ᵗʰ c.)", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0119-dataset-000" + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0119-person-001", + "dataManagementPlan": { + "__type": "DataManagementPlan", + "available": true + }, + "description": { + "en": "The project “Early French-Swiss Theater” documents the development of theatrical practices in the French-speaking regions of present-day Switzerland between the fifteenth and sixteenth centuries. It contains records of performances, groups and individuals involved in theater activities, and provides access to surviving plays, historical testimonies, archives of performances, and a bibliography that allow researchers and the public to reconstruct the origins of Swiss theatrical culture in French. This work is a part of the SNSF project entitled “Medialiterature: Literary Poetics and Social Uses of Public Communication in French (15ᵗʰ-16ᵗʰ c.)”, that studies the development of public rhetoric in French at the time of major upheavals, such as the invention of the printing press and the rise of the Reformation. The SNSF project explores the ways in which the cultural model of the “orator”, promoted initially by intellectuals, was shared within wider communities that cultivated specific poetic genres such as verse historiography, occasional poetry, and political theater, and used these genres as media. At the intersection of literary, cultural and media history, the project engages in a comparative study of unpublished texts and archives from France and the French-speaking regions of modern-day Switzerland and Belgium between 1450 and 1550." + }, + "disciplines": [ + { + "en": "10301 General history (without pre-and early history)" + }, + { + "en": "10302 Swiss history" + }, + { + "en": "10406 Theatre and Cinema" + }, + { + "en": "10502 Romance languages and literature" + } + ], + "endDate": "2024-09-30", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0119-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0119-grant-000" + ], + "keywords": [ + { + "en": "15th-century Literature in French" + }, + { + "en": "16th-century Literature in French" + }, + { + "en": "Cultural History of Switzerland" + }, + { + "en": "Cultural Studies" + }, + { + "en": "History of books" + }, + { + "en": "Reformation studies" + }, + { + "en": "Theater Studies" + } + ], + "name": "Premiers théâtres romands", + "shortcode": "0119", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/", + "text": "Switzerland" + } + ], + "startDate": "2020-08-01", + "temporalCoverage": [ + { + "en": "15th-16th c." + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/0119", + "text": "Discover Project Data" + }, + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://medialitt.hypotheses.org/", + "text": "External Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0119-dataset-000", + "__type": "Dataset", + "__createdAt": "1660830384475881000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0119-dataset-000", - "__type": "Dataset", - "__createdAt": "1660830384475881000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The database “Early French-Swiss Theater” documents the development of theatrical practices in the French-speaking regions of present-day Switzerland between the fifteenth and sixteenth centuries. It contains records of performances, groups and individuals involved in theater activities, and provides access to surviving plays, historical testimonies, archives of performances, and a bibliography that allow researchers and the public to reconstruct the origins of Swiss theatrical culture in French." - } - ], - "alternativeTitles": [ - { - "en": "prethero" - } - ], - "accessConditions": "open", - "howToCite": "Wawrzyniak, N., Doudet, E., Rivoal, M., Premiers théâtres romands [base de données] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0119.\r \r Wawrzyniak, N., Doudet, E., Rivoal, M., Early French-Swiss Theater [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0119.", - "languages": [ - { - "en": "French", - "de": "Französisch", - "fr": "français" - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0119-person-001", - "roles": [ - "Project Leader" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0119-person-000", - "roles": [ - "Project Member, Data Collector, Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0119-person-002", - "roles": [ - "Data Curator" - ] - } - ], - "status": "Ongoing", - "title": "Premiers théâtres romands", - "typeOfData": [ - "Image", - "Text" - ] + "en": "The database “Early French-Swiss Theater” documents the development of theatrical practices in the French-speaking regions of present-day Switzerland between the fifteenth and sixteenth centuries. It contains records of performances, groups and individuals involved in theater activities, and provides access to surviving plays, historical testimonies, archives of performances, and a bibliography that allow researchers and the public to reconstruct the origins of Swiss theatrical culture in French." } - ], - "persons": [ + ], + "alternativeTitles": [ + { + "en": "prethero" + } + ], + "accessConditions": "open", + "howToCite": "Wawrzyniak, N., Doudet, E., Rivoal, M., Premiers théâtres romands [base de données] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0119.\r \r Wawrzyniak, N., Doudet, E., Rivoal, M., Early French-Swiss Theater [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0119.", + "languages": [ + { + "en": "French", + "de": "Französisch", + "fr": "français" + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0119-person-000", - "__type": "Person", - "__createdAt": "1660830384601784000", - "__createdBy": "dsp-metadata-gui", - "email": "natalia.wawrzyniak@unil.ch", - "familyNames": [ - "Wawrzyniak" - ], - "givenNames": [ - "Natalia" - ], - "jobTitles": [ - "post-doctoral researcher / senior SNFS researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0119-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-0565-2222", - "text": "ORCID URL: https://orcid.org/0000-0002-0565-2222" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0119-person-001", + "roles": [ + "Project Leader" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0119-person-002", - "__type": "Person", - "__createdAt": "1660830384601957000", - "__createdBy": "dsp-metadata-gui", - "email": "marion.rivoal@unil.ch", - "familyNames": [ - "Rivoal" - ], - "givenNames": [ - "Marion" - ], - "jobTitles": [ - "Research manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0119-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-4185-7169", - "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0119-person-000", + "roles": [ + "Project Member, Data Collector, Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0119-person-001", - "__type": "Person", - "__createdAt": "1660830384602117000", - "__createdBy": "dsp-metadata-gui", - "email": "estelle.doudet@unil.ch", - "familyNames": [ - "Doudet" - ], - "givenNames": [ - "Estelle" - ], - "jobTitles": [ - "Full professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0119-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-4072-0913", - "text": "ORCID URL: https://orcid.org/0000-0002-4072-0913" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0119-person-002", + "roles": [ + "Data Curator" + ] } - ], - "organizations": [ + ], + "status": "Ongoing", + "title": "Premiers théâtres romands", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0119-person-000", + "__type": "Person", + "__createdAt": "1660830384601784000", + "__createdBy": "dsp-metadata-gui", + "email": "natalia.wawrzyniak@unil.ch", + "familyNames": [ + "Wawrzyniak" + ], + "givenNames": [ + "Natalia" + ], + "jobTitles": [ + "post-doctoral researcher / senior SNFS researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0119-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0119-organization-001", - "__type": "Organization", - "__createdAt": "1660830384602292000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3, Case postale", - "postalCode": "3001", - "locality": "Berne", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-0565-2222", + "text": "ORCID URL: https://orcid.org/0000-0002-0565-2222" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0119-person-002", + "__type": "Person", + "__createdAt": "1660830384601957000", + "__createdBy": "dsp-metadata-gui", + "email": "marion.rivoal@unil.ch", + "familyNames": [ + "Rivoal" + ], + "givenNames": [ + "Marion" + ], + "jobTitles": [ + "Research manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0119-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0119-organization-000", - "__type": "Organization", - "__createdAt": "1660830384661787000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Unicentre", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "name": "Université de Lausanne", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unil.ch/", - "text": "https://www.unil.ch/" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4185-7169", + "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" } - ], - "grants": [ + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0119-person-001", + "__type": "Person", + "__createdAt": "1660830384602117000", + "__createdBy": "dsp-metadata-gui", + "email": "estelle.doudet@unil.ch", + "familyNames": [ + "Doudet" + ], + "givenNames": [ + "Estelle" + ], + "jobTitles": [ + "Full professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0119-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0119-grant-000", - "__type": "Grant", - "__createdAt": "1660830384724063000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0119-organization-001" - ], - "name": "Project funding", - "number": "192400", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/192400", - "text": "https://data.snf.ch/grants/grant/192400" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-4072-0913", + "text": "ORCID URL: https://orcid.org/0000-0002-4072-0913" } - ] -} + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0119-organization-001", + "__type": "Organization", + "__createdAt": "1660830384602292000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3, Case postale", + "postalCode": "3001", + "locality": "Berne", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0119-organization-000", + "__type": "Organization", + "__createdAt": "1660830384661787000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Unicentre", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "name": "Université de Lausanne", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unil.ch/", + "text": "https://www.unil.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0119-grant-000", + "__type": "Grant", + "__createdAt": "1660830384724063000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0119-organization-001" + ], + "name": "Project funding", + "number": "192400", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/192400", + "text": "https://data.snf.ch/grants/grant/192400" + } + } + ] +} \ No newline at end of file diff --git a/data/json/prom_know.json b/data/json/prom_know.json index b85b23e4..08e4bbde 100644 --- a/data/json/prom_know.json +++ b/data/json/prom_know.json @@ -1,446 +1,447 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0117-project", - "__type": "Project", - "__createdAt": "1692889740948937000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "R. Sigrist, 2023, Base de données sur les savants de la période 1700-1870 [base de données], Swiss National Data and Service Center for the Humanities (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0117.", - "teaserText": "The professionalization of science is often conceptualized as the exclusion of amateurs. We show on the contrary that this became only through the development of scientific culture and networks.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0117-dataset-000" - ], - "alternativeNames": [ - { - "en": "prom-know" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0117-person-000", - "description": { - "fr": "La recherche historique s’appuie sur un recensement de près de 12'000 individus engagés dans la recherche scientifique entre 1700 et 1870, dont les parcours de vie de 5’000 européens et nord-américains en astronomie, physique, chimie et botanique. Elle analyse les statuts sociaux et les profils de carrière de savants reconnus ainsi que les pratiques de recherche de centaines d’amateurs de science. En considérant des groupes de chercheurs en France, en Grande-Bretagne, dans les pays germaniques, en Italie, en Suède et en Russie, on caractérise les attentes des sociétés civiles envers la science ainsi que ses retombées.\n\nLa recherche comprend aussi une analyse de réseaux académiques et non-académiques. Dessinés par une combinaison de liens de formation, de collaboration, d’influences intellectuelles et d’échanges d’informations, leur analyse combine une approche historique et une approche sociologique pour prendre en compte de la dimension temporelle et la dynamique de la science moderne. La description des dynamiques à l’œuvre dans différentes communautés de recherche seront confrontées aux données et aux théories issues la recherche sur les réseaux contemporains de collaboration et de partenariat intellectuel.\n\nAprès avoir été considéré comme une affaire de génies ou comme enjeu de rivalités nationales, le développement de la science aux 18e et 19e siècles apparaît aujourd’hui comme une entreprise culturelle et sociale complexe, faite de réseaux dont la nature et les caractéristiques restent à étudier. La première phase de professionnalisation de la science, souvent décrite comme un processus d’exclusion des amateurs, serait plutôt un développement accéléré des réseaux scientifiques dans des secteurs de plus en plus large des sociétés européennes en voie de modernisation." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/5502", - "text": "General History" - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/63", - "text": "Sociology" - } - ], - "endDate": "2020-07-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0117-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0117-grant-000" - ], - "keywords": [ - { - "en": "18th century" - }, - { - "en": "19th century" - }, - { - "en": "Databases" - }, - { - "en": "Early Modern science" - }, - { - "en": "Professionalization of research" - }, - { - "en": "Prosopography" - }, - { - "en": "Science network" - }, - { - "en": "Scientific culture" - }, - { - "en": "Social network analysis" - } - ], - "name": "Promoting Knowledge. The Origins of the Science System and the Making of Professional Structures in European States, 1700-1870", - "publications": [ - { - "text": "1. René Sigrist, “The rise of “Academic science” in Europe, 1700-1870: A demographic and geographic approach”, Annali di Storia delle Università Italiane, 21 (2017), p. 203-243. ISSN: 1127-8250,", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://www.rivisteweb.it/doi/10.17396/88314", - "text": "rivisteweb.it/doi/10.17396/88314" - } - ] - }, - { - "text": "2. René Sigrist & Alexander Moutchnik, « Les fondements sociaux du premier essor de la botanique en Russie, 1700-1830 » Almagest. International Journal for the History of Scientific Ideas, 8/1 (2017), p. 38-75. Print ISSN: 1792-2593 Online ISSN: 2507-0371.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.1484/J.ALMAGEST.5.113697", - "text": "DOI: 10.1484/J.ALMAGEST.5.113697" - }, - { - "__type": "URL", - "type": "DOI", - "url": "https://www.brepolsonline.net/doi/abs/10.1484/J.ALMAGEST.5.113697", - "text": "brepolsonline.net/doi/abs/10.1484/J.ALMAGEST.5.113697" - } - ] - }, - { - "text": "3. René Sigrist & Sonia Zanier, « La botanique dans un contexte local : les jardins de Florence à l’époque des grands-ducs (1569-1859) », Gesnerus, 74/1 (2017), p. 5-52. 01-052_Sigrist.pdf", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://gesnerus.ch/_Resources/Persistent/7c128d18e09b9f004a180b30bb680686bde5ba88/0", - "text": "https://gesnerus.ch/_Resources/Persistent/7c128d18e09b9f004a180b30bb680686bde5ba88/0" - } - ] - }, - { - "text": "4. René Sigrist & Dominique Vinck, « Le rôle des “objets intermédiaires” dans l’étude naturaliste du Mont-Blanc, 1740-1825 », Archives des Sciences, 69 (2017), p. 101-136. BIB_BFD3ECE440DA.P001/REF", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://serval.unil.ch/resource/serval", - "text": "https://serval.unil.ch/resource/serval" - } - ] - }, - { - "text": "5. René Sigrist, “The First Generations of Russian Chemists (1700-1830): Between Pharmacy, Technical Know How and Academia”, Almagest. International Journal for the History of Scientific Ideas, 10/2 (2019), p. 7-49.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://www.brepolsonline.net/doi/pdf/10.1484/J.ALMAGEST.5.119493", - "text": "brepolsonline.net/doi/pdf/10.1484/J.ALMAGEST.5.119493" - } - ] - }, - { - "text": "6. René Sigrist, « L’innovation technique à Genève à l’époque de la première industrialisation (1750-1850) : discours, attitudes et enjeux », Archives des Sciences, 71, 2020, p. 205-226." - }, - { - "text": "7. René Sigrist, « Correspondances scientifiques du 18e siècle. Un essai d’analyse statistique », Mélanges de l’école française de Rome, Italie et Méditerranée." - } - ], - "shortcode": "0117", - "spatialCoverage": [ - { - "__type": "URL", - "type": "URL", - "url": "http://vocab.getty.edu/page/tgn/7008591", - "text": "United Kingdom" - }, - { - "__type": "URL", - "type": "URL", - "url": "http://vocab.getty.edu/page/tgn/7002435", - "text": "Russia" - }, - { - "__type": "URL", - "type": "URL", - "url": "http://vocab.getty.edu/page/tgn/1000080", - "text": "Italy" - }, - { - "__type": "URL", - "type": "URL", - "url": "http://vocab.getty.edu/page/tgn/8711753", - "text": "German Empire" - }, - { - "__type": "URL", - "type": "URL", - "url": "http://vocab.getty.edu/page/tgn/1000070", - "text": "France" - }, - { - "__type": "URL", - "type": "URL", - "url": "http://vocab.getty.edu/page/tgn/1000097", - "text": "Sweden" - } - ], - "startDate": "2016-06-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p09hq4n534b", - "text": "XVIIIe siècle EC" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p09hq4ns9gt", - "text": "XIXe siècle EC" - } - ], - "url": { + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0117-project", + "__type": "Project", + "__createdAt": "1692889740948937000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "R. Sigrist, 2023, Base de données sur les savants de la période 1700-1870 [base de données], Swiss National Data and Service Center for the Humanities (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0117.", + "teaserText": "The professionalization of science is often conceptualized as the exclusion of amateurs. We show on the contrary that this became only through the development of scientific culture and networks.", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0117-dataset-000" + ], + "alternativeNames": [ + { + "en": "prom-know" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0117-person-000", + "description": { + "fr": "La recherche historique s’appuie sur un recensement de près de 12'000 individus engagés dans la recherche scientifique entre 1700 et 1870, dont les parcours de vie de 5’000 européens et nord-américains en astronomie, physique, chimie et botanique. Elle analyse les statuts sociaux et les profils de carrière de savants reconnus ainsi que les pratiques de recherche de centaines d’amateurs de science. En considérant des groupes de chercheurs en France, en Grande-Bretagne, dans les pays germaniques, en Italie, en Suède et en Russie, on caractérise les attentes des sociétés civiles envers la science ainsi que ses retombées.\n\nLa recherche comprend aussi une analyse de réseaux académiques et non-académiques. Dessinés par une combinaison de liens de formation, de collaboration, d’influences intellectuelles et d’échanges d’informations, leur analyse combine une approche historique et une approche sociologique pour prendre en compte de la dimension temporelle et la dynamique de la science moderne. La description des dynamiques à l’œuvre dans différentes communautés de recherche seront confrontées aux données et aux théories issues la recherche sur les réseaux contemporains de collaboration et de partenariat intellectuel.\n\nAprès avoir été considéré comme une affaire de génies ou comme enjeu de rivalités nationales, le développement de la science aux 18e et 19e siècles apparaît aujourd’hui comme une entreprise culturelle et sociale complexe, faite de réseaux dont la nature et les caractéristiques restent à étudier. La première phase de professionnalisation de la science, souvent décrite comme un processus d’exclusion des amateurs, serait plutôt un développement accéléré des réseaux scientifiques dans des secteurs de plus en plus large des sociétés européennes en voie de modernisation." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/5502", + "text": "General History" + }, + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/63", + "text": "Sociology" + } + ], + "endDate": "2020-07-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0117-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0117-grant-000" + ], + "keywords": [ + { + "en": "18th century" + }, + { + "en": "19th century" + }, + { + "en": "Databases" + }, + { + "en": "Early Modern science" + }, + { + "en": "Professionalization of research" + }, + { + "en": "Prosopography" + }, + { + "en": "Science network" + }, + { + "en": "Scientific culture" + }, + { + "en": "Social network analysis" + } + ], + "name": "Promoting Knowledge. The Origins of the Science System and the Making of Professional Structures in European States, 1700-1870", + "publications": [ + { + "text": "1. René Sigrist, “The rise of “Academic science” in Europe, 1700-1870: A demographic and geographic approach”, Annali di Storia delle Università Italiane, 21 (2017), p. 203-243. ISSN: 1127-8250,", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://www.rivisteweb.it/doi/10.17396/88314", + "text": "rivisteweb.it/doi/10.17396/88314" + } + ] + }, + { + "text": "2. René Sigrist & Alexander Moutchnik, « Les fondements sociaux du premier essor de la botanique en Russie, 1700-1830 » Almagest. International Journal for the History of Scientific Ideas, 8/1 (2017), p. 38-75. Print ISSN: 1792-2593 Online ISSN: 2507-0371.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.1484/J.ALMAGEST.5.113697", + "text": "DOI: 10.1484/J.ALMAGEST.5.113697" + }, + { + "__type": "URL", + "type": "DOI", + "url": "https://www.brepolsonline.net/doi/abs/10.1484/J.ALMAGEST.5.113697", + "text": "brepolsonline.net/doi/abs/10.1484/J.ALMAGEST.5.113697" + } + ] + }, + { + "text": "3. René Sigrist & Sonia Zanier, « La botanique dans un contexte local : les jardins de Florence à l’époque des grands-ducs (1569-1859) », Gesnerus, 74/1 (2017), p. 5-52. 01-052_Sigrist.pdf", + "url": [ + { "__type": "URL", "type": "URL", - "url": "https://app.dasch.swiss/project/Lg4VTMu4QTSs8I-SPSCoqw", - "text": "Discover Project Data" - } + "url": "https://gesnerus.ch/_Resources/Persistent/7c128d18e09b9f004a180b30bb680686bde5ba88/0", + "text": "https://gesnerus.ch/_Resources/Persistent/7c128d18e09b9f004a180b30bb680686bde5ba88/0" + } + ] + }, + { + "text": "4. René Sigrist & Dominique Vinck, « Le rôle des “objets intermédiaires” dans l’étude naturaliste du Mont-Blanc, 1740-1825 », Archives des Sciences, 69 (2017), p. 101-136. BIB_BFD3ECE440DA.P001/REF", + "url": [ + { + "__type": "URL", + "type": "URL", + "url": "https://serval.unil.ch/resource/serval", + "text": "https://serval.unil.ch/resource/serval" + } + ] + }, + { + "text": "5. René Sigrist, “The First Generations of Russian Chemists (1700-1830): Between Pharmacy, Technical Know How and Academia”, Almagest. International Journal for the History of Scientific Ideas, 10/2 (2019), p. 7-49.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://www.brepolsonline.net/doi/pdf/10.1484/J.ALMAGEST.5.119493", + "text": "brepolsonline.net/doi/pdf/10.1484/J.ALMAGEST.5.119493" + } + ] + }, + { + "text": "6. René Sigrist, « L’innovation technique à Genève à l’époque de la première industrialisation (1750-1850) : discours, attitudes et enjeux », Archives des Sciences, 71, 2020, p. 205-226." + }, + { + "text": "7. René Sigrist, « Correspondances scientifiques du 18e siècle. Un essai d’analyse statistique », Mélanges de l’école française de Rome, Italie et Méditerranée." + } + ], + "shortcode": "0117", + "spatialCoverage": [ + { + "__type": "URL", + "type": "URL", + "url": "http://vocab.getty.edu/page/tgn/7008591", + "text": "United Kingdom" + }, + { + "__type": "URL", + "type": "URL", + "url": "http://vocab.getty.edu/page/tgn/7002435", + "text": "Russia" + }, + { + "__type": "URL", + "type": "URL", + "url": "http://vocab.getty.edu/page/tgn/1000080", + "text": "Italy" + }, + { + "__type": "URL", + "type": "URL", + "url": "http://vocab.getty.edu/page/tgn/8711753", + "text": "German Empire" + }, + { + "__type": "URL", + "type": "URL", + "url": "http://vocab.getty.edu/page/tgn/1000070", + "text": "France" + }, + { + "__type": "URL", + "type": "URL", + "url": "http://vocab.getty.edu/page/tgn/1000097", + "text": "Sweden" + } + ], + "startDate": "2016-06-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p09hq4n534b", + "text": "XVIIIe siècle EC" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p09hq4ns9gt", + "text": "XIXe siècle EC" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/Lg4VTMu4QTSs8I-SPSCoqw", + "text": "Discover Project Data" }, - "datasets": [ + "status": "finished" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0117-dataset-000", + "__type": "Dataset", + "__createdAt": "1692889749305688000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0117-dataset-000", - "__type": "Dataset", - "__createdAt": "1692889749305688000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "fr": "Cette base de données inclut 11'121 savants reconnus qui étaient âgés de 20 ans et plus entre 1700 et 1870. Est défini comme « savant reconnu » tout individu affilié pour ses travaux scientifiques à l’une au moins des six principales académies de l’époque concernée (Royal Society de Londres ; académies de Paris, Berlin, Stockholm, St-Pétersbourg et Bologne), ou recensé dans le Historical Catalogue of Scientists and Scientific Books publié en 1984 par Robert M. Gascoigne.\r La partie librement accessible de cette base de données (initialement crée en FileMaker Pro), a été migrée dans un modèle relationnel en SQL. Elle inclut une partie des données biographiques, relationnelles et bibliographiques collectées dans le cadre de deux projets FNS successifs, données qui concernent notamment les astronomes, les physiciens, les chimistes et les botanistes européens et nord-américains. Ces données sont plus complètes pour le groupe des « grands savants » (1/4 de l’échantillon environ), ce groupe étant défini comme l’ensemble des individus ayant bénéficié d’affiliations multiples aux six principales académies de la période 1700-1870, ou inclus dans le Dictionary of Scientific Biography édité entre 1970 et 1980 sous la direction de Charles C. Gillispie.\r Le modèle de données repose sur les classes suivantes : « Savant » (informations biographiques et relatives à la carrière des savants) ; « Champ » (principales disciplines dans lesquels ces savants se sont illustrés) ; « Correspondance » (recension de la correspondance qu’ont entretenue ces savants entre eux) et « Lien » (typologie des relations de travail qui se sont nouées entre ces savants)." - } - ], - "accessConditions": "open", - "dateCreated": "2023-05-01", - "datePublished": "2023-05-01", - "additional": [ - { - "__type": "URL", - "type": "URL", - "url": "https://doi.org/10.5281/zenodo.3956437", - "text": "Please find additional documentation here" - } - ], - "howToCite": "R. Sigrist, 2023, Base de données sur les savants de la période 1700-1870 [base de données], Swiss National Data and Service Center for the Humanities (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0117.", - "languages": [ - { - "en": "French", - "de": "Französisch", - "fr": "français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2023-08-24", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0117-person-000", - "roles": [ - "Project Leader, Project Manager" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0117-person-001", - "roles": [ - "Project Member, Data Collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0117-person-002", - "roles": [ - "Project Member, Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0117-person-003", - "roles": [ - "Data Curator" - ] - } - ], - "status": "Finished", - "title": "Base de données sur les savants de la période 1700-1870", - "typeOfData": [ - "Text" - ] + "fr": "Cette base de données inclut 11'121 savants reconnus qui étaient âgés de 20 ans et plus entre 1700 et 1870. Est défini comme « savant reconnu » tout individu affilié pour ses travaux scientifiques à l’une au moins des six principales académies de l’époque concernée (Royal Society de Londres ; académies de Paris, Berlin, Stockholm, St-Pétersbourg et Bologne), ou recensé dans le Historical Catalogue of Scientists and Scientific Books publié en 1984 par Robert M. Gascoigne.\r La partie librement accessible de cette base de données (initialement crée en FileMaker Pro), a été migrée dans un modèle relationnel en SQL. Elle inclut une partie des données biographiques, relationnelles et bibliographiques collectées dans le cadre de deux projets FNS successifs, données qui concernent notamment les astronomes, les physiciens, les chimistes et les botanistes européens et nord-américains. Ces données sont plus complètes pour le groupe des « grands savants » (1/4 de l’échantillon environ), ce groupe étant défini comme l’ensemble des individus ayant bénéficié d’affiliations multiples aux six principales académies de la période 1700-1870, ou inclus dans le Dictionary of Scientific Biography édité entre 1970 et 1980 sous la direction de Charles C. Gillispie.\r Le modèle de données repose sur les classes suivantes : « Savant » (informations biographiques et relatives à la carrière des savants) ; « Champ » (principales disciplines dans lesquels ces savants se sont illustrés) ; « Correspondance » (recension de la correspondance qu’ont entretenue ces savants entre eux) et « Lien » (typologie des relations de travail qui se sont nouées entre ces savants)." } - ], - "persons": [ + ], + "accessConditions": "open", + "dateCreated": "2023-05-01", + "datePublished": "2023-05-01", + "additional": [ + { + "__type": "URL", + "type": "URL", + "url": "https://doi.org/10.5281/zenodo.3956437", + "text": "Please find additional documentation here" + } + ], + "howToCite": "R. Sigrist, 2023, Base de données sur les savants de la période 1700-1870 [base de données], Swiss National Data and Service Center for the Humanities (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0117.", + "languages": [ + { + "en": "French", + "de": "Französisch", + "fr": "français" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2023-08-24", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0117-person-001", - "__type": "Person", - "__createdAt": "1692889751059747000", - "__createdBy": "dsp-metadata-gui", - "email": "sigrist.rene@bluewin.ch", - "familyNames": [ - "Sigrist" - ], - "givenNames": [ - "René" - ], - "jobTitles": [ - "Scientific collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0117-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0117-person-000", + "roles": [ + "Project Leader, Project Manager" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0117-person-002", - "__type": "Person", - "__createdAt": "1692889751059843000", - "__createdBy": "dsp-metadata-gui", - "email": "christelle.cocco@unil.ch", - "familyNames": [ - "Cocco" - ], - "givenNames": [ - "Christelle" - ], - "jobTitles": [ - "Scientific collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0117-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0001-6684-9806", - "text": "ORCID URL: https://orcid.org/0000-0001-6684-9806" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0117-person-001", + "roles": [ + "Project Member, Data Collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0117-person-003", - "__type": "Person", - "__createdAt": "1692889751059981000", - "__createdBy": "dsp-metadata-gui", - "email": "marion.rivoal@unil.ch", - "familyNames": [ - "Rivoal" - ], - "givenNames": [ - "Marion" - ], - "jobTitles": [ - "Researcher manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0117-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-4185-7169", - "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0117-person-002", + "roles": [ + "Project Member, Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0117-person-000", - "__type": "Person", - "__createdAt": "1692889751060112000", - "__createdBy": "dsp-metadata-gui", - "email": "dominique.vinck@unil.ch", - "familyNames": [ - "Vinck" - ], - "givenNames": [ - "Dominique" - ], - "jobTitles": [ - "Full professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0117-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0001-7835-7008", - "text": "ORCID URL: https://orcid.org/0000-0001-7835-7008" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0117-person-003", + "roles": [ + "Data Curator" + ] } - ], - "organizations": [ + ], + "status": "Finished", + "title": "Base de données sur les savants de la période 1700-1870", + "typeOfData": [ + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0117-person-001", + "__type": "Person", + "__createdAt": "1692889751059747000", + "__createdBy": "dsp-metadata-gui", + "email": "sigrist.rene@bluewin.ch", + "familyNames": [ + "Sigrist" + ], + "givenNames": [ + "René" + ], + "jobTitles": [ + "Scientific collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0117-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0117-person-002", + "__type": "Person", + "__createdAt": "1692889751059843000", + "__createdBy": "dsp-metadata-gui", + "email": "christelle.cocco@unil.ch", + "familyNames": [ + "Cocco" + ], + "givenNames": [ + "Christelle" + ], + "jobTitles": [ + "Scientific collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0117-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0117-organization-001", - "__type": "Organization", - "__createdAt": "1692889751060256000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3", - "postalCode": "3001", - "locality": "Berne", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0001-6684-9806", + "text": "ORCID URL: https://orcid.org/0000-0001-6684-9806" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0117-person-003", + "__type": "Person", + "__createdAt": "1692889751059981000", + "__createdBy": "dsp-metadata-gui", + "email": "marion.rivoal@unil.ch", + "familyNames": [ + "Rivoal" + ], + "givenNames": [ + "Marion" + ], + "jobTitles": [ + "Researcher manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0117-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0117-organization-000", - "__type": "Organization", - "__createdAt": "1692889751184352000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Unicentre", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "name": "Université de Lausanne", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unil.ch/", - "text": "https://www.unil.ch/" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4185-7169", + "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" } - ], - "grants": [ + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0117-person-000", + "__type": "Person", + "__createdAt": "1692889751060112000", + "__createdBy": "dsp-metadata-gui", + "email": "dominique.vinck@unil.ch", + "familyNames": [ + "Vinck" + ], + "givenNames": [ + "Dominique" + ], + "jobTitles": [ + "Full professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0117-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0117-grant-000", - "__type": "Grant", - "__createdAt": "1692889751270521000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0117-organization-001" - ], - "name": "Project funding", - "number": "166345", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/166345", - "text": "https://data.snf.ch/grants/grant/166345" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0001-7835-7008", + "text": "ORCID URL: https://orcid.org/0000-0001-7835-7008" } - ] + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0117-organization-001", + "__type": "Organization", + "__createdAt": "1692889751060256000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3", + "postalCode": "3001", + "locality": "Berne", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0117-organization-000", + "__type": "Organization", + "__createdAt": "1692889751184352000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Unicentre", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "name": "Université de Lausanne", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unil.ch/", + "text": "https://www.unil.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0117-grant-000", + "__type": "Grant", + "__createdAt": "1692889751270521000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0117-organization-001" + ], + "name": "Project funding", + "number": "166345", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/166345", + "text": "https://data.snf.ch/grants/grant/166345" + } + } + ] } \ No newline at end of file diff --git a/data/json/reforme-geneve.json b/data/json/reforme-geneve.json index 6603b647..b414719f 100644 --- a/data/json/reforme-geneve.json +++ b/data/json/reforme-geneve.json @@ -1,324 +1,325 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0111-project", - "__type": "Project", - "__createdAt": "1630601315576460000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Grosse, Ch., Dunant Gonzenbach, A., Matthey-Doret, A., 2019, Côté chaire, côté rue, La Réforme à Genève (1517-1617) [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0111.", - "teaserText": "The database is the result of the transposition of a virtual exhibition realized in the context of the 500th anniversary of the Lutheran Reformation (1517).", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0111-dataset-000" - ], - "alternativeNames": [ - { - "en": "reforme-religieuse" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0111-person-000", - "description": { - "en": "In the context of the 500th anniversary of the Lutheran Reformation (1517), The Archives of the State of Geneva, in collaboration with historians from the University of Geneva and from the University of Lausanne, have created an exhibition that presents the impact of the Reformation on daily life in Geneva. This means demonstrating at the same time how the Genevans were involved in this process of Reformation and how the religious conversion of the city affected their daily lives. The archives are in fact the echo of the activism, resistance or the adaptation of various players – men, women, and children – and underline the real – or mythologized – changes imposed by the practice of the new form of worship. The exhibition approaches this topic in three stages. The first period (1517-1555) charts the introduction of the Reformation in Geneva. Guillaume Farel’s (1489-1565) sermons feed the religious stirrings which sometimes manifest themselves in iconoclasm. The second period (1555-1575), describes the Reformation as it was lived in daily life. The population adjusted to the new liturgies, mixed with students of the Academy, took in the influx of refugees and submitted to disciplinary constraints. Finally, the third period (1575-1617) saw tempers calming down and discipline being relaxed. The people of Geneva slowly found a new equilibrium and the year 1617 provided the opportunity to celebrate the first hundred years of the Reformation. The Archives of the State of Geneva maintain, restore and digitalise the documents that historians use in their work. The presentation of a digitalisation project and the restoration of the archives of the Protestant Church complete this exhibition and highlight the historical work linked to the archives." - }, - "disciplines": [ - { - "en": "10103 Ecclesiastical history" - }, - { - "en": "10301 General history (without pre-and early history)" - }, - { - "en": "10102 Religious studies, Theology" - }, - { - "en": "10302 Swiss history" - } - ], - "endDate": "2018-03-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0111-organization-000" - ], - "keywords": [ - { - "en": "Archival turn" - }, - { - "en": "Calvin" - }, - { - "en": "Church History" - }, - { - "en": "Ecclesiastical discipline" - }, - { - "en": "History of Geneva" - }, - { - "en": "History of the Reformation" - }, - { - "en": "Paleography" - }, - { - "en": "Social control" - }, - { - "en": "Woman history" - }, - { - "en": "Written culture" - } - ], - "name": "Côté chaire, côté rue, La Réforme à Genève (1517-1617)", - "publications": [ - { - "text": "Grosse, Ch., Dunant Gonzenbach, A., Fornerod, N., Gross, G., Solfaroli Camillocci, D., Vernhes Rappaz, S., Coté chaire, côté rue. L’impact de la Réforme sur la vie quotidienne à Genève (1517-1617), Genève, La Baconnière, 2018." - } - ], - "shortcode": "0111", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2660646/", - "text": "Geneva" - } - ], - "startDate": "2017-03-31", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0367jz", - "text": "Century of Reformation (Europe)" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.ls-prod-server.dasch.swiss/project/0111", - "text": "Discover Project Data" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0111-project", + "__type": "Project", + "__createdAt": "1630601315576460000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Grosse, Ch., Dunant Gonzenbach, A., Matthey-Doret, A., 2019, Côté chaire, côté rue, La Réforme à Genève (1517-1617) [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0111.", + "teaserText": "The database is the result of the transposition of a virtual exhibition realized in the context of the 500th anniversary of the Lutheran Reformation (1517).", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0111-dataset-000" + ], + "alternativeNames": [ + { + "en": "reforme-religieuse" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0111-person-000", + "description": { + "en": "In the context of the 500th anniversary of the Lutheran Reformation (1517), The Archives of the State of Geneva, in collaboration with historians from the University of Geneva and from the University of Lausanne, have created an exhibition that presents the impact of the Reformation on daily life in Geneva. This means demonstrating at the same time how the Genevans were involved in this process of Reformation and how the religious conversion of the city affected their daily lives. The archives are in fact the echo of the activism, resistance or the adaptation of various players – men, women, and children – and underline the real – or mythologized – changes imposed by the practice of the new form of worship. The exhibition approaches this topic in three stages. The first period (1517-1555) charts the introduction of the Reformation in Geneva. Guillaume Farel’s (1489-1565) sermons feed the religious stirrings which sometimes manifest themselves in iconoclasm. The second period (1555-1575), describes the Reformation as it was lived in daily life. The population adjusted to the new liturgies, mixed with students of the Academy, took in the influx of refugees and submitted to disciplinary constraints. Finally, the third period (1575-1617) saw tempers calming down and discipline being relaxed. The people of Geneva slowly found a new equilibrium and the year 1617 provided the opportunity to celebrate the first hundred years of the Reformation. The Archives of the State of Geneva maintain, restore and digitalise the documents that historians use in their work. The presentation of a digitalisation project and the restoration of the archives of the Protestant Church complete this exhibition and highlight the historical work linked to the archives." + }, + "disciplines": [ + { + "en": "10103 Ecclesiastical history" + }, + { + "en": "10301 General history (without pre-and early history)" + }, + { + "en": "10102 Religious studies, Theology" + }, + { + "en": "10302 Swiss history" + } + ], + "endDate": "2018-03-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0111-organization-000" + ], + "keywords": [ + { + "en": "Archival turn" + }, + { + "en": "Calvin" + }, + { + "en": "Church History" + }, + { + "en": "Ecclesiastical discipline" + }, + { + "en": "History of Geneva" + }, + { + "en": "History of the Reformation" + }, + { + "en": "Paleography" + }, + { + "en": "Social control" + }, + { + "en": "Woman history" + }, + { + "en": "Written culture" + } + ], + "name": "Côté chaire, côté rue, La Réforme à Genève (1517-1617)", + "publications": [ + { + "text": "Grosse, Ch., Dunant Gonzenbach, A., Fornerod, N., Gross, G., Solfaroli Camillocci, D., Vernhes Rappaz, S., Coté chaire, côté rue. L’impact de la Réforme sur la vie quotidienne à Genève (1517-1617), Genève, La Baconnière, 2018." + } + ], + "shortcode": "0111", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2660646/", + "text": "Geneva" + } + ], + "startDate": "2017-03-31", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0367jz", + "text": "Century of Reformation (Europe)" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.ls-prod-server.dasch.swiss/project/0111", + "text": "Discover Project Data" + }, + "status": "finished" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0111-dataset-000", + "__type": "Dataset", + "__createdAt": "1630601323131903000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0111-dataset-000", - "__type": "Dataset", - "__createdAt": "1630601323131903000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The database is the result of the transposition of a virtual exhibition realised with the web application StoryMap, from ArcGIS. It also integrates the transcriptions of archive documents initially published on the website of the State Archives of Geneva.\r The database is structured around three main chronological showcases, which bring together thematic showcases. The showcases are composed of different images, associated with geographical coordinates, and to which transcriptions of archival documents may be associated. Facsimiles are presented next to transcriptions.\r" - } - ], - "accessConditions": "open", - "dateCreated": "2019-01-17", - "dateModified": "2019-09-08", - "datePublished": "2019-01-17", - "howToCite": "Grosse, Ch., Dunant Gonzenbach, A., Matthey-Doret, A., 2019, Côté chaire, côté rue, La Réforme à Genève (1517-1617) [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0111.", - "languages": [ - { - "en": "French", - "de": "Französisch", - "fr": "français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0/", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0111-person-000", - "roles": [ - "Project leader", - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0111-person-001", - "roles": [ - "Project leader", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0111-person-002", - "roles": [ - "Project member", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0111-person-003", - "roles": [ - "Data curator" - ] - } - ], - "status": "Finished", - "title": "Base de données « Côté chaire, côté rue »", - "typeOfData": [ - "Audio", - "Image", - "Text" - ], - "urls": [ - { - "__type": "URL", - "type": "URL", - "url": "https://sitg.maps.arcgis.com/apps/MapSeries/index.html?appid=5accafa5fd7a429abe7b2cb9a6fa017a", - "text": "Find the Web Application StoryMap here" - } - ] + "en": "The database is the result of the transposition of a virtual exhibition realised with the web application StoryMap, from ArcGIS. It also integrates the transcriptions of archive documents initially published on the website of the State Archives of Geneva.\r The database is structured around three main chronological showcases, which bring together thematic showcases. The showcases are composed of different images, associated with geographical coordinates, and to which transcriptions of archival documents may be associated. Facsimiles are presented next to transcriptions.\r" } - ], - "persons": [ + ], + "accessConditions": "open", + "dateCreated": "2019-01-17", + "dateModified": "2019-09-08", + "datePublished": "2019-01-17", + "howToCite": "Grosse, Ch., Dunant Gonzenbach, A., Matthey-Doret, A., 2019, Côté chaire, côté rue, La Réforme à Genève (1517-1617) [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0111.", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0111-person-003", - "__type": "Person", - "__createdAt": "1630601323613976000", - "__createdBy": "dsp-metadata-gui", - "email": "marion.rivoal@unil.ch", - "familyNames": [ - "Rivoal" - ], - "givenNames": [ - "Marion" - ], - "jobTitles": [ - "Research manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0111-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-4185-7169", - "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" - } - ] + "en": "French", + "de": "Französisch", + "fr": "français" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0111-person-000", + "roles": [ + "Project leader", + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0111-person-001", - "__type": "Person", - "__createdAt": "1630601323614158000", - "__createdBy": "dsp-metadata-gui", - "email": "anouk.dunant-gonzenbach@etat.ge.ch", - "familyNames": [ - "Dunant Gonzenbach" - ], - "givenNames": [ - "Anouk" - ], - "jobTitles": [ - "Archivist" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0111-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0111-person-001", + "roles": [ + "Project leader", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0111-person-002", - "__type": "Person", - "__createdAt": "1630601323614274000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Matthey-Doret" - ], - "givenNames": [ - "Aude" - ], - "jobTitles": [ - "Geomatician, intern" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0111-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0111-person-002", + "roles": [ + "Project member", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0111-person-000", - "__type": "Person", - "__createdAt": "1630601323614353000", - "__createdBy": "dsp-metadata-gui", - "email": "christian.grosse@unil.ch", - "familyNames": [ - "Grosse" - ], - "givenNames": [ - "Christian" - ], - "jobTitles": [ - "Full professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0111-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-1930-6275", - "text": "ORCID URL: https://orcid.org/0000-0002-1930-6275" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0111-person-003", + "roles": [ + "Data curator" + ] } - ], - "organizations": [ + ], + "status": "Finished", + "title": "Base de données « Côté chaire, côté rue »", + "typeOfData": [ + "Audio", + "Image", + "Text" + ], + "urls": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0111-organization-001", - "__type": "Organization", - "__createdAt": "1630601323614538000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Unicentre\r CH-1015 Lausanne\r ", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "name": "Université de Lausanne", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unil.ch/", - "text": "https://www.unil.ch/" - } - }, + "__type": "URL", + "type": "URL", + "url": "https://sitg.maps.arcgis.com/apps/MapSeries/index.html?appid=5accafa5fd7a429abe7b2cb9a6fa017a", + "text": "Find the Web Application StoryMap here" + } + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0111-person-003", + "__type": "Person", + "__createdAt": "1630601323613976000", + "__createdBy": "dsp-metadata-gui", + "email": "marion.rivoal@unil.ch", + "familyNames": [ + "Rivoal" + ], + "givenNames": [ + "Marion" + ], + "jobTitles": [ + "Research manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0111-organization-001" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0111-organization-000", - "__type": "Organization", - "__createdAt": "1630601323645880000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Rue de l'Hôtel-de-Ville 1", - "additional": "Case postale 3964", - "postalCode": "1211 ", - "locality": "Genève", - "country": "Switzerland" - }, - "name": "Archives d’État de Genève", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://ge.ch/archives/", - "text": "https://ge.ch/archives/" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4185-7169", + "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" } - ] + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0111-person-001", + "__type": "Person", + "__createdAt": "1630601323614158000", + "__createdBy": "dsp-metadata-gui", + "email": "anouk.dunant-gonzenbach@etat.ge.ch", + "familyNames": [ + "Dunant Gonzenbach" + ], + "givenNames": [ + "Anouk" + ], + "jobTitles": [ + "Archivist" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0111-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0111-person-002", + "__type": "Person", + "__createdAt": "1630601323614274000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Matthey-Doret" + ], + "givenNames": [ + "Aude" + ], + "jobTitles": [ + "Geomatician, intern" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0111-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0111-person-000", + "__type": "Person", + "__createdAt": "1630601323614353000", + "__createdBy": "dsp-metadata-gui", + "email": "christian.grosse@unil.ch", + "familyNames": [ + "Grosse" + ], + "givenNames": [ + "Christian" + ], + "jobTitles": [ + "Full professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0111-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-1930-6275", + "text": "ORCID URL: https://orcid.org/0000-0002-1930-6275" + } + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0111-organization-001", + "__type": "Organization", + "__createdAt": "1630601323614538000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Unicentre\r CH-1015 Lausanne\r ", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "name": "Université de Lausanne", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unil.ch/", + "text": "https://www.unil.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0111-organization-000", + "__type": "Organization", + "__createdAt": "1630601323645880000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Rue de l'Hôtel-de-Ville 1", + "additional": "Case postale 3964", + "postalCode": "1211 ", + "locality": "Genève", + "country": "Switzerland" + }, + "name": "Archives d’État de Genève", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://ge.ch/archives/", + "text": "https://ge.ch/archives/" + } + } + ] } \ No newline at end of file diff --git a/data/json/religious-speech.json b/data/json/religious-speech.json index 8c4a93a6..3b6a087d 100644 --- a/data/json/religious-speech.json +++ b/data/json/religious-speech.json @@ -1,481 +1,482 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0101-project", - "__type": "Project", - "__createdAt": "1630601286237202000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Gonzalez, Ph., Roca Escoda, M., Stavo Debauge, J., Evequoz, Y., Ben Amor, S., Rivoal, M., 2019, Embarras de la parole religieuse [base de données] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0101.", - "teaserText": "Ce projet étudie les mobilisations religieuses sur des questions de genre et de sexualités et comment elles transforment les règles d’interlocution des espaces publics sécularisés et la parole des acteurs religieux.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0101-dataset-000" - ], - "alternativeNames": [ - { - "fr": "parole-religieuse" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0101-person-000", - "description": { - "fr": "Notre recherche se propose d’enquêter sur les embarras de la parole religieuse telle qu’elle s’énonce dans l’espace public, en Suisse et de France, deux pays sécularisés, mais où les acteurs religieux se montrent actifs. À travers leur prise de parole médiatique, ces acteurs parviennent à susciter des controverses, quand ils n’en font pas l’objet. De portées variables, ces controverses portent notamment sur les régulations entre les genres, l’égalité des sexes et la reconnaissance de la pluralité des sexualités. Cette recrudescence du rôle public des religions dans les sociétés contemporaines a alimenté, en philosophie et en sciences sociales, des perspectives post-séculières, critiques du lien entre modernité et sécularisation, et qui invitent à mieux considérer la place des religions dans les espaces publics des sociétés libérales.Chrétienne, musulmane ou autre, la parole religieuse serait affectée d’une variété d’embarras; elle n’irait plus de soi, spécialement lorsqu’elle acquiert visibilité et prétend énoncer une vérité valant pour tous. Au regard de cette situation, certains acteurs religieux s’efforcent de séculariser l’expression de leurs convictions lorsqu’ils prennent part à une controverse - comme dans l’opposition catholique au mariage homosexuel et aux questions de genre - ou s’appuient sur une rhétorique des droits pour répondre des critiques suscitées par leur pratique - comme dans les «affaires du voile». Si les médias ont largement relayé ces controverses, d’autres affaires, scandales ou problèmes publics relatifs au genre ont fourni matière au délicat engagement public d’acteurs religieux inégalement capables de s’exprimer dans des médias séculiers et globalement en butte à la perte d’autorité de la parole religieuse hors de ses lieux propres.Afin d’appréhender cet embarras en France et en Suisse, notre recherche articule des volets quantitatif et qualitatif, à partir de deux émissions radiophoniques quotidiennes de grande écoute qui empruntent le format du «débat» de société. La radio est un lieu d’observation pertinent, en raison de son importance dans l’économie de la production médiatique. Le volet quantitatif vise à cartographier un corpus de plus de 7000 émissions, sur 10 ans (2006-2016). Le volet qualitatif poursuit l’identification fine des acteurs religieux. Dans un second temps, nous sélectionnerons cinq controverses sur lesquelles nous mènerons une enquête approfondie, historiographique et ethnographique, afin de retracer les tenants et aboutissants de chaque controverse, nationale et transnationale. Cette recherche permettra d’interroger empiriquement la façon dont les mobilisations religieuses sur des questions de genre et de sexualités redéfinissent les règles d’interlocution des espaces publics sécularisés et transforment la parole des acteurs religieux." - }, - "disciplines": [ - { - "en": "10201 Sociology" - }, - { - "__type": "URL", - "type": "Skos", - "text": "Sociology", - "url": "https://skos.um.es/unesco6/63/" - } - ], - "endDate": "2019-07-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0101-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0101-grant-000" - ], - "keywords": [ - { - "de": "Gender" - }, - { - "en": "Liberal democracy" - }, - { - "en": "Media" - }, - { - "en": "Public issues" - }, - { - "en": "Religion" - }, - { - "en": "Secularisation" - }, - { - "en": "Sociology of controversy" - } - ], - "name": "Religious speech embarrassed, radio debates and controversies around gender: Switzerland and France, 2006-2016", - "publications": [ - { - "text": "Douyère David, Gonzalez Philippe (ed.), La religion sous le regard du tiers, Questions de communication, Metz." - }, - { - "text": "Gonzalez Philippe (2019), Inaugurer une mosquée à Genève: médiatisation ambiguë, dialogue interreligieux et gestion du pluralisme, in Salzbrunn Monika (ed.), Labor et Fides, Genève, 245-275." - }, - { - "text": "Gonzalez Philippe, Dieu parle en public : la prophétie charismatique, de l’intimité à la politique, in Pragmata, 2, 1." - }, - { - "text": "Gonzalez Philippe, Kaufmann Laurence, Ces croyances auxquelles nous tenons: l'épistémologie sociale à l'épreuve du créationnisme évanéglique, in Künstler Raphaël, Allouche Aurélien (ed.), Hermann, Paris, 1." - }, - { - "text": "Gonzalez Philippe, Roca i Escoda Marta, La “liberté de conscience” en croisade contre l’homosexualité : enjeux d’un référendum populaire en Suisse, in Bergeaud-Blackler Florence, Stavo-Debauge Joan (ed.), Presses Universitaires de Rennes, Rennes, 1." - }, - { - "text": "Gonzalez Philippe, Stavo-Debauge Joan, Roca i Escoda Marta, 2020, S’aventurer en ethnographes dans les arcanes d’une «base de données», in Ethnographiques.org." - }, - { - "text": "Stavo-Debauge Joan (2018), Introduction à Dewey, Hook et Nagel, in ThéoRèmes, (13), 1-4." - }, - { - "text": "Stavo-Debauge Joan (2018), Le Divin marché (de dupes). Un fondamentalisme qui ne paie pas de mine mais rapporte gros, in SociologieS, 1." - }, - { - "text": "Stavo-Debauge Joan (2018), Le naturalisme de John Dewey : un antidote au post-sécularisme contemporain, in ThéoRèmes, (13), 1-34." - }, - { - "text": "Stavo-Debauge Joan (2018), ‘What I Believe‘ de John Dewey : l’unique autorité de l’expérience, ou la foi en une méthode (scientifique) et en un idéal (démocratique), in Pragmata, 1, 330-346." - }, - { - "text": "Stavo-Debauge Joan (ed.) (2019), John Dewey: Ecrits sur les religions et le naturalisme, Éditions IES, Genève." - }, - { - "text": "Stavo-Debauge Joan, Les embarras de la parole religieuse, in Questions de communication, 37." - }, - { - "text": "Stavo-Debauge Joan, L’hommage (oublié) de John Dewey à Mgr Brown, l’évêque des athées ez bolchéviques, pendant la croisade anti-évolutionniste des années 1920, in Pragmata, 2." - }, - { - "text": "Stavo-Debauge Joan, Quel retour des religions? L'actualité de John Dewey face à l'absolutisme théologico-politique, Labor et Fides, Genève." - } - ], - "shortcode": "0101", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3017382/", - "text": "France" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/", - "text": "Switzerland" - } - ], - "startDate": "2016-08-01", - "temporalCoverage": [ - { - "de": "2006-2016", - "en": "2006-2016", - "fr": "2006-2016" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.ls-prod-server.dasch.swiss/project/0101", - "text": "Discover Project Data" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0101-project", + "__type": "Project", + "__createdAt": "1630601286237202000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Gonzalez, Ph., Roca Escoda, M., Stavo Debauge, J., Evequoz, Y., Ben Amor, S., Rivoal, M., 2019, Embarras de la parole religieuse [base de données] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0101.", + "teaserText": "Ce projet étudie les mobilisations religieuses sur des questions de genre et de sexualités et comment elles transforment les règles d’interlocution des espaces publics sécularisés et la parole des acteurs religieux.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0101-dataset-000" + ], + "alternativeNames": [ + { + "fr": "parole-religieuse" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0101-person-000", + "description": { + "fr": "Notre recherche se propose d’enquêter sur les embarras de la parole religieuse telle qu’elle s’énonce dans l’espace public, en Suisse et de France, deux pays sécularisés, mais où les acteurs religieux se montrent actifs. À travers leur prise de parole médiatique, ces acteurs parviennent à susciter des controverses, quand ils n’en font pas l’objet. De portées variables, ces controverses portent notamment sur les régulations entre les genres, l’égalité des sexes et la reconnaissance de la pluralité des sexualités. Cette recrudescence du rôle public des religions dans les sociétés contemporaines a alimenté, en philosophie et en sciences sociales, des perspectives post-séculières, critiques du lien entre modernité et sécularisation, et qui invitent à mieux considérer la place des religions dans les espaces publics des sociétés libérales.Chrétienne, musulmane ou autre, la parole religieuse serait affectée d’une variété d’embarras; elle n’irait plus de soi, spécialement lorsqu’elle acquiert visibilité et prétend énoncer une vérité valant pour tous. Au regard de cette situation, certains acteurs religieux s’efforcent de séculariser l’expression de leurs convictions lorsqu’ils prennent part à une controverse - comme dans l’opposition catholique au mariage homosexuel et aux questions de genre - ou s’appuient sur une rhétorique des droits pour répondre des critiques suscitées par leur pratique - comme dans les «affaires du voile». Si les médias ont largement relayé ces controverses, d’autres affaires, scandales ou problèmes publics relatifs au genre ont fourni matière au délicat engagement public d’acteurs religieux inégalement capables de s’exprimer dans des médias séculiers et globalement en butte à la perte d’autorité de la parole religieuse hors de ses lieux propres.Afin d’appréhender cet embarras en France et en Suisse, notre recherche articule des volets quantitatif et qualitatif, à partir de deux émissions radiophoniques quotidiennes de grande écoute qui empruntent le format du «débat» de société. La radio est un lieu d’observation pertinent, en raison de son importance dans l’économie de la production médiatique. Le volet quantitatif vise à cartographier un corpus de plus de 7000 émissions, sur 10 ans (2006-2016). Le volet qualitatif poursuit l’identification fine des acteurs religieux. Dans un second temps, nous sélectionnerons cinq controverses sur lesquelles nous mènerons une enquête approfondie, historiographique et ethnographique, afin de retracer les tenants et aboutissants de chaque controverse, nationale et transnationale. Cette recherche permettra d’interroger empiriquement la façon dont les mobilisations religieuses sur des questions de genre et de sexualités redéfinissent les règles d’interlocution des espaces publics sécularisés et transforment la parole des acteurs religieux." + }, + "disciplines": [ + { + "en": "10201 Sociology" + }, + { + "__type": "URL", + "type": "Skos", + "text": "Sociology", + "url": "https://skos.um.es/unesco6/63/" + } + ], + "endDate": "2019-07-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0101-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0101-grant-000" + ], + "keywords": [ + { + "de": "Gender" + }, + { + "en": "Liberal democracy" + }, + { + "en": "Media" + }, + { + "en": "Public issues" + }, + { + "en": "Religion" + }, + { + "en": "Secularisation" + }, + { + "en": "Sociology of controversy" + } + ], + "name": "Religious speech embarrassed, radio debates and controversies around gender: Switzerland and France, 2006-2016", + "publications": [ + { + "text": "Douyère David, Gonzalez Philippe (ed.), La religion sous le regard du tiers, Questions de communication, Metz." + }, + { + "text": "Gonzalez Philippe (2019), Inaugurer une mosquée à Genève: médiatisation ambiguë, dialogue interreligieux et gestion du pluralisme, in Salzbrunn Monika (ed.), Labor et Fides, Genève, 245-275." + }, + { + "text": "Gonzalez Philippe, Dieu parle en public : la prophétie charismatique, de l’intimité à la politique, in Pragmata, 2, 1." + }, + { + "text": "Gonzalez Philippe, Kaufmann Laurence, Ces croyances auxquelles nous tenons: l'épistémologie sociale à l'épreuve du créationnisme évanéglique, in Künstler Raphaël, Allouche Aurélien (ed.), Hermann, Paris, 1." + }, + { + "text": "Gonzalez Philippe, Roca i Escoda Marta, La “liberté de conscience” en croisade contre l’homosexualité : enjeux d’un référendum populaire en Suisse, in Bergeaud-Blackler Florence, Stavo-Debauge Joan (ed.), Presses Universitaires de Rennes, Rennes, 1." + }, + { + "text": "Gonzalez Philippe, Stavo-Debauge Joan, Roca i Escoda Marta, 2020, S’aventurer en ethnographes dans les arcanes d’une «base de données», in Ethnographiques.org." + }, + { + "text": "Stavo-Debauge Joan (2018), Introduction à Dewey, Hook et Nagel, in ThéoRèmes, (13), 1-4." + }, + { + "text": "Stavo-Debauge Joan (2018), Le Divin marché (de dupes). Un fondamentalisme qui ne paie pas de mine mais rapporte gros, in SociologieS, 1." + }, + { + "text": "Stavo-Debauge Joan (2018), Le naturalisme de John Dewey : un antidote au post-sécularisme contemporain, in ThéoRèmes, (13), 1-34." + }, + { + "text": "Stavo-Debauge Joan (2018), ‘What I Believe‘ de John Dewey : l’unique autorité de l’expérience, ou la foi en une méthode (scientifique) et en un idéal (démocratique), in Pragmata, 1, 330-346." + }, + { + "text": "Stavo-Debauge Joan (ed.) (2019), John Dewey: Ecrits sur les religions et le naturalisme, Éditions IES, Genève." + }, + { + "text": "Stavo-Debauge Joan, Les embarras de la parole religieuse, in Questions de communication, 37." + }, + { + "text": "Stavo-Debauge Joan, L’hommage (oublié) de John Dewey à Mgr Brown, l’évêque des athées ez bolchéviques, pendant la croisade anti-évolutionniste des années 1920, in Pragmata, 2." + }, + { + "text": "Stavo-Debauge Joan, Quel retour des religions? L'actualité de John Dewey face à l'absolutisme théologico-politique, Labor et Fides, Genève." + } + ], + "shortcode": "0101", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3017382/", + "text": "France" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/", + "text": "Switzerland" + } + ], + "startDate": "2016-08-01", + "temporalCoverage": [ + { + "de": "2006-2016", + "en": "2006-2016", + "fr": "2006-2016" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.ls-prod-server.dasch.swiss/project/0101", + "text": "Discover Project Data" + }, + "status": "finished" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0101-dataset-000", + "__type": "Dataset", + "__createdAt": "1630601290310908000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0101-dataset-000", - "__type": "Dataset", - "__createdAt": "1630601290310908000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The ontology of the project comprises 15 distinct classes, 68 properties, mainly describing sequences (Sequence) from radio broadcasts (Program), and listing for each sequence the speakers (Intervention, Actor, Nationality), the title in which they intervene (Quality, Institution) and their origin (Place). The subjects (Gender and Religion) covered by the programs are informed at the program level, then explained at the sequence level, using different concepts related to current events: Event, Common Name or Movement, Phenomenon or controversial subject, Person in the news, Place. 10 controlled vocabularies with 104 entries ensure the quality control of the data entered. The controlled vocabulary Controversial issues' trajectory includes 31 entries. Finally, transcriptions (Transcription) are associated with certain sequences." - } - ], - "accessConditions": "open", - "dateCreated": "2017-07-04", - "dateModified": "2020-02-10", - "datePublished": "2017-07-04", - "howToCite": "Gonzalez, Ph., Roca Escoda, M., Stavo Debauge, J., Evequoz, Y., Ben Amor, S., Rivoal, M., 2019, Embarras de la parole religieuse [base de données] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0101.", - "languages": [ - { - "en": "French", - "de": "Französisch", - "fr": "français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0/", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-000", - "roles": [ - "Project leader", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-001", - "roles": [ - "Project leader", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-002", - "roles": [ - "Project member", - "Data collector", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-003", - "roles": [ - "Project member", - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-004", - "roles": [ - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-005", - "roles": [ - "Researcher" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-007", - "roles": [ - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-006", - "roles": [ - "Other" - ] - } - ], - "status": "Finished", - "title": "Base de données Embarras de la parole religieuse", - "typeOfData": [ - "Text" - ] + "en": "The ontology of the project comprises 15 distinct classes, 68 properties, mainly describing sequences (Sequence) from radio broadcasts (Program), and listing for each sequence the speakers (Intervention, Actor, Nationality), the title in which they intervene (Quality, Institution) and their origin (Place). The subjects (Gender and Religion) covered by the programs are informed at the program level, then explained at the sequence level, using different concepts related to current events: Event, Common Name or Movement, Phenomenon or controversial subject, Person in the news, Place. 10 controlled vocabularies with 104 entries ensure the quality control of the data entered. The controlled vocabulary Controversial issues' trajectory includes 31 entries. Finally, transcriptions (Transcription) are associated with certain sequences." } - ], - "persons": [ + ], + "accessConditions": "open", + "dateCreated": "2017-07-04", + "dateModified": "2020-02-10", + "datePublished": "2017-07-04", + "howToCite": "Gonzalez, Ph., Roca Escoda, M., Stavo Debauge, J., Evequoz, Y., Ben Amor, S., Rivoal, M., 2019, Embarras de la parole religieuse [base de données] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0101.", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-004", - "__type": "Person", - "__createdAt": "1630601290905167000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Ben Amor" - ], - "givenNames": [ - "Selim" - ], - "jobTitles": [ - "Scientific collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0101-organization-000" - ] + "en": "French", + "de": "Französisch", + "fr": "français" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-000", + "roles": [ + "Project leader", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-005", - "__type": "Person", - "__createdAt": "1630601290905261000", - "__createdBy": "dsp-metadata-gui", - "email": "christelle.cocco@unil.ch", - "familyNames": [ - "Cocco" - ], - "givenNames": [ - "Christelle" - ], - "jobTitles": [ - "Post-doctoral researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0101-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0001-6684-9806", - "text": "ORCID URL: https://orcid.org/0000-0001-6684-9806" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-001", + "roles": [ + "Project leader", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-006", - "__type": "Person", - "__createdAt": "1630601290905455000", - "__createdBy": "dsp-metadata-gui", - "email": "loic.jaouen@unil.ch", - "familyNames": [ - "Jaouen" - ], - "givenNames": [ - "Loïc" - ], - "jobTitles": [ - "IT support" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0101-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-002", + "roles": [ + "Project member", + "Data collector", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-007", - "__type": "Person", - "__createdAt": "1630601290905567000", - "__createdBy": "dsp-metadata-gui", - "email": "marion.rivoal@unil.ch", - "familyNames": [ - "Rivoal" - ], - "givenNames": [ - "Marion" - ], - "jobTitles": [ - "Research manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0101-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-4185-7169", - "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-003", + "roles": [ + "Project member", + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-001", - "__type": "Person", - "__createdAt": "1630601290905754000", - "__createdBy": "dsp-metadata-gui", - "email": "marta.rocaescoda@unil.ch", - "familyNames": [ - "Roca Escoda" - ], - "givenNames": [ - "Marta" - ], - "jobTitles": [ - "Senior lecturer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0101-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-8156-2712", - "text": "ORCID URL: https://orcid.org/0000-0002-8156-2712" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-004", + "roles": [ + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-003", - "__type": "Person", - "__createdAt": "1630601290905939000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Evequoz" - ], - "givenNames": [ - "Yves" - ], - "jobTitles": [ - "Scientific collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0101-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-005", + "roles": [ + "Researcher" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-000", - "__type": "Person", - "__createdAt": "1630601290906026000", - "__createdBy": "dsp-metadata-gui", - "email": "philippe.gonzalez@unil.ch", - "familyNames": [ - "Gonzalez" - ], - "givenNames": [ - "Philippe" - ], - "jobTitles": [ - "Senior lecturer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0101-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-007", + "roles": [ + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-002", - "__type": "Person", - "__createdAt": "1630601290906134000", - "__createdBy": "dsp-metadata-gui", - "email": "joan.stavo-debauge@epfl.ch", - "familyNames": [ - "Stavo Debauge" - ], - "givenNames": [ - "Joan" - ], - "jobTitles": [ - "Post-doctoral researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0101-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0101-person-006", + "roles": [ + "Other" + ] } - ], - "organizations": [ + ], + "status": "Finished", + "title": "Base de données Embarras de la parole religieuse", + "typeOfData": [ + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-004", + "__type": "Person", + "__createdAt": "1630601290905167000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Ben Amor" + ], + "givenNames": [ + "Selim" + ], + "jobTitles": [ + "Scientific collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0101-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-005", + "__type": "Person", + "__createdAt": "1630601290905261000", + "__createdBy": "dsp-metadata-gui", + "email": "christelle.cocco@unil.ch", + "familyNames": [ + "Cocco" + ], + "givenNames": [ + "Christelle" + ], + "jobTitles": [ + "Post-doctoral researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0101-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0101-organization-001", - "__type": "Organization", - "__createdAt": "1630601290906261000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3 Postfach", - "postalCode": "3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0001-6684-9806", + "text": "ORCID URL: https://orcid.org/0000-0001-6684-9806" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-006", + "__type": "Person", + "__createdAt": "1630601290905455000", + "__createdBy": "dsp-metadata-gui", + "email": "loic.jaouen@unil.ch", + "familyNames": [ + "Jaouen" + ], + "givenNames": [ + "Loïc" + ], + "jobTitles": [ + "IT support" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0101-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-007", + "__type": "Person", + "__createdAt": "1630601290905567000", + "__createdBy": "dsp-metadata-gui", + "email": "marion.rivoal@unil.ch", + "familyNames": [ + "Rivoal" + ], + "givenNames": [ + "Marion" + ], + "jobTitles": [ + "Research manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0101-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0101-organization-000", - "__type": "Organization", - "__createdAt": "1630601290938137000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Unicentre", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "name": "Université de Lausanne", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unil.ch/", - "text": "https://www.unil.ch/" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4185-7169", + "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" } - ], - "grants": [ + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-001", + "__type": "Person", + "__createdAt": "1630601290905754000", + "__createdBy": "dsp-metadata-gui", + "email": "marta.rocaescoda@unil.ch", + "familyNames": [ + "Roca Escoda" + ], + "givenNames": [ + "Marta" + ], + "jobTitles": [ + "Senior lecturer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0101-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0101-grant-000", - "__type": "Grant", - "__createdAt": "1630601290970747000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0101-organization-001" - ], - "name": "Project funding", - "number": "165652", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/165652", - "text": "https://data.snf.ch/grants/grant/165652" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-8156-2712", + "text": "ORCID URL: https://orcid.org/0000-0002-8156-2712" } - ] + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-003", + "__type": "Person", + "__createdAt": "1630601290905939000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Evequoz" + ], + "givenNames": [ + "Yves" + ], + "jobTitles": [ + "Scientific collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0101-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-000", + "__type": "Person", + "__createdAt": "1630601290906026000", + "__createdBy": "dsp-metadata-gui", + "email": "philippe.gonzalez@unil.ch", + "familyNames": [ + "Gonzalez" + ], + "givenNames": [ + "Philippe" + ], + "jobTitles": [ + "Senior lecturer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0101-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0101-person-002", + "__type": "Person", + "__createdAt": "1630601290906134000", + "__createdBy": "dsp-metadata-gui", + "email": "joan.stavo-debauge@epfl.ch", + "familyNames": [ + "Stavo Debauge" + ], + "givenNames": [ + "Joan" + ], + "jobTitles": [ + "Post-doctoral researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0101-organization-000" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0101-organization-001", + "__type": "Organization", + "__createdAt": "1630601290906261000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3 Postfach", + "postalCode": "3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0101-organization-000", + "__type": "Organization", + "__createdAt": "1630601290938137000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Unicentre", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "name": "Université de Lausanne", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unil.ch/", + "text": "https://www.unil.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0101-grant-000", + "__type": "Grant", + "__createdAt": "1630601290970747000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0101-organization-001" + ], + "name": "Project funding", + "number": "165652", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/165652", + "text": "https://data.snf.ch/grants/grant/165652" + } + } + ] } \ No newline at end of file diff --git a/data/json/rich.json b/data/json/rich.json new file mode 100644 index 00000000..761f104a --- /dev/null +++ b/data/json/rich.json @@ -0,0 +1,336 @@ +{ + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-084E-project", + "__type": "Project", + "__createdAt": "1721901288255522000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Nitsche, M., Schobinger, J., Scheller, J., Thyroff, J., Weber, T. (2024). Historische Lernprozesse erforschen – Research of Learning Processes in History (RicH) [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/084E", + "teaserText": "Die RicH-Studie erforscht die Operationen narrativer Kompetenz und deren qualitative Unterschiede anhand eines Novizen-Experten-Vergleichs zwecks empirischer Fundierung eines Progressionsmodelles.", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-084E-dataset-000" + ], + "alternativeNames": [ + { + "de": "Historische Lernprozesse erforschen" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-084E-person-000", + "description": { + "de": "Geschichtsvermittlung soll dazu befähigen, mittels historischem Denken Perspektiven für die Gegenwart und Zukunft zu entwickeln, indem historisch gelernt wird. Historisches Lernen wird häufig als Entwicklung narrativer Kompetenz definiert. Wie Lernprozesse und Lernprogressionen erfasst und diagnostiziert werden können, ist jedoch kaum bekannt. Bisherige Graduierungsvorschläge sind empirisch nicht abgesichert. Die RicH-Studie setzt hier an, indem sie systematisch die Operationen narrativer Kompetenz und diesbezügliche qualitative Unterschiede bei Personen mit unterschiedlicher Expertise (z.B. universitäre Historiker*innen, Public Historians, Studierende, Schüler*innen) exemplarisch mittels Think-Aloud-Methode anhand des Themas «Schweizer Neutralität im Ersten Weltkrieg» erforscht und Zusammenhänge zwischen historischen Denkprozessen und epistemologischen Beliefs, situationalem Interesse und metakognitiven Strategien aufklärt. Das Ziel ist es, Lernprogressionsmodelle für weiterführende Studien und schulische Lerndiagnostik zu entwickeln." + }, + "disciplines": [ + { + "de": "10104 Erziehungs- und Bildungswissenschaften, Fachdidaktiken" + }, + { + "de": "110302 Schweizer Geschichte" + } + ], + "endDate": "2024-07-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-084E-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-084E-grant-000" + ], + "keywords": [ + { + "de": "Expert*innen-Noviz*innen-Vergleich" + }, + { + "de": "Geschichtsdidaktik" + }, + { + "de": "Lernprogression" + }, + { + "de": "Schweizer Neutralität" + }, + { + "en": "Think-Aloud-Methode" + }, + { + "de": "historisches Denken" + }, + { + "de": "historisches Lernen" + }, + { + "de": "narrative Kompetenz" + } + ], + "name": "Historische Lernprozesse erforschen – Research of Learning Processes in History (RicH)", + "publications": [ + { + "text": "See", + "url": [ + { + "__type": "URL", + "type": "URL", + "url": "https://irf.fhnw.ch/entities/project/ca0a8373-086b-4b41-ae2c-52d95fefc517", + "text": "https://irf.fhnw.ch/entities/project/ca0a8373-086b-4b41-ae2c-52d95fefc517" + } + ] + } + ], + "shortcode": "084E", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/6295630/earth.html", + "text": "Global" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/switzerland.html", + "text": "Switzerland" + } + ], + "startDate": "2020-08-01", + "temporalCoverage": [ + { + "en": "1st century A.D. – 21st century A.D." + } + ], + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-084E-dataset-000", + "__type": "Dataset", + "__createdAt": "1721901290705758000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ + { + "de": "Aus dem Projekt erarbeitete Resultate: Projektzusammenfassung und Projektbeschreibung\r \r Im Projekt erhobene Daten von Expert*innen und Noviz*innen: Transkripte der Think-Aloud-Aufnahmen inkl. Interviewteil zum ersten Erhebungstermin, Antworttexte inkl. Interviewteil zum zweiten Erhebungstermin, soziodemographische Angaben, Antworten auf Fragebögen zu epistemologischen Beliefs, situationalem Interesse und metakognitiven Strategien der Teilnehmenden sowie die Dokumentation der entsprechenden Erhebungs- und Auswertungsinstrumente." + } + ], + "accessConditions": "closed", + "howToCite": "Nitsche, M., Schobinger, J., Scheller, J., Thyroff, J., Weber, T. (2024). Historische Lernprozesse erforschen – Research of Learning Processes in History (RicH) [Dataset]. DaSCH. https://ark.dasch.swiss/ark:/72163/1/084E", + "languages": [ + { + "de": "Deutsch", + "en": "German", + "fr": "allemand" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2024-07-25", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-084E-person-000", + "roles": [ + "Projektleiter" + ] + }, + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-084E-person-001", + "roles": [ + "Projektmitglied" + ] + }, + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-084E-person-002", + "roles": [ + "Projektmitglied" + ] + }, + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-084E-person-003", + "roles": [ + "Projektmitglied" + ] + }, + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-084E-person-004", + "roles": [ + "Projektmitglied" + ] + } + ], + "status": "Ongoing", + "title": "Historische Lernprozesse erforschen – Research of Learning Processes in History (RicH)", + "typeOfData": [ + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-084E-person-001", + "__type": "Person", + "__createdAt": "1721901290933463000", + "__createdBy": "dsp-metadata-gui", + "email": "jan.scheller@uni-greifswald.de", + "familyNames": [ + "Scheller" + ], + "givenNames": [ + "Jan" + ], + "jobTitles": [ + "Wissenschaftlicher Mitarbeiter" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-084E-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-084E-person-002", + "__type": "Person", + "__createdAt": "1721901290933505000", + "__createdBy": "dsp-metadata-gui", + "email": "jonas.schobinger@fhnw.ch", + "familyNames": [ + "Schobinger" + ], + "givenNames": [ + "Jonas" + ], + "jobTitles": [ + "Wissenschaftlicher Mitarbeiter" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-084E-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-084E-person-003", + "__type": "Person", + "__createdAt": "1721901290933540000", + "__createdBy": "dsp-metadata-gui", + "email": "julia.thyroff@fhnw.ch", + "familyNames": [ + "Thyroff" + ], + "givenNames": [ + "Julia" + ], + "jobTitles": [ + "Wissenschaftliche Mitarbeiterin" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-084E-organization-000" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-0633-4509", + "text": "ORCID URL: https://orcid.org/0000-0002-0633-4509" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-084E-person-004", + "__type": "Person", + "__createdAt": "1721901290933596000", + "__createdBy": "dsp-metadata-gui", + "email": "tina.nicole.weber@bluewin.ch", + "familyNames": [ + "Weber" + ], + "givenNames": [ + "Tina" + ], + "jobTitles": [ + "Wissenschaftliche Assistentin" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-084E-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-084E-person-000", + "__type": "Person", + "__createdAt": "1721901290933631000", + "__createdBy": "dsp-metadata-gui", + "email": "martin.nitsche@fhnw.ch", + "familyNames": [ + "Nitsche" + ], + "givenNames": [ + "Martin" + ], + "jobTitles": [ + "Wissenschaftlicher Mitarbeiter" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-084E-organization-000" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4261-5583", + "text": "ORCID URL: https://orcid.org/0000-0003-4261-5583" + } + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-084E-organization-001", + "__type": "Organization", + "__createdAt": "1721901290933694000", + "__createdBy": "dsp-metadata-gui", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.snf.ch", + "text": "https://www.snf.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-084E-organization-000", + "__type": "Organization", + "__createdAt": "1721901290933720000", + "__createdBy": "dsp-metadata-gui", + "name": "Pädagogische Hochschule der Fachhochschule Nordwestschweiz", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.fhnw.ch/de/die-fhnw/hochschulen/ph", + "text": "https://www.fhnw.ch/de/die-fhnw/hochschulen/ph" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-084E-grant-000", + "__type": "Grant", + "__createdAt": "1721901290933750000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-084E-organization-001" + ], + "name": "Project funding", + "number": "192414", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/192414", + "text": "https://data.snf.ch/grants/grant/192414" + } + } + ] +} \ No newline at end of file diff --git a/data/json/roud.json b/data/json/roud.json index b76868af..edb7cefc 100644 --- a/data/json/roud.json +++ b/data/json/roud.json @@ -1,503 +1,504 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0112-project", - "__type": "Project", - "__createdAt": "1630601323747283000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Maggetti, D., Jacquier Kaempfer, C., Spadini, E., Pellegrino, B., Burri, J., Lacord, R., Peterman, S., Christen, A., Jaouen, L., Rivoal, M., 2020, Gustave Roud, oeuvres [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0112.", - "teaserText": "This database is the accompaniment of the critical edition of Gustave Roud’s work. It hosts the digital facsimiles of Gustave Roud’s archive, which includes manuscripts and printed materials.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0112-dataset-000" - ], - "alternativeNames": [ - { - "fr": "roud-oeuvres" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0112-person-000", - "description": { - "en": "Gustave Roud’s work includes several volumes of poetic prose, diary notes, translations, as well as texts on literature and fine arts. The first critical edition of the poet will be published in two complementary formats: in several volumes, with the publisher Zoé (Carouge-Geneva) and, at the same time, on a digital platform. This platform will constitute the genetic accompaniment of the publication: it will host the digital facsimiles of Gustave Roud’s archive, which includes manuscripts and printed materials.\n\nIn these two formats the publication will enhance the exposure of one of the most important works of the 20th century Swiss literature and it will stimulate studies that respond to contemporary critical orientations: ecocriticism, literary geography and landscape studies, intermediality studies, and queer studies. Furthermore, the digital facsimiles of the archival materials will give the project a strong interdisciplinary dimension: taking into account the diversity of Roud’s practices – diary, poetry, photography, art criticism, literary criticism, translation – it will inspire a renewal of the approach to the work and to its author for the academic as well as the general public." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/570107", - "text": "Language and literature" - }, - { - "en": "10502 Romance languages and literature" - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/550613", - "text": "History of Literature" - } - ], - "endDate": "2021-12-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0112-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0112-grant-000" - ], - "keywords": [ - { - "en": "20th century French literature" - }, - { - "en": "Digital edition" - }, - { - "en": "Edition" - }, - { - "en": "Gustave Roud" - }, - { - "en": "Literary criticism" - }, - { - "en": "Literature from French-speaking Switzerland" - }, - { - "en": "Manuscripts" - }, - { - "en": "Photography" - }, - { - "en": "Poetry" - }, - { - "en": "Textual genetics" - }, - { - "en": "Translation" - } - ], - "name": "Gustave Roud, Complete works", - "shortcode": "0112", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/", - "text": "Switzerland" - } - ], - "startDate": "2017-11-01", - "temporalCoverage": [ - { - "fr": "20e siècle" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.ls-prod-server.dasch.swiss/project/0112", - "text": "Discover Project Data" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0112-project", + "__type": "Project", + "__createdAt": "1630601323747283000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Maggetti, D., Jacquier Kaempfer, C., Spadini, E., Pellegrino, B., Burri, J., Lacord, R., Peterman, S., Christen, A., Jaouen, L., Rivoal, M., 2020, Gustave Roud, oeuvres [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0112.", + "teaserText": "This database is the accompaniment of the critical edition of Gustave Roud’s work. It hosts the digital facsimiles of Gustave Roud’s archive, which includes manuscripts and printed materials.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0112-dataset-000" + ], + "alternativeNames": [ + { + "fr": "roud-oeuvres" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0112-person-000", + "description": { + "en": "Gustave Roud’s work includes several volumes of poetic prose, diary notes, translations, as well as texts on literature and fine arts. The first critical edition of the poet will be published in two complementary formats: in several volumes, with the publisher Zoé (Carouge-Geneva) and, at the same time, on a digital platform. This platform will constitute the genetic accompaniment of the publication: it will host the digital facsimiles of Gustave Roud’s archive, which includes manuscripts and printed materials.\n\nIn these two formats the publication will enhance the exposure of one of the most important works of the 20th century Swiss literature and it will stimulate studies that respond to contemporary critical orientations: ecocriticism, literary geography and landscape studies, intermediality studies, and queer studies. Furthermore, the digital facsimiles of the archival materials will give the project a strong interdisciplinary dimension: taking into account the diversity of Roud’s practices – diary, poetry, photography, art criticism, literary criticism, translation – it will inspire a renewal of the approach to the work and to its author for the academic as well as the general public." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/570107", + "text": "Language and literature" + }, + { + "en": "10502 Romance languages and literature" + }, + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/550613", + "text": "History of Literature" + } + ], + "endDate": "2021-12-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0112-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0112-grant-000" + ], + "keywords": [ + { + "en": "20th century French literature" + }, + { + "en": "Digital edition" + }, + { + "en": "Edition" + }, + { + "en": "Gustave Roud" + }, + { + "en": "Literary criticism" + }, + { + "en": "Literature from French-speaking Switzerland" + }, + { + "en": "Manuscripts" + }, + { + "en": "Photography" + }, + { + "en": "Poetry" + }, + { + "en": "Textual genetics" + }, + { + "en": "Translation" + } + ], + "name": "Gustave Roud, Complete works", + "shortcode": "0112", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/", + "text": "Switzerland" + } + ], + "startDate": "2017-11-01", + "temporalCoverage": [ + { + "fr": "20e siècle" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.ls-prod-server.dasch.swiss/project/0112", + "text": "Discover Project Data" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0112-dataset-000", + "__type": "Dataset", + "__createdAt": "1630601330472953000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0112-dataset-000", - "__type": "Dataset", - "__createdAt": "1630601330472953000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The dataset includes information about Roud’s publications (complete bibliographic records, facsimiles) and about the materials in his archive at the University of Lausanne (document descriptions, facsimiles). Each work has attached a critical text and a genetic network; the latter links publications and archival materials. The dataset also includes information about persons, places and artistic works (music, literature, visual arts) mentioned in the texts, and short essays about Roud’s artistic production." - } - ], - "accessConditions": "open", - "dateCreated": "2018-08-31", - "dateModified": "2021-02-03", - "datePublished": "2018-08-31", - "howToCite": "Maggetti, D., Jacquier Kaempfer, C., Spadini, E., Pellegrino, B., Burri, J., Lacord, R., Peterman, S., Christen, A., Jaouen, L., Rivoal, M., 2020, Gustave Roud, oeuvres [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0112.", - "languages": [ - { - "en": "French", - "de": "Französisch", - "fr": "français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0/", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-000", - "roles": [ - "Project leader" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-001", - "roles": [ - "Project leader" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-002", - "roles": [ - "Project member", - "Data collector", - "Data curator", - "Data manager" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-003", - "roles": [ - "Project member", - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-004", - "roles": [ - "Project member", - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-005", - "roles": [ - "Project member", - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-006", - "roles": [ - "Project member", - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-008", - "roles": [ - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-007", - "roles": [ - "Other" - ] - } - ], - "status": "Finished", - "title": "Base de données Gustave Roud", - "typeOfData": [ - "Image", - "Text", - "XML" - ], - "urls": [ - { - "__type": "URL", - "type": "URL", - "url": "https://github.com/gustaveroudproject/SalsahModeEmploi/blob/master/SalsahModeEmploi.md", - "text": "Find additional documentation on Github here" - } - ] + "en": "The dataset includes information about Roud’s publications (complete bibliographic records, facsimiles) and about the materials in his archive at the University of Lausanne (document descriptions, facsimiles). Each work has attached a critical text and a genetic network; the latter links publications and archival materials. The dataset also includes information about persons, places and artistic works (music, literature, visual arts) mentioned in the texts, and short essays about Roud’s artistic production." } - ], - "persons": [ + ], + "accessConditions": "open", + "dateCreated": "2018-08-31", + "dateModified": "2021-02-03", + "datePublished": "2018-08-31", + "howToCite": "Maggetti, D., Jacquier Kaempfer, C., Spadini, E., Pellegrino, B., Burri, J., Lacord, R., Peterman, S., Christen, A., Jaouen, L., Rivoal, M., 2020, Gustave Roud, oeuvres [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0112.", + "languages": [ + { + "en": "French", + "de": "Französisch", + "fr": "français" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-001", - "__type": "Person", - "__createdAt": "1630601331609680000", - "__createdBy": "dsp-metadata-gui", - "email": "claire.jaquier@unine.ch", - "familyNames": [ - "Jaquier Kaempfer" - ], - "givenNames": [ - "Claire" - ], - "jobTitles": [ - "Full professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0112-organization-002" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-000", + "roles": [ + "Project leader" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-007", - "__type": "Person", - "__createdAt": "1630601331609789000", - "__createdBy": "dsp-metadata-gui", - "email": "loic.jaouen@unil.ch", - "familyNames": [ - "Jaouen" - ], - "givenNames": [ - "Loïc" - ], - "jobTitles": [ - "IT support" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0112-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-001", + "roles": [ + "Project leader" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-008", - "__type": "Person", - "__createdAt": "1630601331609894000", - "__createdBy": "dsp-metadata-gui", - "email": "marion.rivoal@unil.ch", - "familyNames": [ - "Rivoal" - ], - "givenNames": [ - "Marion" - ], - "jobTitles": [ - "Research manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0112-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-4185-7169", - "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-002", + "roles": [ + "Project member", + "Data collector", + "Data curator", + "Data manager" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-000", - "__type": "Person", - "__createdAt": "1630601331610070000", - "__createdBy": "dsp-metadata-gui", - "email": "daniel.maggetti@unil.ch", - "familyNames": [ - "Maggetti" - ], - "givenNames": [ - "Daniel" - ], - "jobTitles": [ - "Full professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0112-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-003", + "roles": [ + "Project member", + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-003", - "__type": "Person", - "__createdAt": "1630601331610172000", - "__createdBy": "dsp-metadata-gui", - "email": "bruno.pellegrino@unil.ch", - "familyNames": [ - "Pellegrino" - ], - "givenNames": [ - "Bruno" - ], - "jobTitles": [ - "Junior SNSF Researcher", - "Scientific collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0112-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-004", + "roles": [ + "Project member", + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-004", - "__type": "Person", - "__createdAt": "1630601331610280000", - "__createdBy": "dsp-metadata-gui", - "email": "alessio.christen@unil.ch", - "familyNames": [ - "Christen" - ], - "givenNames": [ - "Alessio" - ], - "jobTitles": [ - "Junior SNSF Researcher", - "Scientific collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0112-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-005", + "roles": [ + "Project member", + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-005", - "__type": "Person", - "__createdAt": "1630601331610400000", - "__createdBy": "dsp-metadata-gui", - "email": "julien.burri@unil.ch", - "familyNames": [ - "Burry" - ], - "givenNames": [ - "Julien" - ], - "jobTitles": [ - "Junior SNSF Researcher", - "Scientific collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0112-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-006", + "roles": [ + "Project member", + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-006", - "__type": "Person", - "__createdAt": "1630601331610503000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Lacord" - ], - "givenNames": [ - "Raphaëlle" - ], - "jobTitles": [ - "Junior SNSF Researcher", - "Scientific collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0112-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-008", + "roles": [ + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-002", - "__type": "Person", - "__createdAt": "1630601331610586000", - "__createdBy": "dsp-metadata-gui", - "email": "elena.spadini@unil.ch", - "familyNames": [ - "Spadini" - ], - "givenNames": [ - "Elena" - ], - "jobTitles": [ - "Post-doctoral researcher", - "Senior SNSF Researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0112-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-4522-2833", - "text": "ORCID URL: https://orcid.org/0000-0002-4522-2833" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0112-person-007", + "roles": [ + "Other" + ] } - ], - "organizations": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0112-organization-002", - "__type": "Organization", - "__createdAt": "1630601331610778000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Avenue du 1er-Mars 26", - "postalCode": "2000 ", - "locality": "Neuchâtel", - "country": "Switzerland" - }, - "name": "Université de Neuchâtel", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.unine.ch/", - "text": "http://www.unine.ch/" - } - }, + ], + "status": "Finished", + "title": "Base de données Gustave Roud", + "typeOfData": [ + "Image", + "Text", + "XML" + ], + "urls": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0112-organization-001", - "__type": "Organization", - "__createdAt": "1630601331813643000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3 Postfach", - "postalCode": "3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } - }, + "__type": "URL", + "type": "URL", + "url": "https://github.com/gustaveroudproject/SalsahModeEmploi/blob/master/SalsahModeEmploi.md", + "text": "Find additional documentation on Github here" + } + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-001", + "__type": "Person", + "__createdAt": "1630601331609680000", + "__createdBy": "dsp-metadata-gui", + "email": "claire.jaquier@unine.ch", + "familyNames": [ + "Jaquier Kaempfer" + ], + "givenNames": [ + "Claire" + ], + "jobTitles": [ + "Full professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0112-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-007", + "__type": "Person", + "__createdAt": "1630601331609789000", + "__createdBy": "dsp-metadata-gui", + "email": "loic.jaouen@unil.ch", + "familyNames": [ + "Jaouen" + ], + "givenNames": [ + "Loïc" + ], + "jobTitles": [ + "IT support" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0112-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-008", + "__type": "Person", + "__createdAt": "1630601331609894000", + "__createdBy": "dsp-metadata-gui", + "email": "marion.rivoal@unil.ch", + "familyNames": [ + "Rivoal" + ], + "givenNames": [ + "Marion" + ], + "jobTitles": [ + "Research manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0112-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0112-organization-000", - "__type": "Organization", - "__createdAt": "1630601331846768000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Unicentre", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "name": "Université de Lausanne", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unil.ch/", - "text": "https://www.unil.ch/" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4185-7169", + "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" } - ], - "grants": [ + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-000", + "__type": "Person", + "__createdAt": "1630601331610070000", + "__createdBy": "dsp-metadata-gui", + "email": "daniel.maggetti@unil.ch", + "familyNames": [ + "Maggetti" + ], + "givenNames": [ + "Daniel" + ], + "jobTitles": [ + "Full professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0112-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-003", + "__type": "Person", + "__createdAt": "1630601331610172000", + "__createdBy": "dsp-metadata-gui", + "email": "bruno.pellegrino@unil.ch", + "familyNames": [ + "Pellegrino" + ], + "givenNames": [ + "Bruno" + ], + "jobTitles": [ + "Junior SNSF Researcher", + "Scientific collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0112-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-004", + "__type": "Person", + "__createdAt": "1630601331610280000", + "__createdBy": "dsp-metadata-gui", + "email": "alessio.christen@unil.ch", + "familyNames": [ + "Christen" + ], + "givenNames": [ + "Alessio" + ], + "jobTitles": [ + "Junior SNSF Researcher", + "Scientific collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0112-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-005", + "__type": "Person", + "__createdAt": "1630601331610400000", + "__createdBy": "dsp-metadata-gui", + "email": "julien.burri@unil.ch", + "familyNames": [ + "Burry" + ], + "givenNames": [ + "Julien" + ], + "jobTitles": [ + "Junior SNSF Researcher", + "Scientific collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0112-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-006", + "__type": "Person", + "__createdAt": "1630601331610503000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Lacord" + ], + "givenNames": [ + "Raphaëlle" + ], + "jobTitles": [ + "Junior SNSF Researcher", + "Scientific collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0112-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0112-person-002", + "__type": "Person", + "__createdAt": "1630601331610586000", + "__createdBy": "dsp-metadata-gui", + "email": "elena.spadini@unil.ch", + "familyNames": [ + "Spadini" + ], + "givenNames": [ + "Elena" + ], + "jobTitles": [ + "Post-doctoral researcher", + "Senior SNSF Researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0112-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0112-grant-000", - "__type": "Grant", - "__createdAt": "1630601331880177000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0112-organization-001" - ], - "name": "Editions", - "number": "157970", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/157970", - "text": "https://data.snf.ch/grants/grant/157970" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-4522-2833", + "text": "ORCID URL: https://orcid.org/0000-0002-4522-2833" } - ] -} + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0112-organization-002", + "__type": "Organization", + "__createdAt": "1630601331610778000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Avenue du 1er-Mars 26", + "postalCode": "2000 ", + "locality": "Neuchâtel", + "country": "Switzerland" + }, + "name": "Université de Neuchâtel", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.unine.ch/", + "text": "http://www.unine.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0112-organization-001", + "__type": "Organization", + "__createdAt": "1630601331813643000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3 Postfach", + "postalCode": "3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0112-organization-000", + "__type": "Organization", + "__createdAt": "1630601331846768000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Unicentre", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "name": "Université de Lausanne", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unil.ch/", + "text": "https://www.unil.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0112-grant-000", + "__type": "Grant", + "__createdAt": "1630601331880177000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0112-organization-001" + ], + "name": "Editions", + "number": "157970", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/157970", + "text": "https://data.snf.ch/grants/grant/157970" + } + } + ] +} \ No newline at end of file diff --git a/data/json/sgv.json b/data/json/sgv.json index 6bae2e49..eaa21f62 100644 --- a/data/json/sgv.json +++ b/data/json/sgv.json @@ -1,1990 +1,1991 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-project", - "__type": "Project", - "__createdAt": "1643065731303178000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Photo Archive of the Cultural Anthropology Switzerland (CAS).", - "teaserText": "With its approximately 500,000 photo objects from across the world, the photo archive of the CAS fosters new approaches to the study and consumption of photographs.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0812-dataset-000" - ], - "alternativeNames": [ - { - "en": "Photo Archive of the CAS" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0812-person-001", - "description": { - "en": "From the beginning of the photographic project initiated by the Cultural Anthropology Switzerland (CAS) in 2014 up to now, one hundred twenty thousand photographs from sixteen collections have been processed. Under the direction of Prof. Dr. Walter Leimgruber and in close collaboration with the Digital Humanities Lab of the University of Basel and the restoration studio Anklin & Assen, these objects were conserved, restored, digitized, and documented in a database as well as made digitally accessible through a user-friendly website. Following Memoriav and the Florence Declaration we preserve and make accessible to the broad public both digital and analogue formats. The photo archive contains about 500,000 photographic objects as part of about 40 collections and spanning 150 years of photographic history." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/5101/html", - "text": "Cultural anthropology" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-006", - "http://ns.dasch.swiss/repository#dsp-0812-organization-007", - "http://ns.dasch.swiss/repository#dsp-0812-organization-008", - "http://ns.dasch.swiss/repository#dsp-0812-organization-009", - "http://ns.dasch.swiss/repository#dsp-0812-organization-010", - "http://ns.dasch.swiss/repository#dsp-0812-organization-011", - "http://ns.dasch.swiss/repository#dsp-0812-organization-012", - "http://ns.dasch.swiss/repository#dsp-0812-organization-013", - "http://ns.dasch.swiss/repository#dsp-0812-organization-014", - "http://ns.dasch.swiss/repository#dsp-0812-organization-015", - "http://ns.dasch.swiss/repository#dsp-0812-organization-016", - "http://ns.dasch.swiss/repository#dsp-0812-organization-017", - "http://ns.dasch.swiss/repository#dsp-0812-organization-018", - "http://ns.dasch.swiss/repository#dsp-0812-organization-019", - "http://ns.dasch.swiss/repository#dsp-0812-organization-020", - "http://ns.dasch.swiss/repository#dsp-0812-organization-021", - "http://ns.dasch.swiss/repository#dsp-0812-organization-022" - ], - "keywords": [ - { - "en": "Afghanistan" - }, - { - "en": "Anthropology" - }, - { - "en": "Cultural Heritage" - }, - { - "en": "Folklore" - }, - { - "en": "Participation" - }, - { - "en": "Photo Archives" - }, - { - "en": "Photography" - }, - { - "en": "Sumatra" - }, - { - "en": "Switzerland" - }, - { - "en": "Syria" - }, - { - "en": "Visual Anthropology" - }, - { - "en": "Visual Studies" - } - ], - "name": "Photo Archive of the Cultural Anthropology Switzerland (CAS)", - "publications": [ - { - "text": "Graf, Stephan, Huber, Birgit, Oezvegyi, Aila, Peduzzi, Nicole (2019). “Das Fotoarchiv der Schweizerischen Gesellschaft für Volkskunde: Ein Ort der Forschung, der Begegnungen und Affekte”. In: Rundbrief Fotografie 26/1: 31–40." - }, - { - "text": "Peduzzi, Nicole (2016). “Die Wohlfahrt fotografischer Objekte”. In: Bulletin SAGW 3: 44–47." - }, - { - "text": "Peduzzi, Nicole (2018). “Ein Fotoarchiv zwischen Wissenschaftlichkeit und Intimität”. In: Memoriav Bulletin 25: 38-39." - }, - { - "text": "Peduzzi, Nicole (2018). “Un archivio tra intimità e rigore scientifico”. In: Memoriav Bulletin 25: 38-39." - } - ], - "shortcode": "0812", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/798544/republic-of-poland.html", - "text": "Poland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2264397/portuguese-republic.html", - "text": "Portugal" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/660013/republic-of-finland.html", - "text": "Finland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/357994/arab-republic-of-egypt.html", - "text": "Egypt" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/192950/republic-of-kenya.html", - "text": "Kenya" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/1149361/islamic-republic-of-afghanistan.html", - "text": "Afghanistan" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/1269750/republic-of-india.html", - "text": "India" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/11919979/new-england.html", - "text": "New England" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/1062947/republic-of-madagascar.html", - "text": "Madagascar" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3017382/republic-of-france.html", - "text": "France" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/878675/republic-of-zimbabwe.html", - "text": "Zimbabwe" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3144096/kingdom-of-norway.html", - "text": "Norway" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2233387/republic-of-cameroon.html", - "text": "Cameroon" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2510769/kingdom-of-spain.html", - "text": "Spain" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2434508/republic-of-chad.html", - "text": "Chad" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3175395/italian-republic.html", - "text": "Italy" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/149590/united-republic-of-tanzania.html", - "text": "Tanzania" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2960313/grand-duchy-of-luxembourg.html", - "text": "Luxembourg" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2782113/republic-of-austria.html", - "text": "Austria" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/163843/syrian-arab-republic.html", - "text": "Syria" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/337996/federal-democratic-republic-of-ethiopia.html", - "text": "Ethiopia" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2661886/kingdom-of-sweden.html", - "text": "Sweden" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/1819730/hong-kong-special-administrative-region.html", - "text": "Hong Kong" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "http://www.geonames.org/2638360/scotland.html", - "text": "Scotland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/1643084/republic-of-indonesia.html", - "text": "Indonesia" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2921044/federal-republic-of-germany.html", - "text": "Germany" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/switzerland.html", - "text": "Switzerland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/1861060/japan.html", - "text": "Japan" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/798549/romania.html", - "text": "Romania" - } - ], - "startDate": "2014-01-01", - "temporalCoverage": [ - { - "en": "Photography: 1850-today" - }, - { - "en": "Text: 1700-today" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/Wacpqk4-SfujXYw5EeUoCw", - "text": "Discover Project Data" - }, - "secondaryURL": { - "__type": "URL", - "type": "URL", - "url": "https://archiv.sgv-sstp.ch/", - "text": "External Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-project", + "__type": "Project", + "__createdAt": "1643065731303178000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Photo Archive of the Cultural Anthropology Switzerland (CAS).", + "teaserText": "With its approximately 500,000 photo objects from across the world, the photo archive of the CAS fosters new approaches to the study and consumption of photographs.", "datasets": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-dataset-000", - "__type": "Dataset", - "__createdAt": "1643065758602477000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The dataset contains the photographic collections of the Cultural Anthropology Switzerland (CAS) as well as about thirty-five films related to them." - } - ], - "alternativeTitles": [ - { - "en": "CAS photo collections" - } - ], - "accessConditions": "open", - "howToCite": "Photo Archive of the Cultural Anthropology Switzerland (CAS).", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "en": "French", - "de": "Französisch", - "fr": "français" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - }, - { - "en": "Italian", - "de": "Italienisch", - "fr": "italien" - }, - { - "en": "Romansh" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2022-01-25", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", - "text": "CC BY-NC-ND 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-000", - "roles": [ - "Head of project" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-001", - "roles": [ - "Project coordination" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-002", - "roles": [ - "Restoration, Project Consultant" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-003", - "roles": [ - "Coordination web design and development, Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-004", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-005", - "roles": [ - "Coordinator, Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-006", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-007", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-008", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-009", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-010", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-011", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-012", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-013", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-014", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-015", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-016", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-017", - "roles": [ - "Oral history partner, Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-018", - "roles": [ - "Oral history partner" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-019", - "roles": [ - "Oral history partner" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-020", - "roles": [ - "Database programming" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-021", - "roles": [ - "Database programming" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-022", - "roles": [ - "Database programming" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-023", - "roles": [ - "Database programming" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-024", - "roles": [ - "Database programming" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-025", - "roles": [ - "Database programming" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-026", - "roles": [ - "Database programming" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-027", - "roles": [ - "Database programming" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-028", - "roles": [ - "Database programming" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-029", - "roles": [ - "Database programming" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-030", - "roles": [ - "Web design and development" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-031", - "roles": [ - "Typeface" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-032", - "roles": [ - "Conservation, restoration, Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-033", - "roles": [ - "Conservation, restoration" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-034", - "roles": [ - "Conservation, restoration" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-035", - "roles": [ - "Conservation, restoration" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-036", - "roles": [ - "Conservation, restoration" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-037", - "roles": [ - "Conservation, restoration" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-038", - "roles": [ - "Conservation, restoration" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-039", - "roles": [ - "Conservation, restoration" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-040", - "roles": [ - "Digitization" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-041", - "roles": [ - "Digitization" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-042", - "roles": [ - "Digitization" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-043", - "roles": [ - "Digitization" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-044", - "roles": [ - "Digitization" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-045", - "roles": [ - "ICT Consultant" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-046", - "roles": [ - "Translation (EN)" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-047", - "roles": [ - "Translation (FR), Editor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-048", - "roles": [ - "Translation (IT)" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-049", - "roles": [ - "Translation (RM)" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-050", - "roles": [ - "Translation (RM), Data curator" - ] - } - ], - "status": "Ongoing", - "title": "Photographic collections of the CAS", - "typeOfData": [ - "Image", - "Video" - ], - "urls": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.volkskunde.ch/", - "text": "Find more information about CAS here" - } - ] - } + "http://ns.dasch.swiss/repository#dsp-0812-dataset-000" ], - "persons": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-000", - "__type": "Person", - "__createdAt": "1643065759649234000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Leimgruber" - ], - "givenNames": [ - "Walter" - ], - "jobTitles": [ - "Professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000", - "http://ns.dasch.swiss/repository#dsp-0812-organization-003" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://kulturwissenschaft.philhist.unibas.ch/de/personen/walter-leimgruber/", - "text": "https://kulturwissenschaft.philhist.unibas.ch/de/personen/walter-leimgruber/" - } - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-002", - "__type": "Person", - "__createdAt": "1643065759649396000", - "__createdBy": "dsp-metadata-gui", - "email": "regula.anklin@bluewin.ch", - "familyNames": [ - "Anklin" - ], - "givenNames": [ - "Regula" - ], - "jobTitles": [ - "Conservator/Restorer", - "Photo archive consultant" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-002" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-003", - "__type": "Person", - "__createdAt": "1643065759649498000", - "__createdBy": "dsp-metadata-gui", - "email": "mail@stephangraf.ch", - "familyNames": [ - "Graf" - ], - "givenNames": [ - "Stephan" - ], - "jobTitles": [ - "Project Consultant", - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://stephangraf.ch/", - "text": "https://stephangraf.ch/" - } - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-004", - "__type": "Person", - "__createdAt": "1643065759649660000", - "__createdBy": "dsp-metadata-gui", - "email": "birgit.huber@unibas.ch", - "familyNames": [ - "Huber" - ], - "givenNames": [ - "Birgit" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000", - "http://ns.dasch.swiss/repository#dsp-0812-organization-003" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-005", - "__type": "Person", - "__createdAt": "1643065759649765000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Iselin" - ], - "givenNames": [ - "Regula" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-006", - "__type": "Person", - "__createdAt": "1643065759649838000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Karrer" - ], - "givenNames": [ - "Uta" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000", - "http://ns.dasch.swiss/repository#dsp-0812-organization-003" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-007", - "__type": "Person", - "__createdAt": "1643065759649924000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Özvegyi" - ], - "givenNames": [ - "Aila" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000", - "http://ns.dasch.swiss/repository#dsp-0812-organization-003" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-008", - "__type": "Person", - "__createdAt": "1643065759650010000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Wiedemer" - ], - "givenNames": [ - "Caroline" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-009", - "__type": "Person", - "__createdAt": "1643065759650085000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Chen" - ], - "givenNames": [ - "Lucia" - ], - "jobTitles": [ - "Intern" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-010", - "__type": "Person", - "__createdAt": "1643065759650159000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Hohn" - ], - "givenNames": [ - "Julia" - ], - "jobTitles": [ - "Intern" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-011", - "__type": "Person", - "__createdAt": "1643065759650232000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Planzer" - ], - "givenNames": [ - "Julia" - ], - "jobTitles": [ - "Intern" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-012", - "__type": "Person", - "__createdAt": "1643065759650308000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Weber" - ], - "givenNames": [ - "Dominic" - ], - "jobTitles": [ - "Civil service associate", - "Intern" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-013", - "__type": "Person", - "__createdAt": "1643065759650387000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Do Sul" - ], - "givenNames": [ - "Leandro" - ], - "jobTitles": [ - "Civil service associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-014", - "__type": "Person", - "__createdAt": "1643065759650461000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Röthlisberger" - ], - "givenNames": [ - "Ramon" - ], - "jobTitles": [ - "Civil service associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-015", - "__type": "Person", - "__createdAt": "1643065759650535000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Doebele" - ], - "givenNames": [ - "Verena" - ], - "jobTitles": [ - "Volunteer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] - }, + "alternativeNames": [ + { + "en": "Photo Archive of the CAS" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0812-person-001", + "description": { + "en": "From the beginning of the photographic project initiated by the Cultural Anthropology Switzerland (CAS) in 2014 up to now, one hundred twenty thousand photographs from sixteen collections have been processed. Under the direction of Prof. Dr. Walter Leimgruber and in close collaboration with the Digital Humanities Lab of the University of Basel and the restoration studio Anklin & Assen, these objects were conserved, restored, digitized, and documented in a database as well as made digitally accessible through a user-friendly website. Following Memoriav and the Florence Declaration we preserve and make accessible to the broad public both digital and analogue formats. The photo archive contains about 500,000 photographic objects as part of about 40 collections and spanning 150 years of photographic history." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/5101/html", + "text": "Cultural anthropology" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-006", + "http://ns.dasch.swiss/repository#dsp-0812-organization-007", + "http://ns.dasch.swiss/repository#dsp-0812-organization-008", + "http://ns.dasch.swiss/repository#dsp-0812-organization-009", + "http://ns.dasch.swiss/repository#dsp-0812-organization-010", + "http://ns.dasch.swiss/repository#dsp-0812-organization-011", + "http://ns.dasch.swiss/repository#dsp-0812-organization-012", + "http://ns.dasch.swiss/repository#dsp-0812-organization-013", + "http://ns.dasch.swiss/repository#dsp-0812-organization-014", + "http://ns.dasch.swiss/repository#dsp-0812-organization-015", + "http://ns.dasch.swiss/repository#dsp-0812-organization-016", + "http://ns.dasch.swiss/repository#dsp-0812-organization-017", + "http://ns.dasch.swiss/repository#dsp-0812-organization-018", + "http://ns.dasch.swiss/repository#dsp-0812-organization-019", + "http://ns.dasch.swiss/repository#dsp-0812-organization-020", + "http://ns.dasch.swiss/repository#dsp-0812-organization-021", + "http://ns.dasch.swiss/repository#dsp-0812-organization-022" + ], + "keywords": [ + { + "en": "Afghanistan" + }, + { + "en": "Anthropology" + }, + { + "en": "Cultural Heritage" + }, + { + "en": "Folklore" + }, + { + "en": "Participation" + }, + { + "en": "Photo Archives" + }, + { + "en": "Photography" + }, + { + "en": "Sumatra" + }, + { + "en": "Switzerland" + }, + { + "en": "Syria" + }, + { + "en": "Visual Anthropology" + }, + { + "en": "Visual Studies" + } + ], + "name": "Photo Archive of the Cultural Anthropology Switzerland (CAS)", + "publications": [ + { + "text": "Graf, Stephan, Huber, Birgit, Oezvegyi, Aila, Peduzzi, Nicole (2019). “Das Fotoarchiv der Schweizerischen Gesellschaft für Volkskunde: Ein Ort der Forschung, der Begegnungen und Affekte”. In: Rundbrief Fotografie 26/1: 31–40." + }, + { + "text": "Peduzzi, Nicole (2016). “Die Wohlfahrt fotografischer Objekte”. In: Bulletin SAGW 3: 44–47." + }, + { + "text": "Peduzzi, Nicole (2018). “Ein Fotoarchiv zwischen Wissenschaftlichkeit und Intimität”. In: Memoriav Bulletin 25: 38-39." + }, + { + "text": "Peduzzi, Nicole (2018). “Un archivio tra intimità e rigore scientifico”. In: Memoriav Bulletin 25: 38-39." + } + ], + "shortcode": "0812", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/798544/republic-of-poland.html", + "text": "Poland" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2264397/portuguese-republic.html", + "text": "Portugal" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/660013/republic-of-finland.html", + "text": "Finland" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/357994/arab-republic-of-egypt.html", + "text": "Egypt" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/192950/republic-of-kenya.html", + "text": "Kenya" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/1149361/islamic-republic-of-afghanistan.html", + "text": "Afghanistan" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/1269750/republic-of-india.html", + "text": "India" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/11919979/new-england.html", + "text": "New England" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/1062947/republic-of-madagascar.html", + "text": "Madagascar" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3017382/republic-of-france.html", + "text": "France" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/878675/republic-of-zimbabwe.html", + "text": "Zimbabwe" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3144096/kingdom-of-norway.html", + "text": "Norway" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2233387/republic-of-cameroon.html", + "text": "Cameroon" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2510769/kingdom-of-spain.html", + "text": "Spain" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2434508/republic-of-chad.html", + "text": "Chad" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3175395/italian-republic.html", + "text": "Italy" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/149590/united-republic-of-tanzania.html", + "text": "Tanzania" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2960313/grand-duchy-of-luxembourg.html", + "text": "Luxembourg" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2782113/republic-of-austria.html", + "text": "Austria" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/163843/syrian-arab-republic.html", + "text": "Syria" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/337996/federal-democratic-republic-of-ethiopia.html", + "text": "Ethiopia" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2661886/kingdom-of-sweden.html", + "text": "Sweden" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/1819730/hong-kong-special-administrative-region.html", + "text": "Hong Kong" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "http://www.geonames.org/2638360/scotland.html", + "text": "Scotland" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/1643084/republic-of-indonesia.html", + "text": "Indonesia" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2921044/federal-republic-of-germany.html", + "text": "Germany" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/switzerland.html", + "text": "Switzerland" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/1861060/japan.html", + "text": "Japan" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/798549/romania.html", + "text": "Romania" + } + ], + "startDate": "2014-01-01", + "temporalCoverage": [ + { + "en": "Photography: 1850-today" + }, + { + "en": "Text: 1700-today" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/Wacpqk4-SfujXYw5EeUoCw", + "text": "Discover Project Data" + }, + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "https://archiv.sgv-sstp.ch/", + "text": "External Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-dataset-000", + "__type": "Dataset", + "__createdAt": "1643065758602477000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ + { + "en": "The dataset contains the photographic collections of the Cultural Anthropology Switzerland (CAS) as well as about thirty-five films related to them." + } + ], + "alternativeTitles": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-016", - "__type": "Person", - "__createdAt": "1643065759650611000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Scheidegger" - ], - "givenNames": [ - "Annerose" - ], - "jobTitles": [ - "Volunteer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] - }, + "en": "CAS photo collections" + } + ], + "accessConditions": "open", + "howToCite": "Photo Archive of the Cultural Anthropology Switzerland (CAS).", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-017", - "__type": "Person", - "__createdAt": "1643065759650685000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Ghirardelli" - ], - "givenNames": [ - "Gennaro" - ], - "jobTitles": [ - "Collector", - "Photographer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] + "en": "English", + "de": "Englisch", + "fr": "anglais" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-018", - "__type": "Person", - "__createdAt": "1643065759650770000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Röösli" - ], - "givenNames": [ - "Anton" - ], - "jobTitles": [ - "Collector", - "Photographer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] + "en": "French", + "de": "Französisch", + "fr": "français" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-019", - "__type": "Person", - "__createdAt": "1643065759650850000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Werner" - ], - "givenNames": [ - "Margrith" - ], - "jobTitles": [ - "Collector", - "Photographer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] + "de": "Deutsch", + "en": "German", + "fr": "allemand" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-020", - "__type": "Person", - "__createdAt": "1643065759650928000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Rosenthaler" - ], - "givenNames": [ - "Lukas" - ], - "jobTitles": [ - "Assistant Professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-001" - ] + "en": "Italian", + "de": "Italienisch", + "fr": "italien" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-021", - "__type": "Person", - "__createdAt": "1643065759651000000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Geer" - ], - "givenNames": [ - "Benjamin" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-001" - ] - }, + "en": "Romansh" + } + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-022", - "__type": "Person", - "__createdAt": "1643065759651071000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Subotic" - ], - "givenNames": [ - "Ivan" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-001" - ] - }, + "__type": "License", + "date": "2022-01-25", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "text": "CC BY-NC-ND 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-023", - "__type": "Person", - "__createdAt": "1643065759651146000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Schweizer" - ], - "givenNames": [ - "Tobias" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-000", + "roles": [ + "Head of project" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-024", - "__type": "Person", - "__createdAt": "1643065759651219000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Kilchenmann" - ], - "givenNames": [ - "André" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-001", + "roles": [ + "Project coordination" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-025", - "__type": "Person", - "__createdAt": "1643065759651292000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Aeschlimann" - ], - "givenNames": [ - "Andreas" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-002", + "roles": [ + "Restoration, Project Consultant" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-026", - "__type": "Person", - "__createdAt": "1643065759651365000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Alassi" - ], - "givenNames": [ - "Sepideh" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-003", + "roles": [ + "Coordination web design and development, Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-027", - "__type": "Person", - "__createdAt": "1643065759651437000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Gafner" - ], - "givenNames": [ - "Tamino" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-004", + "roles": [ + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-028", - "__type": "Person", - "__createdAt": "1643065759651509000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Tissaveerasingham" - ], - "givenNames": [ - "Vijeinath" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-005", + "roles": [ + "Coordinator, Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-029", - "__type": "Person", - "__createdAt": "1643065759651586000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Zbinden" - ], - "givenNames": [ - "Erwin" - ], - "jobTitles": [ - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-006", + "roles": [ + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-030", - "__type": "Person", - "__createdAt": "1643065759651658000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Aeschbach" - ], - "givenNames": [ - "Marin" - ], - "jobTitles": [ - "Design and webapp development" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-004" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-007", + "roles": [ + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-031", - "__type": "Person", - "__createdAt": "1643065759651731000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Harb" - ], - "givenNames": [ - "Fabian" - ], - "jobTitles": [ - "Designer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-005" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-008", + "roles": [ + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-032", - "__type": "Person", - "__createdAt": "1643065759651803000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Anklin Kull" - ], - "givenNames": [ - "Miriam" - ], - "jobTitles": [ - "Assistant", - "Research associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000", - "http://ns.dasch.swiss/repository#dsp-0812-organization-002" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-009", + "roles": [ + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-033", - "__type": "Person", - "__createdAt": "1643065759651893000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Eisenhut" - ], - "givenNames": [ - "Fiona" - ], - "jobTitles": [ - "Conservator/Restorer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-002" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-010", + "roles": [ + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-034", - "__type": "Person", - "__createdAt": "1643065759651966000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Gründel" - ], - "givenNames": [ - "Johanna" - ], - "jobTitles": [ - "Conservator/Restorer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-002" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-011", + "roles": [ + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-035", - "__type": "Person", - "__createdAt": "1643065759652041000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "van den Heiligenberg" - ], - "givenNames": [ - "Vai" - ], - "jobTitles": [ - "Conservator/Restorer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-002" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-012", + "roles": [ + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-036", - "__type": "Person", - "__createdAt": "1643065759652116000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Hofmann" - ], - "givenNames": [ - "Gian", - "Luca" - ], - "jobTitles": [ - "Conservator/Restorer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-002" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-013", + "roles": [ + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-037", - "__type": "Person", - "__createdAt": "1643065759652189000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Huber" - ], - "givenNames": [ - "Corinne" - ], - "jobTitles": [ - "Conservator/Restorer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-002" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-014", + "roles": [ + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-038", - "__type": "Person", - "__createdAt": "1643065759652264000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Kull" - ], - "givenNames": [ - "Jonas" - ], - "jobTitles": [ - "Conservator/Restorer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-002" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-015", + "roles": [ + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-039", - "__type": "Person", - "__createdAt": "1643065759652337000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Lowe" - ], - "givenNames": [ - "Emma" - ], - "jobTitles": [ - "Conservator/Restorer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-002" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-016", + "roles": [ + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-040", - "__type": "Person", - "__createdAt": "1643065759652410000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Fornaro" - ], - "givenNames": [ - "Peter" - ], - "jobTitles": [ - "Privatdozent" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-001" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-1485-4923", - "text": "ORCID URL: https://orcid.org/0000-0003-1485-4923" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-017", + "roles": [ + "Oral history partner, Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-041", - "__type": "Person", - "__createdAt": "1643065759652549000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Tschakert" - ], - "givenNames": [ - "Alexandra" - ], - "jobTitles": [ - "Research Associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-018", + "roles": [ + "Oral history partner" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-042", - "__type": "Person", - "__createdAt": "1643065759652627000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Meier" - ], - "givenNames": [ - "Daniela" - ], - "jobTitles": [ - "Research Associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-019", + "roles": [ + "Oral history partner" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-043", - "__type": "Person", - "__createdAt": "1643065759652702000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Stratton" - ], - "givenNames": [ - "Dominic" - ], - "jobTitles": [ - "Assistant" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-020", + "roles": [ + "Database programming" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-044", - "__type": "Person", - "__createdAt": "1643065759652776000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Buder" - ], - "givenNames": [ - "Stefanie" - ], - "jobTitles": [ - "Research Associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-001" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-021", + "roles": [ + "Database programming" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-045", - "__type": "Person", - "__createdAt": "1643065759652850000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Longhitano" - ], - "givenNames": [ - "Marco" - ], - "jobTitles": [ - "IT Consultant", - "IT-Systems Engineer" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-022", + "roles": [ + "Database programming" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-046", - "__type": "Person", - "__createdAt": "1643065759652916000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Stephenson" - ], - "givenNames": [ - "Nigel" - ], - "jobTitles": [ - "Free-lance translator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-023", + "roles": [ + "Database programming" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-047", - "__type": "Person", - "__createdAt": "1643065759652988000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Hilfiker Durand" - ], - "givenNames": [ - "Véronique" - ], - "jobTitles": [ - "Free-lance editor and translator (FR)", - "Institute management" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000", - "http://ns.dasch.swiss/repository#dsp-0812-organization-003" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-024", + "roles": [ + "Database programming" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-048", - "__type": "Person", - "__createdAt": "1643065759653079000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Peduzzi" - ], - "givenNames": [ - "Dante" - ], - "jobTitles": [ - "Membro Commissione Sorveglianza dei Licei del Canton Grigioni" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-025", + "roles": [ + "Database programming" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-049", - "__type": "Person", - "__createdAt": "1643065759653155000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Conrad" - ], - "givenNames": [ - "Benno" - ], - "jobTitles": [ - "Cultural Mediator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-026", + "roles": [ + "Database programming" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-050", - "__type": "Person", - "__createdAt": "1643065759653228000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Spinas" - ], - "givenNames": [ - "Violanta" - ], - "jobTitles": [ - "Volunteer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-027", + "roles": [ + "Database programming" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-001", - "__type": "Person", - "__createdAt": "1643065759653302000", - "__createdBy": "dsp-metadata-gui", - "email": "nicole.peduzzi@ekws.ch", - "secondaryEmail": "nicole.peduzzilonghitano@unibas.ch", - "familyNames": [ - "Peduzzi Longhitano" - ], - "givenNames": [ - "Nicole" - ], - "jobTitles": [ - "Curator photo archive", - "Project coordinator", - "Senior Research Associate" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-000", - "http://ns.dasch.swiss/repository#dsp-0812-organization-003" - ] - } - ], - "organizations": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-004", - "__type": "Organization", - "__createdAt": "1643065759653465000", - "__createdBy": "dsp-metadata-gui", - "email": "mail@formwerdung.ch", - "name": "Formwerdung", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://formwerdung.ch/", - "text": "https://formwerdung.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-028", + "roles": [ + "Database programming" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-005", - "__type": "Organization", - "__createdAt": "1643065759653572000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Klingelbergstrasse 11", - "postalCode": "4056", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "mail@abcdinamo.com", - "name": "Dinamo Basel", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://abcdinamo.com/", - "text": "https://abcdinamo.com/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-029", + "roles": [ + "Database programming" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-006", - "__type": "Organization", - "__createdAt": "1643065759705581000", - "__createdBy": "dsp-metadata-gui", - "name": "Memoriav", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://memoriav.ch/", - "text": "https://memoriav.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-030", + "roles": [ + "Web design and development" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-007", - "__type": "Organization", - "__createdAt": "1643065759705727000", - "__createdBy": "dsp-metadata-gui", - "name": "Ernst Göhner Stiftung", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.ernst-goehner-stiftung.ch", - "text": "http://www.ernst-goehner-stiftung.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-031", + "roles": [ + "Typeface" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-008", - "__type": "Organization", - "__createdAt": "1643065759705864000", - "__createdBy": "dsp-metadata-gui", - "name": "Sophie und Karl Binding Stiftung" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-032", + "roles": [ + "Conservation, restoration, Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-009", - "__type": "Organization", - "__createdAt": "1643065759705917000", - "__createdBy": "dsp-metadata-gui", - "name": "Goethe-Stiftung für Kunst und Wissenschaft" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-033", + "roles": [ + "Conservation, restoration" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-010", - "__type": "Organization", - "__createdAt": "1643065759705968000", - "__createdBy": "dsp-metadata-gui", - "name": "Die Schweizerische Post" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-034", + "roles": [ + "Conservation, restoration" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-011", - "__type": "Organization", - "__createdAt": "1643065759706018000", - "__createdBy": "dsp-metadata-gui", - "name": "Fondation Dufloteau" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-035", + "roles": [ + "Conservation, restoration" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-012", - "__type": "Organization", - "__createdAt": "1643065759706068000", - "__createdBy": "dsp-metadata-gui", - "name": "Landis&Gyr Stiftung", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.lg-stiftung.ch/", - "text": "https://www.lg-stiftung.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-036", + "roles": [ + "Conservation, restoration" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-013", - "__type": "Organization", - "__createdAt": "1643065759706198000", - "__createdBy": "dsp-metadata-gui", - "name": "FC Basel" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-037", + "roles": [ + "Conservation, restoration" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-014", - "__type": "Organization", - "__createdAt": "1643065759706251000", - "__createdBy": "dsp-metadata-gui", - "name": "Bundesamt für Kultur (BAK)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.bak.admin.ch/", - "text": "https://www.bak.admin.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-038", + "roles": [ + "Conservation, restoration" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-015", - "__type": "Organization", - "__createdAt": "1643065759706381000", - "__createdBy": "dsp-metadata-gui", - "name": "Bundesamt für Bevölkerungsschutz (BABS)" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-039", + "roles": [ + "Conservation, restoration" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-016", - "__type": "Organization", - "__createdAt": "1643065759706431000", - "__createdBy": "dsp-metadata-gui", - "name": "Loterie Romande", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.loro.ch/", - "text": "https://www.loro.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-040", + "roles": [ + "Digitization" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-017", - "__type": "Organization", - "__createdAt": "1643065759706560000", - "__createdBy": "dsp-metadata-gui", - "name": "Lotteriefonds, Kanton Zürich" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-041", + "roles": [ + "Digitization" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-018", - "__type": "Organization", - "__createdAt": "1643065759706612000", - "__createdBy": "dsp-metadata-gui", - "name": "Swisslos" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-042", + "roles": [ + "Digitization" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-020", - "__type": "Organization", - "__createdAt": "1643065759706661000", - "__createdBy": "dsp-metadata-gui", - "name": "Stiftung für Kunst, Kultur und Geschichte (SKKG)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.skkg.ch", - "text": "https://www.skkg.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-043", + "roles": [ + "Digitization" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-021", - "__type": "Organization", - "__createdAt": "1643065759706790000", - "__createdBy": "dsp-metadata-gui", - "name": "Jacqueline Spengler Stiftung c/o Christoph Merian Stiftung (CMS)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.cms-basel.ch/stiftung/selbstaendige-stiftungen/jacqueline-spengler-stiftung", - "text": "https://www.cms-basel.ch/stiftung/selbstaendige-stiftungen/jacqueline-spengler-stiftung" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-044", + "roles": [ + "Digitization" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-022", - "__type": "Organization", - "__createdAt": "1643065759706920000", - "__createdBy": "dsp-metadata-gui", - "name": "Private anonymous donor" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-045", + "roles": [ + "ICT Consultant" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-019", - "__type": "Organization", - "__createdAt": "1643065759706970000", - "__createdBy": "dsp-metadata-gui", - "name": "Swiss National Science Foundation (SNSF)" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-046", + "roles": [ + "Translation (EN)" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-003", - "__type": "Organization", - "__createdAt": "1643065759707019000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Rheinsprung 9/11", - "postalCode": "4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "kulturwissenschaft@unibas.ch", - "name": "Seminar für Kulturwissenschaft und Europäische Ethnologie, Universität Basel", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://kulturwissenschaft.philhist.unibas.ch/", - "text": "https://kulturwissenschaft.philhist.unibas.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-047", + "roles": [ + "Translation (FR), Editor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-002", - "__type": "Organization", - "__createdAt": "1643065759757148000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "St. Johanns-Ring 133", - "postalCode": "4056", - "locality": "Basel", - "country": "Switzerland" - }, - "name": "Atelier für Restaurierung Anklin & Assen" + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-048", + "roles": [ + "Translation (IT)" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-001", - "__type": "Organization", - "__createdAt": "1643065759811304000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Spalenberg 65", - "postalCode": "4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "sekretariat-dhlab@unibas.ch", - "name": "Digital Humanities Lab (DHLab), University of Basel", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://dhlab.philhist.unibas.ch/", - "text": "https://dhlab.philhist.unibas.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-049", + "roles": [ + "Translation (RM)" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-000", - "__type": "Organization", - "__createdAt": "1643065759865417000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Spalenvorstadt 2", - "postalCode": "4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "archiv@sgv-sstp.ch", - "name": "Photo Archive of the Cultural Anthropology Switzerland (CAS)", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://archiv.sgv-sstp.ch/", - "text": "https://archiv.sgv-sstp.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0812-person-050", + "roles": [ + "Translation (RM), Data curator" + ] } - ], - "grants": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0812-grant-000", - "__type": "Grant", - "__createdAt": "1643065759919701000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0812-organization-019" - ], - "name": "Participatory Knowledge Practices in Analogue and Digital Image Archives (PIA)", - "number": "193788", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://p3.snf.ch/Project-193788", - "text": "https://p3.snf.ch/Project-193788" - } + ], + "status": "Ongoing", + "title": "Photographic collections of the CAS", + "typeOfData": [ + "Image", + "Video" + ], + "urls": [ + { + "__type": "URL", + "type": "URL", + "url": "https://www.volkskunde.ch/", + "text": "Find more information about CAS here" + } + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-000", + "__type": "Person", + "__createdAt": "1643065759649234000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Leimgruber" + ], + "givenNames": [ + "Walter" + ], + "jobTitles": [ + "Professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000", + "http://ns.dasch.swiss/repository#dsp-0812-organization-003" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://kulturwissenschaft.philhist.unibas.ch/de/personen/walter-leimgruber/", + "text": "https://kulturwissenschaft.philhist.unibas.ch/de/personen/walter-leimgruber/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-002", + "__type": "Person", + "__createdAt": "1643065759649396000", + "__createdBy": "dsp-metadata-gui", + "email": "regula.anklin@bluewin.ch", + "familyNames": [ + "Anklin" + ], + "givenNames": [ + "Regula" + ], + "jobTitles": [ + "Conservator/Restorer", + "Photo archive consultant" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-003", + "__type": "Person", + "__createdAt": "1643065759649498000", + "__createdBy": "dsp-metadata-gui", + "email": "mail@stephangraf.ch", + "familyNames": [ + "Graf" + ], + "givenNames": [ + "Stephan" + ], + "jobTitles": [ + "Project Consultant", + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://stephangraf.ch/", + "text": "https://stephangraf.ch/" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-004", + "__type": "Person", + "__createdAt": "1643065759649660000", + "__createdBy": "dsp-metadata-gui", + "email": "birgit.huber@unibas.ch", + "familyNames": [ + "Huber" + ], + "givenNames": [ + "Birgit" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000", + "http://ns.dasch.swiss/repository#dsp-0812-organization-003" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-005", + "__type": "Person", + "__createdAt": "1643065759649765000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Iselin" + ], + "givenNames": [ + "Regula" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-006", + "__type": "Person", + "__createdAt": "1643065759649838000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Karrer" + ], + "givenNames": [ + "Uta" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000", + "http://ns.dasch.swiss/repository#dsp-0812-organization-003" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-007", + "__type": "Person", + "__createdAt": "1643065759649924000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Özvegyi" + ], + "givenNames": [ + "Aila" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000", + "http://ns.dasch.swiss/repository#dsp-0812-organization-003" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-008", + "__type": "Person", + "__createdAt": "1643065759650010000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Wiedemer" + ], + "givenNames": [ + "Caroline" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-009", + "__type": "Person", + "__createdAt": "1643065759650085000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Chen" + ], + "givenNames": [ + "Lucia" + ], + "jobTitles": [ + "Intern" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-010", + "__type": "Person", + "__createdAt": "1643065759650159000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Hohn" + ], + "givenNames": [ + "Julia" + ], + "jobTitles": [ + "Intern" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-011", + "__type": "Person", + "__createdAt": "1643065759650232000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Planzer" + ], + "givenNames": [ + "Julia" + ], + "jobTitles": [ + "Intern" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-012", + "__type": "Person", + "__createdAt": "1643065759650308000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Weber" + ], + "givenNames": [ + "Dominic" + ], + "jobTitles": [ + "Civil service associate", + "Intern" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-013", + "__type": "Person", + "__createdAt": "1643065759650387000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Do Sul" + ], + "givenNames": [ + "Leandro" + ], + "jobTitles": [ + "Civil service associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-014", + "__type": "Person", + "__createdAt": "1643065759650461000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Röthlisberger" + ], + "givenNames": [ + "Ramon" + ], + "jobTitles": [ + "Civil service associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-015", + "__type": "Person", + "__createdAt": "1643065759650535000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Doebele" + ], + "givenNames": [ + "Verena" + ], + "jobTitles": [ + "Volunteer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-016", + "__type": "Person", + "__createdAt": "1643065759650611000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Scheidegger" + ], + "givenNames": [ + "Annerose" + ], + "jobTitles": [ + "Volunteer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-017", + "__type": "Person", + "__createdAt": "1643065759650685000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Ghirardelli" + ], + "givenNames": [ + "Gennaro" + ], + "jobTitles": [ + "Collector", + "Photographer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-018", + "__type": "Person", + "__createdAt": "1643065759650770000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Röösli" + ], + "givenNames": [ + "Anton" + ], + "jobTitles": [ + "Collector", + "Photographer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-019", + "__type": "Person", + "__createdAt": "1643065759650850000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Werner" + ], + "givenNames": [ + "Margrith" + ], + "jobTitles": [ + "Collector", + "Photographer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-020", + "__type": "Person", + "__createdAt": "1643065759650928000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Rosenthaler" + ], + "givenNames": [ + "Lukas" + ], + "jobTitles": [ + "Assistant Professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-021", + "__type": "Person", + "__createdAt": "1643065759651000000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Geer" + ], + "givenNames": [ + "Benjamin" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-022", + "__type": "Person", + "__createdAt": "1643065759651071000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Subotic" + ], + "givenNames": [ + "Ivan" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-023", + "__type": "Person", + "__createdAt": "1643065759651146000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Schweizer" + ], + "givenNames": [ + "Tobias" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-024", + "__type": "Person", + "__createdAt": "1643065759651219000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Kilchenmann" + ], + "givenNames": [ + "André" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-025", + "__type": "Person", + "__createdAt": "1643065759651292000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Aeschlimann" + ], + "givenNames": [ + "Andreas" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-026", + "__type": "Person", + "__createdAt": "1643065759651365000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Alassi" + ], + "givenNames": [ + "Sepideh" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-027", + "__type": "Person", + "__createdAt": "1643065759651437000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Gafner" + ], + "givenNames": [ + "Tamino" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-028", + "__type": "Person", + "__createdAt": "1643065759651509000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Tissaveerasingham" + ], + "givenNames": [ + "Vijeinath" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-029", + "__type": "Person", + "__createdAt": "1643065759651586000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Zbinden" + ], + "givenNames": [ + "Erwin" + ], + "jobTitles": [ + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-030", + "__type": "Person", + "__createdAt": "1643065759651658000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Aeschbach" + ], + "givenNames": [ + "Marin" + ], + "jobTitles": [ + "Design and webapp development" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-004" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-031", + "__type": "Person", + "__createdAt": "1643065759651731000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Harb" + ], + "givenNames": [ + "Fabian" + ], + "jobTitles": [ + "Designer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-005" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-032", + "__type": "Person", + "__createdAt": "1643065759651803000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Anklin Kull" + ], + "givenNames": [ + "Miriam" + ], + "jobTitles": [ + "Assistant", + "Research associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000", + "http://ns.dasch.swiss/repository#dsp-0812-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-033", + "__type": "Person", + "__createdAt": "1643065759651893000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Eisenhut" + ], + "givenNames": [ + "Fiona" + ], + "jobTitles": [ + "Conservator/Restorer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-034", + "__type": "Person", + "__createdAt": "1643065759651966000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Gründel" + ], + "givenNames": [ + "Johanna" + ], + "jobTitles": [ + "Conservator/Restorer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-035", + "__type": "Person", + "__createdAt": "1643065759652041000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "van den Heiligenberg" + ], + "givenNames": [ + "Vai" + ], + "jobTitles": [ + "Conservator/Restorer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-036", + "__type": "Person", + "__createdAt": "1643065759652116000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Hofmann" + ], + "givenNames": [ + "Gian", + "Luca" + ], + "jobTitles": [ + "Conservator/Restorer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-037", + "__type": "Person", + "__createdAt": "1643065759652189000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Huber" + ], + "givenNames": [ + "Corinne" + ], + "jobTitles": [ + "Conservator/Restorer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-038", + "__type": "Person", + "__createdAt": "1643065759652264000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Kull" + ], + "givenNames": [ + "Jonas" + ], + "jobTitles": [ + "Conservator/Restorer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-039", + "__type": "Person", + "__createdAt": "1643065759652337000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Lowe" + ], + "givenNames": [ + "Emma" + ], + "jobTitles": [ + "Conservator/Restorer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-040", + "__type": "Person", + "__createdAt": "1643065759652410000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Fornaro" + ], + "givenNames": [ + "Peter" + ], + "jobTitles": [ + "Privatdozent" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-001" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-1485-4923", + "text": "ORCID URL: https://orcid.org/0000-0003-1485-4923" } - ] + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-041", + "__type": "Person", + "__createdAt": "1643065759652549000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Tschakert" + ], + "givenNames": [ + "Alexandra" + ], + "jobTitles": [ + "Research Associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-042", + "__type": "Person", + "__createdAt": "1643065759652627000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Meier" + ], + "givenNames": [ + "Daniela" + ], + "jobTitles": [ + "Research Associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-043", + "__type": "Person", + "__createdAt": "1643065759652702000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Stratton" + ], + "givenNames": [ + "Dominic" + ], + "jobTitles": [ + "Assistant" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-044", + "__type": "Person", + "__createdAt": "1643065759652776000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Buder" + ], + "givenNames": [ + "Stefanie" + ], + "jobTitles": [ + "Research Associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-045", + "__type": "Person", + "__createdAt": "1643065759652850000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Longhitano" + ], + "givenNames": [ + "Marco" + ], + "jobTitles": [ + "IT Consultant", + "IT-Systems Engineer" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-046", + "__type": "Person", + "__createdAt": "1643065759652916000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Stephenson" + ], + "givenNames": [ + "Nigel" + ], + "jobTitles": [ + "Free-lance translator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-047", + "__type": "Person", + "__createdAt": "1643065759652988000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Hilfiker Durand" + ], + "givenNames": [ + "Véronique" + ], + "jobTitles": [ + "Free-lance editor and translator (FR)", + "Institute management" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000", + "http://ns.dasch.swiss/repository#dsp-0812-organization-003" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-048", + "__type": "Person", + "__createdAt": "1643065759653079000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Peduzzi" + ], + "givenNames": [ + "Dante" + ], + "jobTitles": [ + "Membro Commissione Sorveglianza dei Licei del Canton Grigioni" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-049", + "__type": "Person", + "__createdAt": "1643065759653155000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Conrad" + ], + "givenNames": [ + "Benno" + ], + "jobTitles": [ + "Cultural Mediator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-050", + "__type": "Person", + "__createdAt": "1643065759653228000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Spinas" + ], + "givenNames": [ + "Violanta" + ], + "jobTitles": [ + "Volunteer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-person-001", + "__type": "Person", + "__createdAt": "1643065759653302000", + "__createdBy": "dsp-metadata-gui", + "email": "nicole.peduzzi@ekws.ch", + "secondaryEmail": "nicole.peduzzilonghitano@unibas.ch", + "familyNames": [ + "Peduzzi Longhitano" + ], + "givenNames": [ + "Nicole" + ], + "jobTitles": [ + "Curator photo archive", + "Project coordinator", + "Senior Research Associate" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-000", + "http://ns.dasch.swiss/repository#dsp-0812-organization-003" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-004", + "__type": "Organization", + "__createdAt": "1643065759653465000", + "__createdBy": "dsp-metadata-gui", + "email": "mail@formwerdung.ch", + "name": "Formwerdung", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://formwerdung.ch/", + "text": "https://formwerdung.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-005", + "__type": "Organization", + "__createdAt": "1643065759653572000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Klingelbergstrasse 11", + "postalCode": "4056", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "mail@abcdinamo.com", + "name": "Dinamo Basel", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://abcdinamo.com/", + "text": "https://abcdinamo.com/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-006", + "__type": "Organization", + "__createdAt": "1643065759705581000", + "__createdBy": "dsp-metadata-gui", + "name": "Memoriav", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://memoriav.ch/", + "text": "https://memoriav.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-007", + "__type": "Organization", + "__createdAt": "1643065759705727000", + "__createdBy": "dsp-metadata-gui", + "name": "Ernst Göhner Stiftung", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.ernst-goehner-stiftung.ch", + "text": "http://www.ernst-goehner-stiftung.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-008", + "__type": "Organization", + "__createdAt": "1643065759705864000", + "__createdBy": "dsp-metadata-gui", + "name": "Sophie und Karl Binding Stiftung" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-009", + "__type": "Organization", + "__createdAt": "1643065759705917000", + "__createdBy": "dsp-metadata-gui", + "name": "Goethe-Stiftung für Kunst und Wissenschaft" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-010", + "__type": "Organization", + "__createdAt": "1643065759705968000", + "__createdBy": "dsp-metadata-gui", + "name": "Die Schweizerische Post" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-011", + "__type": "Organization", + "__createdAt": "1643065759706018000", + "__createdBy": "dsp-metadata-gui", + "name": "Fondation Dufloteau" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-012", + "__type": "Organization", + "__createdAt": "1643065759706068000", + "__createdBy": "dsp-metadata-gui", + "name": "Landis&Gyr Stiftung", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.lg-stiftung.ch/", + "text": "https://www.lg-stiftung.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-013", + "__type": "Organization", + "__createdAt": "1643065759706198000", + "__createdBy": "dsp-metadata-gui", + "name": "FC Basel" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-014", + "__type": "Organization", + "__createdAt": "1643065759706251000", + "__createdBy": "dsp-metadata-gui", + "name": "Bundesamt für Kultur (BAK)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.bak.admin.ch/", + "text": "https://www.bak.admin.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-015", + "__type": "Organization", + "__createdAt": "1643065759706381000", + "__createdBy": "dsp-metadata-gui", + "name": "Bundesamt für Bevölkerungsschutz (BABS)" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-016", + "__type": "Organization", + "__createdAt": "1643065759706431000", + "__createdBy": "dsp-metadata-gui", + "name": "Loterie Romande", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.loro.ch/", + "text": "https://www.loro.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-017", + "__type": "Organization", + "__createdAt": "1643065759706560000", + "__createdBy": "dsp-metadata-gui", + "name": "Lotteriefonds, Kanton Zürich" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-018", + "__type": "Organization", + "__createdAt": "1643065759706612000", + "__createdBy": "dsp-metadata-gui", + "name": "Swisslos" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-020", + "__type": "Organization", + "__createdAt": "1643065759706661000", + "__createdBy": "dsp-metadata-gui", + "name": "Stiftung für Kunst, Kultur und Geschichte (SKKG)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.skkg.ch", + "text": "https://www.skkg.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-021", + "__type": "Organization", + "__createdAt": "1643065759706790000", + "__createdBy": "dsp-metadata-gui", + "name": "Jacqueline Spengler Stiftung c/o Christoph Merian Stiftung (CMS)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.cms-basel.ch/stiftung/selbstaendige-stiftungen/jacqueline-spengler-stiftung", + "text": "https://www.cms-basel.ch/stiftung/selbstaendige-stiftungen/jacqueline-spengler-stiftung" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-022", + "__type": "Organization", + "__createdAt": "1643065759706920000", + "__createdBy": "dsp-metadata-gui", + "name": "Private anonymous donor" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-019", + "__type": "Organization", + "__createdAt": "1643065759706970000", + "__createdBy": "dsp-metadata-gui", + "name": "Swiss National Science Foundation (SNSF)" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-003", + "__type": "Organization", + "__createdAt": "1643065759707019000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Rheinsprung 9/11", + "postalCode": "4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "kulturwissenschaft@unibas.ch", + "name": "Seminar für Kulturwissenschaft und Europäische Ethnologie, Universität Basel", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://kulturwissenschaft.philhist.unibas.ch/", + "text": "https://kulturwissenschaft.philhist.unibas.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-002", + "__type": "Organization", + "__createdAt": "1643065759757148000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "St. Johanns-Ring 133", + "postalCode": "4056", + "locality": "Basel", + "country": "Switzerland" + }, + "name": "Atelier für Restaurierung Anklin & Assen" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-001", + "__type": "Organization", + "__createdAt": "1643065759811304000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Spalenberg 65", + "postalCode": "4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "sekretariat-dhlab@unibas.ch", + "name": "Digital Humanities Lab (DHLab), University of Basel", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://dhlab.philhist.unibas.ch/", + "text": "https://dhlab.philhist.unibas.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-organization-000", + "__type": "Organization", + "__createdAt": "1643065759865417000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Spalenvorstadt 2", + "postalCode": "4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "archiv@sgv-sstp.ch", + "name": "Photo Archive of the Cultural Anthropology Switzerland (CAS)", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://archiv.sgv-sstp.ch/", + "text": "https://archiv.sgv-sstp.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0812-grant-000", + "__type": "Grant", + "__createdAt": "1643065759919701000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0812-organization-019" + ], + "name": "Participatory Knowledge Practices in Analogue and Digital Image Archives (PIA)", + "number": "193788", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://p3.snf.ch/Project-193788", + "text": "https://p3.snf.ch/Project-193788" + } + } + ] } \ No newline at end of file diff --git a/data/json/societesavoie.json b/data/json/societesavoie.json index a436171c..5b0b861f 100644 --- a/data/json/societesavoie.json +++ b/data/json/societesavoie.json @@ -1,338 +1,339 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0121-project", - "__type": "Project", - "__createdAt": "1676912016678070000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Pibiri, E., Badoux, L., Frei, S., Rivoal, M., 2022, Base de données du projet Hôtels de la cour de Savoie [base de données], Swiss National Data and Service Center for the Humanities (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0121.", - "teaserText": "Ce projet étudie l’organisation de l’Hôtel de la cour de Savoie du XIIIe au XVe s., son évolution en une institution réglementée et hiérarchisée et propose une étude prosopographique de ses membres.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0121-dataset-000" - ], - "alternativeNames": [ - { - "fr": "societe-savoie" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0121-person-000", - "dataManagementPlan": { - "__type": "DataManagementPlan", - "available": true - }, - "description": { - "fr": "Le comté puis duché de Savoie était au Moyen Âge une principauté d’Empire qui présentait la particularité de se trouver aux confluents de trois réalités politiques et culturelles distinctes : l’espace franco-bourguignon, les États du nord de l’Italie et les villes de la Suisse occidentale. La colonne vertébrale de la cour de Savoie était constituée de l’Hôtel, qui regroupait les officiers et les serviteurs devant veiller, en premier lieu, aux besoins domestiques du prince et de sa famille, qu’il s’agisse de les sustenter, de veiller à leurs déplacements, de les vêtir ou encore d’assurer leur sécurité. Dès le XIIIe siècle, l’Hôtel assuma également un rôle politique qui ne cessa de croître, car c’est en son sein que les princes choisissaient ceux dont ils s’entouraient pour exercer le pouvoir, notamment leurs conseillers, leurs ambassadeurs ou encore leurs chefs militaires. Par ailleurs, l’Hôtel revêtait des fonctions de représentation sociopolitiques et symboliques essentielles. L’étude de l’Hôtel, qui s’érige progressivement en institution gouvernementale, s’avère indispensable pour saisir les mécanismes de la formation de l’État princier savoyard. Le premier objectif du projet consiste en une étude complète des Hôtels de la cour de Savoie – celui du prince, celui de la princesse et celui de leurs enfants. En effet, dès la fin du XIIIe siècle, la comtesse et les enfants du couple princier disposaient de leur propre Hôtel. Cette recherche porte sur le temps long, du XIIIe au XVe siècle, période décisive pour la genèse de l’État moderne. Il s’agit ainsi de reconstruire, pour la première fois de manière globale, par le biais de sources comptables, normatives et notariales, l’organisation des Hôtels de Savoie, ainsi que leur lente évolution en une institution réglementée, hiérarchisée et codifiée. Les coûts des Hôtels ainsi que leur impact sur les finances savoyardes seront également définis. Le deuxième objectif vise à réaliser une base de données prosopographique des membres des Hôtels. Ceux-ci n’étaient pas qu’une institution : ils étaient composés d’hommes, de femmes et d’enfants appartenant à une microsociété dont les contours précis restent encore à définir. Cette société de cour est abordée dans son ensemble, afin d’apporter une contribution essentielle à la sociologie des élites et de mettre en évidence le poids des réseaux de solidarité et des alliances au sein de la cour de Savoie, mais également de reconstituer des carrières et de saisir l’ascension des officiers et des serviteurs ne faisant pas partie de la noblesse." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/5502", - "text": "General History" - }, - { - "fr": "10301 Histoire générale" - } - ], - "endDate": "2024-07-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0121-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0121-grant-000" - ], - "keywords": [ - { - "en": "Accounting" - }, - { - "en": "Children" - }, - { - "en": "Elites" - }, - { - "en": "Households" - }, - { - "en": "Medieval Courts" - }, - { - "en": "Networking" - }, - { - "en": "Officers" - }, - { - "en": "Prosopography" - }, - { - "en": "States of Savoy" - }, - { - "en": "Women" - } - ], - "name": "Société de cour, élites et finances : de l’Hôtel des princes de Savoie à l’État moderne", - "shortcode": "0121", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3175395/", - "text": "Italy" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/", - "text": "Switzerland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3017382/", - "text": "France" - } - ], - "startDate": "2020-08-01", - "temporalCoverage": [ - { - "de": "1269-1465", - "en": "1269-1465", - "fr": "1269-1465" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/0121", - "text": "Discover Project Data" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0121-project", + "__type": "Project", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Pibiri, E., Badoux, L., Frei, S., Rivoal, M., 2022, Base de données du projet Hôtels de la cour de Savoie [base de données], Swiss National Data and Service Center for the Humanities (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0121.", + "teaserText": "Ce projet étudie l’organisation de l’Hôtel de la cour de Savoie du XIIIe au XVe s., son évolution en une institution réglementée et hiérarchisée et propose une étude prosopographique de ses membres.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0121-dataset-000" + ], + "alternativeNames": [ + { + "fr": "societe-savoie" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0121-person-000", + "dataManagementPlan": { + "__type": "DataManagementPlan", + "available": true + }, + "description": { + "fr": "Le comté puis duché de Savoie était au Moyen Âge une principauté d’Empire qui présentait la particularité de se trouver aux confluents de trois réalités politiques et culturelles distinctes : l’espace franco-bourguignon, les États du nord de l’Italie et les villes de la Suisse occidentale. La colonne vertébrale de la cour de Savoie était constituée de l’Hôtel, qui regroupait les officiers et les serviteurs devant veiller, en premier lieu, aux besoins domestiques du prince et de sa famille, qu’il s’agisse de les sustenter, de veiller à leurs déplacements, de les vêtir ou encore d’assurer leur sécurité. Dès le XIIIe siècle, l’Hôtel assuma également un rôle politique qui ne cessa de croître, car c’est en son sein que les princes choisissaient ceux dont ils s’entouraient pour exercer le pouvoir, notamment leurs conseillers, leurs ambassadeurs ou encore leurs chefs militaires. Par ailleurs, l’Hôtel revêtait des fonctions de représentation sociopolitiques et symboliques essentielles. L’étude de l’Hôtel, qui s’érige progressivement en institution gouvernementale, s’avère indispensable pour saisir les mécanismes de la formation de l’État princier savoyard. Le premier objectif du projet consiste en une étude complète des Hôtels de la cour de Savoie – celui du prince, celui de la princesse et celui de leurs enfants. En effet, dès la fin du XIIIe siècle, la comtesse et les enfants du couple princier disposaient de leur propre Hôtel. Cette recherche porte sur le temps long, du XIIIe au XVe siècle, période décisive pour la genèse de l’État moderne. Il s’agit ainsi de reconstruire, pour la première fois de manière globale, par le biais de sources comptables, normatives et notariales, l’organisation des Hôtels de Savoie, ainsi que leur lente évolution en une institution réglementée, hiérarchisée et codifiée. Les coûts des Hôtels ainsi que leur impact sur les finances savoyardes seront également définis. Le deuxième objectif vise à réaliser une base de données prosopographique des membres des Hôtels. Ceux-ci n’étaient pas qu’une institution : ils étaient composés d’hommes, de femmes et d’enfants appartenant à une microsociété dont les contours précis restent encore à définir. Cette société de cour est abordée dans son ensemble, afin d’apporter une contribution essentielle à la sociologie des élites et de mettre en évidence le poids des réseaux de solidarité et des alliances au sein de la cour de Savoie, mais également de reconstituer des carrières et de saisir l’ascension des officiers et des serviteurs ne faisant pas partie de la noblesse." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/5502", + "text": "General History" + }, + { + "fr": "10301 Histoire générale" + } + ], + "endDate": "2024-07-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0121-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0121-grant-000" + ], + "keywords": [ + { + "en": "Accounting" + }, + { + "en": "Children" + }, + { + "en": "Elites" + }, + { + "en": "Households" + }, + { + "en": "Medieval Courts" + }, + { + "en": "Networking" + }, + { + "en": "Officers" + }, + { + "en": "Prosopography" + }, + { + "en": "States of Savoy" + }, + { + "en": "Women" + } + ], + "name": "Société de cour, élites et finances : de l’Hôtel des princes de Savoie à l’État moderne", + "shortcode": "0121", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3175395/", + "text": "Italy" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/", + "text": "Switzerland" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3017382/", + "text": "France" + } + ], + "startDate": "2020-08-01", + "temporalCoverage": [ + { + "de": "1269-1465", + "en": "1269-1465", + "fr": "1269-1465" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/0121", + "text": "Discover Project Data" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0121-dataset-000", + "__type": "Dataset", + "__createdAt": "1676912018756953000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0121-dataset-000", - "__type": "Dataset", - "__createdAt": "1676912018756953000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The ontology of the project includes 18 classes and 157 properties, describing the information collected on the individuals belonging to or surrounding the princely households of the court of Savoy (names, gender, functions, time of service, office, income...), as well as the family relationships that may exist between these persons. This information is drawn from accounting, normative and notarial sources, whose archival classifications are always indicated, so that the documents can be traced back. Finally, bibliographic data can be added to provide additional details on persons and functions. L’ontologie du projet comprend 18 classes et 157 propriétés, décrivant les informations récoltées sur les individus faisant partie des hôtels princiers de la cour de Savoie ou de leur entourage (noms, genre, fonctions, temps de service, office, revenus...), ainsi que les relations familiales qui peuvent exister entre ces personnes. Ces informations sont tirées de sources comptables, normatives et notariales, dont la cote d’archive est toujours indiquée, afin de pouvoir remonter aux documents. Finalement, des données bibliographiques peuvent être ajoutées, afin de fournir des renseignements supplémentaires sur des personnes et des fonctions." - } - ], - "accessConditions": "closed", - "dateCreated": "2022-12-01", - "datePublished": "2024-07-31", - "howToCite": "Pibiri, E., Badoux, L., Frei, S., Rivoal, M., 2022, Base de données du projet Hôtels de la cour de Savoie [base de données], Swiss National Data and Service Center for the Humanities (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0121.", - "languages": [ - { - "fr": "Français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2023-02-20", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0121-person-000", - "roles": [ - "Project Leader" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0121-person-002", - "roles": [ - "Project Member, Data Collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0121-person-001", - "roles": [ - "Project Member, Data Collector " - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0121-person-003", - "roles": [ - "Data Curator" - ] - } - ], - "status": "Ongoing", - "title": "Base de données du projet Hôtels de la cour de Savoie", - "typeOfData": [ - "Text" - ] + "en": "The ontology of the project includes 18 classes and 157 properties, describing the information collected on the individuals belonging to or surrounding the princely households of the court of Savoy (names, gender, functions, time of service, office, income...), as well as the family relationships that may exist between these persons. This information is drawn from accounting, normative and notarial sources, whose archival classifications are always indicated, so that the documents can be traced back. Finally, bibliographic data can be added to provide additional details on persons and functions. L’ontologie du projet comprend 18 classes et 157 propriétés, décrivant les informations récoltées sur les individus faisant partie des hôtels princiers de la cour de Savoie ou de leur entourage (noms, genre, fonctions, temps de service, office, revenus...), ainsi que les relations familiales qui peuvent exister entre ces personnes. Ces informations sont tirées de sources comptables, normatives et notariales, dont la cote d’archive est toujours indiquée, afin de pouvoir remonter aux documents. Finalement, des données bibliographiques peuvent être ajoutées, afin de fournir des renseignements supplémentaires sur des personnes et des fonctions." } - ], - "persons": [ + ], + "accessConditions": "closed", + "dateCreated": "2022-12-01", + "datePublished": "2024-07-31", + "howToCite": "Pibiri, E., Badoux, L., Frei, S., Rivoal, M., 2022, Base de données du projet Hôtels de la cour de Savoie [base de données], Swiss National Data and Service Center for the Humanities (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0121.", + "languages": [ + { + "fr": "Français" + } + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0121-person-001", - "__type": "Person", - "__createdAt": "1676912018965803000", - "__createdBy": "dsp-metadata-gui", - "email": "Laureane.Badoux@unil.ch", - "familyNames": [ - "Badoux" - ], - "givenNames": [ - "Lauréane" - ], - "jobTitles": [ - "SNSF PhD Student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0121-organization-000" - ] + "__type": "License", + "date": "2023-02-20", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0121-person-000", + "roles": [ + "Project Leader" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0121-person-002", - "__type": "Person", - "__createdAt": "1676912018965848000", - "__createdBy": "dsp-metadata-gui", - "email": "Simon.Frei.1@unil.ch", - "familyNames": [ - "Frei" - ], - "givenNames": [ - "Simon" - ], - "jobTitles": [ - "SNSF PhD Student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0121-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0121-person-002", + "roles": [ + "Project Member, Data Collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0121-person-003", - "__type": "Person", - "__createdAt": "1676912018965890000", - "__createdBy": "dsp-metadata-gui", - "email": "marion.rivoal@unil.ch", - "familyNames": [ - "Rivoal" - ], - "givenNames": [ - "Marion" - ], - "jobTitles": [ - "Researcher manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0121-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-4185-7169", - "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0121-person-001", + "roles": [ + "Project Member, Data Collector " + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0121-person-000", - "__type": "Person", - "__createdAt": "1676912018965952000", - "__createdBy": "dsp-metadata-gui", - "email": "Eva.pibiri@unil.ch", - "familyNames": [ - "Pibiri" - ], - "givenNames": [ - "Eva" - ], - "jobTitles": [ - "Senior lecturer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0121-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "http://orcid.org/0000-0003-1380-5986", - "text": "ORCID URL: orcid.org/0000-0003-1380-5986" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0121-person-003", + "roles": [ + "Data Curator" + ] } - ], - "organizations": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0121-organization-001", - "__type": "Organization", - "__createdAt": "1676912018966014000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3, Case postale", - "postalCode": "CH-3001", - "locality": "Berne", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } - }, + ], + "status": "Ongoing", + "title": "Base de données du projet Hôtels de la cour de Savoie", + "typeOfData": [ + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0121-person-001", + "__type": "Person", + "__createdAt": "1676912018965803000", + "__createdBy": "dsp-metadata-gui", + "email": "Laureane.Badoux@unil.ch", + "familyNames": [ + "Badoux" + ], + "givenNames": [ + "Lauréane" + ], + "jobTitles": [ + "SNSF PhD Student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0121-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0121-person-002", + "__type": "Person", + "__createdAt": "1676912018965848000", + "__createdBy": "dsp-metadata-gui", + "email": "Simon.Frei.1@unil.ch", + "familyNames": [ + "Frei" + ], + "givenNames": [ + "Simon" + ], + "jobTitles": [ + "SNSF PhD Student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0121-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0121-person-003", + "__type": "Person", + "__createdAt": "1676912018965890000", + "__createdBy": "dsp-metadata-gui", + "email": "marion.rivoal@unil.ch", + "familyNames": [ + "Rivoal" + ], + "givenNames": [ + "Marion" + ], + "jobTitles": [ + "Researcher manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0121-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0121-organization-000", - "__type": "Organization", - "__createdAt": "1676912018993265000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Unicentre", - "postalCode": "CH-1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "name": "Université de Lausanne", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unil.ch/", - "text": "https://www.unil.ch/" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4185-7169", + "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" } - ], - "grants": [ + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0121-person-000", + "__type": "Person", + "__createdAt": "1676912018965952000", + "__createdBy": "dsp-metadata-gui", + "email": "Eva.pibiri@unil.ch", + "familyNames": [ + "Pibiri" + ], + "givenNames": [ + "Eva" + ], + "jobTitles": [ + "Senior lecturer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0121-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0121-grant-000", - "__type": "Grant", - "__createdAt": "1676912019020097000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0121-organization-001" - ], - "name": "Project funding", - "number": "192168", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/192168", - "text": "https://data.snf.ch/grants/grant/192168" - } + "__type": "URL", + "type": "ORCID", + "url": "http://orcid.org/0000-0003-1380-5986", + "text": "ORCID URL: orcid.org/0000-0003-1380-5986" } - ] -} + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0121-organization-001", + "__type": "Organization", + "__createdAt": "1676912018966014000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3, Case postale", + "postalCode": "CH-3001", + "locality": "Berne", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0121-organization-000", + "__type": "Organization", + "__createdAt": "1676912018993265000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Unicentre", + "postalCode": "CH-1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "name": "Université de Lausanne", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unil.ch/", + "text": "https://www.unil.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0121-grant-000", + "__type": "Grant", + "__createdAt": "1676912019020097000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0121-organization-001" + ], + "name": "Project funding", + "number": "192168", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/192168", + "text": "https://data.snf.ch/grants/grant/192168" + } + } + ] +} \ No newline at end of file diff --git a/data/json/stardom.json b/data/json/stardom.json index f5985dab..927a0889 100644 --- a/data/json/stardom.json +++ b/data/json/stardom.json @@ -1,455 +1,456 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0107-project", - "__type": "Project", - "__createdAt": "1630601357396935000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Boillat, A., Chedaleux, D., Rohner, J., Cordonier, L., Gaillard, A., Jaouen, L., Rivoal, M., 2018, Personnage et vedettariat au prisme du genre [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0107.", - "teaserText": "This project studies the mechanisms of the construction of genre representations in the French cinematographic production of the 1940s.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0107-dataset-000" - ], - "alternativeNames": [ - { - "en": "stardom" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0107-person-000", - "description": { - "en": "This project aims to study the mechanisms of the construction of genre representations in the French cinematographic production of the 1940s. The aim is to establish links between the work of different contributors, the status of the stars involved, and the characters they portray on the screen. The genre study is rooted in the examination of various historical sources, particularly screenplays at various stages of writing. The production context of films such as Le Mariage de Chiffon (1942), Occupe-toi d’Amélie (1949) or Le Bon Dieu sans confession (1953) is reconstructed and examined on the basis of documents from the Claude Autant-Lara archive of the Swiss Filmrachives, and considered in the light of the tools forged by film narratology, gender studies, star studies and cultural history. The objective is to develop a “genetic” approach that will make it possible to document the stages of creation by placing them in their socio-historical context.\n\nThe main periodization (1942-1949) corresponds both to the first films officially attributed to Claude Autant-Lara as sole director, to the birth of the trio he formed with his two screenwriters Jean Aurenche and Pierre Bost, and to a pivotal moment for the French star system, which was undergoing a feminization and rejuvenation in the context of occupied France. The stars of our corpus (Odette Joyeux, Micheline Presle or Gérard Philipe) offer emblematic case studies. The initial filmic corpus has been expanded to include Le Bon Dieu sans confession (1953), Le Rouge et le Noir (1954) and Love is my Profession (En cas de malheur, 1958)." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/620301", - "text": "Cinematography " - }, - { - "en": "10406 Theatre and Cinema" - } - ], - "endDate": "2020-08-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0107-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0107-grant-000" - ], - "keywords": [ - { - "en": "Cultural studies" - }, - { - "en": "Film character" - }, - { - "en": "Film history" - }, - { - "en": "France in the Forties" - }, - { - "en": "Gender" - }, - { - "en": "Narratology" - }, - { - "en": "Popular culture" - }, - { - "en": "Star studies" - } - ], - "name": "A Gender Perspective on Film Character and Stardom: Studying the Production of Film Representations in the Forties (Claude Autant-Lara Collection, Swiss Film Archive)", - "publications": [ - { - "text": "Boillat Alain (2019), Jean-Pierre Bleys, Claude Autant-Lara, in 1895. Revue de l’association française de recherche sur l’histoire du cinéma, 88, 167-176." - }, - { - "text": "Boillat Alain (2020), L'adaptation d'En cas de malheur par Autant-Lara, Aurenche et Bost : une génère scénaristique en contexte, in TRACES, 3, 23-40." - }, - { - "text": "Boillat Alain (2020), « Dans les coulisses de la fabrique du personnage : les archives scénaristiques au service des star studies », dans Manon Billaud et Mélissa Gignac (dir.), Quel(s) scénario(s) pour quelle(s) approche(s) du cinéma ?, Paris, AFRHC, chapitre 7." - }, - { - "text": "Boillat Alain, Maire Frédéric (2019), Sharing Knowledge between University and Cinémathèque, in Iluminace. The Journal of Film Theory, History, and Aesthetics, 31(1), 45-57." - }, - { - "text": "Boillat, Alain (2020), En En cas de malheur de Simenon à Autant-Lara. Essai de génétique scénaristique, Genève, Droz." - }, - { - "text": "Chedaleux Delphine (2020), Fabrique et réceptions du pouvoir féminin : Danielle Darrieux dans Le Bon Dieu sans confession, in LeGras Gwénaëlle, Sellier Geneviève (ed.), Presses Universitaires de Bordeaux, Pessac, 203-218." - }, - { - "text": "Rohner Jeanne (2018), Les états du personnage : du scénario au film, in Fabula : la recherche en littérature,", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.fabula.org/atelier.php?Personnage_filmique", - "text": "https://www.fabula.org/atelier.php?Personnage_filmique" - } - ] - }, - { - "text": "Rohner Jeanne (2018), « Occupe-toi d'Amélie! (Claude Autant-Lara, 1949): le théâtre à l'écran », in Philippe Gilles, Boillat Alain (ed.), Impressions Nouvelles, Bruxelles, 205-229." - }, - { - "text": "Rohner Jeanne (2020), Danielle Darrieux dans Occupe-toi d’Amélie..! Genèse d’une résurrection, in Le Gras Gwénaëlle, Sellier Geneviève (ed.), Presses Universitaires de Bordeaux, Pessac, 163-174." - } - ], - "shortcode": "0107", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3017382", - "text": "France" - } - ], - "startDate": "2016-07-01", - "temporalCoverage": [ - { - "de": "1942-1949", - "en": "1942-1949", - "fr": "1942-1949" - } - ], - "url": { + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0107-project", + "__type": "Project", + "__createdAt": "1630601357396935000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Boillat, A., Chedaleux, D., Rohner, J., Cordonier, L., Gaillard, A., Jaouen, L., Rivoal, M., 2018, Personnage et vedettariat au prisme du genre [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0107.", + "teaserText": "This project studies the mechanisms of the construction of genre representations in the French cinematographic production of the 1940s.", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0107-dataset-000" + ], + "alternativeNames": [ + { + "en": "stardom" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0107-person-000", + "description": { + "en": "This project aims to study the mechanisms of the construction of genre representations in the French cinematographic production of the 1940s. The aim is to establish links between the work of different contributors, the status of the stars involved, and the characters they portray on the screen. The genre study is rooted in the examination of various historical sources, particularly screenplays at various stages of writing. The production context of films such as Le Mariage de Chiffon (1942), Occupe-toi d’Amélie (1949) or Le Bon Dieu sans confession (1953) is reconstructed and examined on the basis of documents from the Claude Autant-Lara archive of the Swiss Filmrachives, and considered in the light of the tools forged by film narratology, gender studies, star studies and cultural history. The objective is to develop a “genetic” approach that will make it possible to document the stages of creation by placing them in their socio-historical context.\n\nThe main periodization (1942-1949) corresponds both to the first films officially attributed to Claude Autant-Lara as sole director, to the birth of the trio he formed with his two screenwriters Jean Aurenche and Pierre Bost, and to a pivotal moment for the French star system, which was undergoing a feminization and rejuvenation in the context of occupied France. The stars of our corpus (Odette Joyeux, Micheline Presle or Gérard Philipe) offer emblematic case studies. The initial filmic corpus has been expanded to include Le Bon Dieu sans confession (1953), Le Rouge et le Noir (1954) and Love is my Profession (En cas de malheur, 1958)." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/620301", + "text": "Cinematography " + }, + { + "en": "10406 Theatre and Cinema" + } + ], + "endDate": "2020-08-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0107-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0107-grant-000" + ], + "keywords": [ + { + "en": "Cultural studies" + }, + { + "en": "Film character" + }, + { + "en": "Film history" + }, + { + "en": "France in the Forties" + }, + { + "en": "Gender" + }, + { + "en": "Narratology" + }, + { + "en": "Popular culture" + }, + { + "en": "Star studies" + } + ], + "name": "A Gender Perspective on Film Character and Stardom: Studying the Production of Film Representations in the Forties (Claude Autant-Lara Collection, Swiss Film Archive)", + "publications": [ + { + "text": "Boillat Alain (2019), Jean-Pierre Bleys, Claude Autant-Lara, in 1895. Revue de l’association française de recherche sur l’histoire du cinéma, 88, 167-176." + }, + { + "text": "Boillat Alain (2020), L'adaptation d'En cas de malheur par Autant-Lara, Aurenche et Bost : une génère scénaristique en contexte, in TRACES, 3, 23-40." + }, + { + "text": "Boillat Alain (2020), « Dans les coulisses de la fabrique du personnage : les archives scénaristiques au service des star studies », dans Manon Billaud et Mélissa Gignac (dir.), Quel(s) scénario(s) pour quelle(s) approche(s) du cinéma ?, Paris, AFRHC, chapitre 7." + }, + { + "text": "Boillat Alain, Maire Frédéric (2019), Sharing Knowledge between University and Cinémathèque, in Iluminace. The Journal of Film Theory, History, and Aesthetics, 31(1), 45-57." + }, + { + "text": "Boillat, Alain (2020), En En cas de malheur de Simenon à Autant-Lara. Essai de génétique scénaristique, Genève, Droz." + }, + { + "text": "Chedaleux Delphine (2020), Fabrique et réceptions du pouvoir féminin : Danielle Darrieux dans Le Bon Dieu sans confession, in LeGras Gwénaëlle, Sellier Geneviève (ed.), Presses Universitaires de Bordeaux, Pessac, 203-218." + }, + { + "text": "Rohner Jeanne (2018), Les états du personnage : du scénario au film, in Fabula : la recherche en littérature,", + "url": [ + { "__type": "URL", "type": "URL", - "url": "https://app.ls-prod-server.dasch.swiss/project/0107", - "text": "Discover Project Data" - } + "url": "https://www.fabula.org/atelier.php?Personnage_filmique", + "text": "https://www.fabula.org/atelier.php?Personnage_filmique" + } + ] + }, + { + "text": "Rohner Jeanne (2018), « Occupe-toi d'Amélie! (Claude Autant-Lara, 1949): le théâtre à l'écran », in Philippe Gilles, Boillat Alain (ed.), Impressions Nouvelles, Bruxelles, 205-229." + }, + { + "text": "Rohner Jeanne (2020), Danielle Darrieux dans Occupe-toi d’Amélie..! Genèse d’une résurrection, in Le Gras Gwénaëlle, Sellier Geneviève (ed.), Presses Universitaires de Bordeaux, Pessac, 163-174." + } + ], + "shortcode": "0107", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3017382", + "text": "France" + } + ], + "startDate": "2016-07-01", + "temporalCoverage": [ + { + "de": "1942-1949", + "en": "1942-1949", + "fr": "1942-1949" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.ls-prod-server.dasch.swiss/project/0107", + "text": "Discover Project Data" }, - "datasets": [ + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0107-dataset-000", + "__type": "Dataset", + "__createdAt": "1630601362329335000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0107-dataset-000", - "__type": "Dataset", - "__createdAt": "1630601362329335000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "The ontology of the project comprises 15 distinct classes, 68 properties, mainly describing archive documents (Piece) divided into 7 distinct categories (contractual and legal documents, personal correspondence, published articles, documents related to the organisation of work, script documents, personal documents, documents related to promotion), and listing, for each piece, the natural or legal persons concerned by the writing of the document and, for each page of document, the persons, works and film projects mentioned.\r Some images (pages) are annotated (regions of interest)." - } - ], - "accessConditions": "restricted", - "dateCreated": "2018-02-16", - "dateModified": "2021-02-02", - "datePublished": "2018-02-16", - "howToCite": "Boillat, A., Chedaleux, D., Rohner, J., Cordonier, L., Gaillard, A., Jaouen, L., Rivoal, M., 2018, Personnage et vedettariat au prisme du genre [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0107.", - "languages": [ - { - "en": "French", - "de": "Französisch", - "fr": "français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0/", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0107-person-000", - "roles": [ - "Project leader", - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0107-person-001", - "roles": [ - "Project member", - "Data collector", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0107-person-002", - "roles": [ - "Project member", - "Data collector", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0107-person-003", - "roles": [ - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0107-person-004", - "roles": [ - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0107-person-006", - "roles": [ - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0107-person-005", - "roles": [ - "Other" - ] - } - ], - "status": "Finished", - "title": "Base de données Personnage et vedettariat au prisme du genre", - "typeOfData": [ - "Image", - "Text" - ] + "en": "The ontology of the project comprises 15 distinct classes, 68 properties, mainly describing archive documents (Piece) divided into 7 distinct categories (contractual and legal documents, personal correspondence, published articles, documents related to the organisation of work, script documents, personal documents, documents related to promotion), and listing, for each piece, the natural or legal persons concerned by the writing of the document and, for each page of document, the persons, works and film projects mentioned.\r Some images (pages) are annotated (regions of interest)." } - ], - "persons": [ + ], + "accessConditions": "restricted", + "dateCreated": "2018-02-16", + "dateModified": "2021-02-02", + "datePublished": "2018-02-16", + "howToCite": "Boillat, A., Chedaleux, D., Rohner, J., Cordonier, L., Gaillard, A., Jaouen, L., Rivoal, M., 2018, Personnage et vedettariat au prisme du genre [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0107.", + "languages": [ + { + "en": "French", + "de": "Französisch", + "fr": "français" + } + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0107-person-003", - "__type": "Person", - "__createdAt": "1630601362789215000", - "__createdBy": "dsp-metadata-gui", - "email": "laure.cordonier@unil.ch", - "familyNames": [ - "Cordonier" - ], - "givenNames": [ - "Laure" - ], - "jobTitles": [ - "PhD student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0107-organization-000" - ] + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0107-person-000", + "roles": [ + "Project leader", + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0107-person-004", - "__type": "Person", - "__createdAt": "1630601362789324000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Gaillard" - ], - "givenNames": [ - "Adrien" - ], - "jobTitles": [ - "PhD student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0107-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0107-person-001", + "roles": [ + "Project member", + "Data collector", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0107-person-005", - "__type": "Person", - "__createdAt": "1630601362789404000", - "__createdBy": "dsp-metadata-gui", - "email": "loic.jaouen@unil.ch", - "familyNames": [ - "Jaouen" - ], - "givenNames": [ - "Loïc" - ], - "jobTitles": [ - "IT support" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0107-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0107-person-002", + "roles": [ + "Project member", + "Data collector", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0107-person-006", - "__type": "Person", - "__createdAt": "1630601362789498000", - "__createdBy": "dsp-metadata-gui", - "email": "marion.rivoal@unil.ch", - "familyNames": [ - "Rivoal" - ], - "givenNames": [ - "Marion" - ], - "jobTitles": [ - "Research manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0107-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-4185-7169", - "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0107-person-003", + "roles": [ + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0107-person-000", - "__type": "Person", - "__createdAt": "1630601362789663000", - "__createdBy": "dsp-metadata-gui", - "email": "alain.boillat@unil.ch", - "familyNames": [ - "Boillat" - ], - "givenNames": [ - "Alain" - ], - "jobTitles": [ - "Full professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0107-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-2342-395X", - "text": "ORCID URL: https://orcid.org/0000-0002-2342-395X" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0107-person-004", + "roles": [ + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0107-person-001", - "__type": "Person", - "__createdAt": "1630601362789825000", - "__createdBy": "dsp-metadata-gui", - "email": "delphine.chedaleux@utc.fr", - "familyNames": [ - "Chedaleux" - ], - "givenNames": [ - "Delphine" - ], - "jobTitles": [ - "Post-doctoral researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0107-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-5080-8409", - "text": "ORCID URL: https://orcid.org/0000-0002-5080-8409" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0107-person-006", + "roles": [ + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0107-person-002", - "__type": "Person", - "__createdAt": "1630601362789987000", - "__createdBy": "dsp-metadata-gui", - "email": "jeanne.rohner@unil.ch", - "familyNames": [ - "Rohner" - ], - "givenNames": [ - "Jeanne" - ], - "jobTitles": [ - "PhD student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0107-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-1537-8140", - "text": "ORCID URL: https://orcid.org/0000-0002-1537-8140" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0107-person-005", + "roles": [ + "Other" + ] } - ], - "organizations": [ + ], + "status": "Finished", + "title": "Base de données Personnage et vedettariat au prisme du genre", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0107-person-003", + "__type": "Person", + "__createdAt": "1630601362789215000", + "__createdBy": "dsp-metadata-gui", + "email": "laure.cordonier@unil.ch", + "familyNames": [ + "Cordonier" + ], + "givenNames": [ + "Laure" + ], + "jobTitles": [ + "PhD student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0107-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0107-person-004", + "__type": "Person", + "__createdAt": "1630601362789324000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Gaillard" + ], + "givenNames": [ + "Adrien" + ], + "jobTitles": [ + "PhD student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0107-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0107-person-005", + "__type": "Person", + "__createdAt": "1630601362789404000", + "__createdBy": "dsp-metadata-gui", + "email": "loic.jaouen@unil.ch", + "familyNames": [ + "Jaouen" + ], + "givenNames": [ + "Loïc" + ], + "jobTitles": [ + "IT support" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0107-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0107-person-006", + "__type": "Person", + "__createdAt": "1630601362789498000", + "__createdBy": "dsp-metadata-gui", + "email": "marion.rivoal@unil.ch", + "familyNames": [ + "Rivoal" + ], + "givenNames": [ + "Marion" + ], + "jobTitles": [ + "Research manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0107-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0107-organization-001", - "__type": "Organization", - "__createdAt": "1630601362790240000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3 Postfach", - "postalCode": "3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4185-7169", + "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0107-person-000", + "__type": "Person", + "__createdAt": "1630601362789663000", + "__createdBy": "dsp-metadata-gui", + "email": "alain.boillat@unil.ch", + "familyNames": [ + "Boillat" + ], + "givenNames": [ + "Alain" + ], + "jobTitles": [ + "Full professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0107-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0107-organization-000", - "__type": "Organization", - "__createdAt": "1630601362822081000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Unicentre", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "name": "Université de Lausanne", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unil.ch/", - "text": "https://www.unil.ch/" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-2342-395X", + "text": "ORCID URL: https://orcid.org/0000-0002-2342-395X" } - ], - "grants": [ + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0107-person-001", + "__type": "Person", + "__createdAt": "1630601362789825000", + "__createdBy": "dsp-metadata-gui", + "email": "delphine.chedaleux@utc.fr", + "familyNames": [ + "Chedaleux" + ], + "givenNames": [ + "Delphine" + ], + "jobTitles": [ + "Post-doctoral researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0107-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0107-grant-000", - "__type": "Grant", - "__createdAt": "1630601362854993000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0107-organization-001" - ], - "name": "Project funding", - "number": "166366", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/166366", - "text": "https://data.snf.ch/grants/grant/166366" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-5080-8409", + "text": "ORCID URL: https://orcid.org/0000-0002-5080-8409" } - ] + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0107-person-002", + "__type": "Person", + "__createdAt": "1630601362789987000", + "__createdBy": "dsp-metadata-gui", + "email": "jeanne.rohner@unil.ch", + "familyNames": [ + "Rohner" + ], + "givenNames": [ + "Jeanne" + ], + "jobTitles": [ + "PhD student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0107-organization-000" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-1537-8140", + "text": "ORCID URL: https://orcid.org/0000-0002-1537-8140" + } + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0107-organization-001", + "__type": "Organization", + "__createdAt": "1630601362790240000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3 Postfach", + "postalCode": "3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0107-organization-000", + "__type": "Organization", + "__createdAt": "1630601362822081000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Unicentre", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "name": "Université de Lausanne", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unil.ch/", + "text": "https://www.unil.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0107-grant-000", + "__type": "Grant", + "__createdAt": "1630601362854993000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0107-organization-001" + ], + "name": "Project funding", + "number": "166366", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/166366", + "text": "https://data.snf.ch/grants/grant/166366" + } + } + ] } \ No newline at end of file diff --git a/data/json/tanner.json b/data/json/tanner.json index fc0a3256..9c7df119 100644 --- a/data/json/tanner.json +++ b/data/json/tanner.json @@ -1,400 +1,401 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0102-project", - "__type": "Project", - "__createdAt": "1662621516859596000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Boillat, A., Annen, V, Modoux, J., Jaouen, L., Rivoal, M., 2022, « Le scénario chez Alain Tanner : discours et pratiques » [base de données] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0102.", - "teaserText": "Ce projet étudie, dans une perspective narratologique/genre studies, la genèse des scénarios des films d’Alain Tanner, ainsi que les discours sur cette question tenus par le cinéaste.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0102-dataset-000" - ], - "alternativeNames": [ - { - "fr": "scenario-tanner" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0102-person-000", - "dataManagementPlan": { - "__type": "DataManagementPlan", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://doi.org/10.5281/zenodo.7038186", - "text": "https://doi.org/10.5281/zenodo.7038186" - }, - "available": true - }, - "description": { - "fr": "Le présent projet entend investiguer, sur la base principalement des archives personnelles d’Alain Tanner déposées à la Cinémathèque suisse (CS), la genèse des dix-neuf longs métrages de fiction réalisés par le cinéaste suisse romand entre 1969 (Charles mort ou vif) et 2004 (Paul s’en va) en optant pour une méthodologie relevant de l’étude génétique des textes scénaristiques. \n\nParallèlement à l’étude des archives de production qui nous renseignent sur les pratiques d’écriture, nous envisageons le discours tenu à propos du scénario par Tanner, l’un des cinéastes suisses à avoir bénéficié d’une importante reconnaissance internationale et exercé un impact considérable sur la manière dont le cinéma a été conçu dans son pays. Nous postulons que le « scénario » se situe au cœur de l’œuvre du cinéaste dans la mesure où ce dernier a constamment entretenu un rapport ambivalent à ce stade de la fabrication de ses films : alors qu’il n’a eu de cesse de relativiser le rôle de l’écriture au profit de la mise en scène, il a par ailleurs constamment problématisé, dans ses prises de position publiques et ses nombreux textes de réflexion sur sa pratique, la question de l’écriture. La constitution d’un historique de production de l’ensemble des longs métrages que Tanner a réalisés, (co)produits et (co)écrits, ainsi qu’une étude comparative des états et variantes de scénario entre eux et avec les différents films tels qu’ils ont été exploités sont ainsi corrélés à l’ensemble des discours sur le cinéma qui ont été émis par Tanner à travers divers canaux médiatiques, ainsi qu’avec la réception critique de ses films qui s’est fait l’écho de son discours et a commenté son travail. L’engagement institutionnel de Tanner dans les années 1960 ainsi que sa visibilité médiatique tout au long de sa carrière permettront d’offrir un éclairage plus large sur l’histoire du cinéma suisse de fiction. \n\nLa genèse des scénarios de Tanner sera en particulier envisagée dans ce que leur étude apporte sur un plan méthodologique à la génétique des textes, et dans la manière dont ceux-ci s’appuient sur du matériel antérieur (romans pour ses deux adaptations, journaux intimes, faits divers, photographies, cartes géographiques, etc.), programment différents aspects du film à venir (dialogues, mouvement d’appareil, montage, jeu d’acteur, bande-sons, etc.) et résultent d’une écriture collaborative. A ce titre, trois personnalités ayant travaillé successivement comme coscénariste sur des films de Tanner et stimulé sa réflexion sur le cinéma font l’objet d’une étude : le critique d’art John Berger, l’actrice et chanteuse Myriam Mézières et enfin le romancier et figure du monde des lettres et des médias Bernard Comment. Les modalités de la création à quatre mains sont discutées dans une perspective double : (1) une étude narratologique (la construction du récit et des personnages, le processus de l’adaptation, etc.) ; (2) une étude des représentations genrées. Sur ces deux plans, nous avons l’ambition de montrer, en dépit d’ambivalences diverses, combien le cinéma de Tanner se distingue de la production dominante et même du cinéma d’auteur francophone post-Nouvelle Vague par une originalité certaine qui demeure à ce jour trop peu discutée dans l’histoire du cinéma (suisse). L’étude de ce corpus se prête à affiner l’approche génétique en l’adaptant à l’hétérogénéité et au non-conformisme des pratiques de Tanner." - }, - "disciplines": [ - { - "fr": "10406 Théâtre et cinéma" - } - ], - "endDate": "2025-10-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0102-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0102-grant-000" - ], - "keywords": [ - { - "fr": "Génétique textuelle" - }, - { - "fr": "Histoire du cinéma Suisse" - }, - { - "fr": "Personnage" - }, - { - "fr": "Récit" - }, - { - "fr": "Écriture scénaristique" - }, - { - "fr": "Étude sur le genre" - } - ], - "name": "Le scénario chez Alain Tanner : discours et pratiques. Une approche génétique du récit filmique et des représentations de genre", - "shortcode": "0102", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2510769/kingdom-of-spain.html", - "text": "Spain" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2264397/portuguese-republic.html", - "text": "Portugal" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3175395/italian-republic.html", - "text": "Italy" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3017382/republic-of-france.html", - "text": "France" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2963597/ireland.html", - "text": "Ireland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434/switzerland.html", - "text": "Switzerland" - } - ], - "startDate": "2021-11-01", - "temporalCoverage": [ - { - "de": "1957-2007", - "en": "1957-2007", - "fr": "1957-2007" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/0102", - "text": "Discover Project Data" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0102-project", + "__type": "Project", + "__createdAt": "1662621516859596000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Boillat, A., Annen, V, Modoux, J., Jaouen, L., Rivoal, M., 2022, « Le scénario chez Alain Tanner : discours et pratiques » [base de données] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0102.", + "teaserText": "Ce projet étudie, dans une perspective narratologique/genre studies, la genèse des scénarios des films d’Alain Tanner, ainsi que les discours sur cette question tenus par le cinéaste.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0102-dataset-000" + ], + "alternativeNames": [ + { + "fr": "scenario-tanner" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0102-person-000", + "dataManagementPlan": { + "__type": "DataManagementPlan", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://doi.org/10.5281/zenodo.7038186", + "text": "https://doi.org/10.5281/zenodo.7038186" + }, + "available": true + }, + "description": { + "fr": "Le présent projet entend investiguer, sur la base principalement des archives personnelles d’Alain Tanner déposées à la Cinémathèque suisse (CS), la genèse des dix-neuf longs métrages de fiction réalisés par le cinéaste suisse romand entre 1969 (Charles mort ou vif) et 2004 (Paul s’en va) en optant pour une méthodologie relevant de l’étude génétique des textes scénaristiques. \n\nParallèlement à l’étude des archives de production qui nous renseignent sur les pratiques d’écriture, nous envisageons le discours tenu à propos du scénario par Tanner, l’un des cinéastes suisses à avoir bénéficié d’une importante reconnaissance internationale et exercé un impact considérable sur la manière dont le cinéma a été conçu dans son pays. Nous postulons que le « scénario » se situe au cœur de l’œuvre du cinéaste dans la mesure où ce dernier a constamment entretenu un rapport ambivalent à ce stade de la fabrication de ses films : alors qu’il n’a eu de cesse de relativiser le rôle de l’écriture au profit de la mise en scène, il a par ailleurs constamment problématisé, dans ses prises de position publiques et ses nombreux textes de réflexion sur sa pratique, la question de l’écriture. La constitution d’un historique de production de l’ensemble des longs métrages que Tanner a réalisés, (co)produits et (co)écrits, ainsi qu’une étude comparative des états et variantes de scénario entre eux et avec les différents films tels qu’ils ont été exploités sont ainsi corrélés à l’ensemble des discours sur le cinéma qui ont été émis par Tanner à travers divers canaux médiatiques, ainsi qu’avec la réception critique de ses films qui s’est fait l’écho de son discours et a commenté son travail. L’engagement institutionnel de Tanner dans les années 1960 ainsi que sa visibilité médiatique tout au long de sa carrière permettront d’offrir un éclairage plus large sur l’histoire du cinéma suisse de fiction. \n\nLa genèse des scénarios de Tanner sera en particulier envisagée dans ce que leur étude apporte sur un plan méthodologique à la génétique des textes, et dans la manière dont ceux-ci s’appuient sur du matériel antérieur (romans pour ses deux adaptations, journaux intimes, faits divers, photographies, cartes géographiques, etc.), programment différents aspects du film à venir (dialogues, mouvement d’appareil, montage, jeu d’acteur, bande-sons, etc.) et résultent d’une écriture collaborative. A ce titre, trois personnalités ayant travaillé successivement comme coscénariste sur des films de Tanner et stimulé sa réflexion sur le cinéma font l’objet d’une étude : le critique d’art John Berger, l’actrice et chanteuse Myriam Mézières et enfin le romancier et figure du monde des lettres et des médias Bernard Comment. Les modalités de la création à quatre mains sont discutées dans une perspective double : (1) une étude narratologique (la construction du récit et des personnages, le processus de l’adaptation, etc.) ; (2) une étude des représentations genrées. Sur ces deux plans, nous avons l’ambition de montrer, en dépit d’ambivalences diverses, combien le cinéma de Tanner se distingue de la production dominante et même du cinéma d’auteur francophone post-Nouvelle Vague par une originalité certaine qui demeure à ce jour trop peu discutée dans l’histoire du cinéma (suisse). L’étude de ce corpus se prête à affiner l’approche génétique en l’adaptant à l’hétérogénéité et au non-conformisme des pratiques de Tanner." + }, + "disciplines": [ + { + "fr": "10406 Théâtre et cinéma" + } + ], + "endDate": "2025-10-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0102-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0102-grant-000" + ], + "keywords": [ + { + "fr": "Génétique textuelle" + }, + { + "fr": "Histoire du cinéma Suisse" + }, + { + "fr": "Personnage" + }, + { + "fr": "Récit" + }, + { + "fr": "Écriture scénaristique" + }, + { + "fr": "Étude sur le genre" + } + ], + "name": "Le scénario chez Alain Tanner : discours et pratiques. Une approche génétique du récit filmique et des représentations de genre", + "shortcode": "0102", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2510769/kingdom-of-spain.html", + "text": "Spain" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2264397/portuguese-republic.html", + "text": "Portugal" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3175395/italian-republic.html", + "text": "Italy" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3017382/republic-of-france.html", + "text": "France" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2963597/ireland.html", + "text": "Ireland" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434/switzerland.html", + "text": "Switzerland" + } + ], + "startDate": "2021-11-01", + "temporalCoverage": [ + { + "de": "1957-2007", + "en": "1957-2007", + "fr": "1957-2007" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/0102", + "text": "Discover Project Data" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0102-dataset-000", + "__type": "Dataset", + "__createdAt": "1662621519947394000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0102-dataset-000", - "__type": "Dataset", - "__createdAt": "1662621519947394000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "fr": "La base de données est organisée autour 1) des pièces d’archives (= PIECE) issues du Fonds Alain Tanner de la Cinémathèque suisse (CS), numérisées professionnellement par cette institution, ou du Fonds « Bernard Comment » des Archives littéraires suisses (ALS, Berne) ; 2) d’archives audio et audiovisuelles de la RTS (retranscription) et 3) d’entretiens audio avec des collaborateurs/trices de Tanner réalisés par les membres du projet.\r \r L’ontologie est conçue autour des classes suivantes : FILM (19 films d’Alain Tanner), PERSONNE (collaborateurs/trices associé-e-s aux instances de la classe FILM avec désignation de leur fonction ou personnes mentionnées dans les archives), PIECE (avec les sous-classes Scénario ; Production ; Promotion ; Correspondance ; Réception critique ; Entretien) et PAGE, dont les différentes instances sont constitutives des PIECES.\r \r La classe PAGE est celle qui comporte le plus de propriétés : 7 textes formatés, 5 booléens et 3 vocabulaires contrôlés." - } - ], - "accessConditions": "restricted", - "dateCreated": "2022-09-01", - "datePublished": "2022-09-01", - "howToCite": "Boillat, A., Annen, V, Modoux, J., Jaouen, L., Rivoal, M., 2022, « Le scénario chez Alain Tanner : discours et pratiques » [base de données] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0102.", - "languages": [ - { - "xx": "Français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2022-09-08", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0/", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0102-person-000", - "roles": [ - "Project Leader, Data Collector, Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0102-person-001", - "roles": [ - "Project Member, Data Collector, Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0102-person-002", - "roles": [ - "Project Member, Data Collector, Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0102-person-003", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0102-person-004", - "roles": [ - "Other" - ] - } - ], - "status": "Ongoing", - "title": "Base de données du projet « Le scénario chez Alain Tanner : discours et pratiques »", - "typeOfData": [ - "Image", - "Text" - ], - "urls": [ - { - "__type": "URL", - "type": "URL", - "url": "https://doi.org/10.5281/zenodo.7038186", - "text": "Find the Data Management Plan here" - } - ] + "fr": "La base de données est organisée autour 1) des pièces d’archives (= PIECE) issues du Fonds Alain Tanner de la Cinémathèque suisse (CS), numérisées professionnellement par cette institution, ou du Fonds « Bernard Comment » des Archives littéraires suisses (ALS, Berne) ; 2) d’archives audio et audiovisuelles de la RTS (retranscription) et 3) d’entretiens audio avec des collaborateurs/trices de Tanner réalisés par les membres du projet.\r \r L’ontologie est conçue autour des classes suivantes : FILM (19 films d’Alain Tanner), PERSONNE (collaborateurs/trices associé-e-s aux instances de la classe FILM avec désignation de leur fonction ou personnes mentionnées dans les archives), PIECE (avec les sous-classes Scénario ; Production ; Promotion ; Correspondance ; Réception critique ; Entretien) et PAGE, dont les différentes instances sont constitutives des PIECES.\r \r La classe PAGE est celle qui comporte le plus de propriétés : 7 textes formatés, 5 booléens et 3 vocabulaires contrôlés." } - ], - "persons": [ + ], + "accessConditions": "restricted", + "dateCreated": "2022-09-01", + "datePublished": "2022-09-01", + "howToCite": "Boillat, A., Annen, V, Modoux, J., Jaouen, L., Rivoal, M., 2022, « Le scénario chez Alain Tanner : discours et pratiques » [base de données] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0102.", + "languages": [ + { + "fr": "Français" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2022-09-08", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0102-person-001", - "__type": "Person", - "__createdAt": "1662621520697509000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Quartier UNIL-Chamberonne, Bâtiment Anthropole, Bureau : 4163.1", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "email": "vincent.annen@unil.ch", - "familyNames": [ - "Annen" - ], - "givenNames": [ - "Vincent" - ], - "jobTitles": [ - "PhD student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0102-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0102-person-000", + "roles": [ + "Project Leader, Data Collector, Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0102-person-002", - "__type": "Person", - "__createdAt": "1662621520934186000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Quartier UNIL-Chamberonne, Bâtiment Anthropole, Bureau : 4163.1", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "email": "jeanne.modoux@unil.ch", - "familyNames": [ - "Modoux" - ], - "givenNames": [ - "Jeanne" - ], - "jobTitles": [ - "PhD student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0102-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0102-person-001", + "roles": [ + "Project Member, Data Collector, Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0102-person-003", - "__type": "Person", - "__createdAt": "1662621520993057000", - "__createdBy": "dsp-metadata-gui", - "email": "marion.rivoal@unil.ch", - "familyNames": [ - "Rivoal" - ], - "givenNames": [ - "Marion" - ], - "jobTitles": [ - "Researcher manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0102-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-4185-7169", - "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0102-person-002", + "roles": [ + "Project Member, Data Collector, Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0102-person-004", - "__type": "Person", - "__createdAt": "1662621520993391000", - "__createdBy": "dsp-metadata-gui", - "email": "loic.jaouen@unil.ch", - "familyNames": [ - "Jaouen" - ], - "givenNames": [ - "Loïc" - ], - "jobTitles": [ - "IT support" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0102-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0102-person-003", + "roles": [ + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0102-person-000", - "__type": "Person", - "__createdAt": "1662621520993539000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Université de Lausanne, Bâtiment Anthopole, Bureau 4170", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "email": "alain.boillat@unil.ch", - "familyNames": [ - "Boillat" - ], - "givenNames": [ - "Alain" - ], - "jobTitles": [ - "Full professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0102-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-2342-395X", - "text": "ORCID URL: https://orcid.org/0000-0002-2342-395X" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0102-person-004", + "roles": [ + "Other" + ] } - ], - "organizations": [ + ], + "status": "Ongoing", + "title": "Base de données du projet « Le scénario chez Alain Tanner : discours et pratiques »", + "typeOfData": [ + "Image", + "Text" + ], + "urls": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0102-organization-001", - "__type": "Organization", - "__createdAt": "1662621521055260000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3", - "postalCode": "3001", - "locality": "Berne", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } - }, + "__type": "URL", + "type": "URL", + "url": "https://doi.org/10.5281/zenodo.7038186", + "text": "Find the Data Management Plan here" + } + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0102-person-001", + "__type": "Person", + "__createdAt": "1662621520697509000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Quartier UNIL-Chamberonne, Bâtiment Anthropole, Bureau : 4163.1", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "email": "vincent.annen@unil.ch", + "familyNames": [ + "Annen" + ], + "givenNames": [ + "Vincent" + ], + "jobTitles": [ + "PhD student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0102-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0102-person-002", + "__type": "Person", + "__createdAt": "1662621520934186000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Quartier UNIL-Chamberonne, Bâtiment Anthropole, Bureau : 4163.1", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "email": "jeanne.modoux@unil.ch", + "familyNames": [ + "Modoux" + ], + "givenNames": [ + "Jeanne" + ], + "jobTitles": [ + "PhD student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0102-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0102-person-003", + "__type": "Person", + "__createdAt": "1662621520993057000", + "__createdBy": "dsp-metadata-gui", + "email": "marion.rivoal@unil.ch", + "familyNames": [ + "Rivoal" + ], + "givenNames": [ + "Marion" + ], + "jobTitles": [ + "Researcher manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0102-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0102-organization-000", - "__type": "Organization", - "__createdAt": "1662621521178371000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Unicentre", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "name": "Université de Lausanne", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unil.ch/", - "text": "https://www.unil.ch/" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4185-7169", + "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" } - ], - "grants": [ + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0102-person-004", + "__type": "Person", + "__createdAt": "1662621520993391000", + "__createdBy": "dsp-metadata-gui", + "email": "loic.jaouen@unil.ch", + "familyNames": [ + "Jaouen" + ], + "givenNames": [ + "Loïc" + ], + "jobTitles": [ + "IT support" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0102-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0102-person-000", + "__type": "Person", + "__createdAt": "1662621520993539000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Université de Lausanne, Bâtiment Anthopole, Bureau 4170", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "email": "alain.boillat@unil.ch", + "familyNames": [ + "Boillat" + ], + "givenNames": [ + "Alain" + ], + "jobTitles": [ + "Full professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0102-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0102-grant-000", - "__type": "Grant", - "__createdAt": "1662621521237617000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0102-organization-001" - ], - "name": "Project funding", - "number": "204749", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/204749", - "text": "https://data.snf.ch/grants/grant/204749" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-2342-395X", + "text": "ORCID URL: https://orcid.org/0000-0002-2342-395X" } - ] -} + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0102-organization-001", + "__type": "Organization", + "__createdAt": "1662621521055260000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3", + "postalCode": "3001", + "locality": "Berne", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0102-organization-000", + "__type": "Organization", + "__createdAt": "1662621521178371000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Unicentre", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "name": "Université de Lausanne", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unil.ch/", + "text": "https://www.unil.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0102-grant-000", + "__type": "Grant", + "__createdAt": "1662621521237617000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0102-organization-001" + ], + "name": "Project funding", + "number": "204749", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/204749", + "text": "https://data.snf.ch/grants/grant/204749" + } + } + ] +} \ No newline at end of file diff --git a/data/json/tdk.json b/data/json/tdk.json index bd198c9a..a7cd9973 100644 --- a/data/json/tdk.json +++ b/data/json/tdk.json @@ -1,336 +1,337 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0805-project", - "__type": "Project", - "__createdAt": "1632994712053707000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "University of Basel Kings’ Valley Project Online (UBKVP), 2021, DaSCH. ark.dasch.swiss/ark:/72163/1/0805", - "teaserText": "Assessment of tombs in the Kings’ Valley used for burials of royal family and entourage (ca. 1350 BCE), looted (ca. 1000 BCE), and reused for burials of members of priestly families (ca. 800–700 BCE).", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0805-dataset-000" - ], - "alternativeNames": [ - { - "en": "UBKVP" - } - ], - "description": { - "en": "Archaeological Project exploring undecorated tombs in the Valley of the Kings, Egypt" - }, - "disciplines": [ - { - "en": "10402 Archaeology" - }, - { - "en": "Egyptian Archaeology" - }, - { - "en": "Funerary Archaeology" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0805-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0805-grant-000" - ], - "keywords": [ - { - "en": "Archaeology" - }, - { - "en": "Egypt" - }, - { - "en": "Valley of the Kings" - }, - { - "en": "funerary culture" - }, - { - "en": "royal family" - }, - { - "en": "tomb" - } - ], - "name": "University of Basel Kings’ Valley Project", - "publications": [ - { - "text": "Bickel, Susanne (ed.), Priester – Räuber – Königskinder. Die Gräber KV 40 und KV 64 im Tal der Könige. vol. 1. Die beschrifteten Objekte der 18. Dynastie und die Keramik Swiss Egyptological Studies 2.1, Basel 2021." - }, - { - "text": "Hunkeler, Charlotte, «New results on the manufacture and durability of cartonnage: experimental archaeology as a method to understand the history of 22nd Dynasty cartonnage cases from KV40 (Thebes, Egypt)», Journal of Archaeological Science: Reports 36, 2021,", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.1016/j.jasrep.2021.102836", - "text": "DOI: 10.1016/j.jasrep.2021.102836" - } - ] - }, - { - "text": "Bickel Susanne, «Retrieving the king’s treasure – reburying the king’s body: Contexts of 21st Dynasty activities in the Valley of the Kings» in: Rogério Sousa, Alessia Amenta, Kathlyn M. Cooney (ed.), Bab el-Gasus in Context. Rediscovering the Tomb of the Priests of Amun, Rom/Bristol, 2020, 69–79." - }, - { - "text": "Meyer, Sabrina; Frater, Nakita; Seiler, Roger; Bickel, Susanne; Böni, Thomas; Eppenberger, Patrick; Ruehli, Frank J., «Multidisciplinary studies of heavily fragmented and commingled ancient Egyptian human remains found in tomb KV 40 (Valley of the Kings, Luxor, Egypt): A pragmatic workflow and first results», Journal of Archaeological Science: Reports 29, 2020", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.1016/j.jasrep.2019.102069", - "text": "DOI: 10.1016/j.jasrep.2019.102069" - } - ] - }, - { - "text": "Gamma, Claudia; Schlick-Nolte, Birgit, «Ein gläserner Krateriskos aus dem Tal der Könige», Antike Kunst 62, 2019, 3–12." - }, - { - "text": "Meyer Sabrina; Galassi Francesco; Böni Thomas; Seiler Roger; Bickel Susanne; Ruehli, Frank J., «Mummified proportionate dwarfs from the Valley of the Kings», in: The Lancet: Diabetes -Endocrinology, 7/1, 2019, 173–174." - }, - { - "text": "Münch, Hans-Hubertus, «Noble Burials? Notes on the Use of Black Coffins in KV40», in: Strudwick Helen, Dawson Julie (ed.), Ancient Egyptian Coffins: Past – Present – Future, Oxbow: Oxford, 2018, 52–57." - }, - { - "text": "Bickel, Susanne, «Les tombes non-décorées de la Vallée des Rois: perspectives sociales et historiques», Bulletin de la Société française d’égyptologie 197, 2017, 12–28." - }, - { - "text": "Bickel, Susanne, «KV 64. An intact 22nd dynasty burial in the Valley of the Kings. Preliminary description», in Alessia Amenta (ed.), Acts of the First Vatican Coffin Conference, Rome, 2017, 79–84." - }, - { - "text": "Bickel, Susanne, «Konstruktion und Praxis einer Sakrallandschaft: das Beispiel Tal der Könige», in: Susanne Beck, Burkhard Backes, I-Ting Liao, Heike Simon, Alexandra Verbovsek (ed.), Gebauter Raum: Architektur – Landschaft – Mensch, Göttinger Orientforschungen 62, 2016, 11–26." - }, - { - "text": "Bickel, Susanne, «Other tombs: queens and commoners in KV», in: Richard H. Wilkinson & Kent R. Weeks (ed.), The Oxford Handbook of the Valley of the Kings, Oxford, 2016, 230–242." - }, - { - "text": "Bickel, Susanne, «Prinsessen, plunderaars en priesters. Nieuwe onderzoeken naar de niet-koninklijke graven in het Dal der Koningen», Mehen. Essays over het oude Egypte 2015, 160-175." - }, - { - "text": "Bickel, Susanne, «Das Grab KV 40 im Tal der Könige. Eine Familiengruft Amenophis’ III.», Sokar, Geschichte & Archäologie Altägyptens 30, 2015, 78–89." - }, - { - "text": "Rühli, Frank; Ikram, Salima; Bickel, Susanne, «New Ancient Egyptian Human Mummies from the Valley of the Kings, Luxor: Anthropological, Radiological, and Egyptological Investigations», BioMed Research International, 2015, 8p.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "http://dx.doi.org/10.1155/2015/530362", - "text": "DOI: 10.1155/2015/530362" - } - ] - }, - { - "text": "Bickel, Susanne; Paulin-Grothe, Elina, «KV 40: a burial place for the royal entourage», Egyptian Archaeology 45, 2014, 21–24." - }, - { - "text": "Bickel, Susanne; Gautschy, Rita, «Eine Ramessidische Sonnenuhr im Tal der Könige», Zeitschrift für ägyptische Sprache und Altertumskunde 141, 2014, 3–14." - }, - { - "text": "Bickel, Susanne, «KV 40. The Tomb of 18th Dynasty Princesses and Princes», Kmt. A Modern Journal of Ancient Egypt 25/3, 2014, 22–32." - }, - { - "text": "Bickel, Susanne; Gautschy, Rita, «A Sundial found in the Egyptian Valley of the Kings», British Sundial Society Bulletin 25/4, 2013, 2-7." - }, - { - "text": "Bickel, Susanne, «Nicht nur Pharaonen. Neue Untersuchungen zu nicht-königlichen Gräbern im Tal der Könige», Susanne Bickel, Sokar 26/1, 2013, 60-71." - }, - { - "text": "Bickel, Susanne, «Waking an Egyptian Chantress», Current World Archaeology 56, 2013, 16–19." - }, - { - "text": "Adrom, Faried; Bickel, Susanne; Münch, Hans-Hubertus and Peintner, Erico, «Die Holzstele der Nehemesbastet aus KV 64», in: Mitteilungen des Deutschen Archäologischen Instituts Kairo 67, 2011/2013, 1–15." - }, - { - "text": "Bickel, Susanne, «Ein neues Grab im Tal der Könige. Untersuchungen zu nicht-königlichen Grabstätten in der Pharaonen-Nekropole», Antike Welt 1/2013, 75–82." - }, - { - "text": "Bickel, Susanne; Paulin-Grothe, Elina, «A New Tomb in the VoK: KV 64», in: Kmt. A Modern Journal of Ancient Egypt 23/2, 2012, 18–31." - }, - { - "text": "Bickel, Susanne; Paulin-Grothe, Elina, «KV 64: Two Burials in one Tomb», Egyptian Archaeology 41, 2012, 36–40." - } - ], - "shortcode": "0805", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Pleiades", - "url": "https://pleiades.stoa.org/places/384697574", - "text": "Valley of the Kings" - } - ], - "startDate": "2015-03-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/K5glD8hjpaZB", - "text": "18th dynasty" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/eY4hrsm2FVJs", - "text": "22nd dynasty" - } - ], - "url": { + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0805-project", + "__type": "Project", + "__createdAt": "1632994712053707000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "University of Basel Kings’ Valley Project Online (UBKVP), 2021, DaSCH. ark.dasch.swiss/ark:/72163/1/0805", + "teaserText": "Assessment of tombs in the Kings’ Valley used for burials of royal family and entourage (ca. 1350 BCE), looted (ca. 1000 BCE), and reused for burials of members of priestly families (ca. 800–700 BCE).", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0805-dataset-000" + ], + "alternativeNames": [ + { + "en": "UBKVP" + } + ], + "description": { + "en": "Archaeological Project exploring undecorated tombs in the Valley of the Kings, Egypt" + }, + "disciplines": [ + { + "en": "10402 Archaeology" + }, + { + "en": "Egyptian Archaeology" + }, + { + "en": "Funerary Archaeology" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0805-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0805-grant-000" + ], + "keywords": [ + { + "en": "Archaeology" + }, + { + "en": "Egypt" + }, + { + "en": "Valley of the Kings" + }, + { + "en": "funerary culture" + }, + { + "en": "royal family" + }, + { + "en": "tomb" + } + ], + "name": "University of Basel Kings’ Valley Project", + "publications": [ + { + "text": "Bickel, Susanne (ed.), Priester – Räuber – Königskinder. Die Gräber KV 40 und KV 64 im Tal der Könige. vol. 1. Die beschrifteten Objekte der 18. Dynastie und die Keramik Swiss Egyptological Studies 2.1, Basel 2021." + }, + { + "text": "Hunkeler, Charlotte, «New results on the manufacture and durability of cartonnage: experimental archaeology as a method to understand the history of 22nd Dynasty cartonnage cases from KV40 (Thebes, Egypt)», Journal of Archaeological Science: Reports 36, 2021,", + "url": [ + { "__type": "URL", - "type": "URL", - "url": "https://aegyptologie.philhist.unibas.ch/de/forschung/forschungsprojekte/university-of-basel-kings-valley-project/", - "text": "External Project Website" - } + "type": "DOI", + "url": "https://doi.org/10.1016/j.jasrep.2021.102836", + "text": "DOI: 10.1016/j.jasrep.2021.102836" + } + ] + }, + { + "text": "Bickel Susanne, «Retrieving the king’s treasure – reburying the king’s body: Contexts of 21st Dynasty activities in the Valley of the Kings» in: Rogério Sousa, Alessia Amenta, Kathlyn M. Cooney (ed.), Bab el-Gasus in Context. Rediscovering the Tomb of the Priests of Amun, Rom/Bristol, 2020, 69–79." + }, + { + "text": "Meyer, Sabrina; Frater, Nakita; Seiler, Roger; Bickel, Susanne; Böni, Thomas; Eppenberger, Patrick; Ruehli, Frank J., «Multidisciplinary studies of heavily fragmented and commingled ancient Egyptian human remains found in tomb KV 40 (Valley of the Kings, Luxor, Egypt): A pragmatic workflow and first results», Journal of Archaeological Science: Reports 29, 2020", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.1016/j.jasrep.2019.102069", + "text": "DOI: 10.1016/j.jasrep.2019.102069" + } + ] + }, + { + "text": "Gamma, Claudia; Schlick-Nolte, Birgit, «Ein gläserner Krateriskos aus dem Tal der Könige», Antike Kunst 62, 2019, 3–12." + }, + { + "text": "Meyer Sabrina; Galassi Francesco; Böni Thomas; Seiler Roger; Bickel Susanne; Ruehli, Frank J., «Mummified proportionate dwarfs from the Valley of the Kings», in: The Lancet: Diabetes -Endocrinology, 7/1, 2019, 173–174." + }, + { + "text": "Münch, Hans-Hubertus, «Noble Burials? Notes on the Use of Black Coffins in KV40», in: Strudwick Helen, Dawson Julie (ed.), Ancient Egyptian Coffins: Past – Present – Future, Oxbow: Oxford, 2018, 52–57." + }, + { + "text": "Bickel, Susanne, «Les tombes non-décorées de la Vallée des Rois: perspectives sociales et historiques», Bulletin de la Société française d’égyptologie 197, 2017, 12–28." + }, + { + "text": "Bickel, Susanne, «KV 64. An intact 22nd dynasty burial in the Valley of the Kings. Preliminary description», in Alessia Amenta (ed.), Acts of the First Vatican Coffin Conference, Rome, 2017, 79–84." + }, + { + "text": "Bickel, Susanne, «Konstruktion und Praxis einer Sakrallandschaft: das Beispiel Tal der Könige», in: Susanne Beck, Burkhard Backes, I-Ting Liao, Heike Simon, Alexandra Verbovsek (ed.), Gebauter Raum: Architektur – Landschaft – Mensch, Göttinger Orientforschungen 62, 2016, 11–26." + }, + { + "text": "Bickel, Susanne, «Other tombs: queens and commoners in KV», in: Richard H. Wilkinson & Kent R. Weeks (ed.), The Oxford Handbook of the Valley of the Kings, Oxford, 2016, 230–242." + }, + { + "text": "Bickel, Susanne, «Prinsessen, plunderaars en priesters. Nieuwe onderzoeken naar de niet-koninklijke graven in het Dal der Koningen», Mehen. Essays over het oude Egypte 2015, 160-175." + }, + { + "text": "Bickel, Susanne, «Das Grab KV 40 im Tal der Könige. Eine Familiengruft Amenophis’ III.», Sokar, Geschichte & Archäologie Altägyptens 30, 2015, 78–89." + }, + { + "text": "Rühli, Frank; Ikram, Salima; Bickel, Susanne, «New Ancient Egyptian Human Mummies from the Valley of the Kings, Luxor: Anthropological, Radiological, and Egyptological Investigations», BioMed Research International, 2015, 8p.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "http://dx.doi.org/10.1155/2015/530362", + "text": "DOI: 10.1155/2015/530362" + } + ] + }, + { + "text": "Bickel, Susanne; Paulin-Grothe, Elina, «KV 40: a burial place for the royal entourage», Egyptian Archaeology 45, 2014, 21–24." + }, + { + "text": "Bickel, Susanne; Gautschy, Rita, «Eine Ramessidische Sonnenuhr im Tal der Könige», Zeitschrift für ägyptische Sprache und Altertumskunde 141, 2014, 3–14." + }, + { + "text": "Bickel, Susanne, «KV 40. The Tomb of 18th Dynasty Princesses and Princes», Kmt. A Modern Journal of Ancient Egypt 25/3, 2014, 22–32." + }, + { + "text": "Bickel, Susanne; Gautschy, Rita, «A Sundial found in the Egyptian Valley of the Kings», British Sundial Society Bulletin 25/4, 2013, 2-7." + }, + { + "text": "Bickel, Susanne, «Nicht nur Pharaonen. Neue Untersuchungen zu nicht-königlichen Gräbern im Tal der Könige», Susanne Bickel, Sokar 26/1, 2013, 60-71." + }, + { + "text": "Bickel, Susanne, «Waking an Egyptian Chantress», Current World Archaeology 56, 2013, 16–19." + }, + { + "text": "Adrom, Faried; Bickel, Susanne; Münch, Hans-Hubertus and Peintner, Erico, «Die Holzstele der Nehemesbastet aus KV 64», in: Mitteilungen des Deutschen Archäologischen Instituts Kairo 67, 2011/2013, 1–15." + }, + { + "text": "Bickel, Susanne, «Ein neues Grab im Tal der Könige. Untersuchungen zu nicht-königlichen Grabstätten in der Pharaonen-Nekropole», Antike Welt 1/2013, 75–82." + }, + { + "text": "Bickel, Susanne; Paulin-Grothe, Elina, «A New Tomb in the VoK: KV 64», in: Kmt. A Modern Journal of Ancient Egypt 23/2, 2012, 18–31." + }, + { + "text": "Bickel, Susanne; Paulin-Grothe, Elina, «KV 64: Two Burials in one Tomb», Egyptian Archaeology 41, 2012, 36–40." + } + ], + "shortcode": "0805", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Pleiades", + "url": "https://pleiades.stoa.org/places/384697574", + "text": "Valley of the Kings" + } + ], + "startDate": "2015-03-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/K5glD8hjpaZB", + "text": "18th dynasty" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/eY4hrsm2FVJs", + "text": "22nd dynasty" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://aegyptologie.philhist.unibas.ch/de/forschung/forschungsprojekte/university-of-basel-kings-valley-project/", + "text": "External Project Website" }, - "datasets": [ + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0805-dataset-000", + "__type": "Dataset", + "__createdAt": "1632994714934162000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0805-dataset-000", - "__type": "Dataset", - "__createdAt": "1632994714934162000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "Archaeological Project exploring undecorated tombs in the Valley of the Kings, Egypt" - } - ], - "alternativeTitles": [ - { - "en": "UBKVP" - } - ], - "accessConditions": "open", - "howToCite": "University of Basel Kings’ Valley Project Online (UBKVP), 2021, DaSCH. ark.dasch.swiss/ark:/72163/1/0805", - "languages": [ - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-30", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc/4.0/", - "text": "CC BY-NC 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0805-person-000", - "roles": [ - "Project Director" - ] - } - ], - "status": "Ongoing", - "title": "Dataset of University of Basel Kings’ Valley Project", - "typeOfData": [ - "Image", - "Text" - ] + "en": "Archaeological Project exploring undecorated tombs in the Valley of the Kings, Egypt" } - ], - "persons": [ + ], + "alternativeTitles": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0805-person-000", - "__type": "Person", - "__createdAt": "1632994715658432000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Petersgraben 51", - "postalCode": "4051", - "locality": "Basel", - "country": "Switzerland" - }, - "email": "s.bickel@unibas.ch", - "familyNames": [ - "Bickel" - ], - "givenNames": [ - "Susanne" - ], - "jobTitles": [ - "Professor of Egyptology" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0805-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "URL", - "url": "https://daw.philhist.unibas.ch/de/personen/susanne-bickel/", - "text": "https://daw.philhist.unibas.ch/de/personen/susanne-bickel/" - }, - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-0213-1069", - "text": "https://orcid.org/0000-0002-0213-1069" - } - ] + "en": "UBKVP" } - ], - "organizations": [ + ], + "accessConditions": "open", + "howToCite": "University of Basel Kings’ Valley Project Online (UBKVP), 2021, DaSCH. ark.dasch.swiss/ark:/72163/1/0805", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0805-organization-000", - "__type": "Organization", - "__createdAt": "1632994715913900000", - "__createdBy": "dsp-metadata-gui", - "name": "University of Basel", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unibas.ch/", - "text": "https://www.unibas.ch/" - } + "en": "English", + "de": "Englisch", + "fr": "anglais" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0805-organization-001", - "__type": "Organization", - "__createdAt": "1632994715914050000", - "__createdBy": "dsp-metadata-gui", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch", - "text": "www.snf.ch" - } + "de": "Deutsch", + "en": "German", + "fr": "allemand" } - ], - "grants": [ + ], + "licenses": [ + { + "__type": "License", + "date": "2021-09-30", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc/4.0/", + "text": "CC BY-NC 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0805-grant-000", - "__type": "Grant", - "__createdAt": "1632994715914219000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0805-organization-001" - ], - "name": "Project funding", - "number": "156046", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/156046", - "text": "https://data.snf.ch/grants/grant/156046 " - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0805-person-000", + "roles": [ + "Project Director" + ] } - ] -} + ], + "status": "Ongoing", + "title": "Dataset of University of Basel Kings’ Valley Project", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0805-person-000", + "__type": "Person", + "__createdAt": "1632994715658432000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Petersgraben 51", + "postalCode": "4051", + "locality": "Basel", + "country": "Switzerland" + }, + "email": "s.bickel@unibas.ch", + "familyNames": [ + "Bickel" + ], + "givenNames": [ + "Susanne" + ], + "jobTitles": [ + "Professor of Egyptology" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0805-organization-000" + ], + "authorityRefs": [ + { + "__type": "URL", + "type": "URL", + "url": "https://daw.philhist.unibas.ch/de/personen/susanne-bickel/", + "text": "https://daw.philhist.unibas.ch/de/personen/susanne-bickel/" + }, + { + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-0213-1069", + "text": "https://orcid.org/0000-0002-0213-1069" + } + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0805-organization-000", + "__type": "Organization", + "__createdAt": "1632994715913900000", + "__createdBy": "dsp-metadata-gui", + "name": "University of Basel", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unibas.ch/", + "text": "https://www.unibas.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0805-organization-001", + "__type": "Organization", + "__createdAt": "1632994715914050000", + "__createdBy": "dsp-metadata-gui", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch", + "text": "www.snf.ch" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0805-grant-000", + "__type": "Grant", + "__createdAt": "1632994715914219000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0805-organization-001" + ], + "name": "Project funding", + "number": "156046", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/156046", + "text": "https://data.snf.ch/grants/grant/156046 " + } + } + ] +} \ No newline at end of file diff --git a/data/json/tds.json b/data/json/tds.json index d9e37e89..5f105243 100644 --- a/data/json/tds.json +++ b/data/json/tds.json @@ -1,661 +1,662 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0103-project", - "__type": "Project", - "__createdAt": "1630601393923029000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Ponzetto, V., Ruimi, J., Hodroge, A., Fièvre, P., Baumann, F., Hugentobler, Th., Schuwey, Ch., Rivoal, M., 2018, Théâtres de société [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0103.", - "teaserText": "Théâtre de société is defined as a theater that is mainly or totally amateur, non-profit, practiced in private homes. The project concerns the study of this form of theater.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0103-dataset-000" - ], - "alternativeNames": [ - { - "fr": "theatre-societe" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0103-person-000", - "description": { - "fr": "Le théâtre de société se définit comme un théâtre principalement ou totalement amateur, non lucratif, sans programmation régulière et pratiqué chez des particuliers. Notre projet concerne l’étude de cette forme de théâtre entre XVIIIe et XIXe siècle, en France et en Suisse Romande, selon une approche résolument interdisciplinaire, joignant la dramaturgie, l’histoire de l’art et des arts du spectacle, l’histoire culturelle, l’esthétique et la sociologie.\nLa recherche vise à mieux documenter, comprendre et interpréter le phénomène dans sa globalité. \nSes objectifs sont :\n1. Mieux définir et problématiser l’objet d’étude par rapport à d’autres formes théâtrales contemporaines ou successives\n2. Cerner les espaces scéniques et sociaux investis par le théâtre de société\n3. Distinguer les traits propres à son esthétique dramatique, dans le domaine de l’écriture des pièces, du choix des répertoires et de la manière de les jouer\n4. Étudier la nature, l’étendue et les enjeux des réseaux de sociabilité créés et entretenus par cette pratique\n5. Étudier les aspects les plus matériels des représentations de société, liés à la culture visuelle et à la mise en scène des spectacles.\n6. Montrer la permanence de pratiques théâtrales et sociales nées sur les scènes de société dans des formes théâtrales contemporaines\n7. Organiser et structurer les données sur les représentations étudiées dans une base de données de référence.\nNotre ambition est de dépasser la vision partielle et fragmentaire qui a caractérisé jusqu’à présent la recherche sur le sujet pour l’appréhender dans son identité distinctive, par-delà les cloisonnements traditionnels des secteurs disciplinaires et des répartitions séculaires. Le projet pourra ainsi restituer au théâtre de société son ihistoire, les principes de son identité distinctive et la place qu’il mérite dans l’histoire culturelle : carrefour de réseaux de sociabilité, vecteur de questionnements et de redéfinitions esthétiques, catalyseur de passions dramatiques comme de questions morales et identitaires." - }, - "disciplines": [ - { - "en": "10604 Music, Theatre" - }, - { - "en": "10502 Romance languages and literature" - } - ], - "endDate": "2021-08-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0103-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0103-grant-000", - "http://ns.dasch.swiss/repository#dsp-0103-grant-001" - ], - "keywords": [ - { - "en": "18th Century French Literature" - }, - { - "en": "19th Century French Literature" - }, - { - "en": "Amateurs" - }, - { - "en": "Cultural History" - }, - { - "en": "Drama" - }, - { - "en": "Literary History" - }, - { - "en": "Performing Arts" - }, - { - "en": "Sociability" - }, - { - "en": "Theatre" - } - ], - "name": "« Théâtre de société » (Age of Enlightenment - Second French Empire)", - "publications": [ - { - "text": "Ponzetto Valentina, « Rencontres et hybridations entre proverbes et charades au XIXe siècle. Un observatoire privilégié sur l’esthétique des théâtres de société », in Ponzetto Valentina, Ruimi Jennifer (ed.), à confirmer, à confirmer." - }, - { - "text": "Dhraief Beya, Négrel Éric, Ruimi Jennifer (2018), Théâtre et charlatans dans l'Europe moderne, Presses de la Sorbonne Nouvelle, Paris." - }, - { - "text": "Hodroge Aline (2016), \"Dramaturgie de la mélancolie staëlienne\", in Cahiers staëliens, (66), 189-202." - }, - { - "text": "Hodroge Aline (2017), \"'Etre un quart d'heure un autre: sympathie et théâtre staëlien\", in Cahiers staëliens, (67), 321-333." - }, - { - "text": "Hodroge Aline (2018), \"Le théâtre staëlien de l'exil\", in Cocula Anne-Marie, Combet Michel (ed.), Ausonius, Bordeaux, 53-62." - }, - { - "text": "Hodroge Aline (2020), « La scène staëlienne : une dramaturgie de l’intime », in Espaces des théâtres de société. Définitions, enjeux, postérité, 107-120." - }, - { - "text": "Hodroge Aline, Poirier Blandine (2017), Bibliographie staëlienne (2006-2017), in Cahiers staëliens, (64), 237-278." - }, - { - "text": "Hodroge Aline, « ‘La lecture interprétée’ : théâtre joué et théâtre lu de Germaine de Staël », in Etudes de lettres." - }, - { - "text": "Hodroge Aline, « ‘Sur le bord de la tombe’ : jouer et déjouer la mort dans le théâtre staëlien », in Travaux et recherches de l'Institut Benjamin Constant." - }, - { - "text": "Ponzetto Valentina (2016), « \"Fabriquer\" une déclaration. Quête du beau et du naturel dans l’écriture d’Il faut qu’une porte soit ouverte ou fermée », in Fix Florence (ed.), Champion, Paris, 297-308." - }, - { - "text": "Ponzetto Valentina (2016), « Quitte pour la peur, nuances de l’ironie »,, in Bulletin de l’Association des Amis d’Alfred de Vigny, Nouvelle série, 2016(n.1), 57-72." - }, - { - "text": "Ponzetto Valentina (2016), « Vigny et le genre du proverbe », in Ledda Sylvain, Sabourin Lise (ed.), Champion, Paris, 144-159." - }, - { - "text": "Ponzetto Valentina (2017), « Définitions et modes d’emploi du proverbe. Entre discours paratextuels et représentations métathéâtrales », in Ponzetto Valentina (ed.), CEREdI, Rouen, np-np." - }, - { - "text": "Ponzetto Valentina (2017), « Gants verts, bourses rouges, miroirs magiques : théâtralisation des (in)fidélités conjugales dans les Comédies et proverbes de Musset », in Verjus Anne, Gougelmann Stéphane (ed.), Publications de l’Université de Saint-Etienne, Saint-Etienne, 179-196." - }, - { - "text": "Ponzetto Valentina (2017), « Le proverbe dramatique, une voie détournée pour théâtraliser l’irréprésentable ? », in Fabula LHT, (19),", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://www.fabula.org/lht/19/ponzetto.html", - "text": "https://www.fabula.org/lht/19/ponzetto.html" - } - ] - }, - { - "text": "Ponzetto Valentina (2017), « Un idéal raisonnable. Morale des proverbes de George Sand », in Zanone Damien (ed.), Champion, Paris, 93-104." - }, - { - "text": "Ponzetto Valentina (2018), « Spectres de Nohant. Revenants, apparitions, doppelgänger dans le théâtre de société de George Sand », in Guinand Cécile (ed.), La Baconnière, Genève, 205-221." - }, - { - "text": "Ponzetto Valentina (2019), « \"Tous les comédiens ne sont pas au théâtre\" : microsociologie des proverbes de Théodore Leclercq », in Magasin du XIXe siècle, 2019 (n. 9), 75-81." - }, - { - "text": "Ponzetto Valentina (2020), « Le \"spectacle dans un fauteuil\" de George Sand : entre scène historique et poème dramatique », in Cahiers d’études nodiéristes, (9), 99-113." - }, - { - "text": "Ponzetto Valentina (2020), « Raisonneuse ou comique ? Rire au théâtre avec George Sand, à Nohant et à Paris », in Kerlouégan François, Bara Olivier (ed.), UGA Editions, Grenoble, 193-208." - }, - { - "text": "Ponzetto Valentina (ed.) (2017), Théâtres en liberté, du XVIIIe au XXe siècle. Genres nouveaux, scènes marginales ?, CEREdI, Rouen." - }, - { - "text": "Ponzetto Valentina, Edition critique de Alexandre Guillaume de Moissy, La Poupée, Les Revenants, La Petite Vérole, avec une introduction sur Moissy, in Plagnol-diéval Marie-Emmanuelle (ed.), Classiques Garnier, Paris." - }, - { - "text": "Ponzetto Valentina, Ruimi Jennifer (2020), Théâtre de société. Un objet à redéfinir, in Ponzetto Valentina, Ruimi Jennifer (ed.), PUR, Rennes, 7-27." - }, - { - "text": "Ponzetto Valentina, « Le théâtre de société de Marie de Solms, ou comment une femme peut devenir dramaturge au XIXe siècle », in Colombo Laura, Masson Catherine (ed.), NC, Verona." - }, - { - "text": "Ponzetto Valentina, « Le théâtre de société de l’Hôtel de Castellane, réseau de sociabilité », in Magasin du XIXe siècle, \"Réseaux\"(10)." - }, - { - "text": "Ponzetto Valentina, « Les accessoires du théâtre de Nohant : objets symboliques et clés d’accès au fantastique », in Auraix-Jonchière Pascale (ed.), Garnier, Paris." - }, - { - "text": "Ponzetto Valentina, « Proverbes d’éducation pour les enfants au XVIIIe siècle. Une morale en action», in Chiron Jeanne, Audy-Trottier Andréane (ed.), PUR, Rennes, nc." - }, - { - "text": "Ponzetto Valentina, « Théâtre de société et théâtre de lecture de Juste Olivier », in Etudes de Lettres." - }, - { - "text": "Ponzetto Valentina, « Valeur dramaturgique, pathétique et morale du sang dans \"La Saignée\" de Thomas Garnier », in Tropé Helène, Lucas-Fiorato Corinne (ed.), Presses Universitaires du Septentrion, Villeneuve d'Ascq." - }, - { - "text": "Ruimi Jennifer (2017), « Filles grosses d’enfant dans les parades de société, de la peur au rire », in Dion Laëtitia Gargam Adeline Grande Nathalie Henneau Marie-Elisabeth (ed.), Artois Presses Universités, Arras, 141-150." - }, - { - "text": "Ruimi Jennifer (2017), « La force d’âme des jeunes filles », in Lefay Sophie Roudaut François (ed.), Librairie Droz, Genève, 29, 155-163." - }, - { - "text": "Ruimi Jennifer (2017), « La joyeuse mise à mort d’Aristote dans les théâtres de société », in Ponzetto Valentina (ed.), Publications numériques du CÉRÉdI, Rouen, 1-11." - }, - { - "text": "Ruimi Jennifer (2017), « Spectacles de cire : le cabinet de Curtius au XVIIIe siècle », in Dix-Huitième Siècle, (49), 319-334." - }, - { - "text": "Ruimi Jennifer (2018), « De l’ambivalence des figures d’opérateur dans le théâtre de société du XVIIIe siècle », in Ruimi Jennifer, Négrel Éric, Dhraief Beya (ed.), Presses de la Sorbonne Nouvelle, Paris, 175-183." - }, - { - "text": "Ruimi Jennifer (2018), « L’esprit parisien ou la trace des temps anciens dans les Parades de Potocki », in Klene Émilie (ed.), Oxford University Studies in the Enlightenment, Oxford, 231-242." - }, - { - "text": "Ruimi Jennifer (2018), “‘Words have no smell’: faecal references in eighteenth-century society theatre”, in Kleiman Sophie Barr Rebecca Vasset Sophie (ed.), Manchester University Press, Manchester, 145-158." - }, - { - "text": "Ruimi Jennifer (2019), Ne pas en finir : les Mémoires de Mlle Clairon, in Les fins intermédiaires dans les fictions narratives des XVIIe et XVIIIe siècles , fabula.org, ?." - }, - { - "text": "Ruimi Jennifer (2019), « Ridere regnare est : les parades ou le devoir de rire », in Nancy Sarah, Gros de Gasquet Julia (ed.), Presses universitaires de Rennes, Rennes, 41-51." - }, - { - "text": "Ruimi Jennifer (2020), Les récréations de Voltaire, in Belmas Elisabeth, Vion-Dury Juliette (ed.), L'Harmattan, Paris, 198-211." - }, - { - "text": "Ruimi Jennifer (2020), « \"La Scène est quelque part\" : espace scénique et espace dramatique dans le théâtre de société au XVIIIe siècle », in Ruimi Jennifer, Ponzetto Valentina (ed.), Presses universitaires de Rennes, Rennes, 71-82." - }, - { - "text": "Ruimi Jennifer, Edition critique de Léandre marchand d’agnus, Les Bottes de sept lieues, Zizabelle mannequin, Laurette, Sans titre, in Oeuvres complètes de Beaumarchais, Garnier, Paris." - }, - { - "text": "Ruimi Jennifer, Emilie Du Châtelet actrice, in Kölving Ulla (ed.), Centre international d’études du 18e siècle, Ferney-Voltaire." - }, - { - "text": "Ruimi Jennifer, Ponzetto Valentina (ed.) (2020), Espaces des théâtres de société. Définitions, enjeux, postérité, PUR - Presses Universitaires de Rennes, Rennes." - }, - { - "text": "Ruimi Jennifer, « \"La Vérité dans le Vin\" : le motif de l’ivresse dans le théâtre de société au XVIIIe siècle »,, in États d'ivresse. Discours et images des corps ivres de l'Antiquité aux Lumières, ?." - }, - { - "text": "Ruimi Jennifer, « Faire du théâtre à Genève malgré le Consistoire : le défi de Voltaire », in Revue Études de Lettres." - }, - { - "text": "Ruimi Jennifer, « Les théâtres de société de Voltaire, lieux de plaisir, lieux de pouvoir », in Cossic Annick, Jones Emrys (ed.), Le Manuscrit, Paris." - }, - { - "text": "Ruimi Jennifer, « Tout est régénération devant les lois de la chimie » : réparer la pureté virginale au XVIIIe siècle, in \" Les représentations du sang à l'époque moderne en France en Espagne et en Italie\", MSH, ParisHAL-Inria, Electronique." - }, - { - "text": "Ruimi Jennifer, « Venise, Londres, Paris : les détours de L’Écossaise de Voltaire », in La comédie et l’étranger." - }, - { - "text": "Schuwey Christophe (2016), Peindre le siècle en comédies. Une introduction au « Misanthrope » et au « Tartuffe » de Molière, PURH, Rouen." - }, - { - "text": "Schuwey Christophe (2018), “La forme sur le fond: les enjeux de l’interface”, in Des humanités numériques littéraires, CerisyOBVIL, Sorbonne, Paris." - } - ], - "shortcode": "0103", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/3017382", - "text": "France" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6255148", - "text": "Europe" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/2658434", - "text": "Switzerland" - } - ], - "startDate": "2016-09-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p0qhb66tf8f", - "text": "Siècle des Lumières" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p06c6g38g49", - "text": "Second Empire, 1852-1870" - }, - { - "en": "18th century" - }, - { - "en": "19th century" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.ls-prod-server.dasch.swiss/project/0103", - "text": "Discover Project Data" - }, - "secondaryURL": { + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0103-project", + "__type": "Project", + "__createdAt": "1630601393923029000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Ponzetto, V., Ruimi, J., Hodroge, A., Fièvre, P., Baumann, F., Hugentobler, Th., Schuwey, Ch., Rivoal, M., 2018, Théâtres de société [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0103.", + "teaserText": "Théâtre de société is defined as a theater that is mainly or totally amateur, non-profit, practiced in private homes. The project concerns the study of this form of theater.", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0103-dataset-000" + ], + "alternativeNames": [ + { + "fr": "theatre-societe" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0103-person-000", + "description": { + "fr": "Le théâtre de société se définit comme un théâtre principalement ou totalement amateur, non lucratif, sans programmation régulière et pratiqué chez des particuliers. Notre projet concerne l’étude de cette forme de théâtre entre XVIIIe et XIXe siècle, en France et en Suisse Romande, selon une approche résolument interdisciplinaire, joignant la dramaturgie, l’histoire de l’art et des arts du spectacle, l’histoire culturelle, l’esthétique et la sociologie.\nLa recherche vise à mieux documenter, comprendre et interpréter le phénomène dans sa globalité. \nSes objectifs sont :\n1. Mieux définir et problématiser l’objet d’étude par rapport à d’autres formes théâtrales contemporaines ou successives\n2. Cerner les espaces scéniques et sociaux investis par le théâtre de société\n3. Distinguer les traits propres à son esthétique dramatique, dans le domaine de l’écriture des pièces, du choix des répertoires et de la manière de les jouer\n4. Étudier la nature, l’étendue et les enjeux des réseaux de sociabilité créés et entretenus par cette pratique\n5. Étudier les aspects les plus matériels des représentations de société, liés à la culture visuelle et à la mise en scène des spectacles.\n6. Montrer la permanence de pratiques théâtrales et sociales nées sur les scènes de société dans des formes théâtrales contemporaines\n7. Organiser et structurer les données sur les représentations étudiées dans une base de données de référence.\nNotre ambition est de dépasser la vision partielle et fragmentaire qui a caractérisé jusqu’à présent la recherche sur le sujet pour l’appréhender dans son identité distinctive, par-delà les cloisonnements traditionnels des secteurs disciplinaires et des répartitions séculaires. Le projet pourra ainsi restituer au théâtre de société son ihistoire, les principes de son identité distinctive et la place qu’il mérite dans l’histoire culturelle : carrefour de réseaux de sociabilité, vecteur de questionnements et de redéfinitions esthétiques, catalyseur de passions dramatiques comme de questions morales et identitaires." + }, + "disciplines": [ + { + "en": "10604 Music, Theatre" + }, + { + "en": "10502 Romance languages and literature" + } + ], + "endDate": "2021-08-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0103-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0103-grant-000", + "http://ns.dasch.swiss/repository#dsp-0103-grant-001" + ], + "keywords": [ + { + "en": "18th Century French Literature" + }, + { + "en": "19th Century French Literature" + }, + { + "en": "Amateurs" + }, + { + "en": "Cultural History" + }, + { + "en": "Drama" + }, + { + "en": "Literary History" + }, + { + "en": "Performing Arts" + }, + { + "en": "Sociability" + }, + { + "en": "Theatre" + } + ], + "name": "« Théâtre de société » (Age of Enlightenment - Second French Empire)", + "publications": [ + { + "text": "Ponzetto Valentina, « Rencontres et hybridations entre proverbes et charades au XIXe siècle. Un observatoire privilégié sur l’esthétique des théâtres de société », in Ponzetto Valentina, Ruimi Jennifer (ed.), à confirmer, à confirmer." + }, + { + "text": "Dhraief Beya, Négrel Éric, Ruimi Jennifer (2018), Théâtre et charlatans dans l'Europe moderne, Presses de la Sorbonne Nouvelle, Paris." + }, + { + "text": "Hodroge Aline (2016), \"Dramaturgie de la mélancolie staëlienne\", in Cahiers staëliens, (66), 189-202." + }, + { + "text": "Hodroge Aline (2017), \"'Etre un quart d'heure un autre: sympathie et théâtre staëlien\", in Cahiers staëliens, (67), 321-333." + }, + { + "text": "Hodroge Aline (2018), \"Le théâtre staëlien de l'exil\", in Cocula Anne-Marie, Combet Michel (ed.), Ausonius, Bordeaux, 53-62." + }, + { + "text": "Hodroge Aline (2020), « La scène staëlienne : une dramaturgie de l’intime », in Espaces des théâtres de société. Définitions, enjeux, postérité, 107-120." + }, + { + "text": "Hodroge Aline, Poirier Blandine (2017), Bibliographie staëlienne (2006-2017), in Cahiers staëliens, (64), 237-278." + }, + { + "text": "Hodroge Aline, « ‘La lecture interprétée’ : théâtre joué et théâtre lu de Germaine de Staël », in Etudes de lettres." + }, + { + "text": "Hodroge Aline, « ‘Sur le bord de la tombe’ : jouer et déjouer la mort dans le théâtre staëlien », in Travaux et recherches de l'Institut Benjamin Constant." + }, + { + "text": "Ponzetto Valentina (2016), « \"Fabriquer\" une déclaration. Quête du beau et du naturel dans l’écriture d’Il faut qu’une porte soit ouverte ou fermée », in Fix Florence (ed.), Champion, Paris, 297-308." + }, + { + "text": "Ponzetto Valentina (2016), « Quitte pour la peur, nuances de l’ironie »,, in Bulletin de l’Association des Amis d’Alfred de Vigny, Nouvelle série, 2016(n.1), 57-72." + }, + { + "text": "Ponzetto Valentina (2016), « Vigny et le genre du proverbe », in Ledda Sylvain, Sabourin Lise (ed.), Champion, Paris, 144-159." + }, + { + "text": "Ponzetto Valentina (2017), « Définitions et modes d’emploi du proverbe. Entre discours paratextuels et représentations métathéâtrales », in Ponzetto Valentina (ed.), CEREdI, Rouen, np-np." + }, + { + "text": "Ponzetto Valentina (2017), « Gants verts, bourses rouges, miroirs magiques : théâtralisation des (in)fidélités conjugales dans les Comédies et proverbes de Musset », in Verjus Anne, Gougelmann Stéphane (ed.), Publications de l’Université de Saint-Etienne, Saint-Etienne, 179-196." + }, + { + "text": "Ponzetto Valentina (2017), « Le proverbe dramatique, une voie détournée pour théâtraliser l’irréprésentable ? », in Fabula LHT, (19),", + "url": [ + { "__type": "URL", "type": "URL", - "url": "http://theatresdesociete.unil.ch/", - "text": "External Project Website" - } + "url": "https://www.fabula.org/lht/19/ponzetto.html", + "text": "https://www.fabula.org/lht/19/ponzetto.html" + } + ] + }, + { + "text": "Ponzetto Valentina (2017), « Un idéal raisonnable. Morale des proverbes de George Sand », in Zanone Damien (ed.), Champion, Paris, 93-104." + }, + { + "text": "Ponzetto Valentina (2018), « Spectres de Nohant. Revenants, apparitions, doppelgänger dans le théâtre de société de George Sand », in Guinand Cécile (ed.), La Baconnière, Genève, 205-221." + }, + { + "text": "Ponzetto Valentina (2019), « \"Tous les comédiens ne sont pas au théâtre\" : microsociologie des proverbes de Théodore Leclercq », in Magasin du XIXe siècle, 2019 (n. 9), 75-81." + }, + { + "text": "Ponzetto Valentina (2020), « Le \"spectacle dans un fauteuil\" de George Sand : entre scène historique et poème dramatique », in Cahiers d’études nodiéristes, (9), 99-113." + }, + { + "text": "Ponzetto Valentina (2020), « Raisonneuse ou comique ? Rire au théâtre avec George Sand, à Nohant et à Paris », in Kerlouégan François, Bara Olivier (ed.), UGA Editions, Grenoble, 193-208." + }, + { + "text": "Ponzetto Valentina (ed.) (2017), Théâtres en liberté, du XVIIIe au XXe siècle. Genres nouveaux, scènes marginales ?, CEREdI, Rouen." + }, + { + "text": "Ponzetto Valentina, Edition critique de Alexandre Guillaume de Moissy, La Poupée, Les Revenants, La Petite Vérole, avec une introduction sur Moissy, in Plagnol-diéval Marie-Emmanuelle (ed.), Classiques Garnier, Paris." + }, + { + "text": "Ponzetto Valentina, Ruimi Jennifer (2020), Théâtre de société. Un objet à redéfinir, in Ponzetto Valentina, Ruimi Jennifer (ed.), PUR, Rennes, 7-27." + }, + { + "text": "Ponzetto Valentina, « Le théâtre de société de Marie de Solms, ou comment une femme peut devenir dramaturge au XIXe siècle », in Colombo Laura, Masson Catherine (ed.), NC, Verona." + }, + { + "text": "Ponzetto Valentina, « Le théâtre de société de l’Hôtel de Castellane, réseau de sociabilité », in Magasin du XIXe siècle, \"Réseaux\"(10)." + }, + { + "text": "Ponzetto Valentina, « Les accessoires du théâtre de Nohant : objets symboliques et clés d’accès au fantastique », in Auraix-Jonchière Pascale (ed.), Garnier, Paris." + }, + { + "text": "Ponzetto Valentina, « Proverbes d’éducation pour les enfants au XVIIIe siècle. Une morale en action», in Chiron Jeanne, Audy-Trottier Andréane (ed.), PUR, Rennes, nc." + }, + { + "text": "Ponzetto Valentina, « Théâtre de société et théâtre de lecture de Juste Olivier », in Etudes de Lettres." + }, + { + "text": "Ponzetto Valentina, « Valeur dramaturgique, pathétique et morale du sang dans \"La Saignée\" de Thomas Garnier », in Tropé Helène, Lucas-Fiorato Corinne (ed.), Presses Universitaires du Septentrion, Villeneuve d'Ascq." + }, + { + "text": "Ruimi Jennifer (2017), « Filles grosses d’enfant dans les parades de société, de la peur au rire », in Dion Laëtitia Gargam Adeline Grande Nathalie Henneau Marie-Elisabeth (ed.), Artois Presses Universités, Arras, 141-150." + }, + { + "text": "Ruimi Jennifer (2017), « La force d’âme des jeunes filles », in Lefay Sophie Roudaut François (ed.), Librairie Droz, Genève, 29, 155-163." + }, + { + "text": "Ruimi Jennifer (2017), « La joyeuse mise à mort d’Aristote dans les théâtres de société », in Ponzetto Valentina (ed.), Publications numériques du CÉRÉdI, Rouen, 1-11." + }, + { + "text": "Ruimi Jennifer (2017), « Spectacles de cire : le cabinet de Curtius au XVIIIe siècle », in Dix-Huitième Siècle, (49), 319-334." + }, + { + "text": "Ruimi Jennifer (2018), « De l’ambivalence des figures d’opérateur dans le théâtre de société du XVIIIe siècle », in Ruimi Jennifer, Négrel Éric, Dhraief Beya (ed.), Presses de la Sorbonne Nouvelle, Paris, 175-183." + }, + { + "text": "Ruimi Jennifer (2018), « L’esprit parisien ou la trace des temps anciens dans les Parades de Potocki », in Klene Émilie (ed.), Oxford University Studies in the Enlightenment, Oxford, 231-242." + }, + { + "text": "Ruimi Jennifer (2018), “‘Words have no smell’: faecal references in eighteenth-century society theatre”, in Kleiman Sophie Barr Rebecca Vasset Sophie (ed.), Manchester University Press, Manchester, 145-158." + }, + { + "text": "Ruimi Jennifer (2019), Ne pas en finir : les Mémoires de Mlle Clairon, in Les fins intermédiaires dans les fictions narratives des XVIIe et XVIIIe siècles , fabula.org, ?." + }, + { + "text": "Ruimi Jennifer (2019), « Ridere regnare est : les parades ou le devoir de rire », in Nancy Sarah, Gros de Gasquet Julia (ed.), Presses universitaires de Rennes, Rennes, 41-51." + }, + { + "text": "Ruimi Jennifer (2020), Les récréations de Voltaire, in Belmas Elisabeth, Vion-Dury Juliette (ed.), L'Harmattan, Paris, 198-211." + }, + { + "text": "Ruimi Jennifer (2020), « \"La Scène est quelque part\" : espace scénique et espace dramatique dans le théâtre de société au XVIIIe siècle », in Ruimi Jennifer, Ponzetto Valentina (ed.), Presses universitaires de Rennes, Rennes, 71-82." + }, + { + "text": "Ruimi Jennifer, Edition critique de Léandre marchand d’agnus, Les Bottes de sept lieues, Zizabelle mannequin, Laurette, Sans titre, in Oeuvres complètes de Beaumarchais, Garnier, Paris." + }, + { + "text": "Ruimi Jennifer, Emilie Du Châtelet actrice, in Kölving Ulla (ed.), Centre international d’études du 18e siècle, Ferney-Voltaire." + }, + { + "text": "Ruimi Jennifer, Ponzetto Valentina (ed.) (2020), Espaces des théâtres de société. Définitions, enjeux, postérité, PUR - Presses Universitaires de Rennes, Rennes." + }, + { + "text": "Ruimi Jennifer, « \"La Vérité dans le Vin\" : le motif de l’ivresse dans le théâtre de société au XVIIIe siècle »,, in États d'ivresse. Discours et images des corps ivres de l'Antiquité aux Lumières, ?." + }, + { + "text": "Ruimi Jennifer, « Faire du théâtre à Genève malgré le Consistoire : le défi de Voltaire », in Revue Études de Lettres." + }, + { + "text": "Ruimi Jennifer, « Les théâtres de société de Voltaire, lieux de plaisir, lieux de pouvoir », in Cossic Annick, Jones Emrys (ed.), Le Manuscrit, Paris." + }, + { + "text": "Ruimi Jennifer, « Tout est régénération devant les lois de la chimie » : réparer la pureté virginale au XVIIIe siècle, in \" Les représentations du sang à l'époque moderne en France en Espagne et en Italie\", MSH, ParisHAL-Inria, Electronique." + }, + { + "text": "Ruimi Jennifer, « Venise, Londres, Paris : les détours de L’Écossaise de Voltaire », in La comédie et l’étranger." + }, + { + "text": "Schuwey Christophe (2016), Peindre le siècle en comédies. Une introduction au « Misanthrope » et au « Tartuffe » de Molière, PURH, Rouen." + }, + { + "text": "Schuwey Christophe (2018), “La forme sur le fond: les enjeux de l’interface”, in Des humanités numériques littéraires, CerisyOBVIL, Sorbonne, Paris." + } + ], + "shortcode": "0103", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/3017382", + "text": "France" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/6255148", + "text": "Europe" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/2658434", + "text": "Switzerland" + } + ], + "startDate": "2016-09-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p0qhb66tf8f", + "text": "Siècle des Lumières" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p06c6g38g49", + "text": "Second Empire, 1852-1870" + }, + { + "en": "18th century" + }, + { + "en": "19th century" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.ls-prod-server.dasch.swiss/project/0103", + "text": "Discover Project Data" }, - "datasets": [ + "secondaryURL": { + "__type": "URL", + "type": "URL", + "url": "http://theatresdesociete.unil.ch/", + "text": "External Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0103-dataset-000", + "__type": "Dataset", + "__createdAt": "1630601401809363000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0103-dataset-000", - "__type": "Dataset", - "__createdAt": "1630601401809363000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "fr": "Répertoire numérique des spectacles joués sur les scènes de société en France et en Suisse Romande au XVIIIe et au XIXe siècle, consultable selon les critères suivants : lieu de la représentation, date de la représentation, auteur ou titre de la pièce jouée, intervenant. Pour les intervenants, les résultats obtenus précisent le rôle : comédien/comédienne (avec le nom du personnage joué), propriétaire des lieux, commanditaire, organisateur du spectacle, spectateur. Pour chaque représentation sont indiquées les sources documentaires, imprimées ou manuscrites, dont sont issues les données. Des extraits significatifs de ces sources sont transcrits dans les notices d’accompagnement." - } - ], - "accessConditions": "open", - "dateCreated": "2018-01-11", - "dateModified": "2021-02-11", - "datePublished": "2018-01-11", - "howToCite": "Ponzetto, V., Ruimi, J., Hodroge, A., Fièvre, P., Baumann, F., Hugentobler, Th., Schuwey, Ch., Rivoal, M., 2018, Théâtres de société [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0103.", - "languages": [ - { - "en": "French", - "de": "Französisch", - "fr": "français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0/", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-000", - "roles": [ - "Project leader", - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-001", - "roles": [ - "Project member", - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-002", - "roles": [ - "Project member", - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-003", - "roles": [ - "Project member", - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-004", - "roles": [ - "Project member", - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-005", - "roles": [ - "Project member", - "Data collector" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-006", - "roles": [ - "Project member", - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-008", - "roles": [ - "Data curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-007", - "roles": [ - "Other" - ] - } - ], - "status": "Finished", - "title": "Base de données Théâtres de société", - "typeOfData": [ - "Text" - ] + "fr": "Répertoire numérique des spectacles joués sur les scènes de société en France et en Suisse Romande au XVIIIe et au XIXe siècle, consultable selon les critères suivants : lieu de la représentation, date de la représentation, auteur ou titre de la pièce jouée, intervenant. Pour les intervenants, les résultats obtenus précisent le rôle : comédien/comédienne (avec le nom du personnage joué), propriétaire des lieux, commanditaire, organisateur du spectacle, spectateur. Pour chaque représentation sont indiquées les sources documentaires, imprimées ou manuscrites, dont sont issues les données. Des extraits significatifs de ces sources sont transcrits dans les notices d’accompagnement." } - ], - "persons": [ + ], + "accessConditions": "open", + "dateCreated": "2018-01-11", + "dateModified": "2021-02-11", + "datePublished": "2018-01-11", + "howToCite": "Ponzetto, V., Ruimi, J., Hodroge, A., Fièvre, P., Baumann, F., Hugentobler, Th., Schuwey, Ch., Rivoal, M., 2018, Théâtres de société [database] (DaSCH), https://ark.dasch.swiss/ark:/72163/1/0103.", + "languages": [ + { + "en": "French", + "de": "Französisch", + "fr": "français" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-007", - "__type": "Person", - "__createdAt": "1630601402242973000", - "__createdBy": "dsp-metadata-gui", - "email": "loic.jaouen@unil.ch", - "familyNames": [ - "Jaouen" - ], - "givenNames": [ - "Loïc" - ], - "jobTitles": [ - "IT support" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0103-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-000", + "roles": [ + "Project leader", + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-008", - "__type": "Person", - "__createdAt": "1630601402243082000", - "__createdBy": "dsp-metadata-gui", - "email": "marion.rivoal@unil.ch", - "familyNames": [ - "Rivoal" - ], - "givenNames": [ - "Marion" - ], - "jobTitles": [ - "Research manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0103-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-001", + "roles": [ + "Project member", + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-001", - "__type": "Person", - "__createdAt": "1630601402243184000", - "__createdBy": "dsp-metadata-gui", - "email": "jennifer.ruimi@unil.ch", - "familyNames": [ - "Ruimi" - ], - "givenNames": [ - "Jennifer" - ], - "jobTitles": [ - "Post-doctoral researcher", - "Senior SNSF Researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0103-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-3788-9785", - "text": "ORCID URL: https://orcid.org/0000-0002-3788-9785" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-002", + "roles": [ + "Project member", + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-002", - "__type": "Person", - "__createdAt": "1630601402243362000", - "__createdBy": "dsp-metadata-gui", - "email": "aline.hodroge@unil.ch", - "familyNames": [ - "Hodroge" - ], - "givenNames": [ - "Aline" - ], - "jobTitles": [ - "PhD student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0103-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-003", + "roles": [ + "Project member", + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-003", - "__type": "Person", - "__createdAt": "1630601402243464000", - "__createdBy": "dsp-metadata-gui", - "email": "thibault.hugentobler@unil.ch", - "familyNames": [ - "Hugentobler" - ], - "givenNames": [ - "Thibault" - ], - "jobTitles": [ - "Research Assistant" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0103-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-004", + "roles": [ + "Project member", + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-004", - "__type": "Person", - "__createdAt": "1630601402243563000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Baumann" - ], - "givenNames": [ - "Fiona" - ], - "jobTitles": [ - "Research Assistant" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0103-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-005", + "roles": [ + "Project member", + "Data collector" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-005", - "__type": "Person", - "__createdAt": "1630601402243652000", - "__createdBy": "dsp-metadata-gui", - "email": "paul.fievre@gmail.com", - "familyNames": [ - "Fièvre" - ], - "givenNames": [ - "Paul" - ], - "jobTitles": [ - "IT support" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0103-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-006", + "roles": [ + "Project member", + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-006", - "__type": "Person", - "__createdAt": "1630601402243752000", - "__createdBy": "dsp-metadata-gui", - "email": "christophe.schuwey@yale.edu", - "familyNames": [ - "Schuwey" - ], - "givenNames": [ - "Christophe" - ], - "jobTitles": [ - "IT support" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0103-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0001-7683-515X", - "text": "ORCID URL: https://orcid.org/0000-0001-7683-515X" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-008", + "roles": [ + "Data curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-000", - "__type": "Person", - "__createdAt": "1630601402243924000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Rue des Allobroges 31", - "postalCode": "1227", - "locality": "Les Acacias (GE)", - "country": "Switzerland" - }, - "email": "valentina.ponzetto@unil.ch", - "familyNames": [ - "Ponzetto" - ], - "givenNames": [ - "Valentina" - ], - "jobTitles": [ - "Assistant professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0103-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-6599-5630", - "text": "ORCID URL: https://orcid.org/0000-0002-6599-5630" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0103-person-007", + "roles": [ + "Other" + ] } - ], - "organizations": [ - { - "__id": "http://ns.dasch.swiss/repository#dsp-0103-organization-001", - "__type": "Organization", - "__createdAt": "1630601402274947000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3 Postfach", - "postalCode": "3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)" - }, + ], + "status": "Finished", + "title": "Base de données Théâtres de société", + "typeOfData": [ + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-007", + "__type": "Person", + "__createdAt": "1630601402242973000", + "__createdBy": "dsp-metadata-gui", + "email": "loic.jaouen@unil.ch", + "familyNames": [ + "Jaouen" + ], + "givenNames": [ + "Loïc" + ], + "jobTitles": [ + "IT support" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0103-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-008", + "__type": "Person", + "__createdAt": "1630601402243082000", + "__createdBy": "dsp-metadata-gui", + "email": "marion.rivoal@unil.ch", + "familyNames": [ + "Rivoal" + ], + "givenNames": [ + "Marion" + ], + "jobTitles": [ + "Research manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0103-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-001", + "__type": "Person", + "__createdAt": "1630601402243184000", + "__createdBy": "dsp-metadata-gui", + "email": "jennifer.ruimi@unil.ch", + "familyNames": [ + "Ruimi" + ], + "givenNames": [ + "Jennifer" + ], + "jobTitles": [ + "Post-doctoral researcher", + "Senior SNSF Researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0103-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0103-organization-000", - "__type": "Organization", - "__createdAt": "1630601402307071000", - "__createdBy": "dsp-metadata-gui", - "name": "Université de Lausanne" + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-3788-9785", + "text": "ORCID URL: https://orcid.org/0000-0002-3788-9785" } - ], - "grants": [ + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-002", + "__type": "Person", + "__createdAt": "1630601402243362000", + "__createdBy": "dsp-metadata-gui", + "email": "aline.hodroge@unil.ch", + "familyNames": [ + "Hodroge" + ], + "givenNames": [ + "Aline" + ], + "jobTitles": [ + "PhD student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0103-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-003", + "__type": "Person", + "__createdAt": "1630601402243464000", + "__createdBy": "dsp-metadata-gui", + "email": "thibault.hugentobler@unil.ch", + "familyNames": [ + "Hugentobler" + ], + "givenNames": [ + "Thibault" + ], + "jobTitles": [ + "Research Assistant" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0103-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-004", + "__type": "Person", + "__createdAt": "1630601402243563000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Baumann" + ], + "givenNames": [ + "Fiona" + ], + "jobTitles": [ + "Research Assistant" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0103-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-005", + "__type": "Person", + "__createdAt": "1630601402243652000", + "__createdBy": "dsp-metadata-gui", + "email": "paul.fievre@gmail.com", + "familyNames": [ + "Fièvre" + ], + "givenNames": [ + "Paul" + ], + "jobTitles": [ + "IT support" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0103-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-006", + "__type": "Person", + "__createdAt": "1630601402243752000", + "__createdBy": "dsp-metadata-gui", + "email": "christophe.schuwey@yale.edu", + "familyNames": [ + "Schuwey" + ], + "givenNames": [ + "Christophe" + ], + "jobTitles": [ + "IT support" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0103-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0103-grant-000", - "__type": "Grant", - "__createdAt": "1630601402307195000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0103-organization-001" - ], - "name": "SNSF Professorships", - "number": "157392", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/157392", - "text": "https://data.snf.ch/grants/grant/157392" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0001-7683-515X", + "text": "ORCID URL: https://orcid.org/0000-0001-7683-515X" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0103-person-000", + "__type": "Person", + "__createdAt": "1630601402243924000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Rue des Allobroges 31", + "postalCode": "1227", + "locality": "Les Acacias (GE)", + "country": "Switzerland" + }, + "email": "valentina.ponzetto@unil.ch", + "familyNames": [ + "Ponzetto" + ], + "givenNames": [ + "Valentina" + ], + "jobTitles": [ + "Assistant professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0103-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0103-grant-001", - "__type": "Grant", - "__createdAt": "1630601402307409000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0103-organization-001" - ], - "name": "SNSF Professorships", - "number": "190070", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/190070", - "text": "https://data.snf.ch/grants/grant/190070" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-6599-5630", + "text": "ORCID URL: https://orcid.org/0000-0002-6599-5630" } - ] + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0103-organization-001", + "__type": "Organization", + "__createdAt": "1630601402274947000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3 Postfach", + "postalCode": "3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)" + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0103-organization-000", + "__type": "Organization", + "__createdAt": "1630601402307071000", + "__createdBy": "dsp-metadata-gui", + "name": "Université de Lausanne" + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0103-grant-000", + "__type": "Grant", + "__createdAt": "1630601402307195000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0103-organization-001" + ], + "name": "SNSF Professorships", + "number": "157392", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/157392", + "text": "https://data.snf.ch/grants/grant/157392" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0103-grant-001", + "__type": "Grant", + "__createdAt": "1630601402307409000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0103-organization-001" + ], + "name": "SNSF Professorships", + "number": "190070", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/190070", + "text": "https://data.snf.ch/grants/grant/190070" + } + } + ] } \ No newline at end of file diff --git a/data/json/vitrocentre.json b/data/json/vitrocentre.json index abad4667..b5dfa084 100644 --- a/data/json/vitrocentre.json +++ b/data/json/vitrocentre.json @@ -1,187 +1,188 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0816-project", - "__type": "Project", - "__createdAt": "1652363802489433000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Vitrocentre Romont has to be mentioned, in regards to images: Vitrocentre Romont and where mentioned the photographer has to be mentioned", - "teaserText": "vitrosearch - Database for stained glass and glass art by the Vitrocentre Romont ", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0816-dataset-000" - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0816-organization-000", - "description": { - "en": "The main aim of the project of the Vitrocentre Romont is to offer a specialized database on stained glass and glass art destined for art historians, the scientific community and the interested public. The database contains research results (e.g. from Corpus Vitrearum projects) generated by researchers at the Vitrocentre Romont as well as descriptions of artworks (including archival documentation and graphic works) that are kept at the Vitromusée Romont, the partner institution of the Vitrocentre Romont." - }, - "disciplines": [ - { - "en": "10301 General history (without pre-and early history)" - }, - { - "en": "10302 Swiss history" - }, - { - "en": "10404 Visual arts and Art history" - }, - { - "en": "10603 Arts" - } - ], - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0816-organization-000" - ], - "keywords": [ - { - "en": "art glass" - }, - { - "en": "art history" - }, - { - "en": "glass in concrete" - }, - { - "en": "reverse paintings on glass" - }, - { - "en": "stained-glass windows" - } - ], - "name": "vitrosearch: stained glass and glass art in Switzerland online", - "publications": [ - { - "text": "Amsler, S. (2019). Quoi de neuf? : vitrosearch au service du patrimoine verrier. Annales fribourgeoises, 81, 93–100." - } - ], - "shortcode": "0816", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "http://www.geonames.org/2658434/switzerland.html", - "text": "Switzerland" - }, - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/6255148/europe.html", - "text": "Europe" - } - ], - "startDate": "2014-01-01", - "temporalCoverage": [ - { - "en": "5th century to today" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://vitrosearch.ch/en", - "text": "External Project Website" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0816-project", + "__type": "Project", + "__createdAt": "1652363802489433000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Vitrocentre Romont has to be mentioned, in regards to images: Vitrocentre Romont and where mentioned the photographer has to be mentioned", + "teaserText": "vitrosearch - Database for stained glass and glass art by the Vitrocentre Romont ", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0816-dataset-000" + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0816-organization-000", + "description": { + "en": "The main aim of the project of the Vitrocentre Romont is to offer a specialized database on stained glass and glass art destined for art historians, the scientific community and the interested public. The database contains research results (e.g. from Corpus Vitrearum projects) generated by researchers at the Vitrocentre Romont as well as descriptions of artworks (including archival documentation and graphic works) that are kept at the Vitromusée Romont, the partner institution of the Vitrocentre Romont." + }, + "disciplines": [ + { + "en": "10301 General history (without pre-and early history)" + }, + { + "en": "10302 Swiss history" + }, + { + "en": "10404 Visual arts and Art history" + }, + { + "en": "10603 Arts" + } + ], + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0816-organization-000" + ], + "keywords": [ + { + "en": "art glass" + }, + { + "en": "art history" + }, + { + "en": "glass in concrete" + }, + { + "en": "reverse paintings on glass" + }, + { + "en": "stained-glass windows" + } + ], + "name": "vitrosearch: stained glass and glass art in Switzerland online", + "publications": [ + { + "text": "Amsler, S. (2019). Quoi de neuf? : vitrosearch au service du patrimoine verrier. Annales fribourgeoises, 81, 93–100." + } + ], + "shortcode": "0816", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "http://www.geonames.org/2658434/switzerland.html", + "text": "Switzerland" + }, + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/6255148/europe.html", + "text": "Europe" + } + ], + "startDate": "2014-01-01", + "temporalCoverage": [ + { + "en": "5th century to today" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://vitrosearch.ch/en", + "text": "External Project Website" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0816-dataset-000", + "__type": "Dataset", + "__createdAt": "1652363803293432000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0816-dataset-000", - "__type": "Dataset", - "__createdAt": "1652363803293432000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "vitrosearch comprises research on stained glass, reverse paintings on glass, glass objects as well as graphic works and drawings from artists and workshops. The data is the result of research projects of the Vitrocentre Romont and includes the scientific inventories of the Corpus Vitrearum Switzerland." - } - ], - "accessConditions": "restricted", - "datePublished": "2017-12-01", - "howToCite": "Vitrocentre Romont has to be mentioned, in regards to images: Vitrocentre Romont and where mentioned the photographer has to be mentioned", - "languages": [ - { - "en": "French", - "de": "Französisch", - "fr": "français" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0816-organization-000", - "roles": [ - "publisher, editor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0816-organization-001", - "roles": [ - "editor" - ] - } - ], - "status": "Ongoing", - "title": "vitrosearch", - "typeOfData": [ - "Image", - "Text" - ], - "urls": [ - { - "__type": "URL", - "type": "URL", - "url": "https://vitrocentre.ch/documentation/", - "text": "Find more information about the database here" - } - ] + "en": "vitrosearch comprises research on stained glass, reverse paintings on glass, glass objects as well as graphic works and drawings from artists and workshops. The data is the result of research projects of the Vitrocentre Romont and includes the scientific inventories of the Corpus Vitrearum Switzerland." } - ], - "organizations": [ + ], + "accessConditions": "restricted", + "datePublished": "2017-12-01", + "howToCite": "Vitrocentre Romont has to be mentioned, in regards to images: Vitrocentre Romont and where mentioned the photographer has to be mentioned", + "languages": [ + { + "en": "French", + "de": "Französisch", + "fr": "français" + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0816-organization-001", - "__type": "Organization", - "__createdAt": "1652363803348036000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Rue du Château 108 b, Case postale 115", - "postalCode": "1680", - "locality": "Romont", - "country": "Switzerland" - }, - "email": "info@vitromusee.ch", - "name": "Vitromusée Romont", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://vitromusee.ch", - "text": "https://vitromusee.ch" - } + "de": "Deutsch", + "en": "German", + "fr": "allemand" + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0816-organization-000", + "roles": [ + "publisher, editor" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0816-organization-000", - "__type": "Organization", - "__createdAt": "1652363803431894000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Rue du Château 108 b, Case postale 225", - "postalCode": "1680", - "locality": "Romont", - "country": "Switzerland" - }, - "email": "info@vitrocentre.ch", - "name": "Vitrocentre Romont", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://vitrocentre.ch", - "text": "https://vitrocentre.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0816-organization-001", + "roles": [ + "editor" + ] } - ] + ], + "status": "Ongoing", + "title": "vitrosearch", + "typeOfData": [ + "Image", + "Text" + ], + "urls": [ + { + "__type": "URL", + "type": "URL", + "url": "https://vitrocentre.ch/documentation/", + "text": "Find more information about the database here" + } + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0816-organization-001", + "__type": "Organization", + "__createdAt": "1652363803348036000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Rue du Château 108 b, Case postale 115", + "postalCode": "1680", + "locality": "Romont", + "country": "Switzerland" + }, + "email": "info@vitromusee.ch", + "name": "Vitromusée Romont", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://vitromusee.ch", + "text": "https://vitromusee.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0816-organization-000", + "__type": "Organization", + "__createdAt": "1652363803431894000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Rue du Château 108 b, Case postale 225", + "postalCode": "1680", + "locality": "Romont", + "country": "Switzerland" + }, + "email": "info@vitrocentre.ch", + "name": "Vitrocentre Romont", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://vitrocentre.ch", + "text": "https://vitrocentre.ch" + } + } + ] } \ No newline at end of file diff --git a/data/json/waldaucinema.json b/data/json/waldaucinema.json index 4e3f27c2..6698eab5 100644 --- a/data/json/waldaucinema.json +++ b/data/json/waldaucinema.json @@ -1,396 +1,397 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0106-project", - "__type": "Project", - "__createdAt": "1689255422634382000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "Berton, M., Murtas, E., Tinguely, R., Rivoal, M., Jaouen, L., 2023, Cinéma et psychiatrie en Suisse : les collections Waldau [database] (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0106.", - "teaserText": "Comment les psychiatres et neurologues suisses se sont-ils emparés, au XXe siècle, du médium filmique dans leur pratique de médecins, d’enseignants et de chercheurs ?", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0106-dataset-000" - ], - "alternativeNames": [ - { - "fr": "Waldau-cinema" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0106-person-000", - "dataManagementPlan": { - "__type": "DataManagementPlan", - "available": true - }, - "description": { - "fr": "Ce projet propose d’étudier l’histoire culturelle des pratiques cinématographiques dans le domaine de la (neuro)psychiatrie en Suisse, sur la base d’un corpus de films réalisés au sein et autour de l’hôpital psychiatrique de la Waldau à Berne, entre 1920 et 1970. Le but principal consiste à mettre en évidence le rôle majeur joué, tant au niveau national que transnational, par la Waldau dans l’usage du médium filmique à des fins de recherche, d’enseignement et de promotion scientifique. Il s’agit d’analyser, outre des archives papier, plusieurs corpus filmiques, dont les 97 courts métrages réalisés à l’initiative du psychiatre Ernst Grünthal entre 1934 et 1965 au Hirnanatomisches Institut de l’hôpital psychiatrique de Waldau (fonds déposé à la Cinémathèque suisse). Par leur ampleur et leur homogénéité, ces ensembles offrent une occasion unique d’interroger les enjeux historiques et épistémologiques présidant à l’emploi du cinéma dans le secteur de la santé mentale, en Suisse et à l’étranger. On se demandera quelles sont les conditions de possibilité, les fonctions et les particularités (sémantiques et esthétiques) de ces objets. Que disent ces films sur la maladie, les patients·es, les médecins, les institutions psychiatriques, et, inversement, que révèlent-ils du cinéma en tant qu’outil participant à la construction des phénomènes observés ? Quel(s) regard(s) construisent-ils sur les troubles psychiatriques et neurologiques, ainsi que sur l’éthos des médecins ? Pour répondre à ces questions, il conviendra de battre en brèche un certain nombre d’idées reçues, en montrant que ces artefacts sont des objets-carrefours situés au croisement de la médecine et de la culture (audio)visuelle et, à ce titre, relèvent autant du cinéma scientifique que de l’art cinématographique. N’ayant pas encore fait l’objet de recherche, notamment en raison de leur difficulté d’accès, des enjeux de confidentialité des données et de leur fragilité matérielle, ces films méritent d’être étudiés non seulement pour leur valeur patrimoniale inestimable, mais aussi pour la place nodale qu’ils occupent dans l’histoire européenne du film médical. Ces archives sont appréhendées au regard de deux champs propres aux études cinématographiques : d’une part, l’histoire du film neuropsychiatrique qui s’est enrichie depuis une vingtaine d’années de la découverte de productions que l’on croyait disparues, à l’instar du fonds Magnus-Rademaker aux Pays-Bas ; et, d’autre part, le champ du film utilitaire (dit « useful cinema » ou « Gebrauchsfilm »), qui a permis de valoriser des œuvres longtemps négligées par l’histoire canonique du cinéma en raison de leur caractère marginal. Afin de développer les différents aspects de la recherche, le projet se développe autour de trois axes : Axe 1 : « Les films neuropsychiatriques d’Ernst Grünthal au Hirnanatomisches Institut de la Waldau (1930-1960) », un volet qui examine la contribution du psychiatre (qui fonde le Laboratoire d’anatomie cérébrale/LAC en 1934) dans l’élaboration de pratiques et de savoirs relatifs à la psychiatrie et au cinéma en Suisse. Axe 2 : Les échanges entre la Waldau et l’hôpital psychiatrique de Cery (Lausanne), notamment à travers la figure de Hans Heimann, ainsi que les films institutionnels et les films consacrées aux thérapies par le travail, des « genres » typiques du film médical. Axe 3 : « Imaginer la folie. Les films de la Waldau entre science et fiction » qui étudie les usages « fictionnalisants » ou « narrativisants » du dispositif cinématographique, lequel participe à mettre en scène et en récit une certaine image de la folie. Ce projet débouchera sur une thèse de doctorat, un ouvrage collectif, un numéro de revue, une monographie, plusieurs publications individuelles et une exposition, ainsi que sur la sauvegarde et la valorisation d’un fonds d’archives grâce à la numérisation des films eux-mêmes. La collaboration avec des partenaires européens permet de consolider l’investigation à travers l’échange d’informations, de méthodes et de ressources. Ce projet s’inscrit dans le cadre de la Collaboration UNIL + Cinémathèque suisse qui vise à renforcer les liens entre ces deux institutions." - }, - "disciplines": [ - { - "fr": "10406 Théâtre et cinéma" - } - ], - "endDate": "2023-05-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0106-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0106-grant-000" - ], - "keywords": [ - { - "fr": "Ernst Grünthal" - }, - { - "fr": "Film utilitaire" - }, - { - "fr": "Suisse" - }, - { - "fr": "Waldau" - }, - { - "fr": "cinéma" - }, - { - "fr": "enseignement" - }, - { - "fr": "médecine" - }, - { - "fr": "neurologie" - }, - { - "fr": "psychiatrie" - }, - { - "fr": "recherche" - } - ], - "name": "Cinéma et (neuro)psychiatrie en Suisse : autour de la collection Waldau (1920-1990)", - "shortcode": "0106", - "spatialCoverage": [ - { - "__type": "URL", - "type": "URL", - "url": "http://vocab.getty.edu/page/tgn/7011731", - "text": "Suisse" - }, - { - "__type": "URL", - "type": "URL", - "url": "http://vocab.getty.edu/page/tgn/7016845", - "text": "Pays-Bas" - }, - { - "__type": "URL", - "type": "URL", - "url": "http://vocab.getty.edu/page/tgn/1000080", - "text": "Italie" - }, - { - "__type": "URL", - "type": "URL", - "url": "http://vocab.getty.edu/page/tgn/7008591", - "text": "Grande-Bretagne" - }, - { - "__type": "URL", - "type": "URL", - "url": "http://vocab.getty.edu/page/tgn/7012149", - "text": "Etats-Unis" - }, - { - "__type": "URL", - "type": "URL", - "url": "http://vocab.getty.edu/page/tgn/1000070", - "text": "France" - }, - { - "__type": "URL", - "type": "URL", - "url": "http://vocab.getty.edu/page/tgn/7000084", - "text": "Allemagne" - } - ], - "startDate": "2021-06-01", - "temporalCoverage": [ - { - "de": "1920-1970", - "en": "1920-1970", - "fr": "1920-1970" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/Y9hvowDvRKy8Mkq5anCDnw", - "text": "Discover Project Data" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0106-project", + "__type": "Project", + "__createdAt": "1689255422634382000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "Berton, M., Murtas, E., Tinguely, R., Rivoal, M., Jaouen, L., 2023, Cinéma et psychiatrie en Suisse : les collections Waldau [database] (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0106.", + "teaserText": "Comment les psychiatres et neurologues suisses se sont-ils emparés, au XXe siècle, du médium filmique dans leur pratique de médecins, d’enseignants et de chercheurs ?", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0106-dataset-000" + ], + "alternativeNames": [ + { + "fr": "Waldau-cinema" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0106-person-000", + "dataManagementPlan": { + "__type": "DataManagementPlan", + "available": true + }, + "description": { + "fr": "Ce projet propose d’étudier l’histoire culturelle des pratiques cinématographiques dans le domaine de la (neuro)psychiatrie en Suisse, sur la base d’un corpus de films réalisés au sein et autour de l’hôpital psychiatrique de la Waldau à Berne, entre 1920 et 1970. Le but principal consiste à mettre en évidence le rôle majeur joué, tant au niveau national que transnational, par la Waldau dans l’usage du médium filmique à des fins de recherche, d’enseignement et de promotion scientifique. Il s’agit d’analyser, outre des archives papier, plusieurs corpus filmiques, dont les 97 courts métrages réalisés à l’initiative du psychiatre Ernst Grünthal entre 1934 et 1965 au Hirnanatomisches Institut de l’hôpital psychiatrique de Waldau (fonds déposé à la Cinémathèque suisse). Par leur ampleur et leur homogénéité, ces ensembles offrent une occasion unique d’interroger les enjeux historiques et épistémologiques présidant à l’emploi du cinéma dans le secteur de la santé mentale, en Suisse et à l’étranger. On se demandera quelles sont les conditions de possibilité, les fonctions et les particularités (sémantiques et esthétiques) de ces objets. Que disent ces films sur la maladie, les patients·es, les médecins, les institutions psychiatriques, et, inversement, que révèlent-ils du cinéma en tant qu’outil participant à la construction des phénomènes observés ? Quel(s) regard(s) construisent-ils sur les troubles psychiatriques et neurologiques, ainsi que sur l’éthos des médecins ? Pour répondre à ces questions, il conviendra de battre en brèche un certain nombre d’idées reçues, en montrant que ces artefacts sont des objets-carrefours situés au croisement de la médecine et de la culture (audio)visuelle et, à ce titre, relèvent autant du cinéma scientifique que de l’art cinématographique. N’ayant pas encore fait l’objet de recherche, notamment en raison de leur difficulté d’accès, des enjeux de confidentialité des données et de leur fragilité matérielle, ces films méritent d’être étudiés non seulement pour leur valeur patrimoniale inestimable, mais aussi pour la place nodale qu’ils occupent dans l’histoire européenne du film médical. Ces archives sont appréhendées au regard de deux champs propres aux études cinématographiques : d’une part, l’histoire du film neuropsychiatrique qui s’est enrichie depuis une vingtaine d’années de la découverte de productions que l’on croyait disparues, à l’instar du fonds Magnus-Rademaker aux Pays-Bas ; et, d’autre part, le champ du film utilitaire (dit « useful cinema » ou « Gebrauchsfilm »), qui a permis de valoriser des œuvres longtemps négligées par l’histoire canonique du cinéma en raison de leur caractère marginal. Afin de développer les différents aspects de la recherche, le projet se développe autour de trois axes : Axe 1 : « Les films neuropsychiatriques d’Ernst Grünthal au Hirnanatomisches Institut de la Waldau (1930-1960) », un volet qui examine la contribution du psychiatre (qui fonde le Laboratoire d’anatomie cérébrale/LAC en 1934) dans l’élaboration de pratiques et de savoirs relatifs à la psychiatrie et au cinéma en Suisse. Axe 2 : Les échanges entre la Waldau et l’hôpital psychiatrique de Cery (Lausanne), notamment à travers la figure de Hans Heimann, ainsi que les films institutionnels et les films consacrées aux thérapies par le travail, des « genres » typiques du film médical. Axe 3 : « Imaginer la folie. Les films de la Waldau entre science et fiction » qui étudie les usages « fictionnalisants » ou « narrativisants » du dispositif cinématographique, lequel participe à mettre en scène et en récit une certaine image de la folie. Ce projet débouchera sur une thèse de doctorat, un ouvrage collectif, un numéro de revue, une monographie, plusieurs publications individuelles et une exposition, ainsi que sur la sauvegarde et la valorisation d’un fonds d’archives grâce à la numérisation des films eux-mêmes. La collaboration avec des partenaires européens permet de consolider l’investigation à travers l’échange d’informations, de méthodes et de ressources. Ce projet s’inscrit dans le cadre de la Collaboration UNIL + Cinémathèque suisse qui vise à renforcer les liens entre ces deux institutions." + }, + "disciplines": [ + { + "fr": "10406 Théâtre et cinéma" + } + ], + "endDate": "2023-05-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0106-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0106-grant-000" + ], + "keywords": [ + { + "fr": "Ernst Grünthal" + }, + { + "fr": "Film utilitaire" + }, + { + "fr": "Suisse" + }, + { + "fr": "Waldau" + }, + { + "fr": "cinéma" + }, + { + "fr": "enseignement" + }, + { + "fr": "médecine" + }, + { + "fr": "neurologie" + }, + { + "fr": "psychiatrie" + }, + { + "fr": "recherche" + } + ], + "name": "Cinéma et (neuro)psychiatrie en Suisse : autour de la collection Waldau (1920-1990)", + "shortcode": "0106", + "spatialCoverage": [ + { + "__type": "URL", + "type": "URL", + "url": "http://vocab.getty.edu/page/tgn/7011731", + "text": "Suisse" + }, + { + "__type": "URL", + "type": "URL", + "url": "http://vocab.getty.edu/page/tgn/7016845", + "text": "Pays-Bas" + }, + { + "__type": "URL", + "type": "URL", + "url": "http://vocab.getty.edu/page/tgn/1000080", + "text": "Italie" + }, + { + "__type": "URL", + "type": "URL", + "url": "http://vocab.getty.edu/page/tgn/7008591", + "text": "Grande-Bretagne" + }, + { + "__type": "URL", + "type": "URL", + "url": "http://vocab.getty.edu/page/tgn/7012149", + "text": "Etats-Unis" + }, + { + "__type": "URL", + "type": "URL", + "url": "http://vocab.getty.edu/page/tgn/1000070", + "text": "France" + }, + { + "__type": "URL", + "type": "URL", + "url": "http://vocab.getty.edu/page/tgn/7000084", + "text": "Allemagne" + } + ], + "startDate": "2021-06-01", + "temporalCoverage": [ + { + "de": "1920-1970", + "en": "1920-1970", + "fr": "1920-1970" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/Y9hvowDvRKy8Mkq5anCDnw", + "text": "Discover Project Data" + }, + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0106-dataset-000", + "__type": "Dataset", + "__createdAt": "1689255423435395000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0106-dataset-000", - "__type": "Dataset", - "__createdAt": "1689255423435395000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "fr": "La base de données vise principalement à rendre accessibles les archives papiers du Musée suisse de la psychiatrie (Berne) relatives à Ernst Grünthal (1894-1972), le psychiatre responsable de la majorité du corpus filmique (correspondant à la classe « Film ») analysé dans le projet – plus d’une centaine de courts et moyens métrages 16 mm montrant des patientes et des patients qui souffrent de troubles psychiques ou neurologiques (dépression, alcoolisme, schizophrénie, démence sénile, troubles mnésiques, troubles du langage, maladie de Parkinson, chorée de Huntington, etc.). Majoritairement en allemand, ces documents (regroupés sous la classe « [Archive papier] ») sont de nature très variée : articles scientifiques, correspondance, notes manuscrites, brochures, papillons, tapuscrits, planches didactiques, documents administratifs. Le modèle de données permet, outre la description des films, de renseigner l’implication des médecins (« Personnel soignant ») dans leur réalisation et fournit des informations sur les personnes (« Patient », « Personnel soignant »), les institutions (« Institutions », « Personne morale »), les dates, les lieux d’archivage, les objets (équipement médical par exemple regroupé sous la classe « Objet »). Les données collectées permettent de reconstituer le réseau de pratiques filmiques initiées par des psychiatres et des neurologues en Suisse, avec plusieurs centres névralgiques : Berne, Bâle, Zurich, Lausanne et Genève. Quelques noms de médecins se distinguent au sein de ce réseau : Ernst Grünthal, Theodor H. Spoerri, Hans Heimann, Michele Risso, Giorgio Pilleri, Maurice Rémy, Walter Rudolf Hess, Karl Kleist, Gustav E. Störring. \r La structure de la base de données a été définie pour permettre une exploration du corpus (en trouvant, par exemple, tous les documents relatifs à un médecin, une maladie ou à un médicament), les recoupements avec des données non filmiques et les comparaisons avec des productions connexes. À plus long terme, la base de données peut constituer un outil utile pour de futures recherches conduites par des chercheuses et chercheurs en histoire des sciences, histoire de la psychiatrie et histoire de la médecine, ainsi qu’à des praticiennes et praticiens dans le secteur de la santé mentale. \r Le modèle de données (classes, propriétés, vocabulaires contrôlés) a été élaboré à partir des documents. Les professions médicales et les pathologies ont été établies sur la base du thésaurus du MeSH : https://mesh.inserm.fr/FrenchMesh/index.htm)" - } - ], - "alternativeTitles": [ - { - "en": "Les collections Waldau" - } - ], - "accessConditions": "restricted", - "dateCreated": "2023-06-15", - "datePublished": "2025-06-01", - "additional": [ - { - "__type": "URL", - "type": "URL", - "url": "https://waldau.hypotheses.org/", - "text": "Le carnet de recherche Hypothèses.org" - } - ], - "howToCite": "Berton, M., Murtas, E., Tinguely, R., Rivoal, M., Jaouen, L., 2023, Cinéma et psychiatrie en Suisse : les collections Waldau [database] (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0106.", - "languages": [ - { - "fr": "Français" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2023-07-13", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0/", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0106-person-000", - "roles": [ - "Project Leader, Data Collector, Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0106-person-001", - "roles": [ - "Project Member, Data Collector, Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0106-person-002", - "roles": [ - "Project Member, Data Collector, Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0106-person-003", - "roles": [ - "Data Curator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0106-person-004", - "roles": [ - "Other" - ] - } - ], - "status": "Ongoing", - "title": "Cinéma et psychiatrie en Suisse : les collections Waldau", - "typeOfData": [ - "Image", - "Text" - ] + "fr": "La base de données vise principalement à rendre accessibles les archives papiers du Musée suisse de la psychiatrie (Berne) relatives à Ernst Grünthal (1894-1972), le psychiatre responsable de la majorité du corpus filmique (correspondant à la classe « Film ») analysé dans le projet – plus d’une centaine de courts et moyens métrages 16 mm montrant des patientes et des patients qui souffrent de troubles psychiques ou neurologiques (dépression, alcoolisme, schizophrénie, démence sénile, troubles mnésiques, troubles du langage, maladie de Parkinson, chorée de Huntington, etc.). Majoritairement en allemand, ces documents (regroupés sous la classe « [Archive papier] ») sont de nature très variée : articles scientifiques, correspondance, notes manuscrites, brochures, papillons, tapuscrits, planches didactiques, documents administratifs. Le modèle de données permet, outre la description des films, de renseigner l’implication des médecins (« Personnel soignant ») dans leur réalisation et fournit des informations sur les personnes (« Patient », « Personnel soignant »), les institutions (« Institutions », « Personne morale »), les dates, les lieux d’archivage, les objets (équipement médical par exemple regroupé sous la classe « Objet »). Les données collectées permettent de reconstituer le réseau de pratiques filmiques initiées par des psychiatres et des neurologues en Suisse, avec plusieurs centres névralgiques : Berne, Bâle, Zurich, Lausanne et Genève. Quelques noms de médecins se distinguent au sein de ce réseau : Ernst Grünthal, Theodor H. Spoerri, Hans Heimann, Michele Risso, Giorgio Pilleri, Maurice Rémy, Walter Rudolf Hess, Karl Kleist, Gustav E. Störring. \r La structure de la base de données a été définie pour permettre une exploration du corpus (en trouvant, par exemple, tous les documents relatifs à un médecin, une maladie ou à un médicament), les recoupements avec des données non filmiques et les comparaisons avec des productions connexes. À plus long terme, la base de données peut constituer un outil utile pour de futures recherches conduites par des chercheuses et chercheurs en histoire des sciences, histoire de la psychiatrie et histoire de la médecine, ainsi qu’à des praticiennes et praticiens dans le secteur de la santé mentale. \r Le modèle de données (classes, propriétés, vocabulaires contrôlés) a été élaboré à partir des documents. Les professions médicales et les pathologies ont été établies sur la base du thésaurus du MeSH : https://mesh.inserm.fr/FrenchMesh/index.htm)" } - ], - "persons": [ + ], + "alternativeTitles": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0106-person-000", - "__type": "Person", - "__createdAt": "1689255423702028000", - "__createdBy": "dsp-metadata-gui", - "email": "Mireille.Berton@unil.ch", - "familyNames": [ - "Berton" - ], - "givenNames": [ - "Mireille" - ], - "jobTitles": [ - "Senior lecturer" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0106-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-4701-7670", - "text": "ORCID URL: https://orcid.org/0000-0003-4701-7670" - } - ] + "en": "Les collections Waldau" + } + ], + "accessConditions": "restricted", + "dateCreated": "2023-06-15", + "datePublished": "2025-06-01", + "additional": [ + { + "__type": "URL", + "type": "URL", + "url": "https://waldau.hypotheses.org/", + "text": "Le carnet de recherche Hypothèses.org" + } + ], + "howToCite": "Berton, M., Murtas, E., Tinguely, R., Rivoal, M., Jaouen, L., 2023, Cinéma et psychiatrie en Suisse : les collections Waldau [database] (DaSCH), http://ark.dasch.swiss/ark:/72163/1/0106.", + "languages": [ + { + "fr": "Français" + } + ], + "licenses": [ + { + "__type": "License", + "date": "2023-07-13", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0106-person-000", + "roles": [ + "Project Leader, Data Collector, Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0106-person-001", - "__type": "Person", - "__createdAt": "1689255423701843000", - "__createdBy": "dsp-metadata-gui", - "email": "Elodie.Murtas@unil.ch", - "familyNames": [ - "Murtas" - ], - "givenNames": [ - "Elodie" - ], - "jobTitles": [ - "Post-doctoral researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0106-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0106-person-001", + "roles": [ + "Project Member, Data Collector, Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0106-person-002", - "__type": "Person", - "__createdAt": "1689255423701884000", - "__createdBy": "dsp-metadata-gui", - "email": "Raphael.Tinguely@unil.ch", - "familyNames": [ - "Tinguely" - ], - "givenNames": [ - "Raphaël" - ], - "jobTitles": [ - "PhD student" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0106-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0106-person-002", + "roles": [ + "Project Member, Data Collector, Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0106-person-003", - "__type": "Person", - "__createdAt": "1689255423701922000", - "__createdBy": "dsp-metadata-gui", - "email": "Marion.rivoal@unil.ch", - "familyNames": [ - "Rivoal" - ], - "givenNames": [ - "Marion" - ], - "jobTitles": [ - "Researcher manager" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0106-organization-000" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0003-4185-7169", - "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" - } - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0106-person-003", + "roles": [ + "Data Curator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0106-person-004", - "__type": "Person", - "__createdAt": "1689255423701985000", - "__createdBy": "dsp-metadata-gui", - "email": "loic.jaouen@unil.ch", - "familyNames": [ - "Jaouen" - ], - "givenNames": [ - "Loïc" - ], - "jobTitles": [ - "IT support" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0106-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0106-person-004", + "roles": [ + "Other" + ] } - ], - "organizations": [ + ], + "status": "Ongoing", + "title": "Cinéma et psychiatrie en Suisse : les collections Waldau", + "typeOfData": [ + "Image", + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0106-person-000", + "__type": "Person", + "__createdAt": "1689255423702028000", + "__createdBy": "dsp-metadata-gui", + "email": "Mireille.Berton@unil.ch", + "familyNames": [ + "Berton" + ], + "givenNames": [ + "Mireille" + ], + "jobTitles": [ + "Senior lecturer" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0106-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0106-organization-001", - "__type": "Organization", - "__createdAt": "1689255423702091000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3", - "postalCode": "3001", - "locality": "Berne", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } - }, - { - "__id": "http://ns.dasch.swiss/repository#dsp-0106-organization-000", - "__type": "Organization", - "__createdAt": "1689255423765155000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "", - "postalCode": "1015", - "locality": "Lausanne", - "country": "Switzerland" - }, - "name": "Université de Lausanne", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unil.ch/", - "text": "https://www.unil.ch/" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4701-7670", + "text": "ORCID URL: https://orcid.org/0000-0003-4701-7670" } - ], - "grants": [ + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0106-person-001", + "__type": "Person", + "__createdAt": "1689255423701843000", + "__createdBy": "dsp-metadata-gui", + "email": "Elodie.Murtas@unil.ch", + "familyNames": [ + "Murtas" + ], + "givenNames": [ + "Elodie" + ], + "jobTitles": [ + "Post-doctoral researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0106-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0106-person-002", + "__type": "Person", + "__createdAt": "1689255423701884000", + "__createdBy": "dsp-metadata-gui", + "email": "Raphael.Tinguely@unil.ch", + "familyNames": [ + "Tinguely" + ], + "givenNames": [ + "Raphaël" + ], + "jobTitles": [ + "PhD student" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0106-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0106-person-003", + "__type": "Person", + "__createdAt": "1689255423701922000", + "__createdBy": "dsp-metadata-gui", + "email": "Marion.rivoal@unil.ch", + "familyNames": [ + "Rivoal" + ], + "givenNames": [ + "Marion" + ], + "jobTitles": [ + "Researcher manager" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0106-organization-000" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0106-grant-000", - "__type": "Grant", - "__createdAt": "1689255423848986000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0106-organization-001" - ], - "name": "Project funding", - "number": "200598", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/200598", - "text": "https://data.snf.ch/grants/grant/200598" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0003-4185-7169", + "text": "ORCID URL: https://orcid.org/0000-0003-4185-7169" } - ] + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0106-person-004", + "__type": "Person", + "__createdAt": "1689255423701985000", + "__createdBy": "dsp-metadata-gui", + "email": "loic.jaouen@unil.ch", + "familyNames": [ + "Jaouen" + ], + "givenNames": [ + "Loïc" + ], + "jobTitles": [ + "IT support" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0106-organization-000" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0106-organization-001", + "__type": "Organization", + "__createdAt": "1689255423702091000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3", + "postalCode": "3001", + "locality": "Berne", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0106-organization-000", + "__type": "Organization", + "__createdAt": "1689255423765155000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "", + "postalCode": "1015", + "locality": "Lausanne", + "country": "Switzerland" + }, + "name": "Université de Lausanne", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unil.ch/", + "text": "https://www.unil.ch/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0106-grant-000", + "__type": "Grant", + "__createdAt": "1689255423848986000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0106-organization-001" + ], + "name": "Project funding", + "number": "200598", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/200598", + "text": "https://data.snf.ch/grants/grant/200598" + } + } + ] } \ No newline at end of file diff --git a/data/json/woposs.json b/data/json/woposs.json index a535f962..13fc3128 100644 --- a/data/json/woposs.json +++ b/data/json/woposs.json @@ -1,625 +1,656 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-woposs-project", - "__type": "Project", - "howToCite": "The WoPoss modality corpus. University of Neuchâtel. SNSF. Distributed by DaSCH.", - "teaserText": "The WoPoss project aims at reconstructing the evolution of modal meanings in Latin from the prehistory of the language up to the 7th century CE, through a linguistically annotated, diachronic corpus.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-woposs-dataset-000" - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-woposs-person-000", - "dataManagementPlan": { - "__type": "DataManagementPlan", - "available": false - }, - "description": { - "en": "The SNSF-funded project «A world of possibilities. Modal pathways over an extra-long period of time: the diachrony of modality in the Latin language» (WoPoss) aims at reconstructing the evolution of modal meanings and constructions from the prehistory of the Latin language up to the 7th century CE. The main milestone of the project is a linguistically annotated, diachronic corpus in which a selection of modal markers has received a fine-grained semantic annotation, according to the WoPoss guidelines for the annotation of modality (DOI 10.5281/zenodo.3560950)." - }, - "disciplines": [ - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/5702", - "text": "Diachronic linguistics" - }, - { - "__type": "URL", - "type": "Skos", - "url": "http://skos.um.es/unesco6/570508", - "text": "Semantics" - }, - { - "__type": "URL", - "type": "Skos", - "url": "https://skos.um.es/unesco6/550510", - "text": "Philology" - } - ], - "endDate": "2025-01-31", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-woposs-organization-001" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-woposs-grant-000", - "http://ns.dasch.swiss/repository#dsp-woposs-grant-001" - ], - "keywords": [ - { - "en": "Diachronic semantics" - }, - { - "en": "Modality" - }, - { - "en": "Latin" - }, - { - "en": "Digital Humanities" - }, - { - "en": "Computational methods and tools" - }, - { - "en": "Corpus-based approach" - }, - { - "en": "Semantic annotation" - } - ], - "name": "WoPoss: A world of possibilities. Modal pathways over an extra-long period of time: the diachrony of modality in the Latin language", - "shortcode": "0843", - "publications": [ - { - "text": "Dell'Oro, Francesca (2023, accepted). «From motion to possibility: Latin (ne)queo ‘I can(not)’ in the light of philological and typological data». Indogermanische Forschungen." - }, - { - "text": "Dell'Oro, Francesca (2023, accepted). «A digital tool to draw interactive maps: Pygmalion and the teaching/learning of modal verbs». Cahiers de l'APLIUT. Special issue Du griffonnage aux cartes mentales: considérer les représentations (icono)graphiques dans l’enseignement-apprentissage de l’anglais." - }, - { - "text": "McGillivray, Barbara; Kondakova, Daria; Burman, Annie; Dell’Oro, Francesca; Bermúdez Sabel, Helena; Marongiu, Paola; Márquez Cruz, Manuel (2022). “A new corpus annotation framework for Latin diachronic lexical semantics”. Journal of Latin Linguistics 21(1), 47-105.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.1515/joll-2022-2007", - "text": "DOI: 10.1515/joll-2022-2007" - } - ] - }, - { - "text": "Marongiu, Paola; Dell’Oro, Francesca (2022). “From static to interactive maps: drawing diachronic maps of (Latin) modality with Pygmalion”. Journal of Open Humanities Data 8, 1-14.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.5334/johd.58.", - "text": "DOI: 10.5334/johd.58." - } - ] - }, - { - "text": "Dell’Oro, Francesca (2022). “Verbs of motion and intermediate source domains of modality: the understudied case of It. occorrere ‘to be necessary, to be needed'”. Folia Linguistica Historica 43 (1), 1-33.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.1515/flin-2022-201", - "text": "DOI: 10.1515/flin-2022-201" - } - ] - }, - { - "text": "Dell’Oro, Francesca (2020). “L’expression de la modalité par des adjectifs: une comparaison entre l’adjectif grec ancien en -ιμος et l’adjectif latin en -bilis”. ACME 72 (2/2019), 193-209.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.13130/2282-0035/13679", - "text": "DOI: 10.13130/2282-0035/13679" - } - ] - }, - { - "text": "Bermúdez Sabel, Helena (2019). “Digital tools for semantic annotation: the WoPoss use case”. Bulletin de linguistique et des sciences du langage 30, 12–37." - }, - { - "text": "Dell'Oro, Francesca (2023, accepted). «Corpus parallèles et apprentissage des langues anciennes: les Évangiles comme corpus multilingue pour apprendre le grec ancien et le latin (avec un focus sur la modalité)» in La traduction et son processus didactique, edited by Daria Zalesskaya, Cahiers du CLSL - Lausanne." - }, - { - "text": "Dell’Oro, Francesca; Bermúdez Sabel, Helena; Marongiu, Paola (2022). “Pygmalion in the classroom: a tool to draw lexicographic diachronic maps and their application to didactics” in La lexicografía didáctica: Reflexiones y recursos orientados al aprendizaje de lenguas, edited by Manuel Márquez Cruz, and Viviane Ferreira Martins. Madrid: Guillermo Escolar Editor, 35–48. [Preprint:", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://woposs.unine.ch/outputs/DellOro_BermudezSabel_Marongiu_Pygmalion_Lexicografia.pdf", - "text": "https://woposs.unine.ch/outputs/DellOro_BermudezSabel_Marongiu_Pygmalion_Lexicografia.pdf]" - } - ] - }, - { - "text": "Dell’Oro, Francesca (2023, forthcoming). “The French construction ‘j’arrive à + INF’ at the borders of modality. An exploratory survey of a journalistic corpus” in Ubi homo, ibi lingua. Studi in onore di Maria Patrizia Bologna, edited by Laura Biondi, Francesco Dedé, Andrea Scala, and Massimo Vai. Alessandria: Dell’Orso, 427-445." - }, - { - "text": "Dell’Oro, Francesca (2022). “Kagan, O. (2020). The Semantics of Case. Key Topics in Semantics and Pragmatics. Cambridge: Cambridge University Press. LINGUIST List, 33.2004. Jun 15, 2022.", - "url": [ - { - "__type": "URL", - "type": "URL", - "url": "https://linguistlist.org/issues/33.2004", - "text": "https://linguistlist.org/issues/33.2004" - } - ] - }, - { - "text": "Dell’Oro, Francesca; Rossari, Corinne (ed.). “Theoretical issues in the light of the interaction between quantitative and qualitative data: recent approaches and tendencies”. Thematic issue of TRANEL (Travaux neuchâtelois de linguistique)." - }, - { - "text": "Bermúdez Sabel, Helena; Dell’Oro, Francesca; Montrichard, Cyrielle; Rossari, Corinne (2022). “Setting up bilingual comparable corpora with non-contemporary languages”. Proceedings of the LREC 2022 15th Workshop on building and using comparable corpora . Edited by R. Rapp, P. Zweigenhaum, S. Sharoff. Paris: European Language Resources Association (ELRA), 52–60." - }, - { - "text": "Dell’Oro, Francesca; Bermúdez Sabel, Helena; Marongiu, Paola (2020). “Implemented to be shared: the WoPoss annotation of semantic modality in a Latin diachronic corpus”. Sharing the Experience: Workflows for the Digital Humanities. Proceedings of the DARIAH-CH Workshop 2019. December 5-6, 2019. Neuchâtel, Switzerland." - }, - { - "text": "McGillivray, Barbara; Kondakova, Daria; Bermúdez Sabel, Helena (2022). Code for analysing the semantic annotation of Latin data from SemEval 2020 task 1. Zenodo.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.5281/zenodo.6325749.", - "text": "DOI: 10.5281/zenodo.6325749." - } - ] - }, - { - "text": "Dell’Oro, Francesca; Rimaz, Loris; Bermúdez Sabel, Helena; Marongiu, Paola (2021). Pygmalion-colour 1.0. A tool to draw interactive and diachronic maps . WoPoss. A World of Possibilities. Swiss National Science Foundation." - }, - { - "text": "Dell’Oro, Francesca; Rimaz, Loris; Bermúdez Sabel, Helena; Marongiu, Paola (2020). Pygmalion-simple 1.0. A tool to draw interactive and diachronic maps of semantics . WoPoss. A World of Possibilities. Swiss National Science Foundation." - }, - { - "text": "Dell’Oro, Francesca; Rimaz, Loris; Bermúdez Sabel, Helena; Marongiu, Paola (2020). Pygmalion-modal 1.0. A tool to draw interactive and diachronic maps of modality . WoPoss. A World of Possibilities. Swiss National Science Foundation." - }, - { - "text": "Dell'Oro, Francesca; Bermúdez Sabel, Helena; Marongiu, Paola & Reymond, Séverine (2022). Sample of the WoPoss corpus (28th July 2022). Zenodo. Swiss National Science Foundation.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.5281/zenodo.6925274.", - "text": "DOI: 10.5281/zenodo.6925274." - } - ] - }, - { - "text": "Marongiu, Paola & Dell'Oro, Francesca. Interactive diachronic maps of the WoPoss modal markers. Schweizerischer Nationalfonds zur Förderung der wissenschaftlichen Forschung - SNF, Historical linguistics – Institut des sciences du langage - ISLa. Distributed by SWISSUbase, Lausanne, 2022.", - "url": [ - { - "__type": "URL", - "type": "DOI", - "url": "https://doi.org/10.48656/qk1e-kk67.", - "text": "DOI: 10.48656/qk1e-kk67." - } - ] - }, - { - "text": "Dell’Oro, Francesca (2021). “Annotating (ancient) texts and learning (ancient) languages: a possible connection”. LexTech Institute. October 5, 2021." - } - ], - "spatialCoverage": [ - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p08m57hmxmp", - "text": "Classical World" - }, - { - "__type": "URL", - "type": "Periodo", - "url": "http://n2t.net/ark:/99152/p08m57h8zmq", - "text": "Medieval" - } - ], - "startDate": "2019-02-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Pleiades", - "url": "https://pleiades.stoa.org/places/1052", - "text": "Italia" - }, - { - "__type": "URL", - "type": "Pleiades", - "url": "https://pleiades.stoa.org/places/993", - "text": "Gallia" - }, - { - "__type": "URL", - "type": "Pleiades", - "url": "https://pleiades.stoa.org/places/1027", - "text": "Hispania" - }, - { - "__type": "URL", - "type": "Pleiades", - "url": "https://pleiades.stoa.org/places/775", - "text": "Africa (region)" - }, - { - "__type": "URL", - "type": "Pleiades", - "url": "https://pleiades.stoa.org/places/207065", - "text": "Dacia" - }, - { - "__type": "URL", - "type": "Pleiades", - "url": "https://pleiades.stoa.org/places/981522", - "text": "Dalmatia (province)" - }, - { - "__type": "URL", - "type": "Pleiades", - "url": "https://pleiades.stoa.org/places/520985", - "text": "Byzantium" - }, - { - "__type": "URL", - "type": "Pleiades", - "url": "https://pleiades.stoa.org/places/981513", - "text": "Britannia (province)" - }, - { - "__type": "URL", - "type": "Pleiades", - "url": "https://pleiades.stoa.org/places/20487", - "text": "Hibernia" - } - ], - "url": { + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-woposs-project", + "__type": "Project", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "The WoPoss modality corpus. University of Neuchâtel. SNSF. Distributed by DaSCH.", + "teaserText": "The WoPoss project aims at reconstructing the evolution of modal meanings in Latin from the prehistory of the language up to the 7th century CE, through a linguistically annotated, diachronic corpus.", + "datasets": [ + "http://ns.dasch.swiss/repository#dsp-woposs-dataset-000" + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-woposs-person-000", + "dataManagementPlan": { + "__type": "DataManagementPlan", + "available": false + }, + "description": { + "en": "The SNSF-funded project «A world of possibilities. Modal pathways over an extra-long period of time: the diachrony of modality in the Latin language» (WoPoss) aims at reconstructing the evolution of modal meanings and constructions from the prehistory of the Latin language up to the 7th century CE. The main milestone of the project is a linguistically annotated, diachronic corpus in which a selection of modal markers has received a fine-grained semantic annotation, according to the WoPoss guidelines for the annotation of modality (DOI 10.5281/zenodo.3560950)." + }, + "disciplines": [ + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/5702", + "text": "Diachronic linguistics" + }, + { + "__type": "URL", + "type": "Skos", + "url": "http://skos.um.es/unesco6/570508", + "text": "Semantics" + }, + { + "__type": "URL", + "type": "Skos", + "url": "https://skos.um.es/unesco6/550510", + "text": "Philology" + } + ], + "endDate": "2025-01-31", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-woposs-organization-001" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-woposs-grant-000", + "http://ns.dasch.swiss/repository#dsp-woposs-grant-001" + ], + "keywords": [ + { + "en": "Diachronic semantics" + }, + { + "en": "Modality" + }, + { + "en": "Latin" + }, + { + "en": "Digital Humanities" + }, + { + "en": "Computational methods and tools" + }, + { + "en": "Corpus-based approach" + }, + { + "en": "Semantic annotation" + } + ], + "name": "WoPoss: A world of possibilities. Modal pathways over an extra-long period of time: the diachrony of modality in the Latin language", + "shortcode": "0843", + "publications": [ + { + "text": "Dell'Oro, Francesca (2023, accepted). «From motion to possibility: Latin (ne)queo ‘I can(not)’ in the light of philological and typological data». Indogermanische Forschungen." + }, + { + "text": "Dell'Oro, Francesca (2023, accepted). «A digital tool to draw interactive maps: Pygmalion and the teaching/learning of modal verbs». Cahiers de l'APLIUT. Special issue Du griffonnage aux cartes mentales: considérer les représentations (icono)graphiques dans l’enseignement-apprentissage de l’anglais." + }, + { + "text": "McGillivray, Barbara; Kondakova, Daria; Burman, Annie; Dell’Oro, Francesca; Bermúdez Sabel, Helena; Marongiu, Paola; Márquez Cruz, Manuel (2022). “A new corpus annotation framework for Latin diachronic lexical semantics”. Journal of Latin Linguistics 21(1), 47-105.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.1515/joll-2022-2007", + "text": "DOI: 10.1515/joll-2022-2007" + } + ] + }, + { + "text": "Marongiu, Paola; Dell’Oro, Francesca (2022). “From static to interactive maps: drawing diachronic maps of (Latin) modality with Pygmalion”. Journal of Open Humanities Data 8, 1-14.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.5334/johd.58.", + "text": "DOI: 10.5334/johd.58." + } + ] + }, + { + "text": "Dell’Oro, Francesca (2022). “Verbs of motion and intermediate source domains of modality: the understudied case of It. occorrere ‘to be necessary, to be needed'”. Folia Linguistica Historica 43 (1), 1-33.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.1515/flin-2022-201", + "text": "DOI: 10.1515/flin-2022-201" + } + ] + }, + { + "text": "Dell’Oro, Francesca (2020). “L’expression de la modalité par des adjectifs: une comparaison entre l’adjectif grec ancien en -ιμος et l’adjectif latin en -bilis”. ACME 72 (2/2019), 193-209.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.13130/2282-0035/13679", + "text": "DOI: 10.13130/2282-0035/13679" + } + ] + }, + { + "text": "Bermúdez Sabel, Helena (2019). “Digital tools for semantic annotation: the WoPoss use case”. Bulletin de linguistique et des sciences du langage 30, 12–37." + }, + { + "text": "Dell'Oro, Francesca (2023, accepted). «Corpus parallèles et apprentissage des langues anciennes: les Évangiles comme corpus multilingue pour apprendre le grec ancien et le latin (avec un focus sur la modalité)» in La traduction et son processus didactique, edited by Daria Zalesskaya, Cahiers du CLSL - Lausanne." + }, + { + "text": "Dell’Oro, Francesca; Bermúdez Sabel, Helena; Marongiu, Paola (2022). “Pygmalion in the classroom: a tool to draw lexicographic diachronic maps and their application to didactics” in La lexicografía didáctica: Reflexiones y recursos orientados al aprendizaje de lenguas, edited by Manuel Márquez Cruz, and Viviane Ferreira Martins. Madrid: Guillermo Escolar Editor, 35–48. [Preprint:", + "url": [ + { "__type": "URL", "type": "URL", - "url": "https://woposs.unine.ch/", - "text": "External Project Website" - } + "url": "https://woposs.unine.ch/outputs/DellOro_BermudezSabel_Marongiu_Pygmalion_Lexicografia.pdf", + "text": "https://woposs.unine.ch/outputs/DellOro_BermudezSabel_Marongiu_Pygmalion_Lexicografia.pdf]" + } + ] + }, + { + "text": "Dell’Oro, Francesca (2023, forthcoming). “The French construction ‘j’arrive à + INF’ at the borders of modality. An exploratory survey of a journalistic corpus” in Ubi homo, ibi lingua. Studi in onore di Maria Patrizia Bologna, edited by Laura Biondi, Francesco Dedé, Andrea Scala, and Massimo Vai. Alessandria: Dell’Orso, 427-445." + }, + { + "text": "Dell’Oro, Francesca (2022). “Kagan, O. (2020). The Semantics of Case. Key Topics in Semantics and Pragmatics. Cambridge: Cambridge University Press. LINGUIST List, 33.2004. Jun 15, 2022.", + "url": [ + { + "__type": "URL", + "type": "URL", + "url": "https://linguistlist.org/issues/33.2004", + "text": "https://linguistlist.org/issues/33.2004" + } + ] + }, + { + "text": "Dell’Oro, Francesca; Rossari, Corinne (ed.). “Theoretical issues in the light of the interaction between quantitative and qualitative data: recent approaches and tendencies”. Thematic issue of TRANEL (Travaux neuchâtelois de linguistique)." + }, + { + "text": "Bermúdez Sabel, Helena; Dell’Oro, Francesca; Montrichard, Cyrielle; Rossari, Corinne (2022). “Setting up bilingual comparable corpora with non-contemporary languages”. Proceedings of the LREC 2022 15th Workshop on building and using comparable corpora . Edited by R. Rapp, P. Zweigenhaum, S. Sharoff. Paris: European Language Resources Association (ELRA), 52–60." + }, + { + "text": "Dell’Oro, Francesca; Bermúdez Sabel, Helena; Marongiu, Paola (2020). “Implemented to be shared: the WoPoss annotation of semantic modality in a Latin diachronic corpus”. Sharing the Experience: Workflows for the Digital Humanities. Proceedings of the DARIAH-CH Workshop 2019. December 5-6, 2019. Neuchâtel, Switzerland." + }, + { + "text": "McGillivray, Barbara; Kondakova, Daria; Bermúdez Sabel, Helena (2022). Code for analysing the semantic annotation of Latin data from SemEval 2020 task 1. Zenodo.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.5281/zenodo.6325749.", + "text": "DOI: 10.5281/zenodo.6325749." + } + ] + }, + { + "text": "Dell’Oro, Francesca; Rimaz, Loris; Bermúdez Sabel, Helena; Marongiu, Paola (2021). Pygmalion-colour 1.0. A tool to draw interactive and diachronic maps . WoPoss. A World of Possibilities. Swiss National Science Foundation." + }, + { + "text": "Dell’Oro, Francesca; Rimaz, Loris; Bermúdez Sabel, Helena; Marongiu, Paola (2020). Pygmalion-simple 1.0. A tool to draw interactive and diachronic maps of semantics . WoPoss. A World of Possibilities. Swiss National Science Foundation." + }, + { + "text": "Dell’Oro, Francesca; Rimaz, Loris; Bermúdez Sabel, Helena; Marongiu, Paola (2020). Pygmalion-modal 1.0. A tool to draw interactive and diachronic maps of modality . WoPoss. A World of Possibilities. Swiss National Science Foundation." + }, + { + "text": "Dell'Oro, Francesca; Bermúdez Sabel, Helena; Marongiu, Paola & Reymond, Séverine (2022). Sample of the WoPoss corpus (28th July 2022). Zenodo. Swiss National Science Foundation.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.5281/zenodo.6925274.", + "text": "DOI: 10.5281/zenodo.6925274." + } + ] + }, + { + "text": "Marongiu, Paola & Dell'Oro, Francesca. Interactive diachronic maps of the WoPoss modal markers. Schweizerischer Nationalfonds zur Förderung der wissenschaftlichen Forschung - SNF, Historical linguistics – Institut des sciences du langage - ISLa. Distributed by SWISSUbase, Lausanne, 2022.", + "url": [ + { + "__type": "URL", + "type": "DOI", + "url": "https://doi.org/10.48656/qk1e-kk67.", + "text": "DOI: 10.48656/qk1e-kk67." + } + ] + }, + { + "text": "Dell’Oro, Francesca (2021). “Annotating (ancient) texts and learning (ancient) languages: a possible connection”. LexTech Institute. October 5, 2021." + } + ], + "spatialCoverage": [ + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p08m57hmxmp", + "text": "Classical World" + }, + { + "__type": "URL", + "type": "Periodo", + "url": "http://n2t.net/ark:/99152/p08m57h8zmq", + "text": "Medieval" + } + ], + "startDate": "2019-02-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Pleiades", + "url": "https://pleiades.stoa.org/places/1052", + "text": "Italia" + }, + { + "__type": "URL", + "type": "Pleiades", + "url": "https://pleiades.stoa.org/places/993", + "text": "Gallia" + }, + { + "__type": "URL", + "type": "Pleiades", + "url": "https://pleiades.stoa.org/places/1027", + "text": "Hispania" + }, + { + "__type": "URL", + "type": "Pleiades", + "url": "https://pleiades.stoa.org/places/775", + "text": "Africa (region)" + }, + { + "__type": "URL", + "type": "Pleiades", + "url": "https://pleiades.stoa.org/places/207065", + "text": "Dacia" + }, + { + "__type": "URL", + "type": "Pleiades", + "url": "https://pleiades.stoa.org/places/981522", + "text": "Dalmatia (province)" + }, + { + "__type": "URL", + "type": "Pleiades", + "url": "https://pleiades.stoa.org/places/520985", + "text": "Byzantium" + }, + { + "__type": "URL", + "type": "Pleiades", + "url": "https://pleiades.stoa.org/places/981513", + "text": "Britannia (province)" + }, + { + "__type": "URL", + "type": "Pleiades", + "url": "https://pleiades.stoa.org/places/20487", + "text": "Hibernia" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://woposs.unine.ch/", + "text": "External Project Website" }, - "datasets": [ + "status": "ongoing" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-woposs-dataset-000", + "__type": "Dataset", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-woposs-dataset-000", - "__type": "Dataset", - "abstracts": [ - { - "en": "A linguistically annotated diachronic corpus of the Latin language (3rd BCE – 7th CE). The corpus enables the investigation of modal meanings and constructions in the history of the Latin language. The texts have been annotated automatically. The modal passages have been manually annotated by the annotators of the WoPoss team (for a more precise responsibility description, see each file)." - } - ], - "accessConditions": "open", - "additional": [ - { - "en": "https://github.com/WoPoss-project/WoPoss-corpus" - } - ], - "howToCite": "The WoPoss modality corpus. University of Neuchâtel. SNSF. Distributed by DaSCH.", - "languages": [ - { - "en": "Latin" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2023-02-15", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-sa/4.0/", - "text": "CC BY-SA 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-000", - "roles": [ - "Principal investigator", - "annotator", - "annotation reviewer" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-001", - "roles": [ - "Developer", - "annotator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-002", - "roles": [ - "Annotator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-003", - "roles": [ - "Annotator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-004", - "roles": [ - "Annotator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-005", - "roles": [ - "Annotator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-006", - "roles": [ - "Annotator" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-007", - "roles": [ - "Annotator" - ] - } - ], - "status": "Ongoing", - "title": "The WoPoss modality corpus", - "typeOfData": [ - "XML" - ] + "en": "A linguistically annotated diachronic corpus of the Latin language (3rd BCE – 7th CE). The corpus enables the investigation of modal meanings and constructions in the history of the Latin language. The texts have been annotated automatically. The modal passages have been manually annotated by the annotators of the WoPoss team (for a more precise responsibility description, see each file)." } - ], - "persons": [ + ], + "accessConditions": "open", + "additional": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-000", - "__type": "Person", - "email": "francesca.delloro@unine.ch", - "familyNames": [ - "Dell’Oro" - ], - "givenNames": [ - "Francesca" - ], - "jobTitles": [ - "Assistant Professor" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-woposs-organization-002" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-8343-356X", - "text": "ORCID URL: https://orcid.org/0000-0002-8343-356X" - } - ] - }, + "en": "https://github.com/WoPoss-project/WoPoss-corpus" + } + ], + "howToCite": "The WoPoss modality corpus. University of Neuchâtel. SNSF. Distributed by DaSCH.", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-001", - "__type": "Person", - "familyNames": [ - "Bermúdez Sabel" - ], - "givenNames": [ - "Helena" - ], - "jobTitles": [ - "Postdoctoral researcher" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-woposs-organization-002" - ] - }, + "en": "Latin" + } + ], + "licenses": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-002", - "__type": "Person", - "familyNames": [ - "Marongiu" - ], - "givenNames": [ - "Paola" - ], - "jobTitles": [ - "PhD student", - "project assistant" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-woposs-organization-002" - ], - "authorityRefs": [ - { - "__type": "URL", - "type": "ORCID", - "url": "https://orcid.org/0000-0002-5060-3307", - "text": "ORCID URL: https://orcid.org/0000-0002-5060-3307" - } - ] - }, + "__type": "License", + "date": "2023-02-15", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-sa/4.0/", + "text": "CC BY-SA 4.0" + } + } + ], + "attributions": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-003", - "__type": "Person", - "familyNames": [ - "Reymond" - ], - "givenNames": [ - "Séverine" - ], - "jobTitles": [ - "Student assistant" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-woposs-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-000", + "roles": [ + "Principal investigator", + "annotator", + "annotation reviewer" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-004", - "__type": "Person", - "familyNames": [ - "Graa" - ], - "givenNames": [ - "Maël" - ], - "jobTitles": [ - "Student assistant" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-woposs-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-001", + "roles": [ + "Developer", + "annotator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-005", - "__type": "Person", - "familyNames": [ - "von Kaenel" - ], - "givenNames": [ - "Thomas" - ], - "jobTitles": [ - "Student assistant" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-woposs-organization-000" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-002", + "roles": [ + "Annotator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-006", - "__type": "Person", - "familyNames": [ - "Cappiello" - ], - "givenNames": [ - "Célia" - ], - "jobTitles": [ - "Student assistant" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-woposs-organization-002" - ] + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-003", + "roles": [ + "Annotator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-007", - "__type": "Person", - "familyNames": [ - "Marquis" - ], - "givenNames": [ - "Emma" - ], - "jobTitles": [ - "Student assistant" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-woposs-organization-002" - ] - } - ], - "organizations": [ + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-004", + "roles": [ + "Annotator" + ] + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-woposs-organization-002", - "__type": "Organization", - "address": { - "__type": "Address", - "street": "", - "postalCode": "", - "locality": "", - "country": "" - }, - "name": "Université de Neuchâtel", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://www.unine.ch", - "text": "https://www.unine.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-005", + "roles": [ + "Annotator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-woposs-organization-001", - "__type": "Organization", - "address": { - "__type": "Address", - "street": "Wildhainweg 3 Postfach", - "postalCode": "3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch/", - "text": "http://www.snf.ch/" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-006", + "roles": [ + "Annotator" + ] }, { - "__id": "http://ns.dasch.swiss/repository#dsp-woposs-organization-000", - "__type": "Organization", - "address": { - "__type": "Address", - "street": "", - "postalCode": "", - "locality": "", - "country": "" - }, - "name": "Université de Lausanne", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.unil.ch", - "text": "http://www.unil.ch" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-woposs-person-007", + "roles": [ + "Annotator" + ] } - ], - "grants": [ + ], + "status": "Ongoing", + "title": "The WoPoss modality corpus", + "typeOfData": [ + "XML" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-000", + "__type": "Person", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "email": "francesca.delloro@unine.ch", + "familyNames": [ + "Dell’Oro" + ], + "givenNames": [ + "Francesca" + ], + "jobTitles": [ + "Assistant Professor" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-woposs-organization-002" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-woposs-grant-000", - "__type": "Grant", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-woposs-organization-001" - ], - "name": "SNSF Professorships", - "number": "176778", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/176778", - "text": "https://data.snf.ch/grants/grant/176778" - } - }, + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-8343-356X", + "text": "ORCID URL: https://orcid.org/0000-0002-8343-356X" + } + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-001", + "__type": "Person", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Bermúdez Sabel" + ], + "givenNames": [ + "Helena" + ], + "jobTitles": [ + "Postdoctoral researcher" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-woposs-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-002", + "__type": "Person", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Marongiu" + ], + "givenNames": [ + "Paola" + ], + "jobTitles": [ + "PhD student", + "project assistant" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-woposs-organization-002" + ], + "authorityRefs": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-woposs-grant-001", - "__type": "Grant", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-woposs-organization-001" - ], - "name": "SNSF Professorships", - "number": "214102", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/214102", - "text": "https://data.snf.ch/grants/grant/214102" - } + "__type": "URL", + "type": "ORCID", + "url": "https://orcid.org/0000-0002-5060-3307", + "text": "ORCID URL: https://orcid.org/0000-0002-5060-3307" } - ] -} + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-003", + "__type": "Person", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Reymond" + ], + "givenNames": [ + "Séverine" + ], + "jobTitles": [ + "Student assistant" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-woposs-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-004", + "__type": "Person", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Graa" + ], + "givenNames": [ + "Maël" + ], + "jobTitles": [ + "Student assistant" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-woposs-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-005", + "__type": "Person", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "von Kaenel" + ], + "givenNames": [ + "Thomas" + ], + "jobTitles": [ + "Student assistant" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-woposs-organization-000" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-006", + "__type": "Person", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Cappiello" + ], + "givenNames": [ + "Célia" + ], + "jobTitles": [ + "Student assistant" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-woposs-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-woposs-person-007", + "__type": "Person", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Marquis" + ], + "givenNames": [ + "Emma" + ], + "jobTitles": [ + "Student assistant" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-woposs-organization-002" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-woposs-organization-002", + "__type": "Organization", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "", + "postalCode": "", + "locality": "", + "country": "" + }, + "name": "Université de Neuchâtel", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://www.unine.ch", + "text": "https://www.unine.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-woposs-organization-001", + "__type": "Organization", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3 Postfach", + "postalCode": "3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch/", + "text": "http://www.snf.ch/" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-woposs-organization-000", + "__type": "Organization", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "", + "postalCode": "", + "locality": "", + "country": "" + }, + "name": "Université de Lausanne", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.unil.ch", + "text": "http://www.unil.ch" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-woposs-grant-000", + "__type": "Grant", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-woposs-organization-001" + ], + "name": "SNSF Professorships", + "number": "176778", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/176778", + "text": "https://data.snf.ch/grants/grant/176778" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-woposs-grant-001", + "__type": "Grant", + "__createdAt": "1676912016678070000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-woposs-organization-001" + ], + "name": "SNSF Professorships", + "number": "214102", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/214102", + "text": "https://data.snf.ch/grants/grant/214102" + } + } + ] +} \ No newline at end of file diff --git a/data/json/wordweb.json b/data/json/wordweb.json index 8045d590..dd5201b0 100644 --- a/data/json/wordweb.json +++ b/data/json/wordweb.json @@ -1,374 +1,381 @@ { - "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", - "project": { - "__id": "http://ns.dasch.swiss/repository#dsp-0826-project", - "__type": "Project", - "__createdAt": "1630601420326707000", - "__createdBy": "dsp-metadata-gui", - "howToCite": "WordWeb/IDEM (2021), DaSCH. ark.dasch.swiss/ark:/72163/1/0826", - "teaserText": "WordWeb/IDEM offers an innovative digital database for representing intertextuality in the drama of Shakespeare’s time.", - "datasets": [ - "http://ns.dasch.swiss/repository#dsp-0826-dataset-000" - ], - "alternativeNames": [ - { - "en": "Intertextuality in drama of the early modern period" - }, - { - "en": "WordWeb / IDEM" - } - ], - "contactPoint": "http://ns.dasch.swiss/repository#dsp-0826-person-001", - "description": { - "en": "WordWeb/IDEM offers an innovative digital database for representing intertextuality in the drama of Shakespeare’s time. This digital representation based on Sematic Web technologies displays a comprehensive corpus of mutual quotations within the texts of this time. WordWeb renews our vision of intertextuality through a new paradigm for representing what is conventionally called “quotation”. Instead of complete texts, WordWeb/IDEM stores only intertextually active passages, i.e., phrases which have been identified in more than one text. These items are not seen as deriving from a famous masterpiece. Instead, they represent much- quoted phrases which just happen to occur also in Hamlet, for example. The name “WordWeb” indicates this new focus: short verbal items (“Word”) are connected to each other by rich links that carry bibliographical information and other annotations (“Web”). As a new methodology, WordWeb can be applied to advance research and understanding of complex relationships in many cultural domains." - }, - "disciplines": [ - { - "de": "10501 Schwerpunkt Germanistik und Anglistik" - } - ], - "endDate": "2020-11-04", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0826-organization-000" - ], - "grants": [ - "http://ns.dasch.swiss/repository#dsp-0826-grant-000" - ], - "keywords": [ - { - "en": "Digital Humanities" - }, - { - "en": "Early Modern Period" - }, - { - "en": "Elizabethan" - }, - { - "en": "English Drama" - }, - { - "en": "Intertextuality" - }, - { - "en": "Shakespeare" - } - ], - "name": "WordWeb / IDEM: A new way of representing Intertextuality in Drama of the Early Modern Period", - "shortcode": "0826", - "spatialCoverage": [ - { - "__type": "URL", - "type": "Geonames", - "url": "https://www.geonames.org/countries/GB/united-kingdom.html", - "text": "United Kingdom" - } - ], - "startDate": "2018-11-01", - "temporalCoverage": [ - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/Fuxla9Z889Zq", - "text": "English (culture or style)" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/9Cb5HX6bZ92K", - "text": "Jacobean" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "http://chronontology.dainst.org/period/yY1zReDz86zF", - "text": "Roman (ancient Italian culture or period)" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/ESV68rKHRuZg", - "text": "Elizabethan" - }, - { - "__type": "URL", - "type": "Chronontology", - "url": "https://chronontology.dainst.org/period/YOyP9TLDuhrb", - "text": "Ancient Greek (culture or style)" - } - ], - "url": { - "__type": "URL", - "type": "URL", - "url": "https://app.dasch.swiss/project/qhOve-cKTmSkiIU81W0lDQ", - "text": "Discover Project Data" - } - }, + "$schema": "https://raw.githubusercontent.com/dasch-swiss/dsp-meta-svc/main/docs/services/metadata/schema-metadata.json", + "project": { + "__id": "http://ns.dasch.swiss/repository#dsp-0826-project", + "__type": "Project", + "__createdAt": "1630601420326707000", + "__createdBy": "dsp-metadata-gui", + "howToCite": "WordWeb/IDEM (2021), DaSCH. ark.dasch.swiss/ark:/72163/1/0826", + "teaserText": "WordWeb/IDEM offers an innovative digital database for representing intertextuality in the drama of Shakespeare’s time.", "datasets": [ + "http://ns.dasch.swiss/repository#dsp-0826-dataset-000" + ], + "alternativeNames": [ + { + "en": "Intertextuality in drama of the early modern period" + }, + { + "en": "WordWeb / IDEM" + } + ], + "contactPoint": "http://ns.dasch.swiss/repository#dsp-0826-person-001", + "description": { + "en": "WordWeb/IDEM offers an innovative digital database for representing intertextuality in the drama of Shakespeare’s time. This digital representation based on Sematic Web technologies displays a comprehensive corpus of mutual quotations within the texts of this time. WordWeb renews our vision of intertextuality through a new paradigm for representing what is conventionally called “quotation”. Instead of complete texts, WordWeb/IDEM stores only intertextually active passages, i.e., phrases which have been identified in more than one text. These items are not seen as deriving from a famous masterpiece. Instead, they represent much- quoted phrases which just happen to occur also in Hamlet, for example. The name “WordWeb” indicates this new focus: short verbal items (“Word”) are connected to each other by rich links that carry bibliographical information and other annotations (“Web”). As a new methodology, WordWeb can be applied to advance research and understanding of complex relationships in many cultural domains." + }, + "disciplines": [ + { + "de": "10501 Schwerpunkt Germanistik und Anglistik" + } + ], + "endDate": "2020-11-04", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0826-organization-000" + ], + "grants": [ + "http://ns.dasch.swiss/repository#dsp-0826-grant-000" + ], + "keywords": [ + { + "en": "Digital Humanities" + }, + { + "en": "Early Modern Period" + }, + { + "en": "Elizabethan" + }, + { + "en": "English Drama" + }, + { + "en": "Intertextuality" + }, + { + "en": "Shakespeare" + } + ], + "name": "WordWeb / IDEM: A new way of representing Intertextuality in Drama of the Early Modern Period", + "shortcode": "0826", + "spatialCoverage": [ + { + "__type": "URL", + "type": "Geonames", + "url": "https://www.geonames.org/countries/GB/united-kingdom.html", + "text": "United Kingdom" + } + ], + "startDate": "2018-11-01", + "temporalCoverage": [ + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/Fuxla9Z889Zq", + "text": "English (culture or style)" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/9Cb5HX6bZ92K", + "text": "Jacobean" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "http://chronontology.dainst.org/period/yY1zReDz86zF", + "text": "Roman (ancient Italian culture or period)" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/ESV68rKHRuZg", + "text": "Elizabethan" + }, + { + "__type": "URL", + "type": "Chronontology", + "url": "https://chronontology.dainst.org/period/YOyP9TLDuhrb", + "text": "Ancient Greek (culture or style)" + } + ], + "url": { + "__type": "URL", + "type": "URL", + "url": "https://app.dasch.swiss/project/qhOve-cKTmSkiIU81W0lDQ", + "text": "Discover Project Data" + }, + "status": "finished" + }, + "datasets": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0826-dataset-000", + "__type": "Dataset", + "__createdAt": "1630601424457656000", + "__createdBy": "dsp-metadata-gui", + "abstracts": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0826-dataset-000", - "__type": "Dataset", - "__createdAt": "1630601424457656000", - "__createdBy": "dsp-metadata-gui", - "abstracts": [ - { - "en": "4500 extracts from plays and other texts written no later than 1688, mostly in English" - } - ], - "alternativeTitles": [ - { - "en": "WordWeb / IDEM" - } - ], - "accessConditions": "open", - "dateCreated": "2021-01-25", - "howToCite": "WordWeb/IDEM (2021), DaSCH. ark.dasch.swiss/ark:/72163/1/0826", - "languages": [ - { - "en": "Classical Greek" - }, - { - "en": "English", - "de": "Englisch", - "fr": "anglais" - }, - { - "en": "French", - "de": "Französisch", - "fr": "français" - }, - { - "de": "Deutsch", - "en": "German", - "fr": "allemand" - }, - { - "en": "Italian", - "de": "Italienisch", - "fr": "italien" - }, - { - "en": "Latin", - "de": "Latein", - "fr": "latin" - }, - { - "en": "Portuguese" - }, - { - "en": "Spanish" - } - ], - "licenses": [ - { - "__type": "License", - "date": "2021-09-02", - "license": { - "__type": "URL", - "type": "Creative Commons", - "url": "https://creativecommons.org/licenses/by-nc-nd/4.0/", - "text": "CC BY-NC-ND 4.0" - } - } - ], - "attributions": [ - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0826-person-005", - "roles": [ - "Applicant" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0826-person-001", - "roles": [ - "Creator", - "Editor", - "Author" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0826-person-002", - "roles": [ - "Editor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0826-person-003", - "roles": [ - "Editor" - ] - }, - { - "__type": "Attribution", - "agent": "http://ns.dasch.swiss/repository#dsp-0826-person-004", - "roles": [ - "Programmer" - ] - } - ], - "status": "Finished", - "title": "WordWeb / IDEM: A new way of representing Intertextuality in Drama of the Early Modern Period", - "typeOfData": [ - "Text" - ] + "en": "4500 extracts from plays and other texts written no later than 1688, mostly in English" } - ], - "persons": [ + ], + "alternativeTitles": [ + { + "en": "WordWeb / IDEM" + } + ], + "accessConditions": "open", + "dateCreated": "2021-01-25", + "howToCite": "WordWeb/IDEM (2021), DaSCH. ark.dasch.swiss/ark:/72163/1/0826", + "languages": [ { - "__id": "http://ns.dasch.swiss/repository#dsp-0826-person-002", - "__type": "Person", - "__createdAt": "1630601426850032000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Heeg" - ], - "givenNames": [ - "Stefanie" - ], - "jobTitles": [ - "Scientific collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0826-organization-001" - ] + "en": "Classical Greek" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0826-person-003", - "__type": "Person", - "__createdAt": "1630601426850096000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Reitzner Elliot" - ], - "givenNames": [ - "Frédéric" - ], - "jobTitles": [ - "Scientific collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0826-organization-001" - ] + "en": "English", + "de": "Englisch", + "fr": "anglais" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0826-person-001", - "__type": "Person", - "__createdAt": "1630601426850158000", - "__createdBy": "dsp-metadata-gui", - "familyNames": [ - "Hohl Trillini" - ], - "givenNames": [ - "Regula" - ], - "jobTitles": [ - "Scientific collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0826-organization-001" - ] + "en": "French", + "de": "Französisch", + "fr": "français" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0826-person-004", - "__type": "Person", - "familyNames": [ - "Tissaveerasingham" - ], - "givenNames": [ - "Vijeinath" - ], - "jobTitles": [ - "Scientific collaborator" - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0826-organization-002" - ] + "de": "Deutsch", + "en": "German", + "fr": "allemand" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0826-person-005", - "__type": "Person", - "familyNames": [ - "Rosenthaler" - ], - "givenNames": [ - "Lukas" - ], - "jobTitles": [ - "Prof. Dr." - ], - "affiliation": [ - "http://ns.dasch.swiss/repository#dsp-0826-organization-002" - ] - } - ], - "organizations": [ + "en": "Italian", + "de": "Italienisch", + "fr": "italien" + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0826-organization-000", - "__type": "Organization", - "__createdAt": "1630601426850234000", - "__createdBy": "dsp-metadata-gui", - "address": { - "__type": "Address", - "street": "Wildhainweg 3, Postfach", - "postalCode": "3001", - "locality": "Bern", - "country": "Switzerland" - }, - "email": "desk@snf.ch", - "name": "Swiss National Science Foundation (SNSF)", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.snf.ch", - "text": "www.snf.ch" - } + "en": "Latin", + "de": "Latein", + "fr": "latin" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0826-organization-001", - "__type": "Organization", - "__createdAt": "1630601426881261000", - "__createdBy": "dsp-metadata-gui", - "name": "University of Basel", - "url": { - "__type": "URL", - "type": "URL", - "url": "http://www.unibas.ch", - "text": "www.unibas.ch" - } + "en": "Portuguese" }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0826-organization-002", - "__type": "Organization", - "name": "Digital Humanities Lab, University of Basel", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://dhlab.philhist.unibas.ch/de/", - "text": "https://dhlab.philhist.unibas.ch/de/" - } + "en": "Spanish" } - ], - "grants": [ + ], + "licenses": [ + { + "__type": "License", + "date": "2021-09-02", + "license": { + "__type": "URL", + "type": "Creative Commons", + "url": "https://creativecommons.org/licenses/by-nc-nd/4.0/", + "text": "CC BY-NC-ND 4.0" + } + } + ], + "attributions": [ + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0826-person-005", + "roles": [ + "Applicant" + ] + }, + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0826-person-001", + "roles": [ + "Creator", + "Editor", + "Author" + ] + }, { - "__id": "http://ns.dasch.swiss/repository#dsp-0826-grant-000", - "__type": "Grant", - "__createdAt": "1630601426881466000", - "__createdBy": "dsp-metadata-gui", - "funders": [ - "http://ns.dasch.swiss/repository#dsp-0826-organization-000" - ], - "name": "Digital Lives", - "number": "183259", - "url": { - "__type": "URL", - "type": "URL", - "url": "https://data.snf.ch/grants/grant/183259", - "text": "https://data.snf.ch/grants/grant/183259" - } + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0826-person-002", + "roles": [ + "Editor" + ] + }, + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0826-person-003", + "roles": [ + "Editor" + ] + }, + { + "__type": "Attribution", + "agent": "http://ns.dasch.swiss/repository#dsp-0826-person-004", + "roles": [ + "Programmer" + ] } - ] -} + ], + "status": "Finished", + "title": "WordWeb / IDEM: A new way of representing Intertextuality in Drama of the Early Modern Period", + "typeOfData": [ + "Text" + ] + } + ], + "persons": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0826-person-002", + "__type": "Person", + "__createdAt": "1630601426850032000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Heeg" + ], + "givenNames": [ + "Stefanie" + ], + "jobTitles": [ + "Scientific collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0826-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0826-person-003", + "__type": "Person", + "__createdAt": "1630601426850096000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Reitzner Elliot" + ], + "givenNames": [ + "Frédéric" + ], + "jobTitles": [ + "Scientific collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0826-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0826-person-001", + "__type": "Person", + "__createdAt": "1630601426850158000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Hohl Trillini" + ], + "givenNames": [ + "Regula" + ], + "jobTitles": [ + "Scientific collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0826-organization-001" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0826-person-004", + "__type": "Person", + "__createdAt": "1630601426850158000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Tissaveerasingham" + ], + "givenNames": [ + "Vijeinath" + ], + "jobTitles": [ + "Scientific collaborator" + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0826-organization-002" + ] + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0826-person-005", + "__type": "Person", + "__createdAt": "1630601426850158000", + "__createdBy": "dsp-metadata-gui", + "familyNames": [ + "Rosenthaler" + ], + "givenNames": [ + "Lukas" + ], + "jobTitles": [ + "Prof. Dr." + ], + "affiliation": [ + "http://ns.dasch.swiss/repository#dsp-0826-organization-002" + ] + } + ], + "organizations": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0826-organization-000", + "__type": "Organization", + "__createdAt": "1630601426850234000", + "__createdBy": "dsp-metadata-gui", + "address": { + "__type": "Address", + "street": "Wildhainweg 3, Postfach", + "postalCode": "3001", + "locality": "Bern", + "country": "Switzerland" + }, + "email": "desk@snf.ch", + "name": "Swiss National Science Foundation (SNSF)", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.snf.ch", + "text": "www.snf.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0826-organization-001", + "__type": "Organization", + "__createdAt": "1630601426881261000", + "__createdBy": "dsp-metadata-gui", + "name": "University of Basel", + "url": { + "__type": "URL", + "type": "URL", + "url": "http://www.unibas.ch", + "text": "www.unibas.ch" + } + }, + { + "__id": "http://ns.dasch.swiss/repository#dsp-0826-organization-002", + "__type": "Organization", + "__createdAt": "1630601426881261000", + "__createdBy": "dsp-metadata-gui", + "name": "Digital Humanities Lab, University of Basel", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://dhlab.philhist.unibas.ch/de/", + "text": "https://dhlab.philhist.unibas.ch/de/" + } + } + ], + "grants": [ + { + "__id": "http://ns.dasch.swiss/repository#dsp-0826-grant-000", + "__type": "Grant", + "__createdAt": "1630601426881466000", + "__createdBy": "dsp-metadata-gui", + "funders": [ + "http://ns.dasch.swiss/repository#dsp-0826-organization-000" + ], + "name": "Digital Lives", + "number": "183259", + "url": { + "__type": "URL", + "type": "URL", + "url": "https://data.snf.ch/grants/grant/183259", + "text": "https://data.snf.ch/grants/grant/183259" + } + } + ] +} \ No newline at end of file diff --git a/docs/domain_model/domain-entities.puml b/docs/domain_model/domain-entities.puml index c20e49c5..79d5e83c 100644 --- a/docs/domain_model/domain-entities.puml +++ b/docs/domain_model/domain-entities.puml @@ -28,6 +28,7 @@ package Entities { -- Optional Fields -- .. (0 - 1) .. + -ProjectStatus status -Date modifiedAt -UUID modifiedBy -Date deletedAt @@ -78,7 +79,7 @@ package Entities { +String title +AccessConditions accessConditions +String howToCite - +Status status + +DatasetStatus status .. (1 - n) .. +MultiLanguageText|URL[] abstracts @@ -344,6 +345,11 @@ package valueobject { package enums { + enum ProjectStatus { + Ongoing + Finished + } + enum AccessConditions { Open Restricted @@ -358,7 +364,7 @@ package enums { Audio } - enum Status { + enum DatasetStatus { In_planning Ongoing On_hold diff --git a/docs/domain_model/domain-entities.svg b/docs/domain_model/domain-entities.svg index 7a2eb2d3..1f01116f 100644 --- a/docs/domain_model/domain-entities.svg +++ b/docs/domain_model/domain-entities.svg @@ -1,449 +1 @@ -EntitiesvalueobjectenumsProjectThe Project.Required FieldsUUID idString typeDate createdAtUUID createdByShortcode shortcodeString nameMultiLanguageText descriptionString howToCiteDate startDateURL urlString teaserText(1)Dataset[] datasetsMultiLanguageText[] keywordsMultiLanguageText|URL[] disciplinesMultiLanguageText|URL[] temporalCoverageURL[] spatialCoveragesPerson[]|Organization[] funders(1 - n)Optional FieldsDate modifiedAtUUID modifiedByDate deletedAtUUID deletedByDataManagementPlan dataManagementPlanDate endDatePerson|Organization contactPointURL secondaryURL(0 - 1)String[] publicationsGrant[] grantsMultiLanguageText[] alternativeNames(0 - n)DatasetA Dataset belonging to the project.Required FieldsUUID idString typeDate createdAtUUID createdByString titleAccessConditions accessConditionsString howToCiteStatus status(1)MultiLanguageText|URL[] abstractsTypesOfData[] typesOfDataLicense[] licensesMultiLanguageText[] languagesAttribution[] attributions(1 - n)Optional FieldsDate modifiedAtUUID modifiedByDate deletedAtUUID deletedByDate datePublishedDate dateCreatedDate dateModifiedURL distribution(0 - 1)MultiLanguageText[] alternativeTitlesURL[] urlsMultiLanguageText|URL[] additional(0 - n)GrantA financial grant.Required FieldsUUID idString typeDate createdAtUUID createdBy(1)Person|Organization[] funders(1 - n)Optional FieldsDate modifiedAtUUID modifiedByDate deletedAtUUID deletedByString numberString nameURL url(0 - 1)PersonA Person.RequiredUUID idString typeDate createdAtUUID createdByEmail email(1)String[] jobTitlesString[] givenNamesString[] familyNamesOrganization[] affiliation(1 - n)OptionalDate modifiedAtUUID modifiedByDate deletedAtUUID deletedByAddress addressEmail secondaryEmail(0 - 1)URL[] authorityRefs(0 - n)Must be AuthorityReferenceOrganizationAn Organization.RequiredUUID idString typeDate createdAtUUID createdByString name(1)OptionalDate modifiedAtUUID modifiedByDate deletedAtUUID deletedByURL urlAddress addressEmail email(0 - 1)MultiLanguageText[] alternativeNamesURL[] authorityRefs(0 - n)Must be AuthorityReferenceAttributionEntity holding information on how work on a dataset can be attributed to a person.Required FieldsPerson|Organization agentString[] roles(1 - n)ShortcodeValueobject holding a shortcode.String valueFieldsMethodsURL newShortcode()URL zeroShortcode()Static MethodsString string()boolean equals()Object MethodsEmailValueobject holding an e-mail address.String valueFieldsMethodsURL newEmail()URL zeroEmail()Static MethodsString string()boolean equals()Object MethodsURLValueobject holding an e-mail address.URLType typeString urlString propertyIDFieldsMethodsURL newURL()URL zeroURL()Static MethodsString string()boolean equals()Object MethodsDateValueobject holding an ISO date.Date valueFieldsMethodsURL newDate()URL zeroDate()Static MethodsString string()boolean equals()Object MethodsMultiLanguageTextValueobject holding text in multiple different languages.Map[ISOLanguage,String] valueFieldsMethodsURL newMultiLanguageText()URL zeroMultiLanguageText()Static MethodsString string()boolean equals()Object MethodsISOLanguageValueobject holding a two character ISO language tag.String valueFieldsMethodsURL newISOLanguage()URL zeroISOLanguage()Static MethodsString string()boolean equals()Object MethodsLicenseValue object holding license information.RequiredString typeURL licenseDate date(1)OptionalString details(0 - 1)AddressValue object containing a postal address.RequiredString typeString streetString postalCodeString localityString country(1)OptionalString cantonString additional(0 - 1)DataManagementPlanString type(1)boolean availableURL url(0 - 1)AccessConditionsOpenRestrictedClosedTypesOfDataXMLTextImageVideoAudioStatusIn_planningOngoingOn_holdFinishedURLTypeEnum holding different types of URLs:Default is `URL`, however, if a URL points to an authority file supported by DSP,there will be a special for it here.URLGeonamesPleiadesSkosPeriodoChronontologyGNDVIAFGrid \ No newline at end of file +EntitiesvalueobjectenumsProjectThe Project.Required FieldsUUID idString typeDate createdAtUUID createdByShortcode shortcodeString nameMultiLanguageText descriptionString howToCiteDate startDateURL urlString teaserText (1)Dataset[] datasetsMultiLanguageText[] keywordsMultiLanguageText|URL[] disciplinesMultiLanguageText|URL[] temporalCoverageURL[] spatialCoveragesPerson[]|Organization[] funders (1 - n)Optional FieldsProjectStatus statusDate modifiedAtUUID modifiedByDate deletedAtUUID deletedByDataManagementPlan dataManagementPlanDate endDatePerson|Organization contactPointURL secondaryURL (0 - 1)String[] publicationsGrant[] grantsMultiLanguageText[] alternativeNames(0 - n)DatasetA Dataset belonging to the project.Required FieldsUUID idString typeDate createdAtUUID createdByString titleAccessConditions accessConditionsString howToCiteDatasetStatusstatus (1)MultiLanguageText|URL[] abstractsTypesOfData[] typesOfDataLicense[] licensesMultiLanguageText[] languagesAttribution[] attributions (1 - n)Optional FieldsDate modifiedAtUUID modifiedByDate deletedAtUUID deletedByDate datePublishedDate dateCreatedDate dateModifiedURL distribution (0 - 1)MultiLanguageText[] alternativeTitlesURL[] urlsMultiLanguageText|URL[] additional(0 - n)GrantA financial grant.Required FieldsUUID idString typeDate createdAtUUID createdBy (1)Person|Organization[] funders (1 - n)Optional FieldsDate modifiedAtUUID modifiedByDate deletedAtUUID deletedByString numberString nameURL url (0 - 1)PersonA Person.RequiredUUID idString typeDate createdAtUUID createdByEmail email (1)String[] jobTitlesString[] givenNamesString[] familyNamesOrganization[] affiliation (1 - n)OptionalDate modifiedAtUUID modifiedByDate deletedAtUUID deletedByAddress addressEmail secondaryEmail (0 - 1)URL[] authorityRefs (0 - n)Must be AuthorityReferenceOrganizationAn Organization.RequiredUUID idString typeDate createdAtUUID createdByString name (1)OptionalDate modifiedAtUUID modifiedByDate deletedAtUUID deletedByURL urlAddress addressEmail email (0 - 1)MultiLanguageText[] alternativeNamesURL[] authorityRefs (0 - n)Must be AuthorityReferenceAttributionEntity holding information on how work on a dataset can be attributed to a person.Required FieldsPerson|Organization agentString[] roles (1 - n)ShortcodeValueobject holding a shortcode.String valueFieldsMethodsURL newShortcode()URL zeroShortcode()Static MethodsString string()boolean equals()Object MethodsEmailValueobject holding an e-mail address.String valueFieldsMethodsURL newEmail()URL zeroEmail()Static MethodsString string()boolean equals()Object MethodsURLValueobject holding an e-mail address.URLType typeString urlString propertyIDFieldsMethodsURL newURL()URL zeroURL()Static MethodsString string()boolean equals()Object MethodsDateValueobject holding an ISO date.Date valueFieldsMethodsURL newDate()URL zeroDate()Static MethodsString string()boolean equals()Object MethodsMultiLanguageTextValueobject holding text in multiple different languages.Map[ISOLanguage,String] valueFieldsMethodsURL newMultiLanguageText()URL zeroMultiLanguageText()Static MethodsString string()boolean equals()Object MethodsISOLanguageValueobject holding a two character ISO language tag.String valueFieldsMethodsURL newISOLanguage()URL zeroISOLanguage()Static MethodsString string()boolean equals()Object MethodsLicenseValue object holding license information.RequiredString typeURL licenseDate date (1)OptionalString details(0 - 1)AddressValue object containing a postal address.RequiredString typeString streetString postalCodeString localityString country (1)OptionalString cantonString additional (0 - 1)DataManagementPlanString type (1)boolean availableURL url (0 - 1)ProjectStatusOngoingFinishedAccessConditionsOpenRestrictedClosedTypesOfDataXMLTextImageVideoAudioDatasetStatusIn_planningOngoingOn_holdFinishedURLTypeEnum holding different types of URLs:Default is `URL`, however, if a URL points to an authority file supported by DSP,there will be a special for it here.URLGeonamesPleiadesSkosPeriodoChronontologyGNDVIAFGrid \ No newline at end of file diff --git a/docs/domain_model/schema-metadata.json b/docs/domain_model/schema-metadata.json deleted file mode 100644 index 4585cb41..00000000 --- a/docs/domain_model/schema-metadata.json +++ /dev/null @@ -1,878 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://dasch.swiss/schema/schema-metadata.json", - "title": "Metadata Schema", - "description": "Schema definition of DSP metadata", - "type": "object", - "properties": { - "$schema": { - "description": "Schema definition", - "type": "string" - }, - "project": { - "$ref": "#/definitions/project" - }, - "datasets": { - "description": "The datasets of the project", - "type": "array", - "minItems": 1, - "items": { - "type": "object", - "$ref": "#/definitions/dataset" - } - }, - "persons": { - "description": "", - "type": "array", - "items": { - "type": "object", - "$ref": "#/definitions/person" - } - }, - "organizations": { - "description": "Organizations relevant to the project.", - "type": "array", - "items": { - "type": "object", - "$ref": "#/definitions/organization" - } - }, - "grants": { - "description": "Grants relevant to the project.", - "type": "array", - "items": { - "type": "object", - "$ref": "#/definitions/grant" - } - } - }, - "required": [ - "$schema", - "project", - "datasets" - ], - "additionalProperties": false, - "definitions": { - "text": { - "type": "object", - "title": "Text Property (multilingual)", - "description": "object of strings in a particular languages (e.g. `'en': 'some text'`).", - "patternProperties": { - "^[a-z]{2}$": { - "type": "string", - "description": "Pair of a language iso code (e.g. 'en') and a sting in the language defined by the language code." - } - }, - "minProperties": 1, - "additionalProperties": false - }, - "date": { - "type": "string", - "pattern": "^\\d{4}-\\d{2}-\\d{2}$", - "format": "date", - "description": "A date in the format `yyyy-mm-dd`" - }, - "url": { - "type": "object", - "description": "A URL (general URL or reference to an authority file)", - "properties": { - "__type": { - "description": "Internal Object type", - "const": "URL" - }, - "type": { - "type": "string", - "description": "The type of reference. Default is `URL`, any other type should indicate an authority file supported by the DSP.", - "enum": [ - "URL", - "Geonames", - "Pleiades", - "Skos", - "Periodo", - "Chronontology", - "GND", - "VIAF", - "Grid", - "ORCID", - "Creative Commons", - "DOI", - "ARK" - ], - "default": "URL" - }, - "url": { - "description": "The actual URL.", - "type": "string", - "format": "uri" - }, - "text": { - "type": "string", - "description": "A common identifier of where the URL points. Will be used as the display string of the URL." - } - }, - "required": [ - "__type", - "type", - "url" - ], - "additionalProperties": false - }, - "project": { - "description": "A project on the DSP", - "type": "object", - "properties": { - "__id": { - "type": "string", - "description": "Identifier of the project" - }, - "__type": { - "type": "string", - "description": "Type of this object", - "const": "Project" - }, - "__createdAt": { - "type": "string", - "description": "Creation date of this object" - }, - "__createdBy": { - "type": "string", - "description": "ID of the user who created this object" - }, - "__modifiedAt": { - "type": "string", - "description": "Last modification date of this object" - }, - "__modifiedBy": { - "type": "string", - "description": "ID of the user who last modified this object" - }, - "__deletedAt": { - "type": "string", - "description": "Deletion date of this object" - }, - "__deletedBy": { - "type": "string", - "description": "ID of the user who deleted this object" - }, - "shortcode": { - "type": "string", - "description": "The four digit hexadecimal project shortcode, assigned to the project by the DaSCH.", - "pattern": "^[0-9A-F]{4}$" - }, - "name": { - "type": "string", - "description": "The name of the project" - }, - "description": { - "description": "A human readable description of the project.", - "$ref": "#/definitions/text" - }, - "startDate": { - "description": "Start date of the project.", - "$ref": "#/definitions/date" - }, - "teaserText": { - "type": "string", - "description": "Short description of the project for previewing." - }, - "datasets": { - "description": "The datasets of which the project consists.", - "type": "array", - "minItems": 1, - "items": { - "type": "string", - "description": "ID of a dataset." - } - }, - "keywords": { - "type": "array", - "description": "Keywords/Tags describing the project.", - "items": { - "$ref": "#/definitions/text" - } - }, - "disciplines": { - "description": "Discipline/field of research of the project.", - "type": "array", - "minItems": 1, - "items": { - "oneOf": [ - { - "$ref": "#/definitions/text" - }, - { - "$ref": "#/definitions/url" - } - ] - } - }, - "temporalCoverage": { - "description": "Temporal coverage of the project.", - "type": "array", - "minItems": 1, - "items": { - "oneOf": [ - { - "$ref": "#/definitions/text" - }, - { - "$ref": "#/definitions/url" - } - ] - } - }, - "spatialCoverage": { - "description": "Spatial coverage of the project.", - "type": "array", - "minItems": 1, - "items": { - "$ref": "#/definitions/url" - } - }, - "funders": { - "description": "Funders of the project.", - "type": "array", - "minItems": 1, - "items": { - "type": "string", - "description": "ID of the funding person or organization." - } - }, - "url": { - "description": "Primary URL of the project. This should be the project landing page or website hosted by the DaSCH.", - "$ref": "#/definitions/url" - }, - "secondaryURL": { - "description": "Optional secondary project URL. This can point to any external project website.", - "$ref": "#/definitions/url" - }, - "dataManagementPlan": { - "$ref": "#/definitions/dataManagementPlan" - }, - "endDate": { - "description": "End date of the project.", - "$ref": "#/definitions/date" - }, - "contactPoint": { - "type": "string", - "description": "ID of the person or organization." - }, - "howToCite": { - "type": "string", - "description": "A string representation of how the project can be cited." - }, - "publications": { - "description": "Publications produced during the lifetime of the project.", - "type": "array", - "items": { - "description": "Citation form of a publication.", - "type": "object", - "$ref": "#/definitions/publication" - } - }, - "grants": { - "description": "Financial grants of the project.", - "type": "array", - "items": { - "description": "Reference to a grant ID.", - "type": "string" - } - }, - "alternativeNames": { - "description": "Alternative names of the project.", - "type": "array", - "items": { - "$ref": "#/definitions/text" - } - } - }, - "required": [ - "__id", - "__type", - "__createdAt", - "__createdBy", - "shortcode", - "name", - "description", - "startDate", - "teaserText", - "datasets", - "keywords", - "disciplines", - "temporalCoverage", - "spatialCoverage", - "funders", - "url", - "howToCite" - ], - "additionalProperties": false - }, - "publication": { - "type": "object", - "description": "A publication.", - "properties": { - "text": { - "type": "string", - "description": "The citation form of the publication." - }, - "url": { - "description": "The URLs of the publication, preferably PIDs like DOI or ARK.", - "type": "array", - "items": { - "type": "object", - "$ref": "#/definitions/url" - } - } - }, - "required": [ - "text" - ], - "additionalProperties": false - }, - "grant": { - "type": "object", - "description": "A financial grant.", - "properties": { - "__id": { - "type": "string", - "description": "Unique id of the grant." - }, - "__type": { - "type": "string", - "const": "Grant" - }, - "__createdAt": { - "type": "string", - "description": "Creation date of this object" - }, - "__createdBy": { - "type": "string", - "description": "ID of the user who created this object" - }, - "__modifiedAt": { - "type": "string", - "description": "Last modification date of this object" - }, - "__modifiedBy": { - "type": "string", - "description": "ID of the user who last modified this object" - }, - "__deletedAt": { - "type": "string", - "description": "Deletion date of this object" - }, - "__deletedBy": { - "type": "string", - "description": "ID of the user who deleted this object" - }, - "funders": { - "description": "Legal bodies funding the grant.", - "type": "array", - "minItems": 1, - "items": { - "type": "string", - "description": "ID of the funding person or organization." - } - }, - "number": { - "type": "string", - "description": "The number or identifier assigned to the grant by the funding body." - }, - "name": { - "type": "string", - "description": "The name that the type of grant is usually referred to." - }, - "url": { - "$ref": "#/definitions/url", - "description": "The URL of the grant." - } - }, - "required": [ - "__id", - "__type", - "__createdAt", - "__createdBy", - "funders" - ], - "additionalProperties": false - }, - "person": { - "type": "object", - "description": "A person relevant to the project.", - "properties": { - "__id": { - "type": "string", - "description": "Unique id of the person." - }, - "__type": { - "type": "string", - "const": "Person" - }, - "__createdAt": { - "type": "string", - "description": "Creation date of this object" - }, - "__createdBy": { - "type": "string", - "description": "ID of the user who created this object" - }, - "__modifiedAt": { - "type": "string", - "description": "Last modification date of this object" - }, - "__modifiedBy": { - "type": "string", - "description": "ID of the user who last modified this object" - }, - "__deletedAt": { - "type": "string", - "description": "Deletion date of this object" - }, - "__deletedBy": { - "type": "string", - "description": "ID of the user who deleted this object" - }, - "jobTitles": { - "type": "array", - "description": "The job titles of the person.", - "minItems": 1, - "items": { - "description": "A job title of the person", - "type": "string" - } - }, - "givenNames": { - "type": "array", - "description": "The given names of the person.", - "minItems": 1, - "items": { - "description": "Given name of the person", - "type": "string" - } - }, - "familyNames": { - "type": "array", - "description": "The family names of the person.", - "minItems": 1, - "items": { - "description": "Family name of the person", - "type": "string" - } - }, - "affiliation": { - "type": "array", - "description": "Organizational affiliation of the person.", - "minItems": 1, - "items": { - "description": "ID of an organization", - "type": "string" - } - }, - "address": { - "$ref": "#/definitions/address", - "description": "The postal address of the person." - }, - "email": { - "description": "primary e-mail address.", - "type": "string", - "format": "email" - }, - "secondaryEmail": { - "description": "primary e-mail address.", - "type": "string", - "format": "email" - }, - "authorityRefs": { - "type": "array", - "items": { - "$ref": "#/definitions/url" - } - } - }, - "required": [ - "__id", - "__type", - "__createdAt", - "__createdBy", - "jobTitles", - "givenNames", - "familyNames", - "affiliation" - ], - "additionalProperties": false - }, - "dataset": { - "type": "object", - "description": "A dataset belonging to the project.", - "properties": { - "__id": { - "type": "string", - "description": "Unique id of the dataset." - }, - "__type": { - "type": "string", - "const": "Dataset" - }, - "__createdAt": { - "type": "string", - "description": "Creation date of this object" - }, - "__createdBy": { - "type": "string", - "description": "ID of the user who created this object" - }, - "__modifiedAt": { - "type": "string", - "description": "Last modification date of this object" - }, - "__modifiedBy": { - "type": "string", - "description": "ID of the user who last modified this object" - }, - "__deletedAt": { - "type": "string", - "description": "Deletion date of this object" - }, - "__deletedBy": { - "type": "string", - "description": "ID of the user who deleted this object" - }, - "title": { - "type": "string", - "description": "The title of the dataset." - }, - "accessConditions": { - "type": "string", - "description": "The conditions under which the data of the dataset can be accessed.", - "enum": [ - "open", - "restricted", - "closed" - ] - }, - "howToCite": { - "type": "string", - "description": "A string representation of how the dataset can be cited." - }, - "status": { - "type": "string", - "description": "The status of the dataset.", - "enum": [ - "In planning", - "Ongoing", - "On hold", - "Finished" - ] - }, - "abstracts": { - "type": "array", - "description": "Abstracts describing the dataset.", - "items": { - "oneOf": [ - { - "$ref": "#/definitions/text" - }, - { - "$ref": "#/definitions/url" - } - ] - } - }, - "typeOfData": { - "type": "array", - "description": "The type of data held by the dataset.", - "minItems": 1, - "items": { - "type": "string", - "enum": [ - "XML", - "Text", - "Image", - "Video", - "Audio" - ] - } - }, - "licenses": { - "type": "array", - "description": "Licenses under which the dataset is published.", - "minItems": 1, - "items": { - "description": "A reference to a license", - "$ref": "#/definitions/license" - } - }, - "languages": { - "type": "array", - "description": "Languages present in the dataset.", - "items": { - "$ref": "#/definitions/text" - } - }, - "attributions": { - "type": "array", - "description": "Work on the dataset attributed to an individual persons.", - "minItems": 1, - "items": { - "$ref": "#/definitions/attribution" - } - }, - "alternativeTitles": { - "type": "array", - "description": "Alternative titles of the dataset.", - "items": { - "$ref": "#/definitions/text" - } - }, - "datePublished": { - "description": "Publishing date of the dataset.", - "$ref": "#/definitions/date" - }, - "dateCreated": { - "description": "Creation date of the dataset.", - "$ref": "#/definitions/date" - }, - "dateModified": { - "description": "Last modification date of the dataset.", - "$ref": "#/definitions/date" - }, - "distribution": { - "description": "A downloadable form of the dataset.", - "$ref": "#/definitions/url" - }, - "urls": { - "type": "array", - "items": { - "$ref": "#/definitions/url" - } - }, - "additional": { - "type": "array", - "description": "Additional information about the dataset.", - "items": { - "oneOf": [ - { - "$ref": "#/definitions/url" - }, - { - "$ref": "#/definitions/text" - } - ] - } - } - }, - "required": [ - "__id", - "__type", - "__createdAt", - "__createdBy", - "title", - "accessConditions", - "howToCite", - "status", - "abstracts", - "typeOfData", - "licenses", - "languages", - "attributions" - ], - "additionalProperties": false - }, - "organization": { - "description": "An organization.", - "type": "object", - "properties": { - "__id": { - "type": "string", - "description": "ID of the organization." - }, - "__type": { - "type": "string", - "const": "Organization" - }, - "__createdAt": { - "type": "string", - "description": "Creation date of this object" - }, - "__createdBy": { - "type": "string", - "description": "ID of the user who created this object" - }, - "__modifiedAt": { - "type": "string", - "description": "Last modification date of this object" - }, - "__modifiedBy": { - "type": "string", - "description": "ID of the user who last modified this object" - }, - "__deletedAt": { - "type": "string", - "description": "Deletion date of this object" - }, - "__deletedBy": { - "type": "string", - "description": "ID of the user who deleted this object" - }, - "name": { - "type": "string", - "description": "Name of the organization." - }, - "url": { - "$ref": "#/definitions/url", - "description": "The URL of the organization's website." - }, - "address": { - "$ref": "#/definitions/address", - "description": "The postal address of the organization." - }, - "email": { - "description": "E-mail address.", - "type": "string", - "format": "email" - }, - "alternativeNames": { - "type": "array", - "description": "Alternative names of the organization.", - "items": { - "$ref": "#/definitions/text" - } - }, - "authorityRefs": { - "type": "array", - "description": "References to external authority file entries describing the organization.", - "items": { - "$ref": "#/definitions/url" - } - } - }, - "required": [ - "__id", - "__type", - "__createdAt", - "__createdBy", - "name" - ], - "additionalProperties": false - }, - "address": { - "description": "A postal address.", - "type": "object", - "properties": { - "__type": { - "type": "string", - "const": "Address" - }, - "street": { - "type": "string", - "description": "The street." - }, - "postalCode": { - "type": "string", - "description": "The postal code." - }, - "locality": { - "type": "string", - "description": "The locality/place name." - }, - "country": { - "type": "string", - "description": "The country." - }, - "canton": { - "type": "string", - "description": "region or organizational unit (canton, state, ...)" - }, - "additional": { - "type": "string", - "description": "Additional address information like c/o or post box" - } - }, - "required": [ - "__type", - "street", - "postalCode", - "locality", - "country" - ], - "additionalProperties": false - }, - "dataManagementPlan": { - "type": "object", - "description": "Data management plan of the project", - "properties": { - "__type": { - "type": "string", - "const": "DataManagementPlan" - }, - "available": { - "type": "boolean" - }, - "url": { - "$ref": "#/definitions/url" - } - }, - "required": [ - "__type" - ], - "additionalProperties": false - }, - "attribution": { - "type": "object", - "description": "Attribution of work to a person or organization, taking in one or more roles.", - "properties": { - "__type": { - "type": "string", - "const": "Attribution" - }, - "agent": { - "type": "string", - "description": "ID of a person/organization." - }, - "roles": { - "type": "array", - "description": "Roles the person/organization had.", - "minItems": 1, - "items": { - "type": "string", - "description": "A role." - } - } - }, - "required": [ - "__type", - "agent", - "roles" - ], - "additionalProperties": false - }, - "license": { - "type": "object", - "description": "License information.", - "properties": { - "__type": { - "type": "string", - "const": "License" - }, - "license": { - "description": "the specific license", - "$ref": "#/definitions/url" - }, - "date": { - "description": "license date", - "$ref": "#/definitions/date" - }, - "details": { - "type": "string", - "description": "additional information on the license (e.g. the scope of the license, if multiple licenses are used)." - } - }, - "required": [ - "__type", - "license", - "date" - ], - "additionalProperties": false - } - } -} diff --git a/docs/domain_model/schema-metadata.json b/docs/domain_model/schema-metadata.json new file mode 120000 index 00000000..f807c81d --- /dev/null +++ b/docs/domain_model/schema-metadata.json @@ -0,0 +1 @@ +../../dsp-meta/resources/schema-metadata-final.json \ No newline at end of file diff --git a/dsp-meta-cmd/src/main-server.rs b/dsp-meta-cmd/src/main-server.rs index 8f15d9ab..b552ad77 100644 --- a/dsp-meta-cmd/src/main-server.rs +++ b/dsp-meta-cmd/src/main-server.rs @@ -46,8 +46,6 @@ fn main() { } async fn init_server() { - info!("Ivan was here!"); - const VERSION: &str = env!("CARGO_PKG_VERSION"); info!("Version: {}", VERSION); diff --git a/dsp-meta-cmd/src/main-validator.rs b/dsp-meta-cmd/src/main-validator.rs index c801fc0a..d16c8de2 100644 --- a/dsp-meta-cmd/src/main-validator.rs +++ b/dsp-meta-cmd/src/main-validator.rs @@ -15,8 +15,6 @@ fn main() -> Result<(), DspMetaError> { tracing::subscriber::set_global_default(subscriber).expect("setting default subscriber failed"); - trace!("Ivan was here!"); - const VERSION: &str = env!("CARGO_PKG_VERSION"); trace!("Version: {}", VERSION); diff --git a/dsp-meta/Cargo.toml b/dsp-meta/Cargo.toml index 162948d8..9aec409b 100644 --- a/dsp-meta/Cargo.toml +++ b/dsp-meta/Cargo.toml @@ -25,10 +25,12 @@ http-body-util.workspace = true hyper.workspace = true log.workspace = true serde.workspace = true +serde_with.workspace = true serde_json.workspace = true serde_yaml.workspace = true nonempty.workspace = true valico.workspace = true +regex.workspace = true sophia = "0.7.2" tokio.workspace = true tower.workspace = true diff --git a/dsp-meta/resources/schema-metadata-draft.json b/dsp-meta/resources/schema-metadata-draft.json index e0730a1c..32ee7812 100644 --- a/dsp-meta/resources/schema-metadata-draft.json +++ b/dsp-meta/resources/schema-metadata-draft.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://dasch.swiss/schema/schema-metadata.json", + "$id": "https://dasch.swiss/schema/schema-metadata-draft.json", "title": "Metadata Schema", "description": "Schema definition of DSP metadata", "type": "object", @@ -159,6 +159,15 @@ "description": "The four digit hexadecimal project shortcode, assigned to the project by the DaSCH.", "pattern": "^[0-9A-F]{4}$" }, + "status": { + "type": "string", + "description": "The status of the dataset.", + "enum": [ + "ongoing", + "finished" + ], + "default": "ongoing" + }, "name": { "type": "string", "description": "The name of the project" diff --git a/dsp-meta/resources/schema-metadata-final.json b/dsp-meta/resources/schema-metadata-final.json new file mode 100644 index 00000000..066cfd39 --- /dev/null +++ b/dsp-meta/resources/schema-metadata-final.json @@ -0,0 +1,887 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "$id": "https://dasch.swiss/schema/schema-metadata.json", + "title": "Metadata Schema", + "description": "Schema definition of DSP metadata", + "type": "object", + "properties": { + "$schema": { + "description": "Schema definition", + "type": "string" + }, + "project": { + "$ref": "#/definitions/project" + }, + "datasets": { + "description": "The datasets of the project", + "type": "array", + "minItems": 1, + "items": { + "type": "object", + "$ref": "#/definitions/dataset" + } + }, + "persons": { + "description": "", + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/person" + } + }, + "organizations": { + "description": "Organizations relevant to the project.", + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/organization" + } + }, + "grants": { + "description": "Grants relevant to the project.", + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/grant" + } + } + }, + "required": [ + "$schema", + "project", + "datasets" + ], + "additionalProperties": false, + "definitions": { + "text": { + "type": "object", + "title": "Text Property (multilingual)", + "description": "object of strings in a particular languages (e.g. `'en': 'some text'`).", + "patternProperties": { + "^[a-z]{2}$": { + "type": "string", + "description": "Pair of a language iso code (e.g. 'en') and a sting in the language defined by the language code." + } + }, + "minProperties": 1, + "additionalProperties": false + }, + "date": { + "type": "string", + "pattern": "^\\d{4}-\\d{2}-\\d{2}$", + "format": "date", + "description": "A date in the format `yyyy-mm-dd`" + }, + "url": { + "type": "object", + "description": "A URL (general URL or reference to an authority file)", + "properties": { + "__type": { + "description": "Internal Object type", + "const": "URL" + }, + "type": { + "type": "string", + "description": "The type of reference. Default is `URL`, any other type should indicate an authority file supported by the DSP.", + "enum": [ + "URL", + "Geonames", + "Pleiades", + "Skos", + "Periodo", + "Chronontology", + "GND", + "VIAF", + "Grid", + "ORCID", + "Creative Commons", + "DOI", + "ARK" + ], + "default": "URL" + }, + "url": { + "description": "The actual URL.", + "type": "string", + "format": "uri" + }, + "text": { + "type": "string", + "description": "A common identifier of where the URL points. Will be used as the display string of the URL." + } + }, + "required": [ + "__type", + "type", + "url" + ], + "additionalProperties": false + }, + "project": { + "description": "A project on the DSP", + "type": "object", + "properties": { + "__id": { + "type": "string", + "description": "Identifier of the project" + }, + "__type": { + "type": "string", + "description": "Type of this object", + "const": "Project" + }, + "__createdAt": { + "type": "string", + "description": "Creation date of this object" + }, + "__createdBy": { + "type": "string", + "description": "ID of the user who created this object" + }, + "__modifiedAt": { + "type": "string", + "description": "Last modification date of this object" + }, + "__modifiedBy": { + "type": "string", + "description": "ID of the user who last modified this object" + }, + "__deletedAt": { + "type": "string", + "description": "Deletion date of this object" + }, + "__deletedBy": { + "type": "string", + "description": "ID of the user who deleted this object" + }, + "shortcode": { + "type": "string", + "description": "The four digit hexadecimal project shortcode, assigned to the project by the DaSCH.", + "pattern": "^[0-9A-F]{4}$" + }, + "status": { + "type": "string", + "description": "The status of the dataset.", + "enum": [ + "ongoing", + "finished" + ], + "default": "ongoing" + }, + "name": { + "type": "string", + "description": "The name of the project" + }, + "description": { + "description": "A human readable description of the project.", + "$ref": "#/definitions/text" + }, + "startDate": { + "description": "Start date of the project.", + "$ref": "#/definitions/date" + }, + "teaserText": { + "type": "string", + "description": "Short description of the project for previewing." + }, + "datasets": { + "description": "The datasets of which the project consists.", + "type": "array", + "minItems": 1, + "items": { + "type": "string", + "description": "ID of a dataset." + } + }, + "keywords": { + "type": "array", + "description": "Keywords/Tags describing the project.", + "items": { + "$ref": "#/definitions/text" + } + }, + "disciplines": { + "description": "Discipline/field of research of the project.", + "type": "array", + "minItems": 1, + "items": { + "oneOf": [ + { + "$ref": "#/definitions/text" + }, + { + "$ref": "#/definitions/url" + } + ] + } + }, + "temporalCoverage": { + "description": "Temporal coverage of the project.", + "type": "array", + "minItems": 1, + "items": { + "oneOf": [ + { + "$ref": "#/definitions/text" + }, + { + "$ref": "#/definitions/url" + } + ] + } + }, + "spatialCoverage": { + "description": "Spatial coverage of the project.", + "type": "array", + "minItems": 1, + "items": { + "$ref": "#/definitions/url" + } + }, + "funders": { + "description": "Funders of the project.", + "type": "array", + "minItems": 1, + "items": { + "type": "string", + "description": "ID of the funding person or organization." + } + }, + "url": { + "description": "Primary URL of the project. This should be the project landing page or website hosted by the DaSCH.", + "$ref": "#/definitions/url" + }, + "secondaryURL": { + "description": "Optional secondary project URL. This can point to any external project website.", + "$ref": "#/definitions/url" + }, + "dataManagementPlan": { + "$ref": "#/definitions/dataManagementPlan" + }, + "endDate": { + "description": "End date of the project.", + "$ref": "#/definitions/date" + }, + "contactPoint": { + "type": "string", + "description": "ID of the person or organization." + }, + "howToCite": { + "type": "string", + "description": "A string representation of how the project can be cited." + }, + "publications": { + "description": "Publications produced during the lifetime of the project.", + "type": "array", + "items": { + "description": "Citation form of a publication.", + "type": "object", + "$ref": "#/definitions/publication" + } + }, + "grants": { + "description": "Financial grants of the project.", + "type": "array", + "items": { + "description": "Reference to a grant ID.", + "type": "string" + } + }, + "alternativeNames": { + "description": "Alternative names of the project.", + "type": "array", + "items": { + "$ref": "#/definitions/text" + } + } + }, + "required": [ + "__id", + "__type", + "__createdAt", + "__createdBy", + "shortcode", + "name", + "description", + "startDate", + "teaserText", + "datasets", + "keywords", + "disciplines", + "temporalCoverage", + "spatialCoverage", + "funders", + "url", + "howToCite" + ], + "additionalProperties": false + }, + "publication": { + "type": "object", + "description": "A publication.", + "properties": { + "text": { + "type": "string", + "description": "The citation form of the publication." + }, + "url": { + "description": "The URLs of the publication, preferably PIDs like DOI or ARK.", + "type": "array", + "items": { + "type": "object", + "$ref": "#/definitions/url" + } + } + }, + "required": [ + "text" + ], + "additionalProperties": false + }, + "grant": { + "type": "object", + "description": "A financial grant.", + "properties": { + "__id": { + "type": "string", + "description": "Unique id of the grant." + }, + "__type": { + "type": "string", + "const": "Grant" + }, + "__createdAt": { + "type": "string", + "description": "Creation date of this object" + }, + "__createdBy": { + "type": "string", + "description": "ID of the user who created this object" + }, + "__modifiedAt": { + "type": "string", + "description": "Last modification date of this object" + }, + "__modifiedBy": { + "type": "string", + "description": "ID of the user who last modified this object" + }, + "__deletedAt": { + "type": "string", + "description": "Deletion date of this object" + }, + "__deletedBy": { + "type": "string", + "description": "ID of the user who deleted this object" + }, + "funders": { + "description": "Legal bodies funding the grant.", + "type": "array", + "minItems": 1, + "items": { + "type": "string", + "description": "ID of the funding person or organization." + } + }, + "number": { + "type": "string", + "description": "The number or identifier assigned to the grant by the funding body." + }, + "name": { + "type": "string", + "description": "The name that the type of grant is usually referred to." + }, + "url": { + "$ref": "#/definitions/url", + "description": "The URL of the grant." + } + }, + "required": [ + "__id", + "__type", + "__createdAt", + "__createdBy", + "funders" + ], + "additionalProperties": false + }, + "person": { + "type": "object", + "description": "A person relevant to the project.", + "properties": { + "__id": { + "type": "string", + "description": "Unique id of the person." + }, + "__type": { + "type": "string", + "const": "Person" + }, + "__createdAt": { + "type": "string", + "description": "Creation date of this object" + }, + "__createdBy": { + "type": "string", + "description": "ID of the user who created this object" + }, + "__modifiedAt": { + "type": "string", + "description": "Last modification date of this object" + }, + "__modifiedBy": { + "type": "string", + "description": "ID of the user who last modified this object" + }, + "__deletedAt": { + "type": "string", + "description": "Deletion date of this object" + }, + "__deletedBy": { + "type": "string", + "description": "ID of the user who deleted this object" + }, + "jobTitles": { + "type": "array", + "description": "The job titles of the person.", + "minItems": 1, + "items": { + "description": "A job title of the person", + "type": "string" + } + }, + "givenNames": { + "type": "array", + "description": "The given names of the person.", + "minItems": 1, + "items": { + "description": "Given name of the person", + "type": "string" + } + }, + "familyNames": { + "type": "array", + "description": "The family names of the person.", + "minItems": 1, + "items": { + "description": "Family name of the person", + "type": "string" + } + }, + "affiliation": { + "type": "array", + "description": "Organizational affiliation of the person.", + "minItems": 1, + "items": { + "description": "ID of an organization", + "type": "string" + } + }, + "address": { + "$ref": "#/definitions/address", + "description": "The postal address of the person." + }, + "email": { + "description": "primary e-mail address.", + "type": "string", + "format": "email" + }, + "secondaryEmail": { + "description": "primary e-mail address.", + "type": "string", + "format": "email" + }, + "authorityRefs": { + "type": "array", + "items": { + "$ref": "#/definitions/url" + } + } + }, + "required": [ + "__id", + "__type", + "__createdAt", + "__createdBy", + "jobTitles", + "givenNames", + "familyNames", + "affiliation" + ], + "additionalProperties": false + }, + "dataset": { + "type": "object", + "description": "A dataset belonging to the project.", + "properties": { + "__id": { + "type": "string", + "description": "Unique id of the dataset." + }, + "__type": { + "type": "string", + "const": "Dataset" + }, + "__createdAt": { + "type": "string", + "description": "Creation date of this object" + }, + "__createdBy": { + "type": "string", + "description": "ID of the user who created this object" + }, + "__modifiedAt": { + "type": "string", + "description": "Last modification date of this object" + }, + "__modifiedBy": { + "type": "string", + "description": "ID of the user who last modified this object" + }, + "__deletedAt": { + "type": "string", + "description": "Deletion date of this object" + }, + "__deletedBy": { + "type": "string", + "description": "ID of the user who deleted this object" + }, + "title": { + "type": "string", + "description": "The title of the dataset." + }, + "accessConditions": { + "type": "string", + "description": "The conditions under which the data of the dataset can be accessed.", + "enum": [ + "open", + "restricted", + "closed" + ] + }, + "howToCite": { + "type": "string", + "description": "A string representation of how the dataset can be cited." + }, + "status": { + "type": "string", + "description": "The status of the dataset.", + "enum": [ + "In planning", + "Ongoing", + "On hold", + "Finished" + ] + }, + "abstracts": { + "type": "array", + "description": "Abstracts describing the dataset.", + "items": { + "oneOf": [ + { + "$ref": "#/definitions/text" + }, + { + "$ref": "#/definitions/url" + } + ] + } + }, + "typeOfData": { + "type": "array", + "description": "The type of data held by the dataset.", + "minItems": 1, + "items": { + "type": "string", + "enum": [ + "XML", + "Text", + "Image", + "Video", + "Audio" + ] + } + }, + "licenses": { + "type": "array", + "description": "Licenses under which the dataset is published.", + "minItems": 1, + "items": { + "description": "A reference to a license", + "$ref": "#/definitions/license" + } + }, + "languages": { + "type": "array", + "description": "Languages present in the dataset.", + "items": { + "$ref": "#/definitions/text" + } + }, + "attributions": { + "type": "array", + "description": "Work on the dataset attributed to an individual persons.", + "minItems": 1, + "items": { + "$ref": "#/definitions/attribution" + } + }, + "alternativeTitles": { + "type": "array", + "description": "Alternative titles of the dataset.", + "items": { + "$ref": "#/definitions/text" + } + }, + "datePublished": { + "description": "Publishing date of the dataset.", + "$ref": "#/definitions/date" + }, + "dateCreated": { + "description": "Creation date of the dataset.", + "$ref": "#/definitions/date" + }, + "dateModified": { + "description": "Last modification date of the dataset.", + "$ref": "#/definitions/date" + }, + "distribution": { + "description": "A downloadable form of the dataset.", + "$ref": "#/definitions/url" + }, + "urls": { + "type": "array", + "items": { + "$ref": "#/definitions/url" + } + }, + "additional": { + "type": "array", + "description": "Additional information about the dataset.", + "items": { + "oneOf": [ + { + "$ref": "#/definitions/url" + }, + { + "$ref": "#/definitions/text" + } + ] + } + } + }, + "required": [ + "__id", + "__type", + "__createdAt", + "__createdBy", + "title", + "accessConditions", + "howToCite", + "status", + "abstracts", + "typeOfData", + "licenses", + "languages", + "attributions" + ], + "additionalProperties": false + }, + "organization": { + "description": "An organization.", + "type": "object", + "properties": { + "__id": { + "type": "string", + "description": "ID of the organization." + }, + "__type": { + "type": "string", + "const": "Organization" + }, + "__createdAt": { + "type": "string", + "description": "Creation date of this object" + }, + "__createdBy": { + "type": "string", + "description": "ID of the user who created this object" + }, + "__modifiedAt": { + "type": "string", + "description": "Last modification date of this object" + }, + "__modifiedBy": { + "type": "string", + "description": "ID of the user who last modified this object" + }, + "__deletedAt": { + "type": "string", + "description": "Deletion date of this object" + }, + "__deletedBy": { + "type": "string", + "description": "ID of the user who deleted this object" + }, + "name": { + "type": "string", + "description": "Name of the organization." + }, + "url": { + "$ref": "#/definitions/url", + "description": "The URL of the organization's website." + }, + "address": { + "$ref": "#/definitions/address", + "description": "The postal address of the organization." + }, + "email": { + "description": "E-mail address.", + "type": "string", + "format": "email" + }, + "alternativeNames": { + "type": "array", + "description": "Alternative names of the organization.", + "items": { + "$ref": "#/definitions/text" + } + }, + "authorityRefs": { + "type": "array", + "description": "References to external authority file entries describing the organization.", + "items": { + "$ref": "#/definitions/url" + } + } + }, + "required": [ + "__id", + "__type", + "__createdAt", + "__createdBy", + "name" + ], + "additionalProperties": false + }, + "address": { + "description": "A postal address.", + "type": "object", + "properties": { + "__type": { + "type": "string", + "const": "Address" + }, + "street": { + "type": "string", + "description": "The street." + }, + "postalCode": { + "type": "string", + "description": "The postal code." + }, + "locality": { + "type": "string", + "description": "The locality/place name." + }, + "country": { + "type": "string", + "description": "The country." + }, + "canton": { + "type": "string", + "description": "region or organizational unit (canton, state, ...)" + }, + "additional": { + "type": "string", + "description": "Additional address information like c/o or post box" + } + }, + "required": [ + "__type", + "street", + "postalCode", + "locality", + "country" + ], + "additionalProperties": false + }, + "dataManagementPlan": { + "type": "object", + "description": "Data management plan of the project", + "properties": { + "__type": { + "type": "string", + "const": "DataManagementPlan" + }, + "available": { + "type": "boolean" + }, + "url": { + "$ref": "#/definitions/url" + } + }, + "required": [ + "__type" + ], + "additionalProperties": false + }, + "attribution": { + "type": "object", + "description": "Attribution of work to a person or organization, taking in one or more roles.", + "properties": { + "__type": { + "type": "string", + "const": "Attribution" + }, + "agent": { + "type": "string", + "description": "ID of a person/organization." + }, + "roles": { + "type": "array", + "description": "Roles the person/organization had.", + "minItems": 1, + "items": { + "type": "string", + "description": "A role." + } + } + }, + "required": [ + "__type", + "agent", + "roles" + ], + "additionalProperties": false + }, + "license": { + "type": "object", + "description": "License information.", + "properties": { + "__type": { + "type": "string", + "const": "License" + }, + "license": { + "description": "the specific license", + "$ref": "#/definitions/url" + }, + "date": { + "description": "license date", + "$ref": "#/definitions/date" + }, + "details": { + "type": "string", + "description": "additional information on the license (e.g. the scope of the license, if multiple licenses are used)." + } + }, + "required": [ + "__type", + "license", + "date" + ], + "additionalProperties": false + } + } +} diff --git a/dsp-meta/src/api/convert/mod.rs b/dsp-meta/src/api/convert/mod.rs index a4cdeadb..9c49a5a8 100644 --- a/dsp-meta/src/api/convert/mod.rs +++ b/dsp-meta/src/api/convert/mod.rs @@ -1,4 +1,3 @@ pub(crate) mod axum; pub mod hcl; pub(crate) mod rdf; -pub mod serde; diff --git a/dsp-meta/src/api/convert/serde/mod.rs b/dsp-meta/src/api/convert/serde/mod.rs deleted file mode 100644 index 6655ed8d..00000000 --- a/dsp-meta/src/api/convert/serde/mod.rs +++ /dev/null @@ -1,2 +0,0 @@ -pub mod draft_model; -pub mod json_schema_validator; diff --git a/dsp-meta/src/api/handler/project_metadata_handler.rs b/dsp-meta/src/api/handler/project_metadata_handler.rs index 1524774c..eb1fea54 100644 --- a/dsp-meta/src/api/handler/project_metadata_handler.rs +++ b/dsp-meta/src/api/handler/project_metadata_handler.rs @@ -1,15 +1,16 @@ use std::sync::Arc; -use axum::extract::{Path, State}; -use dsp_domain::metadata::value::Shortcode; -use tracing::{info_span, instrument, trace}; +use axum::extract::{Path, Query, State}; +use axum::http::StatusCode; +use axum::response::{IntoResponse, Response}; +use axum::Json; +use tracing::{instrument, trace}; -use crate::api::convert::rdf::project_metadata::ProjectMetadataGraphWrapper; -use crate::api::model::project_infos_dto::ProjectInfosDto; -use crate::api::model::project_metadata_dto::ProjectMetadataDto; -use crate::api::model::project_metadata_graph_dto::ProjectMetadataGraphDto; +use crate::api::model::project_metadata_dto::{ProjectMetadataDto, ProjectMetadataWithInfoDto}; use crate::app_state::AppState; +use crate::domain::model::draft_model::Shortcode; use crate::domain::service::project_metadata_api_contract::ProjectMetadataApiContract; +use crate::domain::service::repository_contract::{Filter, Pagination}; use crate::error::DspMetaError; /// GET /project_metadata/:shortcode @@ -18,47 +19,42 @@ use crate::error::DspMetaError; /// TODO: Add error handling with correct status codes #[instrument(skip(state))] pub async fn get_project_metadata_by_shortcode( - Path(shortcode): Path, + Path(shortcode): Path, State(state): State>, -) -> Result { +) -> Result { trace!("entered get_project_metadata_by_shortcode()"); state .project_metadata_service - .find_by_id(Shortcode(shortcode)) - .map(ProjectMetadataDto) -} - -/// GET /project_metadata/:shortcode/rdf -/// Get project metadata by shortcode returned as an RDF string. - -#[instrument(skip(state))] -pub async fn get_project_metadata_by_shortcode_as_rdf( - Path(shortcode): Path, - State(state): State>, -) -> Result { - info_span!("get project by shortcode as RDF"); - trace!("entered get_project_metadata_by_shortcode_as_rdf()"); - state - .project_metadata_service - .find_by_id(Shortcode(shortcode)) - .map(|metadata| metadata.map(|m| ProjectMetadataGraphWrapper(m).into())) - .map(ProjectMetadataGraphDto) + .find_by_id(&shortcode) + .map(|option| match option { + Some(metadata) => (StatusCode::OK, ProjectMetadataDto(metadata)).into_response(), + None => ( + StatusCode::NOT_FOUND, + format!("No project {} available", shortcode.as_string()), + ) + .into_response(), + }) } #[instrument(skip(state))] pub async fn get_all_project_metadata( State(state): State>, -) -> Result { + pagination: Option>, + filter: Option>, +) -> Result { trace!("entered get_all_project_metadata()"); - state - .project_metadata_service - .find_all() - .map(ProjectInfosDto) -} - -#[instrument(skip(state))] -pub async fn get_projects_count(State(state): State>) -> String { - trace!("entered get_projects_count()"); - let count = state.project_metadata_service.count(); - count.unwrap().to_string() + let Query(pagination) = pagination.unwrap_or_default(); + let Query(filter) = filter.unwrap_or_default(); + let page = state.project_metadata_service.find(&filter, &pagination)?; + let mut response = Json( + page.data + .into_iter() + .map(ProjectMetadataWithInfoDto::from) + .collect::>(), + ) + .into_response(); + response + .headers_mut() + .insert("X-Total-Count", page.total.to_string().parse().unwrap()); + Ok(response) } diff --git a/dsp-meta/src/api/model/mod.rs b/dsp-meta/src/api/model/mod.rs index 42a3f008..97b864c9 100644 --- a/dsp-meta/src/api/model/mod.rs +++ b/dsp-meta/src/api/model/mod.rs @@ -1,3 +1,2 @@ -pub mod project_infos_dto; pub mod project_metadata_dto; pub mod project_metadata_graph_dto; diff --git a/dsp-meta/src/api/model/project_infos_dto.rs b/dsp-meta/src/api/model/project_infos_dto.rs deleted file mode 100644 index 8d8ab5d4..00000000 --- a/dsp-meta/src/api/model/project_infos_dto.rs +++ /dev/null @@ -1,23 +0,0 @@ -use axum::http::{HeaderMap, StatusCode}; -use axum::response::{IntoResponse, Response}; -use axum::Json; -use serde::Serialize; - -use crate::domain::model::project_info::ProjectInfo; - -#[derive(Debug, Default, Clone, PartialEq, Serialize)] -pub struct ProjectInfosDto(pub Vec); - -/// Convert `ProjectInfosDto` into a response. -impl IntoResponse for ProjectInfosDto { - fn into_response(self) -> Response { - let mut headers = HeaderMap::new(); - headers.insert("X-Total-Count", self.0.len().into()); - ( - StatusCode::OK, - headers, - Json(serde_json::to_value(self.0).expect("project infos should convert to JSON.")), - ) - .into_response() - } -} diff --git a/dsp-meta/src/api/model/project_metadata_dto.rs b/dsp-meta/src/api/model/project_metadata_dto.rs index 1a07f1e1..993e2a27 100644 --- a/dsp-meta/src/api/model/project_metadata_dto.rs +++ b/dsp-meta/src/api/model/project_metadata_dto.rs @@ -1,25 +1,43 @@ use axum::http::StatusCode; use axum::response::{IntoResponse, Response}; use axum::Json; -use dsp_domain::metadata::entity::project_metadata::ProjectMetadata; use serde::Serialize; -#[derive(Debug, Default, Clone, PartialEq, Serialize)] -pub struct ProjectMetadataDto(pub Option); +use crate::domain::model::draft_model::{DraftMetadata, DraftProjectStatus}; + +#[derive(Debug, Clone, PartialEq, Serialize)] +pub struct ProjectMetadataDto(pub DraftMetadata); /// Convert `ProjectMetadataDto` into an Axum response. impl IntoResponse for ProjectMetadataDto { fn into_response(self) -> Response { - match self.0 { - Some(metadata) => ( - StatusCode::OK, - Json( - serde_json::to_value(metadata) - .expect("project metadata should convert to JSON."), - ), - ) - .into_response(), - None => (StatusCode::NOT_FOUND).into_response(), + let metadata = self.0; + ( + StatusCode::OK, + Json(serde_json::to_value(metadata).expect("project metadata should convert to JSON.")), + ) + .into_response() + } +} + +#[derive(Debug, Clone, PartialEq, Serialize)] +pub struct ProjectMetadataWithInfoDto { + id: String, + name: String, + description: String, + status: DraftProjectStatus, + metadata: ProjectMetadataDto, +} + +impl From for ProjectMetadataWithInfoDto { + fn from(value: DraftMetadata) -> Self { + let project = value.project.clone(); + ProjectMetadataWithInfoDto { + id: project.shortcode.as_string(), + name: project.name, + description: project.teaser_text, + status: project.status.unwrap_or_default(), + metadata: ProjectMetadataDto(value.clone()), } } } diff --git a/dsp-meta/src/api/router.rs b/dsp-meta/src/api/router.rs index dfeed85c..14fad46b 100644 --- a/dsp-meta/src/api/router.rs +++ b/dsp-meta/src/api/router.rs @@ -8,6 +8,7 @@ use axum::routing::get; use axum::{http, Router}; use log::info; use tower_http::classify::ServerErrorsFailureClass; +use tower_http::cors::{Any, CorsLayer}; use tower_http::services::{ServeDir, ServeFile}; use tower_http::trace::TraceLayer; use tracing::{error, info_span, warn, Span}; @@ -18,33 +19,32 @@ use crate::app_state::AppState; /// Having a function that produces our router makes it easy to call it from tests /// without having to create an HTTP server. pub fn router(shared_state: Arc) -> Router { + let cors = CorsLayer::new() + .expose_headers(Any) + .allow_methods(Any) + .allow_headers(Any) + .allow_origin(Any); Router::new() .route( - "/api/projects", + "/api/v1/projects", get(project_metadata_handler::get_all_project_metadata), ) .route( - "/api/projects/:shortcode", + "/api/v1/projects/:shortcode", get(project_metadata_handler::get_project_metadata_by_shortcode), ) - .route( - "/api/projects/:shortcode/rdf", - get(project_metadata_handler::get_project_metadata_by_shortcode_as_rdf), - ) - .route( - "/api/projects/count", - get(project_metadata_handler::get_projects_count), - ) - .route("/api/health", get(health::health_handler)) - .route("/api/version", get(shared_state.version)) + .route("/health", get(health::health_handler)) + .route("/version.txt", get(shared_state.version)) .fallback_service( - ServeDir::new(shared_state.public_dir.as_str()).not_found_service(ServeFile::new( - format!("{}/index.html", shared_state.public_dir), - )), + ServeDir::new(shared_state.public_dir.as_str()).fallback(ServeFile::new(format!( + "{}/index.html", + shared_state.public_dir + ))), ) .with_state(shared_state) // See https://docs.rs/tower-http/latest/tower_http/trace/index.html for more details // on how to customize. + .layer(cors) .layer( TraceLayer::new_for_http() .make_span_with(|request: &Request<_>| { @@ -110,7 +110,7 @@ mod tests { let response = router .oneshot( Request::builder() - .uri("/api/health") + .uri("/health") .body(Body::empty()) .unwrap(), ) @@ -139,10 +139,11 @@ mod tests { // `Router` implements `tower::Service>` so we can // call it like any tower service, no need to run an HTTP server. + let unknown_shortcode = "9999"; let response = router .oneshot( Request::builder() - .uri("/api/projects/nonexistent_shortcode") + .uri(format!("/api/projects/{}", unknown_shortcode)) .body(Body::empty()) .unwrap(), ) @@ -151,36 +152,4 @@ mod tests { assert_eq!(response.status(), StatusCode::NOT_FOUND); } - - #[tokio::test] - async fn test_get_projects_count() { - let data_dir = env::current_dir().unwrap().parent().unwrap().join("data"); - - let shared_state = Arc::new(AppState { - project_metadata_service: ProjectMetadataService::new(ProjectMetadataRepository::new( - &data_dir.as_path(), - )), - public_dir: "".to_string(), - version: "", - }); - - let router = router(shared_state); - - // `Router` implements `tower::Service>` so we can - // call it like any tower service, no need to run an HTTP server. - let response = router - .oneshot( - Request::builder() - .uri("/api/projects/count") - .body(Body::empty()) - .unwrap(), - ) - .await - .unwrap(); - - assert_eq!(response.status(), StatusCode::OK); - - let body = response.into_body().collect().await.unwrap().to_bytes(); - assert_eq!(&body[..], b"3"); - } } diff --git a/dsp-meta/src/api/convert/serde/draft_model.rs b/dsp-meta/src/domain/model/draft_model.rs similarity index 60% rename from dsp-meta/src/api/convert/serde/draft_model.rs rename to dsp-meta/src/domain/model/draft_model.rs index 9d3a58fd..4bb3066e 100644 --- a/dsp-meta/src/api/convert/serde/draft_model.rs +++ b/dsp-meta/src/domain/model/draft_model.rs @@ -2,13 +2,16 @@ use std::collections::HashMap; use chrono::NaiveDate; use nonempty::NonEmpty; +use regex::Regex; use serde::{Deserialize, Serialize}; +use serde_with::skip_serializing_none; // This model corresponds to the json schema found in resources/schema-metadata-draft.json // These data structures are able to parse all json metadata found in /data/json/.*json // We can use them to produce TOML or YAML files as well -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[skip_serializing_none] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] pub struct DraftMetadata { pub project: DraftProject, @@ -18,8 +21,11 @@ pub struct DraftMetadata { pub grants: Option>, } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[skip_serializing_none] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] +#[serde(tag = "__type")] +#[serde(rename = "Project")] pub struct DraftProject { #[serde(rename = "__id")] pub id: String, @@ -27,7 +33,8 @@ pub struct DraftProject { pub created_at: Option, #[serde(rename = "__createdBy")] pub created_by: Option, - pub shortcode: String, + pub shortcode: Shortcode, + pub status: Option, pub name: String, pub description: Option, pub start_date: DraftDate, @@ -49,14 +56,54 @@ pub struct DraftProject { pub alternative_names: Option>, } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[derive(Debug, Default, Clone, Serialize, Deserialize, PartialEq, Hash, Eq)] +#[serde(try_from = "String")] +pub struct Shortcode(String); +impl Shortcode { + pub fn as_string(&self) -> String { + self.0.to_string() + } +} +impl TryFrom for Shortcode { + type Error = &'static str; + fn try_from(value: String) -> Result { + let regex: Regex = Regex::new(r"^[A-F0-9]{4}$").expect("Valid regex"); + let value = value.to_uppercase(); + if !regex.is_match(&value) { + Err("Shortcode must be a 4 character hexadecimal string") + } else { + Ok(Shortcode(value)) + } + } +} +#[test] +fn test_try_from_shortcode() { + assert!(Shortcode::try_from("000F".to_string()).is_ok()); + assert!(Shortcode::try_from("12345".to_string()).is_err()); + assert!(Shortcode::try_from("000G".to_string()).is_err()); +} + +#[derive(Debug, Default, Clone, Serialize, Deserialize, PartialEq)] +pub enum DraftProjectStatus { + #[default] + #[serde(rename = "ongoing")] + Ongoing, + #[serde(rename = "finished")] + Finished, +} + +#[skip_serializing_none] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] pub struct DraftPublication { pub text: String, pub url: Option>, } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[skip_serializing_none] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] +#[serde(tag = "__type")] +#[serde(rename = "Dataset")] pub struct DraftDataset { #[serde(rename = "__id")] pub id: String, @@ -82,7 +129,7 @@ pub struct DraftDataset { pub urls: Option>, } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] #[serde(rename_all = "lowercase")] pub enum DraftAccessCondition { Open, @@ -90,7 +137,7 @@ pub enum DraftAccessCondition { Closed, } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] pub enum DraftStatus { #[serde(rename = "In planning")] InPlanning, @@ -101,7 +148,7 @@ pub enum DraftStatus { Finished, } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] pub enum DraftTypeOfData { XML, Text, @@ -110,8 +157,11 @@ pub enum DraftTypeOfData { Audio, } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[skip_serializing_none] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] +#[serde(tag = "__type")] +#[serde(rename = "Person")] pub struct DraftPerson { #[serde(rename = "__id")] pub id: String, @@ -129,8 +179,11 @@ pub struct DraftPerson { pub authority_refs: Option>, } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[skip_serializing_none] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] +#[serde(tag = "__type")] +#[serde(rename = "Organization")] pub struct DraftOrganization { #[serde(rename = "__id")] pub id: String, @@ -146,8 +199,11 @@ pub struct DraftOrganization { pub authority_refs: Option>, } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[skip_serializing_none] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] +#[serde(tag = "__type")] +#[serde(rename = "Grant")] pub struct DraftGrant { #[serde(rename = "__id")] pub id: String, @@ -161,17 +217,42 @@ pub struct DraftGrant { pub url: Option, } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] pub struct DraftText(HashMap); -#[derive(Debug, Serialize, Deserialize, Eq, PartialEq, Hash)] +#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, Hash)] +#[serde(try_from = "String")] pub struct DraftIsoCode(String); +impl DraftIsoCode { + pub fn as_string(&self) -> String { + self.0.to_string() + } +} +impl TryFrom for DraftIsoCode { + type Error = &'static str; + fn try_from(value: String) -> Result { + let regex: Regex = Regex::new(r"^[a-z]{2}$").expect("Valid regex"); + if !regex.is_match(&value) { + Err("ISO code must be a 2 character lower case string") + } else { + Ok(DraftIsoCode(value)) + } + } +} +#[test] +fn test_try_from_draft_iso_code() { + assert!(DraftIsoCode::try_from("en".to_string()).is_ok()); + assert!(DraftIsoCode::try_from("de_ch".to_string()).is_err()); +} -#[derive(Debug, Serialize, Deserialize, PartialEq)] -pub struct DraftDate(NaiveDate); +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] +pub struct DraftDate(pub NaiveDate); -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[skip_serializing_none] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] +#[serde(tag = "__type")] +#[serde(rename = "URL")] pub struct DraftUrl { pub url: String, pub text: Option, @@ -180,7 +261,7 @@ pub struct DraftUrl { pub url_type: DraftUrlType, } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] pub enum DraftUrlType { URL, Geonames, @@ -203,8 +284,11 @@ impl DraftUrlType { } } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[skip_serializing_none] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] +#[serde(tag = "__type")] +#[serde(rename = "Address")] pub struct DraftAddress { pub street: String, pub postal_code: String, @@ -214,29 +298,37 @@ pub struct DraftAddress { pub additional: Option, } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[skip_serializing_none] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] +#[serde(tag = "__type")] +#[serde(rename = "DataManagementPlan")] pub struct DraftDataManagementPlan { pub available: bool, pub url: Option, } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] +#[serde(tag = "__type")] +#[serde(rename = "Attribution")] pub struct DraftAttribution { pub agent: String, pub roles: NonEmpty, } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[skip_serializing_none] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] #[serde(rename_all = "camelCase")] +#[serde(tag = "__type")] +#[serde(rename = "License")] pub struct DraftLicense { pub license: DraftUrl, pub date: DraftDate, pub details: Option, } -#[derive(Debug, Serialize, Deserialize, PartialEq)] +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] #[serde(untagged)] pub enum DraftTextOrUrl { TextValue(DraftText), diff --git a/dsp-meta/src/domain/model/error.rs b/dsp-meta/src/domain/model/error.rs new file mode 100644 index 00000000..0ef26d46 --- /dev/null +++ b/dsp-meta/src/domain/model/error.rs @@ -0,0 +1,13 @@ +use thiserror::Error; + +pub type Result = core::result::Result; + +#[derive(Debug, Error)] +pub enum ValidationError { + #[error("File not loaded: {0}")] + FileNotLoaded(std::io::Error), + #[error("Schema is invalid: {0}")] + SchemaError(valico::json_schema::schema::SchemaError), + #[error("Error parsing file as json: {0}")] + NotAJsonFile(serde_json::Error), +} diff --git a/dsp-meta/src/api/convert/serde/json_schema_validator.rs b/dsp-meta/src/domain/model/json_schema_validator.rs similarity index 60% rename from dsp-meta/src/api/convert/serde/json_schema_validator.rs rename to dsp-meta/src/domain/model/json_schema_validator.rs index 86c7c781..4a6a9960 100644 --- a/dsp-meta/src/api/convert/serde/json_schema_validator.rs +++ b/dsp-meta/src/domain/model/json_schema_validator.rs @@ -3,37 +3,29 @@ use std::fs::File; use std::path::Path; use serde_json::Value; -use thiserror::Error; use valico::json_schema::schema::ScopedSchema; use valico::json_schema::{Scope, ValidationState}; -use crate::api::convert::serde::json_schema_validator::SchemaVersion::Draft; -use crate::api::convert::serde::json_schema_validator::ValidationError::*; +use crate::domain::model::error::ValidationError::*; +use crate::domain::model::error::*; -static DRAFT_SCHEMA: &str = include_str!("../../../../resources/schema-metadata-draft.json"); +static DRAFT_SCHEMA: &str = include_str!("../../../resources/schema-metadata-draft.json"); +static FINAL_SCHEMA: &str = include_str!("../../../resources/schema-metadata-final.json"); +#[derive(Debug, Clone, Copy, Eq, PartialEq)] pub enum SchemaVersion { Draft, + Final, } impl SchemaVersion { fn schema_str(&self) -> &str { match self { - Draft => DRAFT_SCHEMA, + SchemaVersion::Draft => DRAFT_SCHEMA, + SchemaVersion::Final => FINAL_SCHEMA, } } } -pub type Result = core::result::Result; -#[derive(Debug, Error)] -pub enum ValidationError { - #[error("File not loaded: {0}")] - FileNotLoaded(std::io::Error), - #[error("Schema is invalid: {0}")] - SchemaError(valico::json_schema::schema::SchemaError), - #[error("Error parsing file as json: {0}")] - NotAJsonFile(serde_json::Error), -} - pub fn validate_file(path: &Path, schema_version: SchemaVersion) -> Result { let contents = load_path_as_json(path)?; let mut scope = Scope::new(); @@ -50,8 +42,18 @@ pub fn validate_files( let mut results = HashMap::with_capacity(paths.len()); for path in paths { let contents = load_path_as_json(path)?; - let state = schema.validate(&contents); - results.insert(path, state); + let project_status = contents + .get("project") + .and_then(|p| p.get("status")) + .and_then(|s| s.as_str()); + // Always validate against Draft schema + // Only validate against Final schema if the project status is "finished" + if schema_version == SchemaVersion::Draft + || (schema_version == SchemaVersion::Final && (project_status == Some("finished"))) + { + let state = schema.validate(&contents); + results.insert(path, state); + } } Ok(results) } diff --git a/dsp-meta/src/domain/model/mod.rs b/dsp-meta/src/domain/model/mod.rs index 12a6d09e..bed33609 100644 --- a/dsp-meta/src/domain/model/mod.rs +++ b/dsp-meta/src/domain/model/mod.rs @@ -1 +1,3 @@ -pub mod project_info; +pub mod draft_model; +pub mod error; +pub mod json_schema_validator; diff --git a/dsp-meta/src/domain/model/project_info.rs b/dsp-meta/src/domain/model/project_info.rs deleted file mode 100644 index 974d6390..00000000 --- a/dsp-meta/src/domain/model/project_info.rs +++ /dev/null @@ -1,23 +0,0 @@ -use dsp_domain::metadata::entity::project::Project; -use dsp_domain::metadata::value::status::Status; -use dsp_domain::metadata::value::{Name, Shortcode, TeaserText}; -use serde::Serialize; - -#[derive(Debug, Default, Clone, PartialEq, Serialize)] -pub struct ProjectInfo { - id: Shortcode, - name: Name, - description: TeaserText, - status: Status, -} - -impl From for ProjectInfo { - fn from(value: Project) -> Self { - ProjectInfo { - id: value.shortcode, - name: value.name, - description: value.teaser_text, - status: value.status, - } - } -} diff --git a/dsp-meta/src/domain/service/project_metadata_api_contract.rs b/dsp-meta/src/domain/service/project_metadata_api_contract.rs index b6f4fcff..fc3b577a 100644 --- a/dsp-meta/src/domain/service/project_metadata_api_contract.rs +++ b/dsp-meta/src/domain/service/project_metadata_api_contract.rs @@ -1,11 +1,12 @@ -use dsp_domain::metadata::entity::project_metadata::ProjectMetadata; -use dsp_domain::metadata::value::Shortcode; - -use crate::domain::model::project_info::ProjectInfo; +use crate::domain::model::draft_model::*; +use crate::domain::service::repository_contract::{Filter, Page, Pagination}; use crate::error::DspMetaError; pub trait ProjectMetadataApiContract { - fn find_by_id(&self, id: Shortcode) -> Result, DspMetaError>; - fn find_all(&self) -> Result, DspMetaError>; - fn count(&self) -> Result; + fn find_by_id(&self, id: &Shortcode) -> Result, DspMetaError>; + fn find( + &self, + filter: &Filter, + pagination: &Pagination, + ) -> Result, DspMetaError>; } diff --git a/dsp-meta/src/domain/service/project_metadata_service.rs b/dsp-meta/src/domain/service/project_metadata_service.rs index 65cbb0fc..be375f0f 100644 --- a/dsp-meta/src/domain/service/project_metadata_service.rs +++ b/dsp-meta/src/domain/service/project_metadata_service.rs @@ -1,10 +1,8 @@ -use dsp_domain::metadata::entity::project_metadata::ProjectMetadata; -use dsp_domain::metadata::value::Shortcode; use tracing::{instrument, trace}; -use crate::domain::model::project_info::ProjectInfo; +use crate::domain::model::draft_model::*; use crate::domain::service::project_metadata_api_contract::ProjectMetadataApiContract; -use crate::domain::service::repository_contract::RepositoryContract; +use crate::domain::service::repository_contract::{Filter, Page, Pagination, RepositoryContract}; use crate::error::DspMetaError; #[derive(Debug, Clone)] @@ -14,7 +12,7 @@ pub struct ProjectMetadataService { impl ProjectMetadataService where - Repository: RepositoryContract, + Repository: RepositoryContract, { pub fn new(repo: Repository) -> Self { trace!("Init Service"); @@ -24,19 +22,18 @@ where impl ProjectMetadataApiContract for ProjectMetadataService where - R: RepositoryContract + std::fmt::Debug, + R: RepositoryContract + std::fmt::Debug, { - fn find_by_id(&self, id: Shortcode) -> Result, DspMetaError> { - self.repo.find_by_id(&id) + fn find_by_id(&self, id: &Shortcode) -> Result, DspMetaError> { + self.repo.find_by_id(id) } #[instrument(skip(self))] - fn find_all(&self) -> Result, DspMetaError> { - trace!("service: find_all"); - self.repo.find_all() - } - - fn count(&self) -> Result { - self.repo.count() + fn find( + &self, + filter: &Filter, + pagination: &Pagination, + ) -> Result, DspMetaError> { + self.repo.find(filter, pagination) } } diff --git a/dsp-meta/src/domain/service/repository_contract.rs b/dsp-meta/src/domain/service/repository_contract.rs index f43fb662..4dd15460 100644 --- a/dsp-meta/src/domain/service/repository_contract.rs +++ b/dsp-meta/src/domain/service/repository_contract.rs @@ -1,38 +1,42 @@ +use serde::Deserialize; + +#[derive(Deserialize, Debug)] +pub struct Pagination { + #[serde(rename = "_page")] + pub page: usize, + #[serde(rename = "_limit")] + pub limit: usize, +} +impl Default for Pagination { + fn default() -> Self { + Pagination { page: 1, limit: 10 } + } +} + +#[derive(Deserialize, Default, Debug)] +pub struct Filter { + #[serde(rename = "q")] + pub query: Option, + #[serde(rename = "filter")] + pub filter: Option, +} + +pub struct Page { + pub data: Vec, + pub total: usize, +} /// The contract for the project metadata repository. /// It defines the methods that the repository must implement. /// The trait is generically typed for the entity type `Entity`, the id type `Id`, and /// the error type `Error`. -pub trait RepositoryContract { +pub trait RepositoryContract { /// Retrieves an entity by its id. /// If the entity does not exist, `None` is returned. - fn find_by_id(&self, id: &Id) -> Result, Error>; - - /// Retrieves all entities identified by the given ids. - /// If some or all entities for the provided ids do not exist, they are ignored. - fn find_all_by_id(&self, ids: Vec<&Id>) -> Result, Error> { - let mut result: Vec = vec![]; - for id in ids { - if let Some(entity) = self.find_by_id(id)? { - result.push(entity) - } - } - Ok(result) - } - - /// Checks weather an entity with the given id exists. - fn exists_by_id(&self, id: &Id) -> Result { - match self.find_by_id(id)? { - Some(_) => Ok(true), - None => Ok(false), - } - } + fn find_by_id(&self, id: &Id) -> Result, Error>; /// Returns all entities. - fn find_all(&self) -> Result, Error>; + fn find(&self, filter: &Filter, pagination: &Pagination) -> Result, Error>; - /// Return the number of all entities. - fn count(&self) -> Result { - let all_entities = self.find_all()?; - Ok(all_entities.len()) - } + /// Returns the number of entities. + fn count(&self) -> Result; } diff --git a/dsp-meta/src/infrastructure/mod.rs b/dsp-meta/src/infrastructure/mod.rs index 0e9f41e6..db114eb7 100644 --- a/dsp-meta/src/infrastructure/mod.rs +++ b/dsp-meta/src/infrastructure/mod.rs @@ -8,7 +8,7 @@ pub fn load_hcl_file_paths(data_path: &Path) -> Vec { pub fn load_json_file_paths(data_path: &Path) -> Vec { let mut json_dir = PathBuf::from(data_path); json_dir.push("json"); - find_files_by_extension_in_dir(data_path, "json") + find_files_by_extension_in_dir(json_dir.as_path(), "json") } fn find_files_by_extension_in_dir(dir: &Path, file_extension: &str) -> Vec { diff --git a/dsp-meta/src/repo/service/project_metadata_repository.rs b/dsp-meta/src/repo/service/project_metadata_repository.rs index 9d7f57c4..7c8f90c9 100644 --- a/dsp-meta/src/repo/service/project_metadata_repository.rs +++ b/dsp-meta/src/repo/service/project_metadata_repository.rs @@ -1,80 +1,114 @@ use std::collections::HashMap; +use std::fs::File; use std::path::Path; use std::sync::{Arc, RwLock}; -use dsp_domain::metadata::entity::project_metadata::ProjectMetadata; -use dsp_domain::metadata::value::Shortcode; +use log::info; use tracing::{instrument, trace}; -use crate::api::convert::hcl::hcl_body::HclBody; -use crate::domain::model::project_info::ProjectInfo; -use crate::domain::service::repository_contract::RepositoryContract; +use crate::domain::model::draft_model::*; +use crate::domain::service::repository_contract::{Filter, Page, Pagination, RepositoryContract}; use crate::error::DspMetaError; -use crate::infrastructure::load_hcl_file_paths; +use crate::infrastructure::load_json_file_paths; #[derive(Debug, Default, Clone)] pub struct ProjectMetadataRepository { - db: Arc>>, + db: Arc>>, } impl ProjectMetadataRepository { pub fn new(data_path: &Path) -> Self { - trace!("Init Repository"); - let db: Arc>> = + info!("Init Repository {:?}", data_path); + let db: Arc>> = Arc::new(RwLock::new(HashMap::new())); - for file in load_hcl_file_paths(data_path) { - let input = std::fs::read_to_string(file).expect("read file."); - let body: hcl::Body = hcl::from_str(&input).expect("parse file as HCL body."); - let entity: ProjectMetadata = HclBody(&body) - .try_into() - .expect("convert file into project metadata."); - let mut db = db.write().unwrap(); - db.insert(entity.project.shortcode.0.to_owned(), entity.clone()); - } + let file_paths = load_json_file_paths(data_path); + info!("Found {} projects", file_paths.len()); - Self { db } - } - - fn _save(&self, entity: ProjectMetadata) -> Result { - let mut db = self.db.write().unwrap(); - db.insert(entity.project.shortcode.0.to_owned(), entity.clone()); - Ok(entity) - } + let mut known_shortcodes: Vec = Vec::new(); + for file in file_paths { + let file = File::open(file).expect("open file."); + let entity: DraftMetadata = serde_json::from_reader(file).expect("parse file as JSON."); + let mut db = db.write().unwrap(); + let shortcode = entity.project.shortcode.to_owned(); + if known_shortcodes.contains(&shortcode) { + panic!("Duplicate shortcode: {:?}", shortcode); + } + known_shortcodes.push(shortcode); - fn _delete(&self, entity: ProjectMetadata) -> Result<(), DspMetaError> { - let mut db = self.db.write().unwrap(); + db.insert(entity.project.shortcode.to_owned(), entity); + } - match db.remove(entity.project.shortcode.0.as_str()) { - Some(_) => Ok(()), - None => Ok(()), + { + let count = db.read().unwrap(); + trace!("Stored {} projects", count.values().len()); } + + Self { db } } } -impl RepositoryContract - for ProjectMetadataRepository -{ +impl RepositoryContract for ProjectMetadataRepository { #[instrument(skip(self))] - fn find_by_id(&self, id: &Shortcode) -> Result, DspMetaError> { + fn find_by_id(&self, id: &Shortcode) -> Result, DspMetaError> { let db = self.db.read().unwrap(); - match db.get(id.0.as_str()) { + match db.get(id) { Some(metadata) => Ok(Some(metadata.clone())), None => Ok(None), } } #[instrument(skip(self))] - fn find_all(&self) -> Result, DspMetaError> { - trace!("repository: find_all"); - let mut result: Vec = vec![]; + fn find( + &self, + filter: &Filter, + pagination: &Pagination, + ) -> Result, DspMetaError> { let db = self.db.read().unwrap(); + let query_status: Option> = match filter.filter.as_deref() { + Some("o") => Some(vec![DraftProjectStatus::Ongoing]), + Some("f") => Some(vec![DraftProjectStatus::Finished]), + Some("of") => Some(vec![ + DraftProjectStatus::Ongoing, + DraftProjectStatus::Finished, + ]), + _ => None, + }; + + let values = db + .values() + .filter(|metadata| { + if let Some(query_status) = &query_status { + let actual_status = &metadata.project.status.clone().unwrap_or_default(); + !query_status.contains(actual_status) + } else { + true + } + }) + .filter(|metadata| { + if let Some(query) = &filter.query { + serde_json::to_string(metadata) + .unwrap() + .to_lowercase() + .contains(&query.to_lowercase()) + } else { + true + } + }) + .cloned() + .collect::>(); + let total = values.len(); + let data = values + .into_iter() + .skip((pagination.page - 1) * pagination.limit) + .take(pagination.limit) + .collect::>(); + Ok(Page { data, total }) + } - for project_metadata in db.values() { - result.push(ProjectInfo::from(project_metadata.project.clone())); - } - - Ok(result) + fn count(&self) -> Result { + let db = self.db.read().unwrap(); + Ok(db.len()) } } @@ -85,12 +119,13 @@ mod tests { use super::*; #[test] - fn successfully_store_project_metadata() { + fn successfully_load_metadata() { let data_dir = env::current_dir().unwrap().parent().unwrap().join("data"); dbg!(&data_dir); + let files = load_json_file_paths(&data_dir); let repo = ProjectMetadataRepository::new(&data_dir.as_path()); - let result = repo.count().unwrap(); - assert_eq!(result, 3_usize); + let actual = repo.count().unwrap(); + assert_eq!(actual, files.len()); } } diff --git a/dsp-meta/tests/draft_schema_test.rs b/dsp-meta/tests/draft_schema_test.rs index dbbb8af0..1fa10b61 100644 --- a/dsp-meta/tests/draft_schema_test.rs +++ b/dsp-meta/tests/draft_schema_test.rs @@ -1,9 +1,10 @@ +use std::collections::HashMap; +use std::fs::File; use std::path::{Path, PathBuf}; use std::{env, fs}; -use api::convert::serde::draft_model::*; -use dsp_meta::api; -use dsp_meta::api::convert::serde::json_schema_validator::{validate_files, SchemaVersion}; +use dsp_meta::domain::model::draft_model::*; +use dsp_meta::domain::model::json_schema_validator::{validate_files, SchemaVersion}; use dsp_meta::infrastructure::load_json_file_paths; #[test] @@ -33,21 +34,23 @@ fn test_json_and_toml_serialization_are_equal() { #[test] fn test_deserialization_all_json_data() { let json_file_paths = load_json_file_paths(&data_dir()); + let nr_of_files = json_file_paths.len(); let mut success: usize = 0; let mut error: usize = 0; + let mut deserialized: Vec = Vec::new(); for path in json_file_paths { let path = path.as_path(); - println!("Checking {}:", path.to_str().get_or_insert("")); let contents = fs::read_to_string(path).expect("Should have been able to read the file"); let metadata = serde_json::from_str::(&*contents); match metadata { Ok(_data) => { + deserialized.push(_data); success = success + 1; - println!("SUCCESS\n") // println!("DATA:\n {:?}\n", data), } Err(err) => { error = error + 1; + println!("Checked {}:", path.to_str().get_or_insert("")); println!("ERROR:\n {:?}\n", err) } }; @@ -57,7 +60,8 @@ fn test_deserialization_all_json_data() { success, error, success + error - ) + ); + assert_eq!(deserialized.len(), nr_of_files) } fn data_dir() -> PathBuf { @@ -70,13 +74,60 @@ fn data_dir() -> PathBuf { } #[test] -fn test_draft_json_schema() { +fn test_all_json_validate_with_draft_json_schema() { let path_bufs = load_json_file_paths(&data_dir()); let paths: Vec<&Path> = path_bufs.iter().map(|p| p.as_path()).collect(); + let nr_files = paths.len(); let results = validate_files(paths, SchemaVersion::Draft).unwrap(); for (key, value) in &results { - println!("{:?}: {:?}", key, value); + if !value.is_valid() { + dbg!("{:?}: {:?}", key, &value.errors); + } + } + let failures = results.values().filter(|v| !v.is_valid()); + assert_eq!(failures.count(), 0); + assert_eq!(results.len(), nr_files); +} + +#[ignore] +#[test] +fn test_finished_json_validate_with_final_json_schema() { + let path_bufs = load_json_file_paths(&data_dir()); + let paths: Vec<&Path> = path_bufs.iter().map(|p| p.as_path()).collect(); + let results = validate_files(paths, SchemaVersion::Final).unwrap(); + for (key, value) in &results { + if !value.is_valid() { + dbg!("{:?}: {:?}", key, &value.errors); + } + } + let failures = results.values().filter(|v| !v.is_valid()); + assert_eq!(failures.count(), 0); +} + +#[test] +fn test_unique_shortcode() { + let path_bufs = load_json_file_paths(&data_dir()); + let mut shortcodes: HashMap = HashMap::new(); + for path_buf in path_bufs { + let path = path_buf.as_path(); + let file = File::open(path).expect("Should have been able to open the file"); + let metadata: DraftMetadata = + serde_json::from_reader(file).expect("Should have been able to deserialize the file"); + let shortcode = metadata.project.shortcode; + if shortcodes.contains_key(&shortcode) { + let last_path = shortcodes.get(&shortcode).unwrap(); + panic!( + "Shortcode {:?} is not unique!\nFound in files '{}' and '{}'. Please fix this.", + shortcode, + path.file_name() + .and_then(|os| os.to_str()) + .unwrap_or_default(), + last_path + .file_name() + .and_then(|os| os.to_str()) + .unwrap_or_default() + ); + } + shortcodes.insert(shortcode, path_buf); } - let failure_count = results.values().filter(|v| !v.is_valid()).count(); - assert_eq!(failure_count, 0); } diff --git a/example_http/get_all_projects.http b/example_http/get_all_projects.http index 6e0694b8..865a41dc 100644 --- a/example_http/get_all_projects.http +++ b/example_http/get_all_projects.http @@ -1 +1,4 @@ -GET http://0.0.0.0:3000/projects +GET http://localhost:3000/api/v1/projects + +### With project status `q`, search filter `filter`, and with pagination `_page` and `_limit` query parameters +GET http://localhost:3000/api/v1/projects?q=f&filter=database&_page=2&_limit=1 \ No newline at end of file diff --git a/example_http/get_projects_count.http b/example_http/get_projects_count.http deleted file mode 100644 index 1d06ff50..00000000 --- a/example_http/get_projects_count.http +++ /dev/null @@ -1 +0,0 @@ -GET http://0.0.0.0:3000/projects/count diff --git a/example_http/get_single_project.http b/example_http/get_single_project.http index b193e0b6..5058975d 100644 --- a/example_http/get_single_project.http +++ b/example_http/get_single_project.http @@ -1 +1 @@ -GET http://0.0.0.0:3000/projects/0803 +GET http://localhost:3000/api/v1/projects/0803 diff --git a/example_http/get_single_project_as_rdf.http b/example_http/get_single_project_as_rdf.http deleted file mode 100644 index a4270f7f..00000000 --- a/example_http/get_single_project_as_rdf.http +++ /dev/null @@ -1 +0,0 @@ -GET http://0.0.0.0:3000/projects/0803/rdf diff --git a/example_http/store_project_metadata.http b/example_http/store_project_metadata.http deleted file mode 100644 index a4cb6373..00000000 --- a/example_http/store_project_metadata.http +++ /dev/null @@ -1,6 +0,0 @@ -POST http://0.0.0.0:3000/projects -Content-Type: application/hcl - -< ../data/incunabula.hcl - -### diff --git a/flake.nix b/flake.nix index 9ddf4dc9..b7ea4daa 100644 --- a/flake.nix +++ b/flake.nix @@ -26,6 +26,7 @@ cargo-fuzz cargo-nextest rustup + graphviz ]; shellHook = '' diff --git a/justfile b/justfile index 1996e1b5..f4655acf 100644 --- a/justfile +++ b/justfile @@ -34,10 +34,22 @@ build-frontend: test: cargo test --tests +# Clean all build artifacts +clean: + cargo clean + # Run dsp-meta-server -serve: +serve: build-frontend clean export DSP_META_DATA_DIR=${PWD}/data && export DSP_META_PUBLIC_DIR=${PWD}/web-frontend/public && export DSP_META_LOG_FILTER=trace,hyper=info && cargo run --bin dsp-meta-server +# Run dsp-meta-server and watch for changes in the Rust code +serve-dev: + export DSP_META_DATA_DIR=${PWD}/data && export DSP_META_PUBLIC_DIR=${PWD}/web-frontend/public && export DSP_META_LOG_FILTER=trace,hyper=info && cargo watch -x 'run --bin dsp-meta-server' + +# Run the frontend dev server +serve-frontend: + cd web-frontend && yarn run dev + # Run dsp-meta-validator validating all hcl documents under ./data validate: export DSP_META_DATA_DIR=${PWD}/data && cargo run --bin dsp-meta-validator diff --git a/result-bin b/result-bin deleted file mode 120000 index 7afa6152..00000000 --- a/result-bin +++ /dev/null @@ -1 +0,0 @@ -/nix/store/wq3q06m18agdvj8q9lzf917mnkgsjd3z-crate-dsp-meta-cmd-0.1.3-bin \ No newline at end of file diff --git a/web-frontend/public/index.html b/web-frontend/public/index.html index c63ccb65..dc7afe10 100644 --- a/web-frontend/public/index.html +++ b/web-frontend/public/index.html @@ -4,8 +4,8 @@ - - + + diff --git a/web-frontend/src/Footer.svelte b/web-frontend/src/Footer.svelte index 9d340d71..014d6084 100644 --- a/web-frontend/src/Footer.svelte +++ b/web-frontend/src/Footer.svelte @@ -1,10 +1,11 @@ {#if $projectMetadata} -
- - {#if $projectMetadata?.project.url} -
Project Data
- - {truncateString($projectMetadata?.project.url.text)} - chevron right indicating a link - - {:else if isTestEnvironment} -
Project Data
-
URL missing
- {/if} - - {#if $projectMetadata?.project.secondaryURL} - - {truncateString($projectMetadata?.project.secondaryURL.text)} - chevron right indicating a link - - {/if} -
+ {#if ($projectMetadata?.project.url || $projectMetadata?.project.secondaryURL) && !$isTestEnvironment} +
+ + {#if $projectMetadata?.project.url} +
Project Data
+ + {truncateString($projectMetadata?.project.url.text)} + chevron right indicating a link + + {/if} + + {#if $projectMetadata?.project.secondaryURL} + + {truncateString($projectMetadata?.project.secondaryURL.text)} + chevron right indicating a link + + {/if} +
+ {:else if $isTestEnvironment} +
+ + {#if $projectMetadata?.project.url} +
Project Data
+ + {truncateString($projectMetadata?.project.url.text)} + chevron right indicating a link + + {:else if $isTestEnvironment} +
Project Data
+
URL missing
+ {/if} + + {#if $projectMetadata?.project.secondaryURL} + + {truncateString($projectMetadata?.project.secondaryURL.text)} + chevron right indicating a link + + {/if} +
+ {/if} +
@@ -46,7 +74,9 @@ Permalink
@@ -56,7 +86,7 @@ {#if $projectMetadata?.project.shortcode}
DSP Internal Shortcode
{$projectMetadata?.project.shortcode}
- {:else if isTestEnvironment} + {:else if $isTestEnvironment}
DSP Internal Shortcode
Shortcode missing
{/if} @@ -72,13 +102,16 @@ How To Cite {#if $projectMetadata?.project.howToCite} {/if}
{$projectMetadata?.project.howToCite}
- {:else if isTestEnvironment} + {:else if $isTestEnvironment}
How To Cite
How-to-cite missing
{/if} @@ -92,13 +125,14 @@ {truncateString(d.text)} {:else} {#if getText(d).match(/^\d+ /)} - {truncateString(getText(d))} + {truncateString(getText(d))} {:else}
{getText(d)}
{/if} {/if} {/each} - {:else if isTestEnvironment} + {:else if $isTestEnvironment}
Disciplines
Disciplines missing
{/if} @@ -113,7 +147,7 @@
{getText(t)}
{/if} {/each} - {:else if isTestEnvironment} + {:else if $isTestEnvironment}
Temporal Coverage
Temporal coverage missing
{/if} @@ -125,7 +159,7 @@ {#each $projectMetadata?.project.spatialCoverage as s} {truncateString(s.text)} {/each} - {:else if isTestEnvironment} + {:else if $isTestEnvironment}
Spatial Coverage
Spatial coverage missing
{/if} @@ -134,11 +168,11 @@ {#if $projectMetadata?.project.startDate}
Start date
{$projectMetadata?.project.startDate}
- {:else if isTestEnvironment} + {:else if $isTestEnvironment}
Start date
Start date missing
{/if} - + {#if $projectMetadata?.project.endDate}
End date
@@ -146,25 +180,31 @@ {/if} - {#if $projectMetadata?.project.funders && $projectMetadata?.project.funders.map((o) => {return findObjectByID(o)}).filter(e => e).length>0 } + {#if $projectMetadata?.project.funders && $projectMetadata?.project.funders.map((o) => { + return findObjectByID(o) + }).filter(e => e).length > 0 }
Funder
- {#each $projectMetadata?.project.funders.map((o) => {return findObjectByID(o)}) as f} - {#if f.__type === "Person"} - - - {:else if f.__type === "Organization"} -
{f.name}
- {/if} + {#each $projectMetadata?.project.funders.map((o) => { + return findObjectByID(o) + }) as f} + {#if f.__type === "Person"} + + + {:else if f.__type === "Organization"} +
{f.name}
+ {/if} {/each} - {:else if isTestEnvironment} + {:else if $isTestEnvironment}
Funder
funders missing
{/if} - + {#if $projectMetadata?.project.grants}
Grant
- {#each $projectMetadata?.project.grants.map(id => {return findGrantByID(id)}) as g} + {#each $projectMetadata?.project.grants.map(id => { + return findGrantByID(id) + }) as g} {#if g?.number && g?.url && g?.name} {truncateString(`${g?.name}: ${g?.number}`)} {:else if g?.number && g?.url} @@ -172,7 +212,9 @@ {:else if g?.number} {g?.number} {:else} - {#each [g?.funders[0]].map(o => {return findOrganizationByID(o)}) as f} + {#each [g?.funders[0]].map(o => { + return findOrganizationByID(o) + }) as f} {f.name} {/each} {/if} @@ -209,64 +251,73 @@ {#if $projectMetadata?.project.keywords}
Keywords
- {$projectMetadata?.project.keywords.map(t => {return getText(t)}).join(", ")} - {:else if isTestEnvironment} + {$projectMetadata?.project.keywords.map(t => { + return getText(t) + }).join(", ")} + {:else if $isTestEnvironment}
Keywords
keywords missing
{/if} - {:else if isTestEnvironment} -
Project not available
+{:else if $isTestEnvironment} +
Project not available
{/if} diff --git a/web-frontend/src/projects-repository/ProjectsRepository.svelte b/web-frontend/src/projects-repository/ProjectsRepository.svelte index f65dccca..f528ba63 100644 --- a/web-frontend/src/projects-repository/ProjectsRepository.svelte +++ b/web-frontend/src/projects-repository/ProjectsRepository.svelte @@ -12,7 +12,7 @@ $: document.title = 'DaSCH Metadata Browser'; setTimeout(() => { - const noData = 'No data retrived. Please check the connection and retry.'; + const noData = 'No data retrieved. Please check the connection and retry.'; const noProject = 'No projects found.' message = $pagedResults && $pagedResults.length ? noData : noProject; }, 3000); @@ -32,7 +32,7 @@ // first page on main page arrival await getProjectsMetadata(1); } else { - // preserved on rehresh or manually entered query + // preserved on refresh or manually entered query await getProjectsMetadata(page, query); } }); diff --git a/web-frontend/src/projects-repository/Tile.svelte b/web-frontend/src/projects-repository/Tile.svelte index 0140278c..a57c2588 100644 --- a/web-frontend/src/projects-repository/Tile.svelte +++ b/web-frontend/src/projects-repository/Tile.svelte @@ -8,7 +8,7 @@
- Status {metadata.status} + Status {metadata.status}
{ metadata.name }
diff --git a/web-frontend/src/store.ts b/web-frontend/src/store.ts index c44191a9..5caca28d 100644 --- a/web-frontend/src/store.ts +++ b/web-frontend/src/store.ts @@ -1,20 +1,27 @@ -import {navigate} from 'svelte-routing'; -import {writable} from 'svelte/store'; -import type {PaginationData, Metadata, ProjectMetadata} from './interfaces'; +import { navigate } from 'svelte-routing'; +import { readable, writable } from 'svelte/store'; +import type { Metadata, PaginationData, ProjectMetadata } from './interfaces'; export const pagination = writable({} as PaginationData); export const pagedResults = writable(undefined as ProjectMetadata[]); export const projectMetadata = writable(undefined as Metadata); export const query = writable(''); export const previousRoute = writable(''); -export const handleSnackbar = writable({isSnackbar: false, message: ''}); -export const statusFilter = writable({showOngoing: true, showFinished: true}) +export const handleSnackbar = writable({ isSnackbar: false, message: '' }); +export const statusFilter = writable({ showOngoing: true, showFinished: true }); -export async function getProjectsMetadata(page: number, q?: string): Promise { - // const baseUrl = process.env.BASE_URL; +export const isTestEnvironment = readable( +window.location.hostname === 'localhost' || window.location.hostname.startsWith('meta.test') || window.location.hostname.startsWith('meta.dev') +); + +export function baseUrl() { const protocol = window.location.protocol; const port = protocol === 'https:' ? '' : ':3000'; - const baseUrl = `${protocol}//${window.location.hostname}${port}/`; + return `${protocol}//${window.location.hostname}${port}`; +} + +export async function getProjectsMetadata(page: number, q?: string): Promise { + // const baseUrl = process.env.BASE_URL; const baseResultsRange = [1, 9]; let route: string; let currentResultsRange = baseResultsRange.map(v => v + ((page - 1) * baseResultsRange[1])); @@ -22,7 +29,7 @@ export async function getProjectsMetadata(page: number, q?: string): Promise { if (!f.showFinished || !f.showOngoing) { - const filter = `&filter=${!f.showOngoing ? 'o' : ''}${!f.showFinished ? 'f' : ''}` - route += filter + const filter = `&filter=${!f.showOngoing ? 'o' : ''}${!f.showFinished ? 'f' : ''}`; + route += filter; } - }) + }); - console.log(baseUrl, route); navigate(`/${route}`); - await fetch(`${baseUrl}api/${route}`) + await fetch(`${(baseUrl())}/api/v1/${route}`) .then(r => { const totalCount = parseInt(r.headers.get('X-Total-Count')); let totalPages = Math.floor(totalCount / baseResultsRange[1]); if (!Number.isInteger(totalCount / baseResultsRange[1])) { totalPages++; - }; - pagination.set({currentPage: page, currentResultsRange, totalCount, totalPages}); + } + pagination.set({ currentPage: page, currentResultsRange, totalCount, totalPages }); return r.json(); }) - .then(data => {pagedResults.set(data), console.log(data)}) + .then(data => { + pagedResults.set(data), console.log(data); + }); }